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

:root {
  --green-deep: #1B3A2D;
  --green-mid: #2C5440;
  --green-light: #3D7057;
  --gold: #B8924A;
  --gold-light: #D4AA6A;
  --cream: #F5EFE4;
  --cream-dark: #E8DFD0;
  --ivory: #FAF7F2;
  --charcoal: #161612;
  --text-dark: #1A1A18;
  --text-muted: #6B6558;
  --white: #FFFFFF;
}

html {
  scroll-behavior: auto;
  /* Hide scrollbar; page still scrolls (wheel, touch, keys) */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* legacy Edge / IE */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Chromium */
  width: 0;
  height: 0;
}

/* Anchor targets clear fixed floating nav */
section[id]:not(.hero) {
  scroll-margin-top: clamp(5.75rem, 14vw, 8.5rem);
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── PRELOADER — luxury liquid glass + 3D logo ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% 120%, rgba(184, 146, 74, 0.12), transparent 55%),
    radial-gradient(ellipse 90% 60% at 20% 0%, rgba(61, 112, 87, 0.2), transparent 50%),
    linear-gradient(152deg, #060f0c 0%, #0e1f18 32%, #1B3A2D 52%, #0c1813 100%);
}

.preloader--exit {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.preloader--fast {
  background: linear-gradient(152deg, #060f0c 0%, #1B3A2D 55%, #0c1813 100%);
}

.preloader-fast {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.preloader-fast__logo {
  width: min(220px, 58vw);
  height: auto;
  opacity: 0.95;
}

.preloader-fast__bar {
  width: min(160px, 40vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-fast__bar span {
  display: block;
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, #c9a05a, #f8e8c4);
  border-radius: 2px;
  animation: preloader-fast-slide 0.7s ease-in-out infinite;
}

@keyframes preloader-fast-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.preloader-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: transform, filter;
}

.preloader-motion__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 68% at 50% 48%, transparent 35%, rgba(4, 10, 8, 0.55) 100%);
  z-index: 6;
}

.preloader-motion__mesh {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170vmax;
  height: 170vmax;
  margin: -85vmax 0 0 -85vmax;
  background: conic-gradient(
    from 40deg at 50% 50%,
    rgba(27, 58, 45, 0) 0deg,
    rgba(61, 112, 87, 0.22) 48deg,
    rgba(212, 170, 106, 0.18) 98deg,
    rgba(255, 255, 255, 0.04) 130deg,
    rgba(184, 146, 74, 0.14) 200deg,
    rgba(45, 84, 64, 0.16) 270deg,
    rgba(27, 58, 45, 0) 360deg
  );
  animation: preloaderMeshDrift 32s linear infinite;
  opacity: 0.9;
}

.preloader-motion__aurora {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 40% at 30% 35%, rgba(212, 170, 106, 0.14), transparent 70%),
    radial-gradient(ellipse 50% 45% at 72% 62%, rgba(61, 112, 87, 0.16), transparent 68%),
    radial-gradient(ellipse 40% 35% at 50% 85%, rgba(184, 146, 74, 0.1), transparent 72%);
  filter: blur(28px);
  -webkit-filter: blur(28px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
  animation: preloaderAuroraPulse 14s ease-in-out infinite;
}

.preloader-motion__liquid {
  position: absolute;
  filter: blur(56px);
  -webkit-filter: blur(56px);
  opacity: 0.5;
  mix-blend-mode: plus-lighter;
  will-change: transform, border-radius;
  animation: preloaderLiquidMorph 18s ease-in-out infinite;
}

.preloader-motion__liquid--1 {
  width: 42vmax;
  height: 38vmax;
  left: -8%;
  top: 8%;
  background: radial-gradient(circle at 40% 45%, rgba(212, 170, 106, 0.45), rgba(27, 58, 45, 0.05) 70%);
  animation-duration: 16s;
}

.preloader-motion__liquid--2 {
  width: 36vmax;
  height: 40vmax;
  right: -6%;
  bottom: 12%;
  background: radial-gradient(circle at 55% 50%, rgba(61, 112, 87, 0.42), transparent 72%);
  animation-duration: 20s;
  animation-delay: -4s;
}

.preloader-motion__liquid--3 {
  width: 28vmax;
  height: 30vmax;
  left: 38%;
  top: -6%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), rgba(184, 146, 74, 0.2) 55%, transparent 75%);
  animation-duration: 13s;
  animation-delay: -7s;
  opacity: 0.35;
}

.preloader-motion__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  -webkit-filter: blur(80px);
  mix-blend-mode: soft-light;
  opacity: 0.5;
  will-change: transform;
}

.preloader-motion__orb--1 {
  width: 54vmax;
  height: 54vmax;
  left: -20%;
  top: -14%;
  background: radial-gradient(circle at 35% 40%, rgba(212, 170, 106, 0.58) 0%, rgba(61, 112, 87, 0.22) 48%, transparent 72%);
}

.preloader-motion__orb--2 {
  width: 50vmax;
  height: 50vmax;
  right: -24%;
  bottom: -10%;
  background: radial-gradient(circle at 60% 55%, rgba(45, 84, 64, 0.52) 0%, rgba(212, 170, 106, 0.2) 52%, transparent 72%);
}

.preloader-motion__orb--3 {
  width: 38vmax;
  height: 38vmax;
  left: 26%;
  bottom: -18%;
  background: radial-gradient(circle at 50% 50%, rgba(184, 146, 74, 0.38) 0%, rgba(27, 58, 45, 0.18) 58%, transparent 78%);
  mix-blend-mode: screen;
  opacity: 0.38;
}

.preloader-motion__caustics {
  position: absolute;
  inset: -15%;
  background:
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 18px),
    repeating-radial-gradient(circle at 78% 68%, rgba(212, 170, 106, 0.04) 0 1px, transparent 1px 14px),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255, 255, 255, 0.06), transparent 70%);
  mix-blend-mode: overlay;
  opacity: 0.45;
  animation: preloaderCausticsDrift 22s linear infinite;
}

.preloader-motion__glass {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 58% at 50% -5%, rgba(255, 255, 255, 0.14), transparent 58%),
    radial-gradient(ellipse 65% 48% at 100% 100%, rgba(212, 170, 106, 0.08), transparent 52%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.07) 0%, transparent 30%, transparent 64%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(22px) saturate(185%) brightness(1.06);
  -webkit-backdrop-filter: blur(22px) saturate(185%) brightness(1.06);
  animation: preloaderGlassBreath 10s ease-in-out infinite;
}

.preloader-motion__sheen {
  position: absolute;
  inset: -40% -25%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 62%,
    rgba(255, 255, 255, 0.04) 68%,
    rgba(255, 255, 255, 0.18) 71%,
    rgba(212, 170, 106, 0.08) 71.5%,
    rgba(255, 255, 255, 0.05) 73%,
    transparent 80%,
    transparent 100%
  );
  mix-blend-mode: soft-light;
  will-change: transform;
  animation: preloaderSheenSweep 6s ease-in-out infinite;
  opacity: 0.9;
}

.preloader-motion__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 5;
}

@keyframes preloaderMeshDrift {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes preloaderAuroraPulse {
  0%, 100% { opacity: 0.75; transform: scale(1) translateY(0); }
  50% { opacity: 1; transform: scale(1.06) translateY(-2%); }
}

@keyframes preloaderLiquidMorph {
  0%, 100% { border-radius: 58% 42% 52% 48% / 46% 54% 48% 52%; transform: rotate(0deg) scale(1); }
  33% { border-radius: 44% 56% 38% 62% / 58% 42% 55% 45%; transform: rotate(8deg) scale(1.05); }
  66% { border-radius: 52% 48% 60% 40% / 42% 58% 46% 54%; transform: rotate(-6deg) scale(0.96); }
}

@keyframes preloaderCausticsDrift {
  from { transform: rotate(0deg) scale(1.1); }
  to { transform: rotate(360deg) scale(1.1); }
}

@keyframes preloaderGlassBreath {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.78; }
}

@keyframes preloaderSheenSweep {
  0%   { transform: translateX(0); }
  45%  { transform: translateX(-55%); }
  100% { transform: translateX(-110%); }
}

.preloader-container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(94vw, 560px);
  padding: 0 1rem;
}

/* 3D logo stage */
.preloader-stage {
  perspective: 1400px;
  perspective-origin: 50% 42%;
  margin-bottom: 2.35rem;
  transform-style: preserve-3d;
  will-change: transform;
}

.preloader-logo-3d {
  position: relative;
  transform-style: preserve-3d;
  display: inline-block;
  transform-origin: 50% 50%;
}

.preloader-logo-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130%;
  height: 130%;
  margin: -65% 0 0 -65%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 170, 106, 0.28) 0%,
    rgba(212, 170, 106, 0.08) 38%,
    transparent 68%
  );
  transform: translateZ(-20px);
  pointer-events: none;
  animation: preloaderHaloPulse 4s ease-in-out infinite;
}

.preloader-logo-floor {
  position: absolute;
  left: 50%;
  bottom: -22%;
  width: 85%;
  height: 32%;
  margin-left: -42.5%;
  transform: rotateX(82deg) translateZ(-56px);
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 170, 106, 0.32), transparent 70%);
  filter: blur(14px);
  -webkit-filter: blur(14px);
  opacity: 0.6;
  pointer-events: none;
}

.preloader-logo-sparkles {
  position: absolute;
  inset: -18% -12%;
  pointer-events: none;
  z-index: 2;
}

.preloader-logo-sparkles i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff9ee;
  box-shadow: 0 0 8px rgba(212, 170, 106, 0.9);
  opacity: 0;
}

.preloader-logo-sparkles i:nth-child(1) { left: 8%; top: 22%; }
.preloader-logo-sparkles i:nth-child(2) { right: 6%; top: 18%; }
.preloader-logo-sparkles i:nth-child(3) { left: 2%; bottom: 28%; }
.preloader-logo-sparkles i:nth-child(4) { right: 4%; bottom: 24%; }
.preloader-logo-sparkles i:nth-child(5) { left: 48%; top: 4%; }

@keyframes preloaderHaloPulse {
  0%, 100% { opacity: 0.65; transform: translateZ(-20px) scale(1); }
  50% { opacity: 1; transform: translateZ(-20px) scale(1.08); }
}

.preloader-logo-stack {
  position: relative;
  transform-style: preserve-3d;
  display: grid;
  place-items: center;
  z-index: 1;
}

.preloader-logo-svg {
  display: block;
  width: min(320px, 72vw);
  height: auto;
  max-width: 100%;
  overflow: visible;
  transform: translateZ(48px);
  transform-style: preserve-3d;
}

.preloader-logo-svg__shadow {
  transform-origin: 150px 112px;
}

.preloader-logo-svg__main {
  transform-origin: 150px 112px;
}

.preloader-svg__mark {
  transform-origin: 150px 95px;
  transform-box: fill-box;
}

.preloader-svg__arc {
  transform-origin: 153px 152px;
  transform-box: fill-box;
}

.preloader-svg__arc-stroke {
  opacity: 0.85;
}

.preloader-logo-glow {
  position: absolute;
  inset: -25% -15%;
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 170, 106, 0.35), transparent 62%);
  transform: translateZ(12px);
  opacity: 0.65;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Glass progress tube */
.preloader-bar {
  position: relative;
  width: min(260px, 68vw);
  height: 3px;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  overflow: visible;
}

.preloader-bar__track {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.preloader-progress {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    rgba(184, 146, 74, 0.5) 0%,
    var(--gold-light) 35%,
    #fff6e8 50%,
    var(--gold-light) 65%,
    var(--gold) 100%
  );
  box-shadow: 0 0 18px rgba(212, 170, 106, 0.45);
}

.preloader:not(.preloader--gsap) .preloader-progress {
  animation: preloader-progress-fill 2.4s ease-in-out forwards;
}

.preloader--dismissing .preloader-motion__mesh,
.preloader--dismissing .preloader-motion__aurora,
.preloader--dismissing .preloader-motion__liquid,
.preloader--dismissing .preloader-motion__orb,
.preloader--dismissing .preloader-motion__caustics,
.preloader--dismissing .preloader-motion__glass,
.preloader--dismissing .preloader-motion__sheen,
.preloader--dismissing .preloader-bar__glow {
  animation-play-state: paused;
}

@keyframes preloader-progress-fill {
  to {
    transform: scaleX(1);
  }
}

.preloader-bar__glow {
  position: absolute;
  left: 0;
  top: 50%;
  width: 40%;
  height: 200%;
  margin-top: -100%;
  background: radial-gradient(ellipse at 0% 50%, rgba(212, 170, 106, 0.35), transparent 70%);
  filter: blur(6px);
  -webkit-filter: blur(6px);
  animation: preloaderBarGlow 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes preloaderBarGlow {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(180%); }
}

.preloader-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .preloader-motion__mesh,
  .preloader-motion__aurora,
  .preloader-motion__liquid,
  .preloader-motion__orb,
  .preloader-motion__caustics,
  .preloader-motion__glass,
  .preloader-motion__sheen,
  .preloader-bar__glow {
    animation: none;
  }

  .preloader-motion__glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .preloader-logo-3d,
  .preloader-logo-svg {
    transform: none;
  }

  .preloader-logo-halo {
    animation: none;
    opacity: 0.7;
  }

  #preloaderClipRect {
    y: 0;
    height: 225;
  }

  #preloaderArc,
  #preloaderArcStroke {
    opacity: 1;
  }

  .preloader-progress {
    transform: none;
    animation: preloaderProgressReduced 2.8s ease-in-out forwards;
  }
}

@keyframes preloaderProgressReduced {
  0% { width: 0%; transform: none; }
  50% { width: 72%; }
  100% { width: 100%; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── NAV: LIQUID GLASS ─── */
@keyframes shimmerBorder {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2.75rem;
  gap: 2.5rem;
  max-width: min(98vw, 1540px);
  width: max-content;

  /* clean transparent glass */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);

  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.22);

  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);

  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Subtle top-edge shimmer line */
nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    rgba(212, 170, 106, 0.5),
    rgba(255, 255, 255, 0.6),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmerBorder 5s ease infinite;
  border-radius: 60px;
  pointer-events: none;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

body:not(.page-home) nav {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

/* ─── NAV: DARK MODE (over light sections) ─── */
nav.nav-dark {
  background: rgba(245, 239, 228, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

nav.nav-dark .nav-logo img {
  filter: brightness(0);
  opacity: 0.88;
}

nav.nav-dark .nav-links a {
  color: rgba(26, 26, 24, 0.8);
}

nav.nav-dark .nav-links a:hover {
  color: var(--text-dark);
}

nav.nav-dark .nav-links a::after {
  background: var(--gold);
}

nav.nav-dark::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 146, 74, 0.5),
    rgba(255, 255, 255, 0.6),
    rgba(184, 146, 74, 0.5),
    transparent
  );
}

/* ─── BOOK NOW (WhatsApp, frozen — same liquid glass as back-to-top) ─── */
.book-now-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px) + 0.35rem);
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px) + 0.65rem);
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 1rem 0.3rem 0.3rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
}

.book-now-float__icon-btn {
  position: relative;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
}

.book-now-float__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.book-now-float__track {
  stroke: rgba(255, 255, 255, 0.22);
}

.book-now-float__fill {
  stroke: var(--gold-light);
  stroke-dasharray: 120 120;
  stroke-dashoffset: 0;
}

.book-now-float__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  line-height: 0;
}

.book-now-float__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.book-now-float__label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  padding-right: 0.05rem;
}

.book-now-float:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.book-now-float:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.book-now-float.book-now-float--light {
  background: rgba(245, 239, 228, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(26, 26, 24, 0.85);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.book-now-float.book-now-float--light .book-now-float__track {
  stroke: rgba(26, 26, 24, 0.14);
}

.book-now-float.book-now-float--light .book-now-float__fill {
  stroke: var(--gold);
}

.book-now-float.book-now-float--light:hover {
  background: rgba(245, 239, 228, 0.72);
  border-color: rgba(184, 146, 74, 0.35);
  color: var(--text-dark);
}

/* Mobile: right-edge tab — slides out once per page load */
@media (max-width: 767px) {
  .book-now-float {
    right: 0;
    left: auto;
    bottom: auto;
    top: clamp(38%, 46vh, 52%);
    transform: translateY(-50%) translateX(calc(100% - 3.4rem));
    border-radius: 999px 0 0 999px;
    padding: 0.32rem 0.75rem 0.32rem 0.32rem;
    gap: 0.4rem;
    box-shadow:
      -4px 4px 22px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    animation: book-now-mobile-intro 1.35s cubic-bezier(0.45, 0, 0.2, 1) 0.75s 1 forwards;
  }

  .book-now-float.book-now-float--peeked {
    animation: none;
    transform: translateY(-50%) translateX(calc(100% - 3.4rem));
  }

  .book-now-float__label {
    opacity: 0;
    max-width: 0;
    padding-right: 0;
    overflow: hidden;
    transition:
      opacity 0.35s ease,
      max-width 0.4s cubic-bezier(0.45, 0, 0.2, 1);
    animation: book-now-mobile-label-intro 1.35s cubic-bezier(0.45, 0, 0.2, 1) 0.75s 1 forwards;
  }

  .book-now-float.book-now-float--peeked:not(.is-expanded) .book-now-float__label {
    animation: none;
    opacity: 0;
    max-width: 0;
  }

  .book-now-float__fill {
    animation: book-now-ring-intro 1.35s ease-out 0.75s 1 forwards;
  }

  .book-now-float.book-now-float--peeked .book-now-float__fill {
    animation: none;
  }

  .book-now-float.is-expanded,
  .book-now-float:focus-visible {
    animation: none !important;
    transform: translateY(-50%) translateX(0);
  }

  .book-now-float.is-popping {
    animation: book-now-mobile-pop 0.5s cubic-bezier(0.34, 1.35, 0.64, 1) forwards !important;
  }

  .book-now-float.is-expanded .book-now-float__label,
  .book-now-float:focus-visible .book-now-float__label {
    opacity: 1;
    max-width: 6.5rem;
    padding-right: 0.05rem;
    animation: none !important;
  }

  .book-now-float.is-expanded .book-now-float__fill {
    animation: none;
  }

  .book-now-float.book-now-float--light {
    box-shadow:
      -4px 4px 20px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  }

  .back-to-top {
    bottom: max(1.15rem, env(safe-area-inset-bottom, 0px) + 0.55rem);
  }

  .hero-ctas {
    padding-right: 0.25rem;
  }
}

@keyframes book-now-mobile-intro {
  0% {
    transform: translateY(-50%) translateX(calc(100% - 3.4rem));
  }
  42% {
    transform: translateY(-50%) translateX(0);
  }
  68% {
    transform: translateY(-50%) translateX(0);
  }
  100% {
    transform: translateY(-50%) translateX(calc(100% - 3.4rem));
  }
}

@keyframes book-now-mobile-label-intro {
  0%,
  100% {
    opacity: 0;
    max-width: 0;
  }
  42%,
  68% {
    opacity: 1;
    max-width: 6.5rem;
  }
}

@keyframes book-now-ring-intro {
  0%,
  100% {
    stroke-dashoffset: 0;
  }
  42% {
    stroke-dashoffset: -24;
    stroke: var(--gold-light);
  }
}

@keyframes book-now-mobile-pop {
  0% {
    transform: translateY(-50%) translateX(calc(100% - 3.4rem)) scale(0.9);
  }
  55% {
    transform: translateY(-50%) translateX(0) scale(1.07);
  }
  100% {
    transform: translateY(-50%) translateX(0) scale(1);
  }
}

/* ─── BACK TO TOP (same liquid glass as nav) ─── */
.back-to-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px) + 0.35rem);
  bottom: max(5.6rem, env(safe-area-inset-bottom, 0px) + 5rem);
  z-index: 99;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  transition:
    opacity 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.94);
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
}

.back-to-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.back-to-top__track {
  stroke: rgba(255, 255, 255, 0.22);
}

.back-to-top__fill {
  stroke: var(--gold-light);
  stroke-dasharray: 120 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 0.14s ease-out;
}

.back-to-top__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  line-height: 0;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* Match nav.nav-dark when floating over light sections */
.back-to-top.back-to-top--light {
  background: rgba(245, 239, 228, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(26, 26, 24, 0.85);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.back-to-top.back-to-top--light .back-to-top__track {
  stroke: rgba(26, 26, 24, 0.14);
}

.back-to-top.back-to-top--light .back-to-top__fill {
  stroke: var(--gold);
}

.back-to-top.back-to-top--light:hover {
  background: rgba(245, 239, 228, 0.72);
  border-color: rgba(184, 146, 74, 0.35);
  color: var(--text-dark);
}

body.nav-menu-open .back-to-top.is-visible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .book-now-float {
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  @media (max-width: 767px) {
    .book-now-float,
    .book-now-float.book-now-float--peeked {
      transform: translateY(-50%) translateX(calc(100% - 3.4rem));
      animation: none;
    }

    .book-now-float__label,
    .book-now-float.book-now-float--peeked .book-now-float__label {
      animation: none;
      opacity: 0;
      max-width: 0;
    }

    .book-now-float__fill,
    .book-now-float.book-now-float--peeked .book-now-float__fill {
      animation: none;
    }

    .book-now-float.is-expanded,
    .book-now-float:focus-visible {
      transform: translateY(-50%) translateX(0);
    }

    .book-now-float.is-popping {
      animation: none !important;
    }

    .book-now-float.is-expanded .book-now-float__label,
    .book-now-float:focus-visible .book-now-float__label {
      opacity: 1;
      max-width: 6.5rem;
    }
  }

  .book-now-float:hover {
    transform: none;
  }

  .back-to-top {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .back-to-top__fill {
    transition: none;
  }

  .back-to-top.is-visible {
    transform: none;
  }
}

@media print {
  .back-to-top,
  .book-now-float {
    display: none !important;
  }
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.nav-logo img {
  height: clamp(26px, 3.6vw, 38px);
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  min-width: max-content;
  flex-shrink: 0;
}

.nav-links li {
  flex-shrink: 0;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta-label--short {
  display: none;
}

.nav-links-cta-item {
  display: none;
}

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  padding: 0.65rem 1.6rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 30px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(184, 146, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transition: left 0.5s ease;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), #a07830);
  color: var(--white);
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 6px 20px rgba(184, 146, 74, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-cta:hover::before {
  left: 100%;
}

button.nav-cta {
  -webkit-appearance: none;
  appearance: none;
}

.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s ease;
}

nav.nav-dark .nav-toggle {
  color: rgba(26, 26, 24, 0.85);
}

nav.nav-dark .nav-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
}

nav.menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

nav.menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

nav.menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.nav-menu-open {
  overflow: hidden;
}

body.nav-menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(12, 10, 8, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: navOverlayIn 0.45s ease forwards;
  pointer-events: auto;
}

@keyframes navOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

@supports (height: 100dvh) {
  .hero {
    height: 100dvh;
  }
}

/* Hero video layer — beneath gradients, overlays, and Ken Burns on .hero-bg */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: #0d2019;
}

.hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/hero-poster.jpg') center / cover no-repeat;
}

.hero-video-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video-frame video,
.hero-video-frame .hero-vimeo {
  position: absolute;
  top: 50%;
  left: 50%;
  /* True 16:9 cover sizing — always larger than the hero on both axes,
     so Vimeo's internal player has no room to letterbox. */
  width: 100vw;
  height: 56.25vw;       /* 16:9 → h = w * 9/16 */
  min-width: 177.78vh;   /* 16:9 → w = h * 16/9 */
  min-height: 100vh;
  border: 0;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

/* Use small/dynamic viewport units where available to dodge mobile
   address-bar jumps that otherwise crop the video. */
@supports (height: 100svh) {
  .hero-video-frame video,
  .hero-video-frame .hero-vimeo {
    min-width: 177.78svh;
    min-height: 100svh;
  }
}

.hero-video-frame video {
  object-fit: cover;
}

/* Light crop to hide Vimeo's edge UI ghosting on very narrow viewports. */
.hero-video-frame .hero-vimeo {
  transform: translate(-50%, -50%) scale(1.06);
}

.hero-video.is-playing::before {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-vimeo,
  .hero-video-el {
    display: none;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(1);
  transform-origin: 50% 50%;
  will-change: transform;
  /* Layers must stay translucent so video beneath remains visible */
  background:
    radial-gradient(ellipse 100% 70% at 50% 120%, rgba(61, 112, 87, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 80% 50% at 80% 22%, rgba(184, 146, 74, 0.07) 0%, transparent 48%),
    linear-gradient(
      165deg,
      rgba(13, 32, 25, 0.38) 0%,
      rgba(27, 58, 45, 0.32) 42%,
      rgba(20, 41, 32, 0.4) 100%
    );
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(27, 58, 45, 0.22) 0%,
    rgba(13, 32, 25, 0.18) 50%,
    rgba(22, 61, 48, 0.24) 100%
  );
  z-index: 2;
}

/* Blend hero → intro: deepen footer so seam matches intro overlay tone */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(180px, 32vh, 420px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(13, 32, 25, 0) 0%,
    rgba(27, 58, 45, 0.22) 38%,
    rgba(13, 32, 25, 0.65) 72%,
    rgba(13, 32, 25, 0.94) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 2rem 2rem 10rem;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
}

.hero-ornament {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.hero-ornament-ring {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(184,146,74,0.12);
  position: absolute;
  animation: slowPulse 8s ease-in-out infinite alternate;
}

.hero-ornament-ring:nth-child(2) {
  width: 700px; height: 700px;
  border-color: rgba(184,146,74,0.07);
  animation-delay: 2s;
}

.hero-ornament-ring:nth-child(3) {
  width: 900px; height: 900px;
  border-color: rgba(184,146,74,0.04);
  animation-delay: 4s;
}

@keyframes slowPulse {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

.hero-logo {
  width: clamp(190px, 26vw, 320px);
  height: auto;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.35));
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-ctas .btn-primary,
.hero-ctas .btn-ghost {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  padding: 0.65rem 1.45rem;
  border-radius: 50px;
}

.btn-primary {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s ease;
  cursor: pointer;
  border-radius: 50px;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 146, 74, 0.3);
}

.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s ease;
  cursor: pointer;
  border-radius: 50px;
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 170, 106, 0.2);
}

button.btn-primary,
button.btn-ghost {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
}

/* ─── WEDDING ENQUIRY DIALOG (liquid glass — matches nav) ─── */
.wedding-enquiry-dialog {
  padding: 0.75rem;
  border: none;
  margin: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  background: transparent;
  color: rgba(250, 248, 245, 0.94);
  box-sizing: border-box;
}

/* Closed <dialog> must not participate in layout (author display:flex would override UA) */
.wedding-enquiry-dialog:not([open]) {
  display: none;
}

.wedding-enquiry-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wedding-enquiry-dialog::backdrop {
  background: rgba(13, 32, 25, 0.58);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  opacity: 0;
  transition: opacity 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wedding-enquiry-dialog.is-visible::backdrop {
  opacity: 1;
}

.wedding-enquiry-panel {
  position: relative;
  width: min(36rem, 100%);
  max-height: min(90vh, 44rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition:
    opacity 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wedding-enquiry-dialog.is-visible .wedding-enquiry-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wedding-enquiry-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    rgba(212, 170, 106, 0.45),
    rgba(255, 255, 255, 0.55),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmerBorder 5s ease infinite;
  border-radius: 22px;
  pointer-events: none;
  z-index: 2;
}

.wedding-enquiry-panel__header {
  padding: clamp(1.35rem, 4vw, 2rem) clamp(1.15rem, 4vw, 2rem) 1rem;
  padding-right: 3.25rem;
  position: relative;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 1;
}

.wedding-enquiry-panel__header .label-tag {
  color: var(--gold-light);
  justify-content: flex-start;
  margin-bottom: 0.45rem;
}

.wedding-enquiry-panel__header .label-tag::before {
  background: rgba(212, 170, 106, 0.75);
}

.wedding-enquiry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 3.6vw, 2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.15;
}

.wedding-enquiry-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.wedding-enquiry-lede {
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 0.6rem;
  max-width: 30rem;
  font-weight: 300;
}

.wedding-enquiry-close,
.quick-enquiry-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  padding: 0;
  z-index: 3;
}

.wedding-enquiry-close:hover,
.quick-enquiry-close:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(184, 146, 74, 0.45);
  color: var(--gold-light);
}

.wedding-enquiry-form {
  padding: clamp(1rem, 3vw, 1.35rem) clamp(1.15rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.65rem);
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 170, 106, 0.65) rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}

/* Always-visible scrollbar (WebKit) — matches glass / gold theme */
.wedding-enquiry-form::-webkit-scrollbar {
  width: 9px;
  -webkit-appearance: none;
}

.wedding-enquiry-form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin: 4px 0;
}

.wedding-enquiry-form::-webkit-scrollbar-thumb {
  background: rgba(212, 170, 106, 0.55);
  border-radius: 5px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.wedding-enquiry-form::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 170, 106, 0.78);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.wedding-enquiry-section-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.55rem;
}

.wedding-enquiry-row2 {
  display: grid;
  gap: 0.8rem;
}

@media (min-width: 520px) {
  .wedding-enquiry-row2 {
    grid-template-columns: 1fr 1fr;
  }
}

.wedding-field {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.wedding-enquiry-dialog .wedding-field > span:first-child,
.quick-enquiry-dialog .wedding-field > span:first-child {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.wedding-enquiry-dialog .wedding-field abbr,
.quick-enquiry-dialog .wedding-field abbr {
  text-decoration: none;
  color: var(--gold-light);
}

.wedding-enquiry-dialog .wedding-field input,
.wedding-enquiry-dialog .wedding-field select,
.wedding-enquiry-dialog .wedding-field textarea,
.quick-enquiry-dialog .wedding-field input,
.quick-enquiry-dialog .wedding-field select,
.quick-enquiry-dialog .wedding-field textarea {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wedding-enquiry-dialog .wedding-field input::placeholder,
.wedding-enquiry-dialog .wedding-field textarea::placeholder,
.quick-enquiry-dialog .wedding-field input::placeholder,
.quick-enquiry-dialog .wedding-field textarea::placeholder {
  color: rgba(107, 101, 88, 0.55);
}

.wedding-enquiry-dialog .wedding-field input:focus,
.wedding-enquiry-dialog .wedding-field select:focus,
.wedding-enquiry-dialog .wedding-field textarea:focus,
.quick-enquiry-dialog .wedding-field input:focus,
.quick-enquiry-dialog .wedding-field select:focus,
.quick-enquiry-dialog .wedding-field textarea:focus {
  outline: none;
  border-color: rgba(184, 146, 74, 0.55);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.12);
}

.wedding-enquiry-dialog .wedding-field textarea,
.quick-enquiry-dialog .wedding-field textarea {
  min-height: 4.75rem;
  resize: vertical;
}

.wedding-ceremony-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
}

.wedding-enquiry-dialog .wedding-ceremony-grid label {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.81rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.wedding-ceremony-grid input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--green-deep);
  cursor: pointer;
}

.wedding-field.wedding-enquiry-consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.wedding-field.wedding-enquiry-consent input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--green-deep);
}

.wedding-field.wedding-enquiry-consent span {
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 300;
}

.wedding-enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
}

.wedding-enquiry-dialog .wedding-enquiry-actions .btn-ghost,
.quick-enquiry-dialog .wedding-enquiry-actions .btn-ghost {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.wedding-enquiry-dialog .wedding-enquiry-actions .btn-ghost:hover,
.quick-enquiry-dialog .wedding-enquiry-actions .btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.14);
}

.wedding-enquiry-footnote {
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.04em;
  margin-top: -0.15rem;
  font-weight: 300;
}

@media (prefers-reduced-motion: reduce) {
  .wedding-enquiry-dialog::backdrop {
    transition: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .wedding-enquiry-panel {
    transition: none;
  }

  .quick-enquiry-dialog::backdrop {
    transition: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .quick-enquiry-panel {
    transition: none;
  }
}

/* ─── QUICK ENQUIRY (nav CTA — olive glass, compact) ─── */
.quick-enquiry-dialog .wedding-field > span:first-child {
  color: rgba(255, 255, 255, 0.88);
}

.quick-enquiry-dialog {
  padding: 0.75rem;
  border: none;
  margin: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  background: transparent;
  color: rgba(252, 250, 247, 0.96);
  box-sizing: border-box;
}

.quick-enquiry-dialog:not([open]) {
  display: none;
}

.quick-enquiry-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-enquiry-dialog::backdrop {
  background: rgba(11, 26, 20, 0.56);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  opacity: 0;
  transition: opacity 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quick-enquiry-dialog.is-visible::backdrop {
  opacity: 1;
}

.quick-enquiry-panel {
  position: relative;
  width: min(26rem, 100%);
  max-height: min(88vh, 38rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: rgba(24, 52, 40, 0.55);
  backdrop-filter: blur(28px) saturate(175%);
  -webkit-backdrop-filter: blur(28px) saturate(175%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(18px) scale(0.965);
  transition:
    opacity 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quick-enquiry-dialog.is-visible .quick-enquiry-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.quick-enquiry-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.52),
    rgba(212, 170, 106, 0.42),
    rgba(255, 255, 255, 0.52),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmerBorder 5s ease infinite;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.quick-enquiry-panel__header {
  padding: clamp(1.1rem, 3.5vw, 1.65rem) clamp(1rem, 3.5vw, 1.5rem) 0.85rem;
  padding-right: 3.1rem;
  position: relative;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  z-index: 1;
}

.quick-enquiry-panel__header .label-tag {
  color: rgba(236, 218, 178, 0.96);
  justify-content: flex-start;
  margin-bottom: 0.4rem;
}

.quick-enquiry-panel__header .label-tag::before {
  background: rgba(212, 170, 106, 0.72);
}

.quick-enquiry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.28rem, 3.2vw, 1.72rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.15;
}

.quick-enquiry-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(236, 218, 178, 0.98);
}

.quick-enquiry-lede {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
  margin-top: 0.5rem;
  max-width: 22rem;
  font-weight: 300;
}

.quick-enquiry-dialog .wedding-enquiry-footnote {
  color: rgba(255, 255, 255, 0.72);
}

.quick-enquiry-dialog .wedding-enquiry-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.15rem;
  padding-top: 0.2rem;
}

.quick-enquiry-dialog .wedding-enquiry-actions .btn-primary,
.quick-enquiry-dialog .wedding-enquiry-actions .btn-ghost {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  padding: 0.48rem 1.2rem;
  width: auto;
  flex: 0 0 auto;
  line-height: 1.3;
}

.quick-enquiry-dialog .wedding-enquiry-actions .btn-primary:hover,
.quick-enquiry-dialog .wedding-enquiry-actions .btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184, 146, 74, 0.22);
}

.quick-enquiry-dialog .wedding-enquiry-actions .btn-ghost:hover {
  box-shadow: none;
}

.quick-enquiry-form {
  padding: clamp(0.95rem, 2.8vw, 1.2rem) clamp(1rem, 3.5vw, 1.5rem) clamp(1.1rem, 2.8vw, 1.45rem);
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 170, 106, 0.65) rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}

.quick-enquiry-form::-webkit-scrollbar {
  width: 9px;
  -webkit-appearance: none;
}

.quick-enquiry-form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin: 4px 0;
}

.quick-enquiry-form::-webkit-scrollbar-thumb {
  background: rgba(212, 170, 106, 0.55);
  border-radius: 5px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.quick-enquiry-form::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 170, 106, 0.78);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  animation: fadeInUp 2s ease 1s both;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(184,146,74,0.7), transparent);
  animation: scrollDrop 2.5s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTIONS GENERAL ─── */
section {
  position: relative;
}

/* Scroll-in reveals (CSS only — avoids stacking with GSAP section tweens) */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .section-inner {
    padding: 0 3rem;
  }
}

.section-pad { padding: 8rem 0; }
.section-pad-sm { padding: 6rem 0; }

.label-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.label-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ─── INTRO (minimal editorial + stats rail) ─── */
.intro-section {
  position: relative;
  padding: clamp(4rem, 12vw, 7.5rem) clamp(1.35rem, 5vw, 2.5rem);
  background-color: var(--ivory);
  background-image:
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 52%,
      rgba(13, 32, 25, 0.18) 78%,
      rgba(13, 32, 25, 0.38) 100%
    ),
    url('../images/intro-section-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-bottom: calc(clamp(4rem, 12vw, 7.5rem) + clamp(56px, 10vw, 112px));
}

.intro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 32, 25, 0.94) 0%,
    rgba(13, 32, 25, 0.94) 8%,
    rgba(27, 58, 45, 0.76) 28%,
    rgba(27, 58, 45, 0.78) 52%,
    rgba(27, 58, 45, 0.66) 88%,
    rgba(22, 47, 37, 0.58) 100%
  );
  pointer-events: none;
}

.intro-inner {
  position: relative;
  z-index: 2;
  overflow-x: clip;
  overflow-y: visible;
  box-sizing: border-box;
  width: min(90%, 75rem);
  max-width: 90%;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem)
    clamp(3rem, 7vw, 4.5rem);
  border-radius: clamp(22px, 3vw, 36px);

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);

  border: 1px solid rgba(255, 255, 255, 0.24);

  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.22),
    0 14px 48px rgba(13, 32, 25, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);

  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.intro-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.58),
    rgba(212, 170, 106, 0.48),
    rgba(255, 255, 255, 0.58),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmerBorder 5s ease infinite;
  pointer-events: none;
}

.intro-inner > * {
  position: relative;
  z-index: 1;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 36%);
  grid-template-areas:
    'intro-header intro-stats'
    'intro-copy intro-stats';
  gap: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.intro-header {
  grid-area: intro-header;
  text-align: left;
}

.intro-eyebrow {
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.intro-eyebrow::before {
  background: var(--gold-light);
}

.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.15rem, 5.2vw, 3.35rem);
  font-weight: 400;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 14px rgba(13, 32, 25, 0.35);
}

.intro-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
  text-shadow:
    0 1px 3px rgba(13, 32, 25, 0.45),
    0 0 28px rgba(212, 170, 106, 0.2);
}

.intro-copy {
  grid-area: intro-copy;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 42rem;
}

.intro-copy p {
  font-size: clamp(0.96rem, 1.75vw, 1.06rem);
  line-height: 1.82;
  color: rgba(250, 247, 242, 0.88);
  font-weight: 400;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(13, 32, 25, 0.35);
}

.intro-stats-row {
  grid-area: intro-stats;
  align-self: center;
  margin: 0;
  padding: 0;
  border-top: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.5vw, 0.85rem);
}

.intro-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: clamp(1rem, 2vw, 1.2rem) clamp(0.85rem, 1.5vw, 1rem);
  border-radius: clamp(10px, 1.5vw, 14px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.intro-stat:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(212, 170, 106, 0.28);
  transform: translateY(-2px);
}

.intro-stat::after {
  display: none;
}

.intro-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.03em;
  transition: color 0.25s ease;
  text-shadow: 0 2px 12px rgba(13, 32, 25, 0.3);
}

.intro-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.56);
  line-height: 1.35;
}

.intro-stat--accent .intro-stat-num {
  color: var(--gold-light);
}

.intro-stat:hover .intro-stat-num {
  color: var(--gold-light);
}

.intro-stat--accent:hover .intro-stat-num {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: max(0.625rem, calc(env(safe-area-inset-left, 0px) + 0.625rem));
    padding-right: max(0.625rem, calc(env(safe-area-inset-right, 0px) + 0.625rem));
  }

  .intro-inner {
    width: calc(100vw - max(1.25rem, env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px)));
    max-width: calc(100vw - max(1.25rem, env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px)));
    margin-inline: auto;
    flex-shrink: 0;
    padding-left: clamp(1.35rem, 4.5vw, 2.25rem);
    padding-right: clamp(1.35rem, 4.5vw, 2.25rem);
  }

  .intro-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      'intro-header'
      'intro-copy'
      'intro-stats';
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .intro-header {
    text-align: center;
  }

  .intro-eyebrow {
    justify-content: center;
  }

  .intro-copy {
    max-width: none;
    text-align: center;
  }

  .intro-stats-row {
    align-self: stretch;
    max-width: 28rem;
    margin-inline: auto;
    width: 100%;
  }

  .intro-stat-label {
    overflow-wrap: anywhere;
    word-break: break-word;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 767px) {
  .intro-section {
    overflow-x: clip;
    overflow-y: visible;
    padding-top: max(7.5rem, calc(env(safe-area-inset-top, 0px) + 6.25rem));
  }

  .intro-inner {
    padding: clamp(1.75rem, 5.5vw, 2.25rem)
      clamp(1.5rem, 5.5vw, 1.85rem)
      clamp(2.5rem, 7vw, 3.25rem);
    border-radius: clamp(18px, 4.5vw, 28px);
    background-clip: padding-box;
  }

  .intro-copy,
  .intro-copy p {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .intro-inner {
    padding-left: clamp(1.4rem, 5.5vw, 1.75rem);
    padding-right: clamp(1.4rem, 5.5vw, 1.75rem);
  }

  .intro-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    max-width: none;
  }

  .intro-stat {
    padding: 0.9rem 0.75rem;
  }

  .intro-stat-num {
    font-size: clamp(1.65rem, 6vw, 2rem);
  }

  .intro-stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

.authority-section {
  --authority-blend-overlap: clamp(104px, 15vw, 188px);
  position: relative;
  background-color: #14281f;
  margin-top: calc(var(--authority-blend-overlap) * -1);
  padding: calc(clamp(3.5rem, 9vw, 6rem) + var(--authority-blend-overlap))
    clamp(1.25rem, 4vw, 2rem)
    clamp(3.5rem, 9vw, 6rem);
  overflow: hidden;
}

.authority-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.85) calc(var(--authority-blend-overlap) * 0.35),
    #000 calc(var(--authority-blend-overlap) * 0.65),
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.85) calc(var(--authority-blend-overlap) * 0.35),
    #000 calc(var(--authority-blend-overlap) * 0.65),
    #000 100%
  );
}

.authority-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.authority-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(20, 40, 31, 0.62) 0%,
    rgba(27, 58, 45, 0.52) 45%,
    rgba(20, 40, 31, 0.68) 100%
  );
}

.authority-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(212, 170, 106, 0.09) 0%, transparent 55%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .authority-video-wrap {
    display: none;
  }
}

.authority-shell {
  position: relative;
  z-index: 3;
  max-width: 44rem;
  margin: 0 auto;
}

.authority-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 5vw, 3rem);
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.authority-logo-slot {
  flex: 0 0 auto;
  line-height: 0;
  opacity: 0.94;
  transition: opacity 0.35s ease;
  width: clamp(168px, 34vw, 248px);
  height: clamp(126px, 25.5vw, 186px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.authority-logo-slot:hover {
  opacity: 1;
}

.authority-logo-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.35));
}

.authority-logo-slot--highway .authority-logo-img,
.authority-logo-slot--bhandari .authority-logo-img {
  mix-blend-mode: screen;
}

.authority-logo-sep {
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: clamp(108px, 22vw, 168px);
  max-height: 186px;
  background: linear-gradient(180deg, transparent 5%, rgba(212, 170, 106, 0.55) 50%, transparent 95%);
}

.authority-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: none;
}

.authority-main::after {
  content: '';
  display: block;
  width: min(20rem, 85%);
  height: 1px;
  margin-top: clamp(2rem, 5vw, 2.75rem);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.authority-col {
  width: 100%;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.authority-col--copy {
  padding: 0;
}

.authority-rule {
  width: min(16rem, 72%);
  height: 1px;
  margin: clamp(1.75rem, 4vw, 2.25rem) auto;
  border: none;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 170, 106, 0.45), transparent);
}

.authority-col--people {
  padding: 0;
}

.authority-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1.65vw, 1.02rem);
  line-height: 1.85;
  font-weight: 300;
  margin: 0;
  text-align: center;
}

.authority-col--copy .authority-text + .authority-text {
  margin-top: clamp(1rem, 2.5vw, 1.35rem);
}

.authority-text--tagline {
  margin-top: clamp(1.75rem, 4vw, 2.5rem) !important;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.88);
}

.authority-text strong {
  color: var(--gold-light);
  font-weight: 500;
}

.authority-names {
  text-align: center;
}

.authority-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
}

.authority-name--secondary {
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
}

.authority-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 170, 106, 0.88);
  margin-top: 0.45rem;
}

.authority-names-gap {
  margin-top: 0;
}

.authority-tagline {
  margin: clamp(2rem, 5vw, 2.75rem) auto 0;
  padding: 0 0 clamp(0.5rem, 1.5vw, 1rem);
  max-width: 44rem;
  border: none;
  text-align: center;
}

.authority-tagline p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.03em;
  line-height: 1.45;
  position: relative;
}

.authority-tagline p::before,
.authority-tagline p::after {
  content: '';
  display: block;
  width: clamp(40px, 10vw, 72px);
  height: 1px;
  margin: 0 auto 1rem;
  background: linear-gradient(90deg, transparent, rgba(212, 170, 106, 0.45), transparent);
}

.authority-tagline p::after {
  margin: clamp(1.15rem, 2.5vw, 1.5rem) auto clamp(2rem, 5.5vw, 3.75rem);
}

@media (max-width: 768px) {
  .authority-logos {
    flex-direction: column;
    gap: 1.35rem;
  }

  .authority-logo-sep {
    width: min(11rem, 70%);
    height: 1px;
    min-height: 0;
    max-height: none;
    align-self: center;
    background: linear-gradient(90deg, transparent, rgba(212, 170, 106, 0.45), transparent);
  }

  .authority-logo-slot {
    width: clamp(150px, 62vw, 220px);
    height: clamp(112px, 46vw, 165px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .authority-logo-slot {
    transition: none;
  }
}

/* ─── VILLAS ─── */
.villas-section {
  position: relative;
  background: var(--cream);
  padding-top: clamp(5rem, 12vw, 8rem);
  padding-bottom: clamp(4rem, 10vw, 6rem);
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.villas-section > .section-inner {
  position: relative;
  z-index: 2;
}

/* Soft drifting light/mist — no line grid */
.villas-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.villas-texture-bg {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
  opacity: 0.75;
}

.villas-texture-bg--mist-a {
  width: clamp(340px, 72vmin, 720px);
  height: clamp(280px, 58vmin, 600px);
  left: clamp(-22%, -8rem, -4rem);
  top: clamp(10%, 12vh, 22%);
  background: radial-gradient(
    ellipse 72% 64% at 45% 48%,
    rgba(61, 112, 87, 0.38) 0%,
    rgba(44, 84, 64, 0.14) 48%,
    transparent 74%
  );
  animation: villasMistFloatA 41s ease-in-out infinite alternate;
}

.villas-texture-bg--mist-b {
  width: clamp(320px, 62vmin, 640px);
  height: clamp(360px, 68vmin, 700px);
  right: clamp(-26%, -9rem, -5rem);
  top: clamp(38%, 42vh, 58%);
  background: radial-gradient(
    ellipse 66% 70% at 52% 44%,
    rgba(212, 170, 106, 0.28) 0%,
    rgba(184, 146, 74, 0.1) 52%,
    transparent 76%
  );
  opacity: 0.72;
  animation: villasMistFloatB 48s ease-in-out infinite alternate-reverse;
}

.villas-texture-bg--mist-c {
  width: clamp(400px, 88vmin, 900px);
  height: clamp(240px, 42vmin, 480px);
  left: 18%;
  bottom: clamp(-8%, -3rem, -1rem);
  background: radial-gradient(
    ellipse 78% 58% at 50% 55%,
    rgba(232, 223, 208, 0.55) 0%,
    rgba(245, 239, 228, 0.15) 45%,
    transparent 72%
  );
  filter: blur(88px);
  opacity: 0.5;
  animation: villasMistFloatC 56s ease-in-out infinite alternate;
}

@keyframes villasMistFloatA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(6%, 7%, 0) scale(1.09);
  }
}

@keyframes villasMistFloatB {
  0% {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  100% {
    transform: translate3d(-7%, 5%, 0) scale(1.08);
  }
}

@keyframes villasMistFloatC {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(4%, -5%, 0) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .villas-texture-bg--mist-a,
  .villas-texture-bg--mist-b,
  .villas-texture-bg--mist-c {
    animation: none;
  }

  .villas-texture-bg--mist-a {
    transform: translate3d(2%, 2%, 0);
    opacity: 0.45;
  }

  .villas-texture-bg--mist-b {
    transform: translate3d(-2%, 1%, 0);
    opacity: 0.38;
  }

  .villas-texture-bg--mist-c {
    transform: translate3d(0, -1%, 0);
    opacity: 0.32;
  }
}

.villas-header {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 4.5rem);
}

.villas-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.villas-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.villas-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2vw, 1rem);
  line-height: 1.9;
  color: var(--text-muted);
}

/* Villa types — alternating editorial rows (villas page) */
.villa-types {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
  max-width: min(1120px, 100%);
  margin: 0 auto;
}

.villa-type-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(27, 58, 45, 0.1);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(27, 58, 45, 0.08);
}

@media (min-width: 900px) {
  .villa-type-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: clamp(300px, 34vw, 380px);
  }

  .villa-type-card--reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .villa-type-card--reverse .villa-type-card__media {
    order: 2;
  }

  .villa-type-card--reverse .villa-type-card__body {
    order: 1;
  }
}

.villa-type-card__media {
  position: relative;
  min-height: clamp(220px, 42vw, 320px);
  overflow: hidden;
  background: var(--green-deep);
}

.villa-type-card__slider-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  outline: none;
}

.villa-type-card__slider-track {
  display: flex;
  height: 100%;
  min-height: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.villa-type-card__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
}

.villa-type-card__slide img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 42vw, 320px);
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .villa-type-card__media {
    min-height: 100%;
  }

  .villa-type-card__slide img {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
}

.villa-type-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 36, 28, 0.12) 0%,
    rgba(15, 36, 28, 0.38) 100%
  );
}

.villa-type-card__slider-btn {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-deep);
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(27, 58, 45, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.villa-type-card__slider-btn--prev {
  left: 0.65rem;
}

.villa-type-card__slider-btn--next {
  right: 0.65rem;
}

.villa-type-card__slider-btn:hover:not(:disabled) {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.villa-type-card__slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.villa-type-card__slider-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.villa-type-card__slider-dot {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.villa-type-card__slider-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.45rem;
  height: 0.45rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.villa-type-card__slider-dot.is-active::after {
  background: var(--gold-light);
  transform: translate(-50%, -50%) scale(1.2);
}

.villa-type-card__eyebrow {
  position: absolute;
  z-index: 5;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(27, 58, 45, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.villa-type-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(250, 247, 242, 0.95);
}

.villa-type-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.villa-type-card__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.villa-type-card__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 28rem;
}

.villa-type-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 520px) {
  .villa-type-card__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
  }
}

.villa-type-card__features li {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.villa-type-card__features li::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.villa-type-card--featured {
  border-color: rgba(184, 146, 74, 0.35);
  box-shadow: 0 20px 56px rgba(27, 58, 45, 0.14);
}

.villa-type-card--featured .villa-type-card__body {
  background: var(--green-deep);
}

.villa-type-card--featured .villa-type-card__title {
  color: var(--white);
}

.villa-type-card--featured .villa-type-card__title em {
  color: var(--gold-light);
}

.villa-type-card--featured .villa-type-card__desc {
  color: rgba(255, 255, 255, 0.72);
}

.villa-type-card--featured .villa-type-card__features li {
  color: rgba(255, 255, 255, 0.62);
}

.villa-type-card--featured .villa-type-card__features li::before {
  background: var(--gold-light);
}

/* Villa floor plans (blueprint gallery) */
.villa-plans-section {
  margin-top: clamp(3rem, 8vw, 5rem);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(27, 58, 45, 0.04) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(rgba(27, 58, 45, 0.04) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(165deg, var(--cream) 0%, var(--ivory) 45%, var(--cream-dark) 100%);
  border: 1px solid rgba(184, 146, 74, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 20px 56px rgba(27, 58, 45, 0.08);
}

.villa-plans-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
}

.villa-plans-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.villa-plans-header h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-mid);
}

.villa-plans-header > p:last-of-type {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

.villa-plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2rem);
  max-width: min(1200px, 100%);
  margin: 0 auto;
}

@media (min-width: 900px) {
  .villa-plans-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.villa-plan-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(27, 58, 45, 0.12);
  box-shadow: 0 14px 40px rgba(27, 58, 45, 0.1);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.villa-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(27, 58, 45, 0.14);
}

.villa-plan-card--featured {
  border-color: rgba(184, 146, 74, 0.45);
  box-shadow: 0 18px 48px rgba(27, 58, 45, 0.12), 0 0 0 1px rgba(184, 146, 74, 0.15);
}

.villa-plan-card__frame {
  grid-row: 1;
  grid-column: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.villa-plan-card__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.75;
}

.villa-plan-card__corner--tl {
  top: 0.65rem;
  left: 0.65rem;
  border-width: 2px 0 0 2px;
}

.villa-plan-card__corner--tr {
  top: 0.65rem;
  right: 0.65rem;
  border-width: 2px 2px 0 0;
}

.villa-plan-card__corner--bl {
  bottom: 0.65rem;
  left: 0.65rem;
  border-width: 0 0 2px 2px;
}

.villa-plan-card__corner--br {
  bottom: 0.65rem;
  right: 0.65rem;
  border-width: 0 2px 2px 0;
}

.villa-plan-card__preview {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: linear-gradient(180deg, #f8f6f0 0%, #eeeadf 100%);
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
}

.villa-plan-card__preview img {
  width: 100%;
  height: auto;
  min-height: clamp(200px, 32vw, 280px);
  max-height: clamp(220px, 36vw, 320px);
  object-fit: contain;
  object-position: center;
  display: block;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  box-sizing: border-box;
  transition: transform 0.4s ease;
}

.villa-plan-card:hover .villa-plan-card__preview img {
  transform: scale(1.02);
}

.villa-plan-card__meta {
  grid-row: 2;
  grid-column: 1;
  position: relative;
  z-index: 3;
  padding: clamp(1.1rem, 3vw, 1.4rem) clamp(1.15rem, 3vw, 1.5rem) clamp(1.25rem, 3vw, 1.5rem);
  border-top: 1px solid rgba(27, 58, 45, 0.08);
  background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
}

.villa-plan-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.villa-plan-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.villa-plan-card__note {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.villa-plan-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
}

.villa-plan-card__zoom {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--green-deep);
  background: var(--green-deep);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.villa-plan-card__zoom:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.villa-plan-card__pdf {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 146, 74, 0.5);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.villa-plan-card__pdf:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Floor plan lightbox */
.villa-plan-lightbox {
  padding: 0;
  border: none;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  background: transparent;
}

.villa-plan-lightbox:not([open]) {
  display: none;
}

.villa-plan-lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.villa-plan-lightbox::backdrop {
  background: rgba(15, 36, 28, 0.82);
  backdrop-filter: blur(6px);
}

.villa-plan-lightbox__panel {
  position: relative;
  width: min(94vw, 1100px);
  max-height: 92vh;
  margin: auto;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: 18px;
  background: var(--ivory);
  border: 1px solid rgba(184, 146, 74, 0.35);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.villa-plan-lightbox__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.villa-plan-lightbox__close:hover {
  background: var(--gold);
}

.villa-plan-lightbox__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-right: 2.5rem;
}

.villa-plan-lightbox__header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 400;
  color: var(--green-deep);
  margin: 0;
}

.villa-plan-lightbox__pdf {
  font-size: 0.58rem;
  padding: 0.5rem 1rem;
}

.villa-plan-lightbox__viewport {
  overflow: auto;
  border-radius: 12px;
  background: #f5f2ea;
  border: 1px dashed rgba(27, 58, 45, 0.15);
  -webkit-overflow-scrolling: touch;
}

.villa-plan-lightbox__viewport img {
  width: 100%;
  height: auto;
  display: block;
  padding: 0.5rem;
  box-sizing: border-box;
}

.villas-reservation-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.villas-reservation-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 3.6vw, 2.25rem);
  font-weight: 300;
  font-style: normal;
  color: var(--green-deep);
  line-height: 1.25;
  margin: 0;
  max-width: 20rem;
}

.villas-reservation-cta__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-mid);
}

@media (prefers-reduced-motion: reduce) {
  .villa-type-card__slider-track {
    transition: none;
  }
}

/* Scroll stack */
.villas-stack {
  position: relative;
  margin-top: 0;
}

.villas-stack-inner {
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
}

.villa-stack-item {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: clamp(72vh, 82vh, 90vh);
}

.villa-stack-item:last-child {
  min-height: auto;
  padding-bottom: clamp(2rem, 6vw, 4rem);
}

.villa-stack-item:last-child .villa-card-sticky {
  position: relative;
  top: auto;
}

.villa-card-sticky {
  position: sticky;
  top: clamp(5.5rem, 14vh, 8.5rem);
  align-self: flex-start;
  width: 100%;
}

@media (max-width: 768px) {
  .villa-stack-item {
    min-height: auto;
    padding-bottom: clamp(1.5rem, 5vw, 2.5rem);
  }

  .villa-card-sticky {
    position: relative;
    top: auto;
  }

  .villas-stack-inner .villa-card:hover {
    transform: none;
  }
}

.villa-stack-item:nth-child(1) .villa-card-sticky {
  z-index: 1;
}

.villa-stack-item:nth-child(2) .villa-card-sticky {
  z-index: 2;
}

.villa-stack-item:nth-child(3) .villa-card-sticky {
  z-index: 3;
}

.villa-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  border: 1px solid var(--cream-dark);
  border-radius: 18px;
  background-color: var(--ivory);
  box-shadow: 0 20px 56px rgba(27, 58, 45, 0.12);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
  transform-origin: center top;
  will-change: transform, opacity;
}

/* Editorial split: copy (glass) + image — GSAP still targets .villa-card only */
.villa-card__layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  border-radius: inherit;
  overflow: hidden;
  min-height: clamp(300px, 46vw, 420px);
}

@media (min-width: 768px) {
  .villa-card__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: clamp(320px, 40vw, 440px);
  }
}

.villa-card__copy {
  padding: clamp(2rem, 5vw, 3rem) clamp(2rem, 5vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  border-right: none;
  border-bottom: 1px solid rgba(27, 58, 45, 0.08);
}

@media (min-width: 768px) {
  .villa-card__copy {
    border-right: 1px solid rgba(27, 58, 45, 0.08);
    border-bottom: none;
  }

  .villa-card.featured .villa-card__copy {
    border-right-color: rgba(255, 255, 255, 0.14);
  }
}

.villa-card.featured .villa-card__copy {
  background: var(--green-deep);
}

.villa-card__media {
  position: relative;
  min-height: clamp(200px, 42vw, 280px);
  overflow: hidden;
}

.villa-card__media[data-villa-media-slider] .villa-type-card__slider-viewport {
  position: absolute;
  inset: 0;
}

.villa-card__media[data-villa-media-slider] .villa-type-card__slide img {
  min-height: clamp(200px, 48vw, 280px);
}

@media (min-width: 768px) {
  .villa-card__media {
    min-height: auto;
  }

  .villa-card__media[data-villa-media-slider] .villa-type-card__slide img {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .villa-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(13, 32, 25, 0.16) 0%,
      transparent 32%
    );
  }

  .villa-card.featured .villa-card__media::after {
    background: linear-gradient(
      90deg,
      rgba(27, 58, 45, 0.45) 0%,
      transparent 38%
    );
  }
}

.villa-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .villa-card__media {
    order: -1;
    min-height: clamp(200px, 48vw, 260px);
    border-bottom: 1px solid rgba(27, 58, 45, 0.08);
  }

  .villa-card.featured .villa-card__media {
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

  .villa-card__copy {
    border-bottom: none;
  }
}

.villas-stack-inner .villa-card:hover {
  transform: none;
  box-shadow: 0 26px 64px rgba(27, 58, 45, 0.18);
  border-color: rgba(184, 146, 74, 0.45);
}

.villa-card.featured {
  background-color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.villas-stack-inner .villa-card.featured:hover {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.35);
  border-color: rgba(212, 170, 106, 0.35);
}

.villa-badge {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.4rem;
  display: block;
}

.villa-card.featured .villa-badge {
  color: var(--gold-light);
}

.villa-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 4.5vw, 2.35rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 1.4rem;
}

.villa-card.featured .villa-type {
  color: var(--white);
}

.villa-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.villa-card.featured .villa-desc {
  color: rgba(255, 255, 255, 0.65);
}

.villa-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.villa-features li {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.villa-features li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.villa-card.featured .villa-features li {
  color: rgba(255, 255, 255, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .villa-card {
    will-change: auto;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Image placeholders (villas detail page) */
.villa-media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: clamp(200px, 42vw, 280px);
  padding: 1.5rem;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(232, 223, 208, 0.95) 0%, rgba(245, 239, 228, 0.85) 45%, rgba(232, 223, 208, 0.75) 100%);
  border: 1px dashed rgba(27, 58, 45, 0.18);
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.villa-media-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--green-deep);
  font-weight: 400;
}

@media (min-width: 768px) {
  .villa-card__media .villa-media-placeholder {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
}

.villa-card.featured .villa-media-placeholder {
  background:
    linear-gradient(145deg, rgba(44, 84, 64, 0.55) 0%, rgba(27, 58, 45, 0.42) 50%, rgba(22, 47, 37, 0.5) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
}

.villa-card.featured .villa-media-placeholder span {
  color: rgba(255, 255, 255, 0.88);
}

.villas-enquiry-section {
  padding: clamp(3.5rem, 9vw, 5.5rem) clamp(1.35rem, 5vw, 2.5rem);
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 55%, var(--cream-dark) 100%);
  text-align: center;
}

.villas-enquiry-inner {
  max-width: min(52rem, 100%);
  margin: 0 auto;
}

.villas-enquiry-header {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.villas-enquiry-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.2;
  margin: 0.65rem 0 1.1rem;
}

.villas-enquiry-section h2 em {
  font-style: italic;
  font-weight: 400;
}

.villas-enquiry-header p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto;
}

.villas-stay-form {
  text-align: left;
}

.villas-stay-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.villas-enquiry-section .btn-ghost {
  color: var(--green-deep);
  border-color: rgba(27, 58, 45, 0.32);
  background: rgba(255, 255, 255, 0.55);
}

.villas-enquiry-section .btn-ghost:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(27, 58, 45, 0.88);
}

/* ─── WEDDING & LEISURE ─── */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
}

@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
}

.split-panel {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: opacity 0.6s ease, transform 12s ease;
  pointer-events: none;
}

.split-panel:hover::before {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .split-panel:hover::before {
    transform: none;
  }
}

.split-panel > .split-panel-eyebrow,
.split-panel > h3,
.split-panel > p,
.split-panel > div {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .split-panel {
    padding: 7rem 5rem;
  }
}

.split-panel.wedding {
  background-color: var(--green-deep);
}

.split-panel.wedding::before {
  background-image:
    linear-gradient(
      155deg,
      rgba(17, 48, 36, 0.92) 0%,
      rgba(14, 38, 30, 0.78) 45%,
      rgba(11, 32, 25, 0.88) 100%
    ),
    url('../images/split/wedding-events-bg.png');
}

.split-panel.leisure {
  background-color: var(--charcoal);
}

.split-panel.leisure::before {
  background-image:
    linear-gradient(
      100deg,
      rgba(14, 14, 16, 0.72) 0%,
      rgba(10, 10, 12, 0.48) 38%,
      rgba(8, 8, 10, 0.28) 62%,
      rgba(8, 8, 10, 0.4) 100%
    ),
    url('../images/split/leisure-stays-bg.png');
}

.split-panel.leisure p {
  color: rgba(255, 255, 255, 0.78);
}

.split-panel-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 1.4rem;
}

.split-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.split-panel h3 em { font-style: italic; color: var(--gold-light); }

.split-panel p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.split-panel .reveal-delay-3 {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 400px;
}

.split-panel .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  padding: 0.72rem 1.35rem;
}

/* ─── BHANDARI CATERING VIDEOS ─── */
.menu-catering-videos {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.55) 0%, var(--ivory) 100%);
}

.menu-catering-videos__head {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.menu-catering-videos__lede {
  margin-top: 1rem;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(27, 58, 45, 0.72);
  max-width: 36rem;
}

.menu-catering-videos__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.menu-catering-videos__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.menu-catering-videos__cell {
  margin: 0;
  aspect-ratio: 9 / 16;
  border-radius: clamp(8px, 1vw, 12px);
  overflow: hidden;
  border: 1px solid rgba(27, 58, 45, 0.1);
  background: var(--green-deep);
  box-shadow: 0 14px 36px rgba(27, 58, 45, 0.1);
}

.menu-catering-videos__media {
  position: relative;
  width: 100%;
  height: 100%;
}

.menu-catering-videos__el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity 0.45s ease;
  background: var(--green-deep);
}

.menu-catering-videos__media.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    rgba(27, 58, 45, 0.15) 0%,
    rgba(212, 170, 106, 0.2) 45%,
    rgba(27, 58, 45, 0.15) 90%
  );
  background-size: 200% 100%;
  animation: catering-video-shimmer 1.4s ease-in-out infinite;
}

@keyframes catering-video-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.menu-catering-videos__play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background: linear-gradient(
    180deg,
    rgba(6, 15, 12, 0.02) 0%,
    rgba(6, 15, 12, 0.38) 100%
  );
  transition: background 0.25s ease;
}

.menu-catering-videos__play:hover {
  background: linear-gradient(
    180deg,
    rgba(6, 15, 12, 0.06) 0%,
    rgba(6, 15, 12, 0.48) 100%
  );
}

.menu-catering-videos__play:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: -4px;
}

.menu-catering-videos__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.75rem, 8vw, 3.35rem);
  height: clamp(2.75rem, 8vw, 3.35rem);
  border-radius: 50%;
  color: var(--green-deep);
  background: rgba(250, 247, 242, 0.94);
  box-shadow: 0 10px 32px rgba(27, 58, 45, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-catering-videos__play:hover .menu-catering-videos__play-icon {
  transform: scale(1.07);
  box-shadow: 0 12px 36px rgba(27, 58, 45, 0.34);
}

.catering-video-dialog {
  width: min(26rem, 92vw);
  max-width: 26rem;
  padding: 0;
  border: none;
  border-radius: clamp(12px, 2vw, 16px);
  overflow: hidden;
  background: var(--green-deep);
  box-shadow: 0 28px 80px rgba(6, 15, 12, 0.55);
}

.catering-video-dialog::backdrop {
  background: rgba(6, 15, 12, 0.78);
  backdrop-filter: blur(4px);
}

.catering-video-dialog__inner {
  position: relative;
}

.catering-video-dialog__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--green-deep);
  background: rgba(250, 247, 242, 0.94);
  box-shadow: 0 4px 16px rgba(27, 58, 45, 0.2);
}

.catering-video-dialog__close:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.catering-video-dialog__el {
  display: block;
  width: 100%;
  max-height: min(82vh, 720px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.catering-video-dialog__el.is-landscape {
  aspect-ratio: 16 / 9;
  max-height: min(78vh, 680px);
}

.catering-video-dialog.is-landscape {
  width: min(52rem, 94vw);
  max-width: 52rem;
}

@media (max-width: 900px) {
  .menu-catering-videos__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .menu-catering-videos__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .menu-catering-videos__cell {
    border-radius: 8px;
  }
}

/* ─── BHANDARI / DINING (editorial split) ─── */
.dining-section {
  position: relative;
  background: var(--ivory);
  padding: clamp(6rem, 14vw, 9.5rem) 0;
  overflow: hidden;
}

.dining-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(88vw, 960px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(27, 58, 45, 0.08) 22%,
    rgba(27, 58, 45, 0.08) 78%,
    transparent
  );
  pointer-events: none;
}

.dining-editorial {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3rem);
  align-items: start;
}

@media (min-width: 900px) {
  .dining-editorial {
    grid-template-columns: minmax(0, 1.12fr) 1px minmax(0, 0.82fr);
    column-gap: clamp(2.25rem, 4.5vw, 3.75rem);
    row-gap: 0;
    align-items: stretch;
  }
}

.dining-editorial__main {
  width: 100%;
  min-width: 0;
  padding-top: 0.15rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.dining-eyebrow {
  margin-bottom: 1.35rem;
}

.dining-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.12;
  margin-bottom: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}

.dining-heading em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.dining-gallery {
  --dining-gallery-duration: 5s;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.dining-gallery__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: clamp(12rem, 22vw, 17rem);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(27, 58, 45, 0.1);
  box-shadow: 0 18px 48px rgba(27, 58, 45, 0.08);
  background: var(--cream);
  isolation: isolate;
}

.dining-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  z-index: 0;
}

.dining-gallery__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.dining-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dining-gallery__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(27, 58, 45, 0.04) 0%,
    rgba(27, 58, 45, 0.12) 100%
  );
  z-index: 1;
}

.dining-gallery__nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-deep);
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(27, 58, 45, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.dining-gallery__nav--prev {
  left: 0.75rem;
}

.dining-gallery__nav--next {
  right: 0.75rem;
}

.dining-gallery__nav:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.dining-gallery__nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.dining-gallery__progress {
  margin-top: 0.75rem;
  height: 2px;
  background: rgba(27, 58, 45, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.dining-gallery__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: inherit;
}

.dining-gallery.is-playing .dining-gallery__progress-bar {
  animation: diningGalleryProgress var(--dining-gallery-duration) linear forwards;
}

@keyframes diningGalleryProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.dining-gallery__dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.dining-gallery__dot {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.dining-gallery__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(27, 58, 45, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.dining-gallery__dot.is-active::after {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.15);
}

.dining-gallery__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .dining-gallery__slide {
    transition: none;
  }

  .dining-gallery__progress,
  .dining-gallery__dots {
    display: none;
  }

  .dining-gallery.is-playing .dining-gallery__progress-bar {
    animation: none;
  }
}

.dining-actions {
  margin-top: 1.35rem;
}

.btn-dining {
  letter-spacing: 0.22em;
  font-size: 0.62rem;
  font-weight: 500;
  padding: 1rem 1.85rem;
}

.dining-editorial__divider {
  opacity: 1;
  border-radius: 1px;
}

@media (min-width: 900px) {
  .dining-editorial__divider {
    width: 1px;
    height: auto;
    min-height: 100%;
    align-self: stretch;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(27, 58, 45, 0.11) 10%,
      rgba(27, 58, 45, 0.16) 48%,
      rgba(27, 58, 45, 0.11) 90%,
      transparent 100%
    );
  }
}

@media (max-width: 899px) {
  .dining-editorial__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(27, 58, 45, 0.12) 18%,
      rgba(27, 58, 45, 0.18) 50%,
      rgba(27, 58, 45, 0.12) 82%,
      transparent 100%
    );
  }
}

.dining-editorial__rail {
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem;
}

@media (min-width: 900px) {
  .dining-editorial__rail {
    padding-top: 0.35rem;
  }
}

.dining-offering {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.15rem 1.35rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  border-bottom: 1px solid rgba(27, 58, 45, 0.07);
  transition: border-color 0.35s ease, padding-left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dining-offering:first-child {
  padding-top: 0;
}

.dining-offering:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 900px) {
  .dining-offering:hover {
    padding-left: 0.35rem;
    border-color: rgba(184, 146, 74, 0.28);
  }
}

.dining-offering__index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(184, 146, 74, 0.5);
  line-height: 1.25;
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
  transition: color 0.35s ease;
}

.dining-offering:hover .dining-offering__index {
  color: var(--gold);
}

.dining-offering__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.12rem, 2.1vw, 1.38rem);
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.38rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.dining-offering__desc {
  font-size: 0.8125rem;
  line-height: 1.74;
  color: var(--text-muted);
  font-weight: 300;
}

@media (prefers-reduced-motion: reduce) {
  .dining-offering {
    transition: border-color 0.35s ease;
  }

  .dining-offering:hover {
    padding-left: 0;
  }
}

/* ─── AMENITIES ─── */
.amenities-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: #060f0c;
}

.amenities-section__gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    -45deg,
    #060f0c,
    #0e1f18,
    #1b3a2d,
    #2d5a47,
    #1b3a2d,
    #0e1f18,
    rgba(184, 146, 74, 0.55),
    #3d706f,
    #1b3a2d,
    #0c1813
  );
  background-size: 400% 400%;
  animation: amenities-gradient-shift 16s ease-in-out infinite;
}

@keyframes amenities-gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .amenities-section__gradient {
    animation: none;
    background: linear-gradient(
      152deg,
      #060f0c 0%,
      #0e1f18 32%,
      #1b3a2d 52%,
      #0c1813 100%
    );
    background-size: 100% 100%;
  }
}

.amenities-section .section-inner,
.amenities-section .amenities-carousel-wrap {
  position: relative;
  z-index: 1;
}

.amenities-header { margin-bottom: 4rem; }

.amenities-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.amenities-header h2 em { font-style: italic; color: var(--gold-light); }

.amenities-carousel-wrap {
  padding: 0 clamp(1rem, 4vw, 3rem);
  max-width: 100%;
  box-sizing: border-box;
}

.amenities-scroll-container {
  overflow-x: auto;
  /* Do not use overflow-y: hidden here — it clips card bottoms & shadows.
     Scrollbars are hidden below; overflow-y computes to auto when x is auto,
     but with full-height content no vertical bar appears. */
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  --amenities-edge-fade: clamp(2rem, 8vw, 5rem);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--amenities-edge-fade),
    #000 calc(100% - var(--amenities-edge-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--amenities-edge-fade),
    #000 calc(100% - var(--amenities-edge-fade)),
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.amenities-scroll-container::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.amenities-scroll-container:active { cursor: grabbing; }

.amenities-track {
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 0.5rem 0 clamp(1rem, 2.5vw, 1.75rem);
  width: max-content;
}

.amenity-card {
  width: clamp(280px, 28vw, 320px);
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 14px;
  perspective: 1100px;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.amenity-card:focus-visible {
  box-shadow: 0 0 0 2px rgba(212, 170, 106, 0.65);
  border-radius: 15px;
}

.amenity-card-inner {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: clamp(360px, 46vh, 440px);
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 14px;
  transform: rotateY(180deg);
}

/* Tap-to-flip: phones are excluded from hover/fine-pointer block below */
.amenity-card.is-flipped .amenity-card-inner {
  transform: rotateY(0deg);
}

.amenity-card.is-flipped .amenity-card-front {
  border-color: rgba(212, 170, 106, 0.45);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
}

@media (hover: hover) and (pointer: fine) {
  .amenity-card:hover .amenity-card-inner,
  .amenity-card:focus-within .amenity-card-inner {
    transform: rotateY(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .amenity-card-inner {
    transition: none;
  }

  .amenity-card:hover .amenity-card-inner,
  .amenity-card:focus-within .amenity-card-inner,
  .amenity-card.is-flipped .amenity-card-inner {
    transform: none;
  }

  .amenity-card-front {
    display: none;
  }

  .amenity-card-back {
    transform: none;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  }
}

.amenity-card-face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.amenity-card-front {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  padding: clamp(2rem, 3vw, 2.6rem) clamp(1.75rem, 2.5vw, 2.15rem);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .amenity-card:hover .amenity-card-front {
    border-color: rgba(212, 170, 106, 0.45);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.06) 100%
    );
  }
}

.amenity-card-back {
  transform: rotateY(180deg);
  border: 1px solid rgba(212, 170, 106, 0.35);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
}

.amenity-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amenity-card-back::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    175deg,
    rgba(13, 32, 25, 0.12) 0%,
    rgba(13, 32, 25, 0.45) 100%
  );
}

.amenity-icon {
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1;
  opacity: 0.95;
}

.amenity-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.38rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.amenity-desc {
  font-size: 0.84rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}

/* ─── EXPERIENCES ─── */
.experiences-section {
  background: var(--cream);
  padding: 8rem 0;
  /* Clear fixed floating nav on inner pages (no hero) */
  padding-top: max(8rem, calc(env(safe-area-inset-top, 0px) + 6.5rem));
}

.experiences-header { text-align: center; margin-bottom: 5rem; }

.experiences-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.experiences-header h2 em { font-style: italic; color: var(--gold); }

.experiences-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2vw, 0.95rem);
  line-height: 1.9;
  color: var(--text-muted);
}

.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--cream-dark);
}

@media (min-width: 768px) {
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .experiences-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.exp-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 0;
  padding: 0;
  cursor: default;
  transition: transform 0.4s ease;
}

.exp-card:hover {
  transform: translateY(-4px);
}

.exp-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--green-deep);
  background-image: var(--exp-img, none);
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.exp-card:hover .exp-card-media {
  transform: scale(1.06);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 36, 28, 0.55) 0%,
    rgba(15, 36, 28, 0.25) 40%,
    rgba(15, 36, 28, 0.15) 70%,
    rgba(15, 36, 28, 0.45) 100%
  );
  transition: opacity 0.35s ease;
}

.exp-card:hover .exp-card-overlay {
  opacity: 0.7;
}

.exp-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: 0;
  padding: 2.8rem 2rem;
}

.exp-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(232, 196, 138, 0.85);
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .exp-card-media {
    transition: none;
  }

  .exp-card:hover .exp-card-media {
    transform: none;
  }
}

/* ─── GALLERY (cinematic showcase + thumb rail) ─── */
.gallery-section {
  background: var(--charcoal);
  padding: clamp(6rem, 14vw, 9rem) 0 clamp(4rem, 10vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
  radial-gradient(ellipse 55% 45% at 18% 62%, rgba(212, 170, 106, 0.07) 0%, transparent 70%),
  radial-gradient(ellipse 40% 35% at 88% 28%, rgba(27, 58, 45, 0.35) 0%, transparent 72%);
  pointer-events: none;
}

.gallery-section-inner {
  position: relative;
  z-index: 1;
}

.gallery-intro .gallery-intro-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.gallery-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.15rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gallery-intro-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.gallery-intro-lede {
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(0.9rem, 1.8vw, 0.96rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.82;
  font-weight: 300;
}

.gallery-showcase {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
}

.gallery-showcase__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  grid-template-rows: auto auto;
  gap: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
  text-align: left;
}

.gallery-showcase__stage {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.gallery-showcase__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: clamp(10px, 1.4vw, 16px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: #0f1714;
}

.gallery-showcase__corner {
  position: absolute;
  width: clamp(28px, 4vw, 42px);
  height: clamp(28px, 4vw, 42px);
  z-index: 4;
  pointer-events: none;
  opacity: 0.85;
}

.gallery-showcase__corner::before,
.gallery-showcase__corner::after {
  content: '';
  position: absolute;
  background: var(--gold-light);
}

.gallery-showcase__corner--tl {
  top: clamp(0.85rem, 2vw, 1.25rem);
  left: clamp(0.85rem, 2vw, 1.25rem);
}

.gallery-showcase__corner--tr {
  top: clamp(0.85rem, 2vw, 1.25rem);
  right: clamp(0.85rem, 2vw, 1.25rem);
}

.gallery-showcase__corner--bl {
  bottom: clamp(0.85rem, 2vw, 1.25rem);
  left: clamp(0.85rem, 2vw, 1.25rem);
}

.gallery-showcase__corner--br {
  bottom: clamp(0.85rem, 2vw, 1.25rem);
  right: clamp(0.85rem, 2vw, 1.25rem);
}

.gallery-showcase__corner--tl::before,
.gallery-showcase__corner--tr::before,
.gallery-showcase__corner--bl::before,
.gallery-showcase__corner--br::before {
  width: 100%;
  height: 1px;
}

.gallery-showcase__corner--tl::after,
.gallery-showcase__corner--tr::after,
.gallery-showcase__corner--bl::after,
.gallery-showcase__corner--br::after {
  width: 1px;
  height: 100%;
}

.gallery-showcase__corner--tl::before { top: 0; left: 0; }
.gallery-showcase__corner--tl::after { top: 0; left: 0; }
.gallery-showcase__corner--tr::before { top: 0; right: 0; }
.gallery-showcase__corner--tr::after { top: 0; right: 0; }
.gallery-showcase__corner--bl::before { bottom: 0; left: 0; }
.gallery-showcase__corner--bl::after { bottom: 0; left: 0; }
.gallery-showcase__corner--br::before { bottom: 0; right: 0; }
.gallery-showcase__corner--br::after { bottom: 0; right: 0; }

.gallery-showcase__media-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gallery-showcase__media {
  position: absolute;
  inset: -3%;
  background-color: #152920;
  background-image:
    linear-gradient(148deg, rgba(27, 58, 45, 0.55) 0%, transparent 48%),
    var(--gallery-img, linear-gradient(160deg, #1a3528 0%, #0d1814 100%));
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  will-change: transform, opacity;
}

.gallery-showcase__media.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-showcase__sheen {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 38%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 62%
  );
  mix-blend-mode: soft-light;
  opacity: 0.45;
}

.gallery-showcase__caption {
  padding-left: clamp(0.25rem, 1vw, 0.5rem);
}

.gallery-showcase__count {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(212, 170, 106, 0.72);
  font-weight: 400;
}

.gallery-showcase__headline {
  margin: 0 0 0.55rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.gallery-showcase__hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 300;
}

.gallery-showcase__rail {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: min(62vh, 520px);
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 170, 106, 0.35) transparent;
}

.gallery-showcase__rail::-webkit-scrollbar {
  width: 4px;
}

.gallery-showcase__rail::-webkit-scrollbar-thumb {
  background: rgba(212, 170, 106, 0.35);
  border-radius: 999px;
}

.gallery-showcase__thumb {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}

.gallery-showcase__thumb:hover {
  border-color: rgba(212, 170, 106, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.gallery-showcase__thumb.is-active {
  border-color: rgba(212, 170, 106, 0.55);
  background: rgba(212, 170, 106, 0.08);
  box-shadow: inset 0 0 0 1px rgba(212, 170, 106, 0.12);
}

.gallery-showcase__thumb:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.gallery-showcase__thumb-media {
  display: block;
  width: 56px;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background-color: #152920;
  background-image:
    linear-gradient(148deg, rgba(27, 58, 45, 0.75) 0%, transparent 52%),
    var(--gallery-img, linear-gradient(160deg, #1a3528 0%, #0d1814 100%));
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.gallery-showcase__thumb-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.gallery-showcase__thumb-index {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: rgba(212, 170, 106, 0.65);
}

.gallery-showcase__thumb-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-showcase__controls {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
}

.gallery-showcase__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.gallery-showcase__nav-btn:hover {
  border-color: rgba(212, 170, 106, 0.45);
  background: rgba(212, 170, 106, 0.1);
  color: var(--gold-light);
}

.gallery-showcase__nav-btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.gallery-footer-cta {
  text-align: center;
}

.gallery-section .gallery-footer-cta .btn-primary {
  border-radius: 50px;
}

@media (max-width: 900px) {
  .gallery-showcase__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .gallery-showcase__stage {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-showcase__frame {
    aspect-ratio: 4 / 3;
  }

  .gallery-showcase__rail {
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-showcase__rail::-webkit-scrollbar {
    display: none;
  }

  .gallery-showcase__thumb {
    flex: 0 0 min(68vw, 240px);
    scroll-snap-align: center;
  }

  .gallery-showcase__controls {
    grid-column: 1;
    grid-row: 3;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-showcase__media {
    transform: none;
  }

  .gallery-showcase__thumb,
  .gallery-showcase__nav-btn {
    transition: none;
  }
}

/* ─── HOMEPAGE GALLERY MOSAIC (bento grid + GSAP) ─── */
.page-home .gallery-mosaic {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
}

.page-home .gallery-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(108px, 11.5vw, 168px);
  gap: clamp(0.6rem, 1.1vw, 0.95rem);
  text-align: left;
}

.page-home .gallery-mosaic__cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(3px, 0.45vw, 5px);
  background: rgba(255, 255, 255, 0.03);
  min-height: 0;
  will-change: transform, opacity;
}

.page-home .gallery-mosaic__cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(212, 170, 106, 0.14) 0%,
    transparent 42%,
    rgba(0, 0, 0, 0.22) 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}

.page-home .gallery-mosaic__cell:hover::before {
  opacity: 1;
}

.page-home .gallery-mosaic__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 170, 106, 0.14);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.page-home .gallery-mosaic__cell:hover::after {
  border-color: rgba(212, 170, 106, 0.38);
  box-shadow: inset 0 0 0 1px rgba(212, 170, 106, 0.08);
}

.page-home .gallery-mosaic__cell img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform-origin: center center;
}

.page-home .gallery-mosaic__cell--a {
  grid-column: 1 / 8;
  grid-row: 1 / 4;
}

.page-home .gallery-mosaic__cell--b {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
}

.page-home .gallery-mosaic__cell--c {
  grid-column: 1 / 5;
  grid-row: 4 / 6;
}

.page-home .gallery-mosaic__cell--d {
  grid-column: 5 / 9;
  grid-row: 3 / 6;
}

.page-home .gallery-mosaic__cell--e {
  grid-column: 9 / 13;
  grid-row: 3 / 5;
}

.page-home .gallery-mosaic__cell--f {
  grid-column: 1 / 4;
  grid-row: 6 / 8;
}

.page-home .gallery-mosaic__cell--g {
  grid-column: 4 / 13;
  grid-row: 5 / 8;
}

@media (max-width: 960px) {
  .page-home .gallery-mosaic__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: clamp(96px, 24vw, 150px);
    gap: 0.65rem;
  }

  .page-home .gallery-mosaic__cell--a {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
  }

  .page-home .gallery-mosaic__cell--b {
    grid-column: 1 / 4;
    grid-row: 3 / 5;
  }

  .page-home .gallery-mosaic__cell--c {
    grid-column: 4 / 7;
    grid-row: 3 / 5;
  }

  .page-home .gallery-mosaic__cell--d {
    grid-column: 1 / 4;
    grid-row: 5 / 7;
  }

  .page-home .gallery-mosaic__cell--e {
    grid-column: 4 / 7;
    grid-row: 5 / 7;
  }

  .page-home .gallery-mosaic__cell--f {
    grid-column: 1 / 4;
    grid-row: 7 / 9;
  }

  .page-home .gallery-mosaic__cell--g {
    grid-column: 4 / 7;
    grid-row: 7 / 9;
  }
}

@media (max-width: 767px) {
  .page-home .gallery-mosaic {
    padding-inline: clamp(0.85rem, 4vw, 1.25rem);
  }

  .page-home .gallery-mosaic__grid.section-inner {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(0.65rem, 3.5vw, 1rem);
    padding-right: clamp(0.65rem, 3.5vw, 1rem);
    box-sizing: border-box;
  }
}

@media (max-width: 560px) {
  .page-home .gallery-mosaic__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(clamp(118px, 36vw, 168px), auto);
    gap: clamp(0.5rem, 2.8vw, 0.7rem);
  }

  .page-home .gallery-mosaic__cell {
    border-radius: 6px;
  }

  .page-home .gallery-mosaic__cell img {
    height: 100%;
  }

  .page-home .gallery-mosaic__cell--a {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: clamp(168px, 52vw, 240px);
  }

  .page-home .gallery-mosaic__cell--b {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .page-home .gallery-mosaic__cell--c {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .page-home .gallery-mosaic__cell--d {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .page-home .gallery-mosaic__cell--e {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .page-home .gallery-mosaic__cell--f {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: clamp(140px, 42vw, 200px);
  }

  .page-home .gallery-mosaic__cell--g {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: clamp(168px, 50vw, 230px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .gallery-mosaic__cell img {
    height: 100%;
    transform: none !important;
  }

  .page-home .gallery-mosaic__cell::before {
    display: none;
  }
}

/* ─── INSTAGRAM (embed blockquotes per cell) ─── */
.instagram-section {
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: var(--ivory);
  position: relative;
}

.instagram-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.instagram-section .instagram-section-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.instagram-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  color: var(--green-deep);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.instagram-section-lede {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.8vw, 0.98rem);
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

.instagram-section-lede a {
  color: var(--green-deep);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: rgba(184, 146, 74, 0.55);
  text-underline-offset: 0.22em;
}

.instagram-section-lede a:hover {
  color: var(--green-mid);
  text-decoration-color: var(--gold);
}

.instagram-embed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-items: center;
  align-items: start;
}

@media (min-width: 600px) {
  .instagram-embed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }
}

@media (min-width: 900px) {
  .instagram-embed-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-embed-cell:last-child {
    grid-column: auto;
  }
}

@media (max-width: 599px) {
  .instagram-embed-cell,
  .instagram-embed-card,
  .instagram-embed-frame {
    max-width: min(100%, 320px);
  }

}

.instagram-embed-cell {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram-embed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 340px;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-embed-card:hover {
  transform: translateY(-3px);
}

.instagram-embed-card:hover .instagram-embed-frame {
  box-shadow:
    0 16px 44px rgba(18, 32, 28, 0.12),
    0 0 0 1px rgba(27, 58, 45, 0.1);
}

.instagram-embed-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.instagram-embed-cell blockquote.instagram-media {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.instagram-embed-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(165deg, #e8dfd0 0%, #f0ebe3 45%, #e8dfd0 100%);
  box-shadow:
    0 12px 40px rgba(18, 32, 28, 0.08),
    0 0 0 1px rgba(27, 58, 45, 0.06);
  line-height: 0;
  transition: box-shadow 0.3s ease;
}

.instagram-embed-frame::before {
  content: 'Thumbnail';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(107, 101, 88, 0.45);
  pointer-events: none;
}

.instagram-embed-frame:has(.instagram-embed-thumb.is-loaded)::before {
  content: none;
}

.instagram-embed-frame--reel {
  /* Same portrait ratio as posts for a uniform row */
}

.instagram-embed-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(18, 32, 28, 0.35) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.instagram-embed-card:hover .instagram-embed-frame::after {
  opacity: 1;
}

.instagram-embed-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-deep);
  box-shadow: 0 4px 14px rgba(18, 32, 28, 0.12);
  pointer-events: none;
}

.instagram-embed-badge--reel {
  top: 50%;
  right: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-deep);
}

.instagram-embed-badge--reel svg {
  margin-left: 0.15rem;
}

.instagram-embed-thumb {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.instagram-embed-thumb.is-missing {
  opacity: 0;
}

.instagram-embed-fallback {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-mid);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.instagram-embed-card:hover .instagram-embed-fallback {
  opacity: 1;
  color: var(--gold);
}

.instagram-embed-fallback:hover {
  opacity: 1;
  color: var(--gold);
}

.instagram-embed-cell:empty {
  min-height: 320px;
  width: 100%;
  max-width: 340px;
  border: 1px dashed rgba(27, 58, 45, 0.14);
  border-radius: 12px;
  background: rgba(27, 58, 45, 0.03);
}

.instagram-section-footer {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* ─── GUEST REVIEWS ─── */
.guest-reviews-section {
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(2rem, 5vw, 3rem);
  background: var(--ivory);
  position: relative;
}

.guest-reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 45% at 82% 15%, rgba(184, 146, 74, 0.07), transparent 55%);
}

.guest-reviews-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.guest-reviews-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.guest-reviews-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.guest-reviews-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.guest-reviews-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
}

@media (min-width: 768px) {
  .guest-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.guest-review-card {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: 12px;
  border: 1px solid rgba(27, 58, 45, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 32px rgba(27, 58, 45, 0.06);
}

.guest-review-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(184, 146, 74, 0.2);
}

.guest-review-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--green-deep);
  margin: 0;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.guest-review-card__name::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(184, 146, 74, 0.12);
  border: 1px solid rgba(184, 146, 74, 0.28);
  flex: 0 0 22px;
  /* User/profile icon (SVG mask so it inherits color cleanly) */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.76 0 5-2.24 5-5S14.76 2 12 2 7 4.24 7 7s2.24 5 5 5zm0 2c-4.42 0-8 2.24-8 5v1h16v-1c0-2.76-3.58-5-8-5z'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.76 0 5-2.24 5-5S14.76 2 12 2 7 4.24 7 7s2.24 5 5 5zm0 2c-4.42 0-8 2.24-8 5v1h16v-1c0-2.76-3.58-5-8-5z'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
  background-color: rgba(184, 146, 74, 0.78);
}

.guest-review-stars {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--gold);
  white-space: nowrap;
}

.guest-review-stars__empty {
  color: rgba(184, 146, 74, 0.28);
}

.guest-review-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(26, 26, 24, 0.82);
  font-weight: 300;
}

.guest-review-card__text + .guest-review-card__text {
  margin-top: 0.85rem;
}

.guest-review-card__text strong {
  font-weight: 500;
  color: var(--green-deep);
}

/* ─── MAKE A RESERVATION ─── */
.reservation-section {
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 50%, var(--cream) 100%);
  position: relative;
}

.reservation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 40% at 18% 20%, rgba(184, 146, 74, 0.08), transparent 55%);
}

.reservation-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.reservation-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.reservation-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  color: var(--green-deep);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.reservation-lede {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.8vw, 0.98rem);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

.reservation-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
  align-items: start;
}

@media (min-width: 900px) {
  .reservation-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }
}

.reservation-contact {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: 14px;
  border: 1px solid rgba(27, 58, 45, 0.1);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 40px rgba(27, 58, 45, 0.06);
}

.reservation-contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 400;
  color: var(--green-deep);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.reservation-contact-lede {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1.35rem;
  font-weight: 300;
}

.reservation-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.reservation-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.reservation-contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(27, 58, 45, 0.55);
  font-weight: 400;
}

.reservation-contact-value {
  font-size: 0.95rem;
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 400;
  line-height: 1.45;
  transition: color 0.2s ease;
}

a.reservation-contact-value:hover {
  color: var(--gold);
}

.reservation-contact-value--text {
  color: var(--text-dark);
  font-weight: 300;
}

.reservation-form {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: 14px;
  border: 1px solid rgba(27, 58, 45, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 40px rgba(27, 58, 45, 0.06);
}

.reservation-form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .reservation-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-field--full {
    grid-column: 1 / -1;
  }
}

.reservation-field {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.reservation-field > span:first-child {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27, 58, 45, 0.72);
  font-weight: 400;
}

.reservation-field abbr {
  text-decoration: none;
  color: var(--gold);
}

.reservation-field input,
.reservation-field select,
.reservation-field textarea {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(27, 58, 45, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.reservation-field input::placeholder,
.reservation-field textarea::placeholder {
  color: rgba(107, 101, 88, 0.55);
}

.reservation-field input:focus,
.reservation-field select:focus,
.reservation-field textarea:focus {
  outline: none;
  border-color: rgba(184, 146, 74, 0.55);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.12);
}

.reservation-field textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.reservation-form-actions {
  margin-top: 1.25rem;
}

.reservation-form-footnote {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 300;
}

.reservation-form-footnote a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.reservation-form-footnote a:hover {
  color: var(--gold);
}

.form-submit-status {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--green-deep);
  text-align: center;
}

.form-submit-status--error {
  color: #8b3a3a;
}

/* ─── AIRPORT ROUTE (Getting Here) ─── */
.airport-route-section {
  padding: clamp(4rem, 10vw, 6.5rem) 0 clamp(2rem, 5vw, 3rem);
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  position: relative;
}

.airport-route-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 40% at 18% 20%, rgba(184, 146, 74, 0.08), transparent 58%);
}

.airport-route-inner {
  position: relative;
  z-index: 1;
}

.airport-route__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.airport-route__eyebrow {
  justify-content: center;
}

.airport-route__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.12;
  margin: 0.75rem 0 1rem;
}

.airport-route__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.airport-route__lede {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.airport-route__layout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
}

@media (min-width: 960px) {
  .airport-route__layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: clamp(1.75rem, 3vw, 2.5rem);
  }
}

.airport-route__map-wrap {
  position: relative;
  min-height: clamp(280px, 52vw, 420px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(27, 58, 45, 0.12);
  box-shadow: 0 18px 48px rgba(27, 58, 45, 0.1);
  background: #e8ece8;
}

.airport-route__map {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 52vw, 420px);
}

.airport-route__map .leaflet-control-attribution {
  font-size: 0.62rem;
}

.airport-route__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.75rem 1rem 0.65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(184, 146, 74, 0.35);
  box-shadow: 0 10px 28px rgba(27, 58, 45, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.airport-route-section.is-route-complete .airport-route__badge {
  transform: scale(1.04);
  box-shadow: 0 14px 32px rgba(184, 146, 74, 0.22);
}

.airport-route__badge-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: var(--green-deep);
}

.airport-route__badge-unit {
  margin-top: -0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.airport-route__badge-label {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 26, 24, 0.55);
}

.airport-route__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 58, 45, 0.1);
}

.airport-route__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) and (max-width: 959px) {
  .airport-route__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.airport-route__stats li {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 146, 74, 0.18);
}

@media (min-width: 480px) and (max-width: 959px) {
  .airport-route__stats li {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

.airport-route__stats li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.airport-route__stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 26, 24, 0.5);
  margin-bottom: 0.25rem;
}

.airport-route__stats strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.2;
}

.airport-route__stat-note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.airport-route-marker {
  background: transparent;
  border: 0;
}

.airport-route-marker__pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(27, 58, 45, 0.18);
  font-size: 0.85rem;
  line-height: 1;
  color: var(--green-deep);
}

.airport-route-marker--resort .airport-route-marker__pin {
  color: var(--gold);
  font-size: 0.65rem;
}

.airport-route-marker__label {
  display: block;
  margin-top: 0.25rem;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 500;
  white-space: nowrap;
}

.airport-route-directions {
  align-self: flex-start;
}

@media (max-width: 959px) {
  .airport-route-section {
    padding: clamp(3rem, 8vw, 4.5rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  }

  .airport-route__head {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }

  .airport-route__lede {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .airport-route__map-wrap {
    min-height: clamp(220px, 58vw, 320px);
    border-radius: 12px;
  }

  .airport-route__map {
    min-height: clamp(220px, 58vw, 320px);
  }

  .airport-route__details {
    gap: 1.25rem;
  }
}

@media (max-width: 479px) {
  .airport-route__title {
    font-size: clamp(1.65rem, 7.5vw, 2rem);
  }

  .airport-route__map-wrap {
    min-height: min(52vw, 260px);
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    width: calc(100% + 0.5rem);
  }

  .airport-route__map {
    min-height: min(52vw, 260px);
  }

  .airport-route__badge {
    top: auto;
    bottom: 0.65rem;
    right: 0.65rem;
    min-width: 4.75rem;
    padding: 0.55rem 0.75rem 0.5rem;
    border-radius: 10px;
  }

  .airport-route__badge-time {
    font-size: 1.65rem;
  }

  .airport-route__badge-label {
    font-size: 0.58rem;
  }

  .airport-route__details {
    text-align: center;
    padding: 1.15rem 1rem;
  }

  .airport-route__stats strong {
    font-size: 1.2rem;
  }

  .airport-route__stat-note {
    font-size: 0.78rem;
    overflow-wrap: anywhere;
  }

  .airport-route-directions {
    align-self: stretch;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .airport-route-marker__label {
    white-space: normal;
    max-width: 4.5rem;
    line-height: 1.25;
  }
}

/* ─── GOOGLE BUSINESS PROFILE ─── */
.gbp-section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 45%, var(--ivory) 100%);
  position: relative;
}

.gbp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 45% at 50% 100%, rgba(184, 146, 74, 0.07), transparent 60%);
}

.gbp-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .gbp-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.gbp-copy {
  text-align: center;
}

@media (min-width: 900px) {
  .gbp-copy {
    text-align: left;
  }
}

.gbp-eyebrow {
  justify-content: center;
}

@media (min-width: 900px) {
  .gbp-eyebrow {
    justify-content: flex-start;
  }
}

.gbp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

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

.gbp-lede {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 26rem;
  margin: 0 auto 1.25rem;
}

@media (min-width: 900px) {
  .gbp-lede {
    margin: 0 0 1.25rem;
  }
}

.gbp-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.gbp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.gbp-section .gbp-actions .btn-ghost {
  color: var(--green-deep);
  border-color: rgba(27, 58, 45, 0.32);
  background: rgba(255, 255, 255, 0.55);
}

.gbp-section .gbp-actions .btn-ghost:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(27, 58, 45, 0.88);
}

@media (min-width: 900px) {
  .gbp-actions {
    justify-content: flex-start;
  }
}

/* Section slide-in uses transform — that breaks Google Maps iframes inside */
#find-us,
#find-us.animate-in {
  transform: none !important;
}

.gbp-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 20px 50px rgba(27, 58, 45, 0.14);
  background: var(--cream-dark);
  min-height: clamp(240px, 50vw, 400px);
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.gbp-map-fallback {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}

.gbp-map-fallback img {
  display: block;
  width: 100%;
  height: clamp(240px, 50vw, 400px);
  object-fit: cover;
}

.gbp-map-fallback__cta {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(27, 58, 45, 0.88);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(18, 32, 28, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
}

.gbp-map-fallback:hover .gbp-map-fallback__cta {
  background: var(--green-deep);
  transform: translateX(-50%) translateY(-2px);
}

.gbp-map-wrap.is-map-live .gbp-map-fallback {
  display: none;
}

.gbp-map-leaflet {
  display: block;
  width: 100%;
  height: clamp(240px, 50vw, 400px);
  border: 0;
  z-index: 1;
}

.gbp-map-leaflet[hidden] {
  display: none !important;
}

.gbp-map-wrap.is-map-live .gbp-map-leaflet[hidden] {
  display: block !important;
}

.gbp-map-leaflet .leaflet-control-attribution {
  font-size: 0.62rem;
}

.gbp-map-attrib {
  margin: 0;
  padding: 0.45rem 0.65rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: right;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(27, 58, 45, 0.08);
}

.gbp-map-attrib a {
  color: var(--green-mid);
  text-decoration: none;
}

.gbp-map-attrib a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.gbp-map-frame {
  display: block;
  width: 100%;
  height: clamp(240px, 50vw, 400px);
  border: 0;
}

.instagram-section-footer .btn-primary {
  border-radius: 50px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 0 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    padding: 0 3rem;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-logo img {
  height: clamp(28px, 4.5vw, 44px);
  width: auto;
  display: block;
}

.footer-logo:hover img {
  opacity: 0.92;
}

.footer-logo:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-col address {
  font-style: normal;
  font-size: 0.84rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.4);
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  border-radius: 50%;
  flex-shrink: 0;
}

.social-btn__icon {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.social-btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(212, 170, 106, 0.1);
}

.social-btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: column;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

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

/* ─── RESPONSIVE MENU ─── */
@media (max-width: 1280px) {
  .experiences-section {
    padding-top: max(7rem, calc(env(safe-area-inset-top, 0px) + 5.75rem));
  }

  nav.menu-open {
    z-index: 500;
    overflow: visible;
  }

  .nav-toggle {
    display: inline-flex;
  }

  nav {
    top: 1rem;
    padding: 0.65rem 0.85rem 0.65rem 1rem;
    gap: 0.5rem;
    width: calc(100% - max(1.25rem, env(safe-area-inset-left) + env(safe-area-inset-right)));
    max-width: none;
    justify-content: space-between;
    overflow: visible;
  }

  .nav-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 9.5rem);
  }

  .nav-logo img {
    height: clamp(22px, 5.2vw, 28px);
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .nav-mobile-actions {
    gap: 0.4rem;
    margin-left: auto;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-links {
    gap: 0.2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    min-width: 0;
    flex-shrink: 1;
    padding: 1.2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.97);
    transition:
      opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.45s;
  }

  nav.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    max-height: min(72vh, 34rem);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition:
      opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.04s,
      transform 0.48s cubic-bezier(0.22, 1, 0.36, 1) 0.04s,
      visibility 0s;
  }

  .nav-links > li {
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  nav.menu-open .nav-links > li {
    opacity: 1;
    transform: translateY(0);
  }

  nav.menu-open .nav-links > li:nth-child(1) { transition-delay: 0.08s; }
  nav.menu-open .nav-links > li:nth-child(2) { transition-delay: 0.12s; }
  nav.menu-open .nav-links > li:nth-child(3) { transition-delay: 0.16s; }
  nav.menu-open .nav-links > li:nth-child(4) { transition-delay: 0.2s; }
  nav.menu-open .nav-links > li:nth-child(5) { transition-delay: 0.24s; }
  nav.menu-open .nav-links > li:nth-child(6) { transition-delay: 0.28s; }
  nav.menu-open .nav-links > li:nth-child(7) { transition-delay: 0.32s; }
  nav.menu-open .nav-links > li:nth-child(8) { transition-delay: 0.36s; }
  nav.menu-open .nav-links > li:nth-child(9) { transition-delay: 0.4s; }
  nav.menu-open .nav-links > li:nth-child(10) { transition-delay: 0.44s; }

  .nav-links a,
  .nav-links .nav-cta--menu {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    padding: 0.65rem 0.5rem;
    text-align: center;
    width: 100%;
    white-space: normal;
    letter-spacing: 0.16em;
  }

  nav.menu-open.nav-dark .nav-links {
    background: rgba(250, 247, 242, 0.94);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }

  nav.menu-open.nav-dark .nav-links a,
  nav.menu-open.nav-dark .nav-links .nav-cta--menu {
    color: rgba(26, 26, 24, 0.88);
  }

  .nav-cta--bar {
    padding: 0.52rem 0.85rem;
    font-size: clamp(0.62rem, 2.8vw, 0.68rem);
    letter-spacing: 0.12em;
    line-height: 1.15;
  }

  @media (prefers-reduced-motion: reduce) {
    body.nav-menu-open::before {
      animation: none;
      opacity: 1;
    }

    .nav-links,
    .nav-links > li {
      transition: none !important;
    }

    nav.menu-open .nav-links > li {
      transition-delay: 0s !important;
    }
  }
}

@media (max-width: 520px) {
  .nav-cta-label--full {
    display: none;
  }

  .nav-cta-label--short {
    display: inline;
  }

  .nav-cta--bar {
    padding: 0.5rem 0.8rem;
    font-size: clamp(0.62rem, 3vw, 0.68rem);
    letter-spacing: 0.1em;
  }

  .nav-logo {
    max-width: calc(100% - 7.75rem);
  }
}

@media (max-width: 400px) {
  .nav-cta--bar {
    display: none;
  }

  .nav-mobile-actions {
    gap: 0;
  }

  .nav-links-cta-item {
    display: list-item;
    width: 100%;
    margin: 0 0 0.35rem;
    padding: 0 0.25rem;
  }

  .nav-cta--menu {
    display: block;
    width: 100%;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    padding: 0.85rem 1.25rem;
    text-align: center;
  }

  nav.menu-open .nav-links {
    padding-top: 0.35rem;
  }
}

@media (max-width: 480px) {
  nav {
    top: 0.8rem;
    padding: 0.6rem 0.75rem 0.6rem 0.9rem;
    width: calc(100% - max(1rem, env(safe-area-inset-left) + env(safe-area-inset-right)));
  }

  .nav-logo img {
    height: 22px;
  }
}

/* ─── GLOBAL MOBILE LAYOUT ─── */
@media (max-width: 768px) {
  .section-pad {
    padding: clamp(4rem, 10vw, 5.5rem) 0;
  }

  .section-pad-sm {
    padding: clamp(3rem, 8vw, 4rem) 0;
  }

  .amenities-section {
    padding: clamp(4rem, 10vw, 5.5rem) 0;
  }

  .experiences-section {
    padding-top: max(7.5rem, calc(env(safe-area-inset-top, 0px) + 6.25rem));
    padding-bottom: clamp(4rem, 10vw, 5.5rem);
  }

  .wedding-enquiry-panel {
    max-height: min(92vh, 100%);
    border-radius: 12px;
  }

  .wedding-enquiry-panel__header {
    padding: 1.25rem 1.25rem 0.85rem;
  }

  .wedding-enquiry-form {
    padding: 0 1.25rem 1.25rem;
  }

  .wedding-enquiry-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wedding-enquiry-actions .btn-primary,
  .wedding-enquiry-actions .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .quick-enquiry-panel {
    max-height: min(92vh, 100%);
  }

  .gbp-inner {
    gap: 2rem;
  }

  .gbp-map-wrap {
    min-height: clamp(200px, 45vw, 280px);
  }

  .split-panel {
    padding: clamp(3rem, 8vw, 4rem) clamp(1.25rem, 4vw, 2rem);
  }

  .hero-content {
    padding-top: 0;
    padding-right: max(1.25rem, calc(env(safe-area-inset-right, 0px) + 1rem));
    padding-bottom: max(clamp(6rem, 18vw, 9rem), calc(env(safe-area-inset-bottom, 0px) + 5.25rem));
    padding-left: max(1.25rem, calc(env(safe-area-inset-left, 0px) + 1rem));
  }

  .hero-tagline {
    margin-bottom: clamp(1.75rem, 5vw, 2.5rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: min(100%, 18rem);
    text-align: center;
  }

  .amenity-card {
    width: min(85vw, 300px);
  }
}

@media (max-width: 520px) {
  .wedding-enquiry-row2 {
    grid-template-columns: 1fr;
  }
}

img,
video,
iframe {
  max-width: 100%;
}

/* ─── WEDDINGS & EVENTS (venues guide) ─── */
.we-page-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: clamp(7.5rem, 18vw, 10.5rem) 0 clamp(3.5rem, 8vw, 5rem);
  background-color: var(--green-deep);
  overflow: hidden;
}

.we-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      155deg,
      rgba(17, 48, 36, 0.94) 0%,
      rgba(14, 38, 30, 0.84) 45%,
      rgba(11, 32, 25, 0.92) 100%
    ),
    url('../images/split/wedding-events-bg.png');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.we-page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - clamp(2rem, 6vw, 4rem)));
  margin: 0 auto;
}

.we-page-hero__eyebrow {
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}

.we-page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.we-page-hero__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.we-page-hero__lede {
  font-size: clamp(0.95rem, 1.85vw, 1.05rem);
  line-height: 1.82;
  color: rgba(245, 239, 228, 0.78);
  font-weight: 300;
  max-width: 42rem;
}

.we-page-intro {
  background: var(--ivory);
  padding: clamp(2.25rem, 5vw, 3.25rem) 0;
}

.we-page-intro__inner {
  max-width: 52rem;
}

.we-page-intro__text {
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
}

.we-page-intro__text strong {
  font-weight: 500;
  color: var(--text-dark);
}

.we-venues {
  background: var(--cream-dark);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6.5rem);
}

.we-venues__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.we-card {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
  background: var(--ivory);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(27, 58, 45, 0.08);
  box-shadow: 0 18px 48px rgba(27, 58, 45, 0.06);
}

@media (min-width: 900px) {
  .we-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .we-card--reverse .we-card__media {
    order: 2;
  }

  .we-card--reverse .we-card__body {
    order: 1;
  }
}

.we-card__media {
  position: relative;
  min-height: clamp(220px, 32vw, 340px);
  background: var(--cream);
}

.we-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.we-card__body {
  padding: clamp(1.65rem, 3.5vw, 2.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.we-card__tag {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 500;
}

.we-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.we-card__desc {
  font-size: clamp(0.9rem, 1.5vw, 0.98rem);
  line-height: 1.82;
  color: var(--text-muted);
  font-weight: 300;
}

.we-spec {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: minmax(7.5rem, max-content) 1fr;
  gap: 0.45rem 1.35rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.we-spec dt {
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.we-spec dd {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

.we-page-cta {
  background: var(--green-deep);
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.we-page-cta__inner {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.we-page-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.we-page-cta__title em {
  font-style: italic;
  color: var(--gold-light);
}

.we-page-cta__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 239, 228, 0.72);
  font-weight: 300;
  margin-bottom: 1.85rem;
}

.we-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.we-page-cta .btn-ghost {
  border-color: rgba(212, 170, 106, 0.35);
  color: var(--gold-light);
}

.we-page-cta .btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--cream);
}
