/* ═══════════════════════════════════════════════════════════
   WOOD CRISTA KUFRI — Cinematic Edition
   Palette: Himalayan Night × Alpine Gold × Orchard Cream
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --ink:         #080808;
  --ink-deep:    #040404;
  --charcoal:    #111111;
  --charcoal-2:  #1a1a1a;
  --charcoal-3:  #242424;
  --slate:       #2e2e2e;

  --gold:        #c9a96e;
  --gold-light:  #e2c99a;
  --gold-pale:   #f0dfc0;
  --gold-dim:    rgba(201,169,110,0.18);

  --cream:       #f5f0e8;
  --cream-2:     #ede7da;
  --cream-3:     #e0d8c8;

  --white:       #ffffff;
  --fog:         rgba(245,240,232,0.06);

  --text-light:  rgba(245,240,232,0.9);
  --text-mid:    rgba(245,240,232,0.55);
  --text-dim:    rgba(245,240,232,0.3);

  --green:       #25d366;
  --red:         #c0392b;

  /* Shadows */
  --glow-gold:   0 8px 40px rgba(201,169,110,0.22);
  --glow-ink:    0 32px 80px rgba(0,0,0,0.6);
  --shadow-sm:   0 4px 20px rgba(0,0,0,0.3);
  --shadow-md:   0 12px 40px rgba(0,0,0,0.45);
  --shadow-lg:   0 24px 60px rgba(0,0,0,0.6);

  /* Radii */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-2xl: 48px;
  --r-pill: 9999px;

  /* Easing */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinema: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── BASE ─────────────────────────────────────────── */
html { scroll-behavior: auto; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section-padding { padding: 120px 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.section-desc {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 300;
}

/* Gold rule — slim cinematic line */
.gold-rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 40px;
}
.gold-rule.center { margin: 0 auto 40px; }

.text-center { text-align: center; }
.section-header { margin-bottom: 64px; }

/* ─── NAV ─────────────────────────────────────────── */
.fm-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  padding: 24px 64px;
  pointer-events: auto;
  background: rgba(4,4,4,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(201,169,110,0.12), 0 8px 32px rgba(0,0,0,0.5);
  transition: padding 0.5s var(--ease-cinema), background 0.5s var(--ease-cinema);
}

.fm-nav-wrapper.scrolled {
  padding: 16px 64px;
  background: rgba(4,4,4,0.98);
}

.fm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  width: 100%;
  background: transparent;
  padding: 0;
}

.nav-side { flex: 1; display: flex; align-items: center; gap: 36px; }
.nav-side.right { justify-content: flex-end; }

.fm-nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  margin: 0 48px;
  position: relative;
}

.fm-nav-logo::before, .fm-nav-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: rgba(201,169,110,0.3);
}
.fm-nav-logo::before { right: calc(100% + 12px); }
.fm-nav-logo::after  { left:  calc(100% + 12px); }

.fm-brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.5s;
}

.fm-brand-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
  transition: color 0.5s;
}

.fm-nav-wrapper.scrolled .fm-brand-title { color: var(--cream); }
.fm-nav-wrapper.scrolled .fm-brand-sub  { color: var(--gold); }
.fm-nav-wrapper.scrolled .fm-nav-links a { color: var(--cream); }
.fm-nav-wrapper.scrolled .nav-hamburger span { background: var(--cream); }
.fm-nav-wrapper.scrolled .fm-nav-btn {
  background: var(--gold);
  color: var(--ink);
}
.fm-nav-wrapper.scrolled .fm-nav-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.fm-nav-links { display: flex; gap: 36px; }
.fm-nav-links a {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s, opacity 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.fm-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.fm-nav-links a:hover { color: var(--white); }
.fm-nav-links a:hover::after { width: 100%; }

.fm-nav-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  transition: 0.35s var(--ease-out);
  white-space: nowrap;
}
.fm-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 7px;
  z-index: 1001;
}
.nav-hamburger span {
  height: 1px;
  background: var(--white);
  transition: 0.45s var(--ease-out);
}
.nav-hamburger span:nth-child(1) { width: 28px; }
.nav-hamburger span:nth-child(2) { width: 18px; }
.nav-hamburger:hover span { background: var(--gold); }
.nav-hamburger:hover span:nth-child(2) { width: 28px; }

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.7s var(--ease-out);
  pointer-events: none;
}
.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,169,110,0.06) 0%, transparent 60%);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

.mobile-nav-list { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-nav-list a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.08em;
  transition: color 0.3s, letter-spacing 0.4s;
}
.mobile-nav-list a:hover { color: var(--gold); letter-spacing: 0.15em; font-style: italic; }

.fm-nav-wrapper.menu-open .nav-hamburger span { background: var(--cream) !important; width: 28px; }
.fm-nav-wrapper.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.fm-nav-wrapper.menu-open .nav-hamburger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.fm-nav-wrapper.menu-open .fm-brand-title,
.fm-nav-wrapper.menu-open .fm-brand-sub { color: var(--cream) !important; z-index: 1001; position: relative; }

/* ─── FABs ────────────────────────────────────────── */
.fab-container {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab-capsule {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal-2);
  padding: 10px 18px 10px 10px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  color: var(--cream);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, background 0.3s;
  transform: translateY(80px);
  opacity: 0;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.fab-capsule:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.fab-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-3);
  transition: 0.3s;
}
.fab-text { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; white-space: nowrap; }

.fab-reserve { background: var(--gold); color: var(--ink); border-color: transparent; }
.fab-reserve .fab-icon { background: rgba(0,0,0,0.15); color: var(--ink); }
.fab-reserve:hover { background: var(--gold-light); box-shadow: var(--glow-gold); }

.fab-whatsapp:hover { background: var(--green); color: var(--white); border-color: transparent; }
.fab-whatsapp:hover .fab-icon { background: rgba(255,255,255,0.15); color: var(--white); }

.fab-call:hover { background: var(--charcoal-3); }

/* ─── HERO ────────────────────────────────────────── */
.fm-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 860px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow: hidden;
  background: var(--ink-deep);
}

.fm-hero-bg { position: absolute; inset: 0; z-index: -1; }

/* Cinematic letterbox bars */
.fm-hero::before,
.fm-hero::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(40px, 6vh, 80px);
  background: var(--ink-deep);
  z-index: 3;
  pointer-events: none;
}
.fm-hero::before { top: 0; }
.fm-hero::after  { bottom: 0; }

.fm-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 80%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

/* Vignette */
.fm-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.fm-bg-img {
  filter: brightness(0.82) saturate(1.1);
  transform-origin: center center;
  transition: transform 8s var(--ease-cinema);
}
.fm-hero:hover .fm-bg-img { transform: scale(1.04); }

.fm-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  padding-top: 80px;
  color: var(--white);
}

.fm-hero-text { margin-bottom: 72px; }

.fm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 8px 20px;
  border-radius: var(--r-pill);
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  background: rgba(201,169,110,0.06);
}

.fm-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(68px, 10vw, 128px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.18em;
}
.fm-hero-title .italic { font-style: italic; color: var(--gold-light); font-weight: 300; }
.fm-word { display: inline-block; transform-origin: left bottom; }

.fm-hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

/* Hero Booking */
.fm-booking-glass {
  background: rgba(8,8,8,0.65);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(201,169,110,0.18);
  padding: 6px 6px 6px 8px;
  border-radius: var(--r-pill);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,169,110,0.08);
  width: 100%;
  max-width: 900px;
  position: absolute;
  bottom: 80px;
}

.fm-bk-fields { display: flex; align-items: center; justify-content: space-between; }

.fm-bk-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 28px;
  position: relative;
  text-align: left;
}
.fm-bk-col.border-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(201,169,110,0.15);
}

.fm-bk-fields label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}
.fm-bk-fields input,
.fm-bk-fields select {
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 15px;
  font-family: inherit;
  font-weight: 400;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.fm-bk-fields input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.4; cursor: pointer; }
.fm-bk-fields select option { color: var(--ink); background: var(--cream); }

.fm-bk-btn {
  background: var(--gold);
  color: var(--ink);
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--r-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.35s var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}
.fm-bk-btn:hover {
  background: var(--gold-light);
  transform: scale(1.03);
  box-shadow: var(--glow-gold);
}

/* ─── ABOUT ───────────────────────────────────────── */
.about { background: var(--charcoal); }

.about-flex { display: flex; align-items: center; gap: 100px; }
.about-content { flex: 1; }

.about-content > p {
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.cinematic-crest-wrap {
  margin-bottom: 24px;
}
.cinematic-crest {
  transition: transform 1s var(--ease-cinema);
}

.about-stats { display: flex; gap: 56px; margin-top: 48px; }
.stat-box { display: flex; flex-direction: column; position: relative; padding-left: 20px; }
.stat-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mid);
}

.about-images { flex: 1; position: relative; width: 100%; height: 620px; }

.about-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 82%;
  height: 80%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { filter: brightness(0.9) saturate(1.1); }

.about-img-sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  height: 55%;
  border-radius: var(--r-lg);
  border: 6px solid var(--charcoal);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ─── ROOMS ───────────────────────────────────────── */
.rooms { background: var(--ink); }

.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.room-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--charcoal-2);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,110,0.3);
}

.room-img-box {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-img-box img { transition: transform 0.6s var(--ease-out); }
.room-card:hover .room-img-box img { transform: scale(1.05); }

.scarcity-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(192, 57, 43, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(12px);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.12);
}
.room-badge.top-value { background: var(--gold); color: var(--ink); border-color: transparent; }
.room-badge.premium   { background: transparent; color: var(--gold); border-color: var(--gold); }

.room-details { padding: 28px 28px 32px; }

.room-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.pricing-block {
  margin-bottom: 20px;
}
.ota-price {
  display: block;
  font-size: 12px;
  color: rgba(245,240,232,0.4);
  margin-bottom: 4px;
  font-weight: 300;
}
.ota-price s {
  color: #e74c3c;
  opacity: 0.85;
}
.room-price { font-size: 14px; color: var(--text-mid); }
.room-price strong { font-size: 24px; color: var(--gold); font-weight: 500; font-family: 'Cormorant Garamond', serif; }
.room-price span { font-size: 12px; color: #2ecc71; font-weight: 600; margin-left: 4px; }

.trust-signals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-signals span {
  font-size: 12px;
  color: rgba(245,240,232,0.75);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.pulse-btn {
  animation: pulse-gold 2.5s infinite;
}
@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(201,169,110, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(201,169,110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110, 0); }
}

.room-amenities li {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 9px;
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}
.room-amenities li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

.room-buttons { display: flex; gap: 10px; margin-top: 24px; }

.btn-primary-sm, .btn-outline-sm {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 12px;
  border-radius: var(--r-sm);
  transition: 0.3s var(--ease-out);
}

.btn-primary-sm {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-primary-sm:hover {
  background: var(--gold-light);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

.btn-outline-sm {
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--gold);
  background: transparent;
}
.btn-outline-sm:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

/* ─── BANNER CTA ──────────────────────────────────── */
.banner-cta {
  position: relative;
  padding: 140px 24px;
  text-align: center;
  overflow: hidden;
}
.banner-bg { position: absolute; inset: 0; }
.banner-bg img { filter: brightness(0.6) saturate(1.15); }

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.2) 40%, rgba(8,8,8,0.6) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto;
}
.banner-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.banner-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.75;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 17px 40px;
  border-radius: var(--r-pill);
  transition: 0.35s var(--ease-out);
  border: 1px solid var(--gold);
}
.btn-white:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

/* ─── GALLERY ─────────────────────────────────────── */
.gallery { background: var(--ink); overflow: hidden; padding-bottom: 0; }

.gallery-wrapper { display: flex; width: max-content; padding-bottom: 64px; }
.gallery-track { display: flex; gap: 20px; padding: 0 32px; }

.g-item {
  width: 440px;
  height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%);
  transition: opacity 0.4s;
}
.g-item:hover::after { opacity: 0.5; }
.g-item img { transition: transform 0.8s var(--ease-cinema); filter: brightness(0.88) saturate(1.1); }
.g-item:hover img { transform: scale(1.06); }

/* ─── AMENITIES ───────────────────────────────────── */
.amenities { background: var(--charcoal); }

.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.am-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  transition: 0.4s var(--ease-out);
  background: var(--charcoal-2);
  position: relative;
  overflow: hidden;
}
.am-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.am-card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--charcoal-3);
}
.am-card:hover::before { transform: scaleX(1); }

.am-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease-out), color 0.5s, filter 0.5s;
}
.am-card:hover .am-icon {
  transform: scale(1.15) translateY(-4px);
  color: var(--gold-light);
  filter: drop-shadow(0 0 12px rgba(201,169,110,0.4));
}
.am-card p { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); }

/* ─── DINING ──────────────────────────────────────── */
.dining { background: var(--ink); }

.dining-flex { display: flex; gap: 80px; align-items: center; }
.dining-info { flex: 1; }

.dining-quote-box {
  margin-top: 40px;
  padding: 28px 28px 28px 32px;
  border-left: 2px solid var(--gold);
  background: rgba(201,169,110,0.04);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.45;
}
.quote-auth {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.dining-menu {
  flex: 1;
  background: var(--charcoal-2);
  padding: 44px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow-md);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}
.menu-item:last-child  { border-bottom: none; padding-bottom: 0; }
.menu-item:first-child { padding-top: 0; }
.menu-item:hover .menu-text h4 { color: var(--gold); }

.menu-text h4 { font-size: 17px; font-weight: 500; margin-bottom: 6px; color: var(--cream); transition: color 0.3s; }
.menu-text p  { font-size: 14px; font-weight: 300; color: var(--text-mid); }

.menu-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  border: 1px solid rgba(201,169,110,0.15);
}

/* ─── EXPERIENCES ─────────────────────────────────── */
.experiences { background: var(--charcoal); }

.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.exp-box {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: var(--charcoal-2);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.exp-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.exp-box:hover { background: var(--charcoal-3); transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,169,110,0.15); }
.exp-box:hover::before { opacity: 1; }
.exp-box:hover h4 { color: var(--gold); }

.exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  font-weight: 300;
  flex-shrink: 0;
}
.exp-box h4 { font-size: 19px; font-weight: 500; margin-bottom: 10px; color: var(--cream); transition: color 0.3s; }
.exp-box p  { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.65; }

/* ─── FAQ ─────────────────────────────────────────── */
.faq { background: var(--ink) !important; }

.faq-item {
  background: var(--charcoal-2) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: none !important;
  transition: border-color 0.3s, background 0.3s !important;
}
.faq-item:hover { border-color: rgba(201,169,110,0.2) !important; }
.faq-item.open  { border-color: rgba(201,169,110,0.25) !important; background: var(--charcoal-3) !important; }

.faq-item h4 { color: var(--cream) !important; font-weight: 400 !important; font-family: 'Cormorant Garamond', serif; font-size: 20px !important; }
.faq-icon     { color: var(--gold) !important; }
.faq-answer   { color: var(--text-mid) !important; font-weight: 300 !important; }

.faq-item.open .faq-answer { display: block !important; }
.faq-item.open .faq-icon   { transform: rotate(45deg) !important; }

/* ─── REVIEWS ─────────────────────────────────────── */
.reviews { background: var(--charcoal); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.rev-card {
  background: var(--charcoal-2);
  padding: 36px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.45s var(--ease-out);
  position: relative;
}
.rev-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
}
.rev-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,110,0.18);
}

.rev-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 20px; }
.rev-text  { font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; font-weight: 300; color: var(--text-light); }
.rev-author { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.rev-author span { font-weight: 400; color: var(--text-mid); text-transform: none; letter-spacing: 0; font-size: 11px; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(201,169,110,0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 56px;
  margin-bottom: 36px;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--cream);
}
.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

.footer-contact { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.footer-contact a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-mid);
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ─── FINAL BOOKING SECTION ───────────────────────── */
.final-booking { position: relative; overflow: hidden; background: var(--ink-deep); }
.banner-overlay.dark {
  background: linear-gradient(180deg, rgba(4,4,4,0.7) 0%, rgba(4,4,4,0.5) 50%, rgba(4,4,4,0.8) 100%);
}
.relative  { position: relative; z-index: 2; }
.white     { color: var(--cream); }
.center    { margin-left: auto; margin-right: auto; }
.opacity-8 { opacity: 0.6; }

.booking-card-large {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--r-2xl);
  padding: 64px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(201,169,110,0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.final-form label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 12px;
}

.final-form input,
.final-form select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 16px 20px;
  border-radius: var(--r-md);
  color: var(--cream);
  font-size: 15px;
  font-family: inherit;
  font-weight: 300;
  outline: none;
  transition: 0.3s;
}
.final-form input:focus,
.final-form select:focus {
  background: rgba(201,169,110,0.06);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.08);
}
.final-form input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.35; cursor: pointer; }
.final-form select option { color: var(--ink); background: var(--cream-2); }

.final-submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 22px;
  border-radius: var(--r-lg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.4s var(--ease-out);
}
.final-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

/* ─── MODAL ───────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.modal.active { opacity: 1; visibility: visible; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: var(--charcoal-2);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--r-2xl);
  padding: 52px;
  box-shadow: var(--shadow-lg);
  transform: translateY(40px) scale(0.95);
  transition: 0.55s var(--ease-out);
}
.modal.active .modal-content { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--charcoal-3);
  color: var(--text-mid);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.modal-close:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.modal-header { text-align: center; margin-bottom: 36px; }

.modal-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.1;
}
.modal-title em { font-style: italic; color: var(--gold); }
.modal-desc { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.6; }

.modal-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-family: inherit;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: 0.3s;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.08);
}
.form-group select option { color: var(--ink); background: var(--cream-2); }

.res-submit-btn {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 18px;
  border-radius: var(--r-lg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.35s var(--ease-out);
  margin-top: 8px;
}
.res-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

/* ─── BLOG ────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card {
  background: var(--charcoal-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,110,0.18);
}

.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { transition: transform 0.8s var(--ease-cinema); filter: brightness(0.85) saturate(1.1); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--cream);
  flex: 1;
}
.read-more {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.read-more::after { content: '→'; transition: transform 0.3s; }
.blog-card:hover .read-more { gap: 12px; }
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* ─── SUBPAGE HEADER ──────────────────────────────── */
.subpage-header {
  padding-top: 180px;
  padding-bottom: 80px;
  background: var(--ink-deep);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subpage-header .banner-bg { opacity: 0.3; }
.subpage-header .container { position: relative; z-index: 2; }

.breadcrumb {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mid);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.breadcrumb a:hover { color: var(--gold); }

/* ─── ARTICLE ─────────────────────────────────────── */
.article-container { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.article-header { text-align: left; margin-bottom: 48px; }
.article-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-mid); margin-bottom: 16px; font-weight: 300; }
.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--cream);
}
.article-content { font-size: 17px; line-height: 1.85; color: var(--text-mid); font-weight: 300; }
.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  margin: 56px 0 24px;
  color: var(--cream);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding-bottom: 16px;
}
.article-content h3 { font-size: 20px; font-weight: 500; margin: 36px 0 16px; color: var(--cream); }
.article-content p { margin-bottom: 24px; }
.article-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  border-left: 2px solid var(--gold);
  padding-left: 36px;
  margin: 48px 0;
  color: var(--text-light);
}
.article-content ul, .article-content ol { margin: 0 0 24px 24px; }
.article-content li { margin-bottom: 12px; }

.aeo-answer-box {
  background: var(--charcoal-2);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid rgba(201,169,110,0.12);
  margin: 40px 0;
  position: relative;
}
.aeo-answer-box::before {
  content: 'Quick Answer';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ─── PAGINATION ──────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 12px; margin-top: 64px; }
.page-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  font-weight: 500;
  color: var(--text-mid);
  transition: 0.3s;
  background: var(--charcoal-2);
}
.page-link:hover, .page-link.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--glow-gold);
}

/* ─── REVEAL MASK ANIMATION HOOK ──────────────────── */
.reveal-mask { overflow: hidden; }
.reveal-mask img { transform-origin: center; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .fm-hero-title { font-size: 72px; }
  .fm-booking-glass { max-width: 92%; }
  .about-flex, .dining-flex { flex-direction: column; gap: 56px; }
  .about-images { height: 440px; margin-top: 0; }
  .rooms-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .fm-nav-wrapper { padding: 16px 24px; }
  .fm-nav-wrapper.scrolled { padding: 14px 24px; }
  .desktop-only { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .fm-nav-logo { margin: 0; }
  .fm-brand-title { font-size: 20px; }
  .fm-brand-sub { letter-spacing: 0.4em; }

  .fm-hero { min-height: 100svh; padding-top: 80px; }
  .fm-hero::before, .fm-hero::after { height: 32px; }
  .fm-hero-title { font-size: 52px; }
  .fm-booking-glass {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    width: calc(100% - 48px);
    border-radius: var(--r-xl);
  }
  .fm-bk-fields { flex-direction: column; gap: 16px; }
  .fm-bk-col { width: 100%; padding: 0; }
  .fm-bk-col.border-left::before { display: none; }
  .fm-bk-fields input, .fm-bk-fields select { padding: 0; width: 100%; }
  .fm-bk-btn { width: 100%; justify-content: center; margin-top: 8px; }

  .rooms-grid, .reviews-grid, .exp-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .fab-container { bottom: 20px; right: 20px; }
  .fab-text { display: none; }
  .fab-capsule { border-radius: 50%; padding: 12px; }

  .footer-top { flex-direction: column; gap: 36px; }
  .footer-contact { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }

  .booking-card-large { padding: 32px 24px; border-radius: var(--r-xl); }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .final-submit-btn { font-size: 12px; padding: 18px; }

  .g-item { width: 300px; height: 240px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .modal-content { padding: 36px 24px; border-radius: var(--r-xl); width: calc(100% - 32px); }
  .form-row { grid-template-columns: 1fr; }
  .modal-title { font-size: 32px; }
}

/* ─── FAQ ANIMATED ACCORDION ──────────────────────── */
.faq-section { padding: 80px 0; background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.05); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; padding-bottom: 8px; }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; color: var(--cream); font-family: inherit; font-size: 18px; font-weight: 500; text-align: left; cursor: pointer; padding: 16px 0; transition: color 0.3s; }
.faq-question:hover { color: var(--gold); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); transition: transform 0.4s var(--ease-cinema); }
.faq-icon::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq-icon::after { top: 4px; bottom: 4px; left: 11px; width: 2px; }
.faq-item.active .faq-icon::after { transform: rotate(90deg) scaleY(0); }
.faq-item.active .faq-icon::before { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.6s var(--ease-cinema), opacity 0.4s 0.1s, padding 0.5s; color: var(--text-mid); font-weight: 300; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 1200px; opacity: 1; padding-bottom: 24px; }

/* ═══════════════════════════════════════════
   CINEMATIC ANIMATION HELPERS
   ═══════════════════════════════════════════ */
.anim-up {
  opacity: 0;
  transform: translateY(40px);
  visibility: hidden;
}

.reveal-mask {
  /* Start visible but clipped; GSAP will set autoAlpha:0 then animate to visible */
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
}

.cinematic-crest-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.cinematic-crest {
  width: 60px;
  height: 60px;
}

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 24px;
  opacity: 1;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
}

/* ─── GRID SYSTEMS ─────────────────────── */
.blog-grid, .gallery-grid, .rooms-grid, .exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.g-item, .blog-card, .room-card, .exp-card {
  position: relative;
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease-cinema), border-color 0.4s;
}

.room-card, .exp-card {
  display: flex;
  flex-direction: column;
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-content {
  padding: 24px;
  flex-grow: 1;
}

.g-item img, .blog-card img, .room-card img, .exp-card img, .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.g-item:hover, .room-card:hover, .exp-card:hover {
  border-color: var(--gold-mid);
}

@media (max-width: 1024px) {
  .blog-grid, .gallery-grid, .rooms-grid, .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid, .gallery-grid, .rooms-grid, .exp-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   CINEMATIC ZOOM EFFECTS
   ═══════════════════════════════════════════ */
.reveal-mask, .g-item, .blog-card-img, .card-img, .gallery-item {
  overflow: hidden;
}

.reveal-mask img, .g-item img, .blog-card-img img, .card-img img, .gallery-item img {
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1) !important;
}

.reveal-mask:hover img, .g-item:hover img, .blog-card:hover img, .room-card:hover img, .exp-card:hover img {
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════
   PREMIUM CINEMATIC FOOTER
   ═══════════════════════════════════════════ */
.fm-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.fm-footer::before {
  content: 'WOOD CRISTA';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15vw;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 32px;
}

.footer-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-desc {
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 300px;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 16px;
}

.footer-nav a {
  color: var(--text-mid);
  text-decoration: none;
  transition: 0.3s;
  font-weight: 300;
}

.footer-nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-contact-item {
  margin-bottom: 24px;
}

.footer-contact-item span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-sec);
  margin-bottom: 4px;
}

.footer-contact-item a, .footer-contact-item p {
  color: var(--cream);
  text-decoration: none;
  font-weight: 400;
}

.footer-bottom {
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-sec);
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-socials a {
  color: var(--text-mid);
  transition: 0.3s;
}

.footer-socials a:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
}
