*, *::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 ─── */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0a1812 0%, #122920 38%, #1B3A2D 50%, #102018 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  animation: preloaderFadeOut 0.8s ease-out 2.5s forwards;
}

@keyframes preloaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Liquid glass motion — layered blurs, mesh, refractive sheen */
.preloader-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.preloader-motion__mesh {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160vmax;
  height: 160vmax;
  margin-left: -80vmax;
  margin-top: -80vmax;
  background: conic-gradient(
    from 25deg at 50% 50%,
    rgba(27, 58, 45, 0) 0deg,
    rgba(61, 112, 87, 0.18) 55deg,
    rgba(212, 170, 106, 0.14) 110deg,
    rgba(27, 58, 45, 0.06) 160deg,
    rgba(184, 146, 74, 0.1) 220deg,
    rgba(45, 84, 64, 0.12) 280deg,
    rgba(27, 58, 45, 0) 360deg
  );
  animation: preloaderMeshDrift 26s linear infinite;
  will-change: transform;
}

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

.preloader-motion__orb--1 {
  width: 52vmax;
  height: 52vmax;
  left: -18%;
  top: -12%;
  background: radial-gradient(
    circle at 35% 40%,
    rgba(212, 170, 106, 0.55) 0%,
    rgba(61, 112, 87, 0.25) 45%,
    rgba(13, 32, 25, 0) 72%
  );
  animation: preloaderOrbA 14s ease-in-out infinite;
}

.preloader-motion__orb--2 {
  width: 48vmax;
  height: 48vmax;
  right: -22%;
  bottom: -8%;
  background: radial-gradient(
    circle at 60% 55%,
    rgba(45, 84, 64, 0.5) 0%,
    rgba(212, 170, 106, 0.22) 50%,
    rgba(10, 24, 18, 0) 70%
  );
  animation: preloaderOrbB 18s ease-in-out infinite;
}

.preloader-motion__orb--3 {
  width: 36vmax;
  height: 36vmax;
  left: 28%;
  bottom: -15%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(184, 146, 74, 0.35) 0%,
    rgba(27, 58, 45, 0.2) 55%,
    transparent 75%
  );
  animation: preloaderOrbC 11s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 0.4;
}

.preloader-motion__glass {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 255, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(212, 170, 106, 0.07), transparent 50%),
    linear-gradient(
      168deg,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 28%,
      transparent 62%,
      rgba(255, 255, 255, 0.04) 100%
    );
  backdrop-filter: blur(14px) saturate(155%);
  -webkit-backdrop-filter: blur(14px) saturate(155%);
  animation: preloaderGlassBreath 9s ease-in-out infinite;
}

.preloader-motion__sheen {
  position: absolute;
  inset: -35% -20%;
  background: linear-gradient(
    118deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.07) 49.5%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.06) 50.7%,
    transparent 60%,
    transparent 100%
  );
  background-size: 280% 100%;
  mix-blend-mode: soft-light;
  animation: preloaderSheenSweep 5.5s ease-in-out infinite;
  opacity: 0.85;
}

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

@keyframes preloaderOrbA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(8%, 12%) scale(1.08);
  }
  66% {
    transform: translate(4%, -6%) scale(0.94);
  }
}

@keyframes preloaderOrbB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-10%, -8%) scale(1.05);
  }
  75% {
    transform: translate(-4%, 6%) scale(0.92);
  }
}

@keyframes preloaderOrbC {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-14%, -10%) scale(1.12);
  }
}

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

@keyframes preloaderSheenSweep {
  0% {
    background-position: 120% 0;
  }
  45% {
    background-position: -20% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-motion__mesh,
  .preloader-motion__orb--1,
  .preloader-motion__orb--2,
  .preloader-motion__orb--3,
  .preloader-motion__glass,
  .preloader-motion__sheen {
    animation: none;
  }

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

  .preloader-motion__sheen {
    opacity: 0.35;
  }
}

.preloader-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.preloader-logo {
  display: block;
  margin: 0 auto 1.85rem;
  width: min(200px, 46vw);
  height: auto;
  mix-blend-mode: lighten;
  animation: fadeInDown 0.85s ease 0.06s both;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: preloaderProgress 2.5s ease-in-out;
}

@keyframes preloaderProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

.preloader-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeInUp 0.8s ease 0.2s both;
}

@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.5rem;
  gap: 3rem;
  max-width: 90%;
  width: fit-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
  );
}

/* ─── 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(1.25rem, env(safe-area-inset-bottom, 0px) + 0.65rem);
  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) {
  .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 {
    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: 2rem;
  list-style: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 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;
}

.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 {
  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);
}

.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;
}

/* ─── 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;
}

/* 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;
}

.hero-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
}

.hero-video-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.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;
}

.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(160px, 22vw, 280px);
  height: auto;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.35));
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}

.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 ─── */
/*
 * Use transform-only entrance (no fading parent opacity). Fading the whole <section>
 * multiplies against GSAP fades on children (.amenity-card, etc.), so cards looked
 * washed out / “empty” until both animations finished.
 */
section {
  position: relative;
  opacity: 1;
  transform: translateY(44px);
}

section.hero {
  transform: none;
}

section.animate-in {
  transform: translateY(0);
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (prefers-reduced-motion: reduce) {
  section {
    transform: none;
  }

  section.animate-in {
    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);
  /* Photo + bottom scrim: softens landscape edge before overlap with authority */
  background-image:
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 44%,
      rgba(13, 32, 25, 0.22) 68%,
      rgba(13, 32, 25, 0.62) 86%,
      rgba(16, 40, 30, 0.9) 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;
  /* Top stops align with .hero::after bottom for an invisible seam; then intro density */
  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;
}

/* Blend intro → authority: avoid stacking two near-opaque veils (creates a “shadow bar”) */
.intro-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(340px, 62vh, 780px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(22, 47, 37, 0) 0%,
    rgba(13, 32, 25, 0.02) 18%,
    rgba(22, 47, 37, 0.12) 42%,
    rgba(26, 52, 42, 0.28) 66%,
    rgba(26, 50, 41, 0.5) 84%,
    rgba(26, 50, 41, 0.62) 100%
  );
}

.intro-inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
  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);
  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-inner > .label-tag {
  color: var(--gold-light);
  margin-bottom: 1.15rem;
}

.intro-inner > .label-tag::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-bottom: 1.85rem;
  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 {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 38rem;
}

.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 {
  margin-top: clamp(2.75rem, 6vw, 3.75rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.intro-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-right: clamp(0.75rem, 2vw, 1.25rem);
}

.intro-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.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: 768px) {
  .intro-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
    row-gap: 1.5rem;
  }

  .intro-stat:nth-child(even) {
    padding-right: 0;
    padding-left: 0.25rem;
  }

  .intro-stat:nth-child(odd) {
    padding-right: 1rem;
  }

  .intro-stat:nth-child(even)::after {
    display: none;
  }

  .intro-stat:nth-child(-n + 2) {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(27, 58, 45, 0.06);
  }
}

@media (max-width: 420px) {
  .intro-stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .intro-stat {
    padding-right: 0;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(27, 58, 45, 0.06);
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
  }

  .intro-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

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

  .intro-stat-label {
    text-align: right;
    max-width: 12rem;
    letter-spacing: 0.18em;
  }
}

.authority-section {
  /* Pull up over intro; transparent top merges with intro (no solid “lid”) */
  --authority-blend-overlap: clamp(104px, 15vw, 188px);
  position: relative;
  background-color: #14281f;
  background-image: linear-gradient(
    180deg,
    rgba(20, 40, 31, 0) 0,
    rgba(26, 50, 41, 0.18) calc(var(--authority-blend-overlap) * 0.28),
    rgba(20, 40, 31, 0.72) calc(var(--authority-blend-overlap) * 0.72),
    #14281f calc(var(--authority-blend-overlap) + 24px),
    #14281f 100%
  );
  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(4.75rem, 11vw, 7.25rem);
  overflow: hidden;
}

.authority-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.35) calc(var(--authority-blend-overlap) * 0.42),
    rgba(0, 0, 0, 0.78) calc(var(--authority-blend-overlap) * 0.85),
    #000 calc(var(--authority-blend-overlap) + 40px),
    #000 72%,
    rgba(0, 0, 0, 0.55) 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.35) calc(var(--authority-blend-overlap) * 0.42),
    rgba(0, 0, 0, 0.78) calc(var(--authority-blend-overlap) * 0.85),
    #000 calc(var(--authority-blend-overlap) + 40px),
    #000 72%,
    rgba(0, 0, 0, 0.55) 88%,
    transparent 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-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;
}

.authority-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Continues intro tones; eases in video + green without a hard band */
  background: linear-gradient(
    180deg,
    rgba(26, 50, 41, 0.08) 0,
    rgba(22, 47, 37, 0.22) calc(var(--authority-blend-overlap) * 0.35),
    rgba(22, 47, 37, 0.55) calc(var(--authority-blend-overlap) + 20px),
    rgba(22, 47, 37, 0.52) calc(var(--authority-blend-overlap) + 88px),
    rgba(27, 58, 45, 0.72) 38%,
    rgba(27, 58, 45, 0.74) 48%,
    rgba(20, 40, 31, 0.68) 68%,
    rgba(26, 48, 40, 0.42) 82%,
    rgba(245, 239, 228, 0.72) 100%
  );
}

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

  .authority-section::after {
    background: linear-gradient(
      180deg,
      rgba(26, 50, 41, 0.1) 0,
      rgba(22, 47, 37, 0.32) calc(var(--authority-blend-overlap) * 0.42),
      #162f25 calc(var(--authority-blend-overlap) + 40px),
      var(--green-deep) 34%,
      #14281f 68%,
      rgba(232, 223, 208, 0.55) 100%
    );
  }
}

.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-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: 1.75rem;
}

.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: 520px) {
  .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 {
  --villas-authority-pull: clamp(52px, 9vw, 120px);
  position: relative;
  background: var(--cream);
  margin-top: calc(var(--villas-authority-pull) * -1);
  padding-top: calc(clamp(5rem, 12vw, 8rem) + var(--villas-authority-pull));
  padding-bottom: clamp(4rem, 10vw, 6rem);
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

/* Top scrim merges with authority section (above ambient BG) */
.villas-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(180px, 36vh, 520px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(20, 38, 32, 0.38) 0%,
    rgba(27, 58, 45, 0.14) 38%,
    rgba(245, 239, 228, 0.35) 72%,
    transparent 100%
  );
}

.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);
}

/* 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%;
}

.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);
}

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

  .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 catalog (all villas page) */
.villas-catalog-section {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 11vw, 7rem);
  background: var(--ivory);
}

.villas-catalog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 146, 74, 0.06), transparent 55%);
}

.villas-catalog-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 6vw, 3.75rem);
}

.villas-catalog-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
}

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

.villas-catalog-header > p:last-of-type {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.villas-catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  max-width: min(1200px, 100%);
  margin: 0 auto;
}

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

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

.villa-catalog-card {
  border-radius: 18px;
  border: 1px solid var(--cream-dark);
  background: var(--ivory);
  box-shadow: 0 16px 44px rgba(27, 58, 45, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

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

.villa-catalog-card__media {
  position: relative;
  aspect-ratio: 5 / 3;
  background: linear-gradient(160deg, var(--cream-dark), var(--cream));
}

.villa-catalog-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(27, 58, 45, 0.08);
  color: var(--text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.villa-catalog-placeholder strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--green-deep);
}

.villa-catalog-card__body {
  padding: clamp(1.35rem, 3.5vw, 1.65rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.villa-catalog-card__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.8vw, 1.45rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.2;
}

.villa-catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.villa-catalog-desc {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}

.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-section .section-inner {
  max-width: 36rem;
  margin: 0 auto;
}

.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-section > .section-inner > p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.villas-enquiry-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* ─── 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(
      155deg,
      rgba(14, 14, 16, 0.9) 0%,
      rgba(10, 10, 12, 0.82) 50%,
      rgba(8, 8, 10, 0.92) 100%
    ),
    url('../images/split/leisure-stays-bg.png');
}

.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;
}

/* ─── 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 {
  padding-top: 0.15rem;
}

.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-body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 38rem;
}

.dining-body p {
  font-size: clamp(0.93rem, 1.75vw, 1.02rem);
  line-height: 1.88;
  color: var(--text-muted);
  font-weight: 300;
}

.dining-actions {
  margin-top: clamp(2rem, 4vw, 2.85rem);
}

.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 {
  background: var(--green-deep);
  padding: 8rem 0;
  overflow-x: hidden;
  overflow-y: visible;
}

.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-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;
}

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

.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(180deg);
  }
}

@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-back {
    display: none;
  }

  .amenity-card-front {
    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;
}

.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 {
  background: var(--ivory);
  padding: 2.8rem 2rem;
  transition: all 0.3s ease;
  cursor: default;
}

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

.exp-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.exp-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── GALLERY (uniform 9:16 tiles, GSAP intro + hover) ─── */
.gallery-section {
  background: var(--charcoal);
  padding: clamp(6rem, 14vw, 9rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.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(2.5rem, 5vw, 3.75rem);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.82;
  font-weight: 300;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 2vw, 14px);
  margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
  text-align: left;
  align-items: stretch;
  min-width: 0;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gallery-tile:hover {
  border-color: rgba(212, 170, 106, 0.35);
  box-shadow:
    0 36px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.gallery-tile-media {
  position: absolute;
  inset: -2%;
  z-index: 0;
  background-color: #152920;
  /* url() in --gallery-img resolves from this stylesheet (css/), so use ../images/... in HTML */
  background-image:
    linear-gradient(148deg, rgba(27, 58, 45, 0.82) 0%, transparent 52%),
    var(--gallery-img, linear-gradient(160deg, #1a3528 0%, #0d1814 100%));
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

.gallery-tile-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 90% 70% at 50% 75%,
    transparent 35%,
    rgba(10, 10, 12, 0.55) 100%
  );
  opacity: 0.85;
  transition: opacity 0.5s ease;
}

.gallery-tile:hover .gallery-tile-vignette {
  opacity: 0.55;
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    rgba(22, 22, 18, 0.1) 0%,
    rgba(22, 22, 18, 0.55) 100%
  );
  opacity: 1;
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-tile:hover .gallery-tile-overlay {
  opacity: 0.35;
}

.gallery-tile-label {
  position: absolute;
  left: clamp(1.1rem, 3vw, 1.65rem);
  bottom: clamp(1rem, 2.8vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  line-height: 1.2;
}

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

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

@media (min-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-tile-media,
  .gallery-tile-vignette,
  .gallery-tile-overlay {
    transition: 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: 900px) {
  .instagram-embed-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

.instagram-embed-frame {
  width: 100%;
  max-width: 340px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 12px 40px rgba(18, 32, 28, 0.08),
    0 0 0 1px rgba(27, 58, 45, 0.06);
  line-height: 0;
}

.instagram-embed-iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  vertical-align: top;
}

.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-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);
}

/* ─── 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;
}

@media (min-width: 900px) {
  .gbp-actions {
    justify-content: flex-start;
  }
}

.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);
}

.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: 768px) {
  .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: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.75rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: all 0.3s;
  border-radius: 50%;
}

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

.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;
}

.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: 1024px) {
  nav {
    padding: 0.8rem 2rem;
    gap: 1.5rem;
  }

  .nav-logo img {
    height: clamp(24px, 3.2vw, 32px);
  }

  .nav-links {
    gap: 1.2rem;
    font-size: 0.6rem;
  }
}

@media (max-width: 768px) {
  nav.menu-open {
    z-index: 500;
  }

  .nav-toggle {
    display: inline-flex;
  }

  nav {
    top: 1rem;
    padding: 0.75rem 1.5rem;
    gap: 1rem;
    max-width: calc(100% - 1rem);
  }

  .nav-logo img {
    height: clamp(22px, 5vw, 28px);
  }

  .nav-links {
    gap: 0.8rem;
    display: none;
  }

  nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    padding: 1.2rem;
    border-radius: 20px;
    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);
    gap: 0.2rem;
  }

  nav.menu-open .nav-links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    padding: 0.6rem 0.4rem;
    text-align: center;
    width: 100%;
  }

  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 {
    color: rgba(26, 26, 24, 0.88);
  }

  .nav-cta {
    font-size: 0.58rem;
    padding: 0.55rem 1.2rem;
  }
}

@media (max-width: 480px) {
  nav {
    top: 0.8rem;
    padding: 0.7rem 1rem;
  }

  .nav-logo img {
    height: 22px;
  }

  .nav-cta {
    font-size: 0.55rem;
    padding: 0.5rem 1rem;
  }
}
