/* ============================================================
   CYRUS ONE BY TRIVELLES — Ultra Luxury Stylesheet
   css/style.css
   ============================================================ */

/* ── 1. BRAND VARIABLES ── */
:root {
  --amber:         #e07b39;
  --amber-light:   #f0a96a;
  --amber-dark:    #b05a1e;
  --cyan:          #00b4d8;
  --cyan-dark:     #0090b0;
  --navy:          #080f18;
  --navy2:         #0d1820;
  --navy3:         #121f2a;
  --navy4:         #1a2d3d;
  --off-white:     #f0ece6;
  --cream:         #faf7f2;
  --white:         #ffffff;
  --muted:         #6e8090;
  --muted2:        #8a9aaa;
  --diamond-grad:  linear-gradient(135deg, #00b4d8 0%, #5b8fd4 40%, #e07b39 100%);
  --amber-grad:    linear-gradient(135deg, #e07b39, #f0a96a);
  --serif:         'Playfair Display', serif;
  --display:       'Cinzel', serif;
  --sans:          'Raleway', sans-serif;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--navy); color: var(--off-white); overflow-x: hidden; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--amber); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── SHARED UTILITIES ── */
.sec-eye {
  font-family: var(--display); font-size: 0.58rem; letter-spacing: 6px;
  text-transform: uppercase; color: var(--cyan); font-weight: 400;
  margin-bottom: 1rem; display: block;
}
.sec-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--off-white); letter-spacing: 1px;
  line-height: 1.2;
}
.sec-title em { font-style: italic; color: var(--amber-light); }
.sec-sub {
  font-size: 0.85rem; color: var(--muted2); line-height: 1.85;
  font-weight: 300; margin-top: 1rem; max-width: 620px; margin-left: auto; margin-right: auto;
}
.sec-head { text-align: center; padding: 0 2rem; margin-bottom: 4rem; }
.gold-line { width: 50px; height: 1px; background: var(--diamond-grad); margin: 1.8rem 0; }
.btn-gold {
  font-family: var(--display); font-size: 0.6rem; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 500;
  color: var(--white); background: var(--amber);
  border: none; padding: 1rem 2.8rem; cursor: pointer;
  transition: all 0.35s; display: inline-block;
  position: relative; overflow: hidden;
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-gold:hover::after { transform: translateX(0); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(224,123,57,0.35); }
.btn-outline {
  font-family: var(--display); font-size: 0.6rem; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 500;
  color: var(--white); background: transparent;
  border: 1px solid rgba(255,255,255,0.4); padding: 1rem 2.8rem;
  cursor: pointer; transition: all 0.35s; display: inline-block;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 3. TOP BAR ── */
.topbar {
  background: #152335;
  border-bottom: 1px solid rgba(0,180,216,0.12);
  padding: 0.5rem 0;
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.6rem; letter-spacing: 2px; color: white;
  text-transform: uppercase;
}
.topbar-right a { color: white; transition: color 0.3s; }
.topbar-right a:hover { color:white; }
.tb-sep { color: rgba(0,180,216,0.3); }

/* ── 4. NAVIGATION ── */
nav {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, padding 0.4s, top 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  top: 0;
   backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 4rem;
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(0,180,216,0.15);
}
.nav-logo img { height: 54px; width: auto; filter: brightness(0) invert(1); transition: height 0.4s; }
nav.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a {
  font-family: var(--display); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.78); transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--diamond-grad); transition: width 0.35s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.nav-phone { font-size: 0.62rem; color: rgba(255,255,255,0.55); letter-spacing: 1px; transition: color 0.3s; }
.nav-phone:hover { color: var(--cyan); }
.nav-cta {
  font-family: var(--display); font-size: 0.58rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 500;
  color: var(--white); background: var(--amber);
  border: none; padding: 0.65rem 1.6rem; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 1px; background: var(--white); display: block; transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--navy); z-index: 2000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.2rem 0; }
.mobile-menu a {
  font-family: var(--serif); font-size: 1.8rem; color: var(--off-white);
  font-weight: 300; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-cta { color: var(--amber) !important; }
.mobile-close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer;
}

/* ── 5. HERO ── */
.hero { position: relative; height: 100vh; width: 100%; overflow: hidden; }
.slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s ease; background-size: cover; background-position: center; }
.slide.active { opacity: 1; }
/* Replace these URLs with your own images in /images/ folder */
.slide-1 { background-image: url('../images/slider/slide-1.png'); }
.slide-2 { background-image: url('../images/slider/slide-2.png'); }
.slide-3 { background-image: url('../images/slider/slide-3.png'); }
.slide-4 { background-image: url('../images/slider/slide-4.png'); }
.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%),
    linear-gradient(to bottom, rgba(8,15,24,0.5) 0%, rgba(0,0,0,0) 40%, rgba(8,15,24,0.7) 100%);
}
.hero-side-text {
  position: absolute; right: -90px; top: 50%; z-index: 3;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--display); font-size: 0.5rem; letter-spacing: 6px;
  color: rgba(255,255,255,0.25); text-transform: uppercase;
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.hero-diamond {
  font-size: 1rem; color: var(--cyan); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
  background: var(--diamond-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-eyebrow {
  font-family: var(--display); font-size: 0.62rem; letter-spacing: 7px;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 400; color: var(--white); line-height: 1;
  letter-spacing: 4px; margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}
.hero-title em { font-style: italic; color: var(--amber-light); }
.hero-rule {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.85s forwards;
}
.hero-rule span { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent); max-width: 120px; }
.rule-diamond { font-size: 0.5rem; color: var(--amber); }
.hero-sub {
  font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.68); margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 1s ease 1s forwards;
}
.hero-actions {
  display: flex; gap: 1.2rem; align-items: center;
  opacity: 0; animation: fadeUp 1s ease 1.2s forwards;
  flex-wrap: wrap; justify-content: center;
}
.slider-dots {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 1rem; align-items: center;
}
.dot { width: 24px; height: 1px; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.35s; border: none; }
.dot.active { background: var(--amber); width: 52px; }
.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 100%; display: flex; justify-content: space-between;
  padding: 0 2.5rem; pointer-events: none;
}
.arrow {
  pointer-events: all;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  color: var(--white); width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.arrow:hover { background: rgba(0,180,216,0.25); border-color: var(--cyan); }
.slide-counter { position: absolute; bottom: 2.5rem; right: 3.5rem; z-index: 3; text-align: right; }
.slide-num { font-family: var(--serif); font-size: 3.5rem; color: rgba(0,180,216,0.15); line-height: 1; font-weight: 400; }
.slide-caption { font-family: var(--display); font-size: 0.5rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 3.5rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.3); font-family: var(--display); font-size: 0.48rem; letter-spacing: 4px; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--cyan), transparent); animation: scrollAnim 2.2s ease infinite; }

/* ── 6. BOOKING STRIP ── */
#booking { background: var(--navy3); border-top: 1px solid rgba(0,180,216,0.2); border-bottom: 1px solid rgba(0,180,216,0.08); }
.booking-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5,1fr) auto; align-items: stretch;
}
.bfield { padding: 1.6rem 1.8rem; border-right: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 0.4rem; }
.bfield label { font-family: var(--display); font-size: 0.5rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--cyan); font-weight: 400; }
.bfield input[type="date"],
.bfield input[type="text"],
.bfield select {
  background: transparent; border: none; outline: none;
  color: var(--off-white); font-family: var(--serif); font-size: 1rem;
  font-weight: 300; width: 100%; cursor: pointer; -webkit-appearance: none; appearance: none;
}
.bfield input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.5) sepia(1) saturate(5) hue-rotate(165deg); cursor: pointer; opacity: 0.6; }
.bfield input::placeholder { color: var(--muted); font-style: italic; }
.bfield select option { background: var(--navy3); color: var(--off-white); }
.book-btn {
  background: var(--amber-grad); color: var(--white); border: none;
  padding: 0 2.5rem; font-family: var(--display); font-size: 0.58rem;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
  display: flex; align-items: center; gap: 0.6rem;
}
.book-btn:hover { filter: brightness(1.1); }
.book-btn svg { flex-shrink: 0; }

/* ── 7. AWARDS RIBBON ── */
.awards-ribbon {
  background: linear-gradient(135deg, var(--navy4) 0%, var(--navy3) 100%);
  border-bottom: 1px solid rgba(0,180,216,0.1);
  padding: 2rem 0;
}
.awards-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 4rem;
  display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.award-item { display: flex; align-items: center; gap: 1rem; }
.award-icon { font-size: 1.5rem; }
.award-title { font-family: var(--serif); font-size: 0.9rem; color: var(--off-white); font-weight: 400; }
.award-sub { font-size: 0.58rem; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-top: 2px; }
.award-divider { color: var(--amber); font-size: 0.5rem; opacity: 0.5; }

/* ── 8. INTRO ── */
.intro {
  max-width: 1300px; margin: 0 auto;
  padding: 8rem 4rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 7rem; align-items: center;
}
.intro-text h2 { font-family: var(--serif); font-size: clamp(2rem,3.8vw,3.2rem); font-weight: 400; line-height: 1.22; color: var(--off-white); margin-bottom: 1.4rem; }
.intro-text h2 em { font-style: italic; color: var(--amber-light); }
.intro-text p { font-size: 0.83rem; line-height: 1.95; color: var(--muted2); font-weight: 300; margin-bottom: 0.9rem; }
.intro-pillars { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pillar { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.pillar-icon { font-size: 0.6rem; background: var(--diamond-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pillar-label { font-family: var(--display); font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted2); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.stat {
  border: 1px solid rgba(0,180,216,0.1); padding: 2rem 1.5rem; text-align: center;
  transition: background 0.3s;
}
.stat:hover { background: rgba(0,180,216,0.04); }
.stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--cyan); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-family: var(--display); font-size: 0.52rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }

/* ── 9. ROOMS ── */
.rooms-section { background: var(--navy2); padding: 7rem 0; }
.rooms-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; padding: 0 3rem; gap: 2px;
}
.room-card { position: relative; overflow: hidden; background: var(--navy3); }
.room-img {
  height: 360px; position: relative; overflow: hidden;
  background-size: cover; background-position: center; transition: transform 0.8s ease;
}
.room-card:hover .room-img { transform: scale(1.04); }
/* Replace with your own room photos */
.room-img-1 { background-image: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=800&q=90&fit=crop'); }
.room-img-2 { background-image: url('https://images.unsplash.com/photo-1590490360182-c33d57733427?w=800&q=90&fit=crop'); }
.room-img-3 { background-image: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=800&q=90&fit=crop'); }
.room-img-4 { background-image: url('https://images.unsplash.com/photo-1564078516393-cf04bd966897?w=800&q=90&fit=crop'); }
.room-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,15,24,0.9) 0%, transparent 60%); }
.room-badge {
  position: absolute; top: 1.2rem; right: 0;
  background: rgba(8,15,24,0.85); border-left: 2px solid var(--cyan);
  font-family: var(--display); font-size: 0.52rem; letter-spacing: 2px;
  color: var(--muted2); padding: 0.4rem 1rem; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.room-badge-amber { border-color: var(--amber); color: var(--amber-light); }
.room-num { position: absolute; top: 1rem; left: 1.2rem; font-family: var(--serif); font-size: 4rem; font-weight: 400; color: rgba(255,255,255,0.08); line-height: 1; }
.room-body { padding: 2rem 2rem 1.5rem; }
.room-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.8rem; }
.room-name { font-family: var(--serif); font-size: 1.5rem; color: var(--off-white); font-weight: 400; }
.room-size { font-family: var(--display); font-size: 0.55rem; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-top: 4px; }
.room-desc { font-size: 0.78rem; color: var(--muted2); line-height: 1.8; font-weight: 300; margin-bottom: 1.2rem; }
.room-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.4rem; }
.rfeature { font-size: 0.7rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }
.rfeature span { font-size: 0.9rem; }
.room-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.room-price-wrap { display: flex; align-items: baseline; gap: 0.4rem; }
.room-price { font-family: var(--serif); font-size: 1.4rem; color: var(--amber); font-weight: 400; }
.room-night { font-size: 0.6rem; color: var(--muted); letter-spacing: 1px; }
.btn-room {
  font-family: var(--display); font-size: 0.52rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white); background: var(--amber);
  border: none; padding: 0.65rem 1.6rem; cursor: pointer; transition: all 0.3s;
}
.btn-room:hover { background: var(--amber-light); transform: translateY(-1px); }

/* ── 10. QUOTE BREAK ── */
.quote-break { position: relative; padding: 8rem 2rem; overflow: hidden; }
.quote-break-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1600&q=80&fit=crop') center/cover;
}
.quote-break-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,15,24,0.88);
}
.quote-break-content {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto; text-align: center;
}
.quote-mark { font-family: var(--serif); font-size: 8rem; line-height: 0.5; color: var(--amber); opacity: 0.2; margin-bottom: 1rem; }
blockquote { font-family: var(--serif); font-size: clamp(1.2rem,2.5vw,1.9rem); font-weight: 300; font-style: italic; color: var(--off-white); line-height: 1.6; }
.quote-attr { font-family: var(--display); font-size: 0.55rem; letter-spacing: 5px; color: var(--amber); text-transform: uppercase; margin-top: 2rem; }

/* ── 11. DINING ── */
.dining-section { padding: 7rem 0; }
.dining-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 0 3rem;
}
.dining-card { background: var(--navy2); overflow: hidden; }
.dining-img {
  height: 300px; background-size: cover; background-position: center;
  transition: transform 0.7s ease; overflow: hidden;
}
.dining-card:hover .dining-img { transform: scale(1.04); }
/* Replace with your own dining photos */
.dining-img-1 { background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=700&q=85&fit=crop'); }
.dining-img-2 { background-image: url('https://images.unsplash.com/photo-1424847651672-bf20a4b0982b?w=700&q=85&fit=crop'); }
.dining-img-3 { background-image: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?w=700&q=85&fit=crop'); }
.dining-img-4 { background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=700&q=85&fit=crop'); }
.dining-body { padding: 2rem; }
.dining-type { font-family: var(--display); font-size: 0.52rem; letter-spacing: 4px; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.6rem; }
.dining-name { font-family: var(--serif); font-size: 1.5rem; color: var(--off-white); margin-bottom: 0.8rem; font-weight: 400; }
.dining-desc { font-size: 0.78rem; color: var(--muted2); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.dining-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.dining-meta span { font-size: 0.65rem; color: var(--muted); }

/* ── 12. GALLERY ── */
.gallery-section { background: var(--navy2); }
.gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px; gap: 3px;
}
.gallery-item {
  overflow: hidden; position: relative;
  background-size: cover; background-position: center;
  cursor: pointer;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(8,15,24,0.3); transition: background 0.4s; }
.gallery-item:hover::after { background: rgba(8,15,24,0.05); }
.gallery-label {
  position: absolute; bottom: 1.2rem; left: 1.2rem; z-index: 2;
  font-family: var(--display); font-size: 0.52rem; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  opacity: 0; transition: opacity 0.3s; transform: translateY(6px); transition: all 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }
/* Replace with your own gallery photos */
.gi-1 { background-image: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=900&q=85&fit=crop'); }
.gi-2 { background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=600&q=85&fit=crop'); }
.gi-3 { background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=600&q=85&fit=crop'); }
.gi-4 { background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=600&q=85&fit=crop'); }
.gi-5 { background-image: url('https://images.unsplash.com/photo-1578683010236-d716f9a3f461?w=600&q=85&fit=crop'); }

/* ── 13. EXPERIENCES ── */
.exp-section { background: var(--navy3); padding: 7rem 0; }
.exp-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 4rem;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start;
}
.exp-text p { font-size: 0.83rem; line-height: 1.9; color: var(--muted2); font-weight: 300; margin-bottom: 0.9rem; }
.exp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.04); }
.exp-card { background: var(--navy3); padding: 1.8rem 1.5rem; transition: background 0.3s; border-top: 1px solid rgba(255,255,255,0.04); }
.exp-card:hover { background: var(--navy4); }
.exp-card-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.exp-card h4 { font-family: var(--serif); font-size: 1rem; color: var(--off-white); margin-bottom: 0.5rem; font-weight: 400; }
.exp-card p { font-size: 0.74rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── 14. SPA ── */
.spa-section { background: var(--navy2); padding: 7rem 0; }
.spa-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.spa-visual { position: relative; height: 540px; }
.spa-main {
  position: absolute; left: 0; top: 0; width: 76%; height: 84%;
  background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=800&q=85&fit=crop') center/cover;
  border: 1px solid rgba(0,180,216,0.1);
}
.spa-accent {
  position: absolute; right: 0; bottom: 0; width: 50%; height: 48%;
  background: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=600&q=85&fit=crop') center/cover;
  border: 1px solid rgba(224,123,57,0.1);
}
.spa-badge {
  position: absolute; right: 50%; bottom: 47%; transform: translate(50%, 50%);
  background: var(--amber-grad); color: var(--white);
  padding: 1.2rem 1.5rem; text-align: center; min-width: 110px;
}
.spa-badge-num { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; line-height: 1; }
.spa-badge-label { font-family: var(--display); font-size: 0.45rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; opacity: 0.85; }
.spa-text p { font-size: 0.83rem; line-height: 1.9; color: var(--muted2); font-weight: 300; margin-bottom: 1.2rem; }
.spa-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1.2rem; }
.spa-feat { font-size: 0.74rem; color: var(--muted2); display: flex; align-items: center; gap: 0.5rem; }
.sf-dot { font-size: 0.4rem; background: var(--diamond-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; flex-shrink: 0; }

/* ── 15. FACILITIES ── */
.facilities { padding: 7rem 4rem; max-width: 1300px; margin: 0 auto; }
.fac-header { margin-bottom: 4rem; }
.fac-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(0,180,216,0.05); }
.fac-item { background: var(--navy); padding: 2.5rem 2rem; position: relative; transition: background 0.3s; }
.fac-item:hover { background: var(--navy3); }
.fac-icon-wrap { margin-bottom: 1rem; }
.fac-icon { font-size: 1.8rem; }
.fac-name { font-family: var(--serif); font-size: 1.05rem; color: var(--off-white); margin-bottom: 0.6rem; font-weight: 400; }
.fac-desc { font-size: 0.74rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.fac-line { position: absolute; bottom: 0; left: 2rem; width: 0; height: 1px; background: var(--diamond-grad); transition: width 0.45s; }
.fac-item:hover .fac-line { width: calc(100% - 4rem); }

/* ── 16. INVESTMENT ── */
.invest-section { background: var(--navy2); padding: 7rem 0; }
.invest-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.invest-text p { font-size: 0.83rem; line-height: 1.9; color: var(--muted2); font-weight: 300; margin-bottom: 1.5rem; }
.invest-points { display: flex; flex-direction: column; gap: 1.5rem; }
.invest-point { display: flex; gap: 1.5rem; align-items: flex-start; }
.ip-num { font-family: var(--serif); font-size: 2rem; color: rgba(0,180,216,0.2); line-height: 1; flex-shrink: 0; font-weight: 400; }
.invest-point strong { font-family: var(--serif); font-size: 1rem; color: var(--off-white); display: block; margin-bottom: 0.3rem; font-weight: 400; }
.invest-point p { font-size: 0.76rem; color: var(--muted); line-height: 1.7; margin: 0; }
.invest-visual { display: flex; flex-direction: column; gap: 2px; }
.invest-img {
  height: 320px;
  background: url('https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=800&q=85&fit=crop') center/cover;
  border: 1px solid rgba(0,180,216,0.08);
}
.invest-stat-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.isc { background: var(--navy3); padding: 1.5rem; text-align: center; border: 1px solid rgba(0,180,216,0.08); }
.isc-num { font-family: var(--serif); font-size: 1.4rem; color: var(--amber); font-weight: 400; margin-bottom: 0.3rem; }
.isc-label { font-family: var(--display); font-size: 0.48rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ── 17. TESTIMONIALS ── */
.testimonials-section { background: var(--navy3); padding: 7rem 0; }
.testimonials-grid {
  max-width: 1300px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.tcard {
  background: var(--navy2); padding: 2.5rem 2rem;
  border-top: 1px solid rgba(0,180,216,0.1);
  transition: border-color 0.3s;
}
.tcard:hover { border-color: var(--amber); }
.tcard-stars { font-size: 0.8rem; color: var(--amber); letter-spacing: 3px; margin-bottom: 1.2rem; }
.tcard-text { font-family: var(--serif); font-size: 0.88rem; font-style: italic; color: var(--off-white); line-height: 1.75; margin-bottom: 1.5rem; font-weight: 300; }
.tcard-author { display: flex; align-items: center; gap: 1rem; }
.tcard-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--amber-grad); display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 0.52rem; font-weight: 600; color: var(--white); flex-shrink: 0;
}
.tcard-author strong { display: block; font-family: var(--serif); font-size: 0.88rem; color: var(--off-white); font-weight: 400; }
.tcard-author span { font-size: 0.6rem; color: var(--muted); display: block; margin-top: 2px; }

/* ── 18. ABOUT ── */
.about-section { background: var(--navy2); padding: 7rem 0; }
.about-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-visual { position: relative; height: 540px; }
.about-main {
  position: absolute; left: 0; top: 0; width: 78%; height: 86%;
  background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=800&q=85&fit=crop') center/cover;
  border: 1px solid rgba(0,180,216,0.1);
}
.about-accent {
  position: absolute; right: 0; bottom: 0; width: 48%; height: 50%;
  background: url('https://images.unsplash.com/photo-1568495248636-6432b97bd949?w=600&q=85&fit=crop') center/cover;
  border: 1px solid rgba(224,123,57,0.1);
}
.about-gold-vline { position: absolute; right: 25.5%; bottom: 50%; width: 1px; height: 60px; background: var(--diamond-grad); }
.about-text h2 { font-family: var(--serif); font-size: clamp(1.8rem,3.2vw,2.6rem); font-weight: 400; color: var(--off-white); line-height: 1.25; margin-bottom: 1.4rem; }
.about-text h2 em { font-style: italic; color: var(--amber-light); }
.about-text p { font-size: 0.82rem; line-height: 1.9; color: var(--muted2); font-weight: 300; margin-bottom: 0.9rem; }
.country-flags { display: flex; gap: 0.6rem; margin: 1.5rem 0; flex-wrap: wrap; }
.flag-tag { font-family: var(--display); font-size: 0.52rem; letter-spacing: 2.5px; text-transform: uppercase; border: 1px solid rgba(0,180,216,0.18); padding: 0.35rem 0.9rem; color: var(--muted2); }
.about-certs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }
.cert { font-family: var(--display); font-size: 0.48rem; letter-spacing: 2px; text-transform: uppercase; background: rgba(0,180,216,0.06); border: 1px solid rgba(0,180,216,0.15); padding: 0.4rem 0.8rem; color: var(--muted2); }

/* ── 19. LOCATION ── */
.location-strip {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(0,180,216,0.1);
}
.location-map { height: 420px; background: var(--navy3); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.map-placeholder { text-align: center; color: var(--muted); }
.map-placeholder span { font-size: 3rem; display: block; margin-bottom: 1rem; }
.map-placeholder p { font-family: var(--serif); font-size: 1.1rem; color: var(--off-white); line-height: 1.6; }
.location-map iframe { border: 0; }
.location-info { background: var(--navy2); padding: 4rem; }
.location-info h3 { font-family: var(--serif); font-size: 1.8rem; color: var(--off-white); font-weight: 400; }
.loc-item { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 1.4rem; }
.loc-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.loc-item strong { display: block; font-family: var(--serif); font-size: 0.9rem; color: var(--off-white); font-weight: 400; }
.loc-item span { font-size: 0.74rem; color: var(--muted); line-height: 1.6; }

/* ── 20. FOOTER ── */
.site-footer { background: var(--navy); }
.footer-top {
  max-width: 1300px; margin: 0 auto; padding: 5rem 4rem;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 4rem;
  border-top: 1px solid rgba(0,180,216,0.12);
}
.footer-logo { height: 50px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.76rem; color: var(--muted); line-height: 1.85; font-weight: 300; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link { font-size: 1.2rem; color: var(--muted); transition: color 0.3s; text-decoration: none; }
.social-link:hover { color: var(--cyan); }
.footer-col h4 { font-family: var(--display); font-size: 0.55rem; letter-spacing: 4px; text-transform: uppercase; color: var(--cyan); font-weight: 400; margin-bottom: 1.4rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.76rem; color: var(--muted); margin-bottom: 0.6rem; transition: color 0.3s; font-weight: 300; }
.footer-col a:hover { color: var(--off-white); }
.footer-flags { display: flex; gap: 0.6rem; margin-top: 1rem; font-size: 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); }
.footer-bottom-inner {
  max-width: 1300px; margin: 0 auto; padding: 1.4rem 4rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem;
  font-family: var(--display); font-size: 0.5rem; letter-spacing: 2px; color: rgba(255,255,255,0.2); text-transform: uppercase;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255,255,255,0.2); transition: color 0.3s; }
.footer-links a:hover { color: rgba(255,255,255,0.5); }

/* ── 21. ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollAnim { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── 22. RESPONSIVE ── */
@media (max-width: 1100px) {
  .intro, .about-inner, .spa-inner, .exp-inner, .invest-inner { grid-template-columns: 1fr; gap: 3rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .dining-grid { grid-template-columns: 1fr; }
  .location-strip { grid-template-columns: 1fr; }
  .fac-grid { grid-template-columns: 1fr 1fr; }
  .about-visual { height: 350px; }
  .spa-visual { height: 380px; }
  .invest-img { height: 250px; }
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
}
@media (max-width: 768px) {
  .topbar-right { display: none; }
  .topbar-left { flex-direction: column; gap: 0.3rem; text-align: center; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .booking-inner { grid-template-columns: 1fr 1fr; }
  .book-btn { grid-column: span 2; padding: 1.2rem; justify-content: center; }
  .awards-inner { gap: 1.5rem; }
  .facilities { padding: 5rem 1.5rem; }
  .fac-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .exp-cards { grid-template-columns: 1fr; }
  .invest-stat-cards { grid-template-columns: 1fr; }
  .rooms-section, .dining-section, .exp-section, .spa-section, .invest-section, .about-section { padding: 4rem 0; }
  .exp-inner, .spa-inner, .invest-inner, .about-inner { padding: 0 1.5rem; }
  .footer-top { padding: 3rem 1.5rem; }
  .footer-bottom-inner { padding: 1rem 1.5rem; flex-direction: column; text-align: center; }
  .footer-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 3.5rem; }
  .booking-inner { grid-template-columns: 1fr; }
  .book-btn { grid-column: span 1; }
  .intro { padding: 4rem 1.5rem; }
  .rooms-grid { padding: 0 1rem; }
  .dining-grid { padding: 0; }
  .gallery { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-side-text { display: none; }
}
.rcard {
  background: var(--navy2);
  border: 1px solid rgba(0,180,216,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.rcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(0,180,216,0.3);
}

.rcard-img {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
}

.rimg-deluxe { background-image: url('images/deluxe-room.jpg'); }
.rimg-junior { background-image: url('images/junior-suite.jpg'); }
.rimg-executive { background-image: url('images/executive-suite.jpg'); }
.rimg-royal { background-image: url('images/royal-suite.jpg'); }
.rimg-presidential { background-image: url('images/presidential-suite.jpg'); }

.rcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,15,24,0.9) 0%, rgba(8,15,24,0.2) 100%);
}

.rcard-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(8,15,24,0.9);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 4px;
  text-align: right;
}

.rcard-badge-premium {
  border-color: rgba(224,123,57,0.5);
  background: rgba(224,123,57,0.15);
}

.rprice-label {
  display: block;
  font-size: 0.65rem;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.rprice-amount {
  display: block;
  font-size: 1rem;
  color: var(--cyan);
  font-weight: 600;
}

.rcard-badge-premium .rprice-amount {
  color: var(--amber-light);
}

.rcard-body {
  padding: 2rem;
}

.rcard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.rcard-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--off-white);
  font-weight: 400;
}

.rcard-size {
  font-size: 0.8rem;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rcard-desc {
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.rcard-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.rcard-features li {
  font-size: 0.8rem;
  color: var(--muted2);
  padding-left: 1.2rem;
  position: relative;
}

.rcard-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.6rem;
}

.rcard-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .rcard-features {
    grid-template-columns: 1fr;
  }
}
