/*!
 * VRINDAVAN GROUP OF RESORTS — STYLESHEET
 * Design tokens live at the top under :root — change colors, type,
 * and spacing there and the whole site follows.
 */

/* ============================================================
   0. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
img, picture, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, h5, h6, p { overflow-wrap: break-word; }

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Color: warm hillside-villa palette, not saturated --- */
  --cream:        #F7F2E7;   /* base background */
  --cream-deep:   #EFE7D6;   /* alternating section bg */
  --paper:        #FBF8F2;   /* card surface */
  --charcoal:     #23201A;   /* near-black warm ink */
  --charcoal-soft:#3B362C;
  --wood:         #6E4A30;   /* wood brown, from the interiors */
  --wood-deep:    #4A3220;
  --gold:         #AD8A4E;   /* muted lamp-lit gold */
  --gold-bright:  #C7A25E;
  --forest:       #2E4433;   /* deep forest accent */
  --forest-deep:  #1E2E22;
  --line:         rgba(35,32,26,0.12);
  --line-light:   rgba(251,248,242,0.22);

  /* --- Type --- */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --step-2: clamp(1.45rem, 1.25rem + 1vw, 1.9rem);
  --step-3: clamp(1.9rem, 1.5rem + 1.8vw, 2.75rem);
  --step-4: clamp(2.5rem, 1.9rem + 2.8vw, 4rem);
  --step-5: clamp(3.1rem, 2.2rem + 4vw, 5.6rem);

  /* --- Layout --- */
  --page-max: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-s: 4px;
  --radius-m: 10px;
  --arch-radius: 240px 240px 6px 6px;

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-s: 0.3s;
  --dur-m: 0.6s;
  --dur-l: 1s;

  --shadow-soft: 0 20px 60px -25px rgba(35,32,26,0.35);
  --shadow-lift: 0 30px 80px -30px rgba(35,32,26,0.5);
}

/* ============================================================
   2. BASE
   ============================================================ */
html, body { height: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

::selection { background: var(--gold); color: var(--charcoal); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.002em;
  color: var(--charcoal);
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }

p { max-width: 62ch; }
p.lede { font-size: var(--step-1); line-height: 1.65; color: var(--charcoal-soft); }

.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.on-dark { color: var(--paper); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--paper); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--charcoal); color: var(--paper);
  padding: 12px 18px; border-radius: var(--radius-s);
  transition: top var(--dur-s) var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* ============================================================
   3. UTILITIES
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold);
}

.section { padding-block: clamp(64px, 10vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.section--cream { background: var(--cream); }
.section--deep { background: var(--cream-deep); }
.section--dark { background: var(--charcoal); }
.section--forest { background: var(--forest-deep); }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; }

.divider {
  width: 64px; height: 2px; background: var(--gold);
  border: none; margin-block: 24px;
}
.divider.center { margin-inline: auto; }

/* Arch motif — echoes the property's own archways, used sparingly */
.arch-frame {
  border-radius: var(--arch-radius);
  overflow: hidden;
}

/* ============================================================
   4. REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: transform, opacity;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"] { transform: scale(0.96); }
.is-revealed { opacity: 1 !important; transform: none !important; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform var(--dur-s) var(--ease-out), box-shadow var(--dur-s) var(--ease-out), background var(--dur-s), color var(--dur-s), border-color var(--dur-s);
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255,255,255,0.35), transparent 60%);
  opacity: 0; transition: opacity var(--dur-s);
  z-index: -1;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn--dark { background: var(--charcoal); color: var(--paper); box-shadow: var(--shadow-soft); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn--block { width: 100%; }
.btn--sm { padding: 11px 22px; font-size: 0.85rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.92rem;
  position: relative; padding-bottom: 2px;
}
.link-arrow::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: currentColor; transform: scaleX(0.3); transform-origin: left; transition: transform var(--dur-m) var(--ease-out); opacity: 0.5; }
.link-arrow:hover::after { transform: scaleX(1); opacity: 1; }
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--dur-s) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   6. SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--forest));
  z-index: 1200;
  transition: width 0.1s linear;
}

/* ============================================================
   7. HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding-block: 22px;
  transition: padding var(--dur-m) var(--ease-out), background var(--dur-m) var(--ease-out), box-shadow var(--dur-m) var(--ease-out), transform var(--dur-m) var(--ease-out);
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(247,242,231,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; transition: filter var(--dur-s); }
.site-header.is-scrolled .brand img { height: 34px; }
.brand-text { display: none; }

.primary-nav { display: none; }
@media (min-width: 980px) {
  .primary-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
  .nav-link {
    position: relative; font-size: 0.94rem; font-weight: 500;
    color: var(--paper);
    padding-block: 4px;
  }
  .site-header.is-scrolled .nav-link { color: var(--charcoal); }
  .nav-link::after {
    content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
    background: currentColor; transform: scaleX(0); transform-origin: right;
    transition: transform var(--dur-m) var(--ease-out);
  }
  .nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
  .nav-link.is-active { font-weight: 700; }
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-call {
  display: none;
}
@media (min-width: 980px) {
  .header-call {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--paper);
  }
  .site-header.is-scrolled .header-call { color: var(--charcoal); }
}

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: transparent; border: none;
  align-items: center;
}
@media (min-width: 980px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--paper);
  transition: transform var(--dur-s) var(--ease-out), opacity var(--dur-s);
}
.site-header.is-scrolled .menu-toggle span { background: var(--charcoal); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-scrim {
  position: fixed; inset: 0; background: rgba(20,18,14,0.5);
  opacity: 0; pointer-events: none; transition: opacity var(--dur-m);
  z-index: 940;
}
.mobile-nav.is-open ~ .mobile-nav-scrim,
.mobile-nav-scrim.is-open { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(84vw, 380px);
  background: var(--cream); z-index: 950;
  transform: translateX(100%);
  transition: transform var(--dur-m) var(--ease-out);
  padding: 100px 32px 40px;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.2);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-close {
  position: fixed; top: 18px; right: min(calc(84vw - 56px), 324px);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--charcoal); color: var(--paper); border: none;
  font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  z-index: 960; opacity: 0; pointer-events: none;
  transition: opacity var(--dur-s), transform var(--dur-s);
  transform: rotate(-45deg) scale(0.8);
}
.mobile-nav.is-open ~ .mobile-nav-close,
.mobile-nav-close.is-open {
  opacity: 1; pointer-events: auto; transform: rotate(0) scale(1);
}
.mobile-nav a {
  display: block; font-family: var(--font-display); font-size: 1.6rem;
  padding-block: 12px; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 28px; }
.mobile-nav-meta { margin-top: 32px; font-size: 0.9rem; color: var(--charcoal-soft); }
.mobile-nav-meta a { display: block; margin-top: 8px; font-weight: 600; color: var(--charcoal); }

@media (min-width: 980px) {
  .mobile-nav, .mobile-nav-scrim { display: none; }
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-media-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-media {
  position: absolute; inset: -20px;
  background-size: cover; background-position: center 60%;
  transform: scale(1.06) translateY(calc(var(--scrollY, 0px) * 1));
  transition: transform 0.4s var(--ease-out);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.16); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media { animation: none; }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,14,0.55) 0%, rgba(20,18,14,0.25) 32%, rgba(20,18,14,0.55) 68%, rgba(20,18,14,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding-block: clamp(120px, 20vh, 220px) clamp(56px, 8vw, 96px);
}
.hero-eyebrow { color: var(--gold-bright); }
.hero h1 {
  color: var(--paper);
  margin-top: 18px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-sub {
  color: rgba(251,248,242,0.86);
  margin-top: 22px;
  max-width: 46ch;
  font-size: var(--step-1);
}
.hero-actions { margin-top: 36px; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--paper); opacity: 0.85;
}
.scroll-cue span { font-size: 0.72rem; letter-spacing: 0.14em; }
.scroll-cue .line { width: 1px; height: 40px; background: rgba(251,248,242,0.5); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ""; position: absolute; top: -40px; left: 0; width: 100%; height: 40px;
  background: var(--gold-bright);
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop { 0% { top: -40px; } 60%,100% { top: 40px; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue .line::after { animation: none; top: 0; } }

/* ============================================================
   9. STORY / INTRO SECTIONS (image + text editorial)
   ============================================================ */
.story {
  display: grid; gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 860px) {
  .story { grid-template-columns: 1.05fr 0.95fr; }
  .story--reverse { grid-template-columns: 0.95fr 1.05fr; }
  .story--reverse .story-media { order: 2; }
}
.story-media { position: relative; }
.story-media img { width: 100%; height: auto; box-shadow: var(--shadow-soft); }
.story-media--arch img { border-radius: var(--arch-radius); }
.story-text .eyebrow { margin-bottom: 6px; }
.story-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.story-list li { display: flex; gap: 12px; align-items: flex-start; }
.story-list svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 3px; color: var(--gold); }

/* ============================================================
   9b. STAT STRIP (resort-level numbers, replaces old hero stats)
   ============================================================ */
.stat-strip {
  display: grid; gap: 1px; background: var(--line);
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .stat-strip { grid-template-columns: repeat(6, 1fr); } }
.stat-pill {
  background: var(--paper); padding: 30px 22px; text-align: center;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  justify-content: center;
}
.stat-pill b { font-family: var(--font-display); font-size: var(--step-2); color: var(--forest); font-weight: 500; line-height: 1.1; }
.stat-pill span { font-size: 0.82rem; color: var(--charcoal-soft); }

/* ============================================================
   10. ACCOMMODATION CARDS (resort-level: White House / Nakshatra / Cottages)
   ============================================================ */
.accommodation-grid {
  display: grid; gap: clamp(28px, 4vw, 40px);
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
@media (max-width: 980px) { .accommodation-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.accommodation-card {
  background: var(--paper); overflow: hidden; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; height: 100%;
  transition: transform var(--dur-m) var(--ease-out), box-shadow var(--dur-m) var(--ease-out);
}
.accommodation-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.accommodation-media { position: relative; aspect-ratio: 5/4; overflow: hidden; flex-shrink: 0; }
.accommodation-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.accommodation-card:hover .accommodation-media img { transform: scale(1.07); }
.accommodation-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(35,32,26,0.72); color: var(--paper);
  font-size: 0.72rem; letter-spacing: 0.05em;
  padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.accommodation-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.accommodation-body h3 { font-size: var(--step-2); }
.accommodation-body p { font-size: 0.92rem; color: var(--charcoal-soft); }
.accommodation-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 14px; }
.accommodation-tags span {
  font-size: 0.76rem; padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--charcoal-soft);
}
.accommodation-footer { padding-top: 6px; }

/* ============================================================
   11. AMENITIES GRID
   ============================================================ */
.amenity-grid {
  display: grid; gap: 1px; background: var(--line);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: 1px solid var(--line);
}
.amenity {
  background: var(--cream); padding: 34px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background var(--dur-s);
}
.amenity:hover { background: var(--paper); }
.amenity svg { width: 30px; height: 30px; color: var(--gold); }
.amenity h4 { font-size: 1.2rem; }
.amenity p { font-size: 0.9rem; color: var(--charcoal-soft); }

/* ---- Pricing band ---- */
.pricing-band {
  display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between;
  background: var(--paper); border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 5vw, 52px);
  border-radius: var(--radius-m); box-shadow: var(--shadow-soft);
}
.pricing-band-text { max-width: 46ch; }
.pricing-band-text h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--charcoal-soft); margin-top: 10px; }
.pricing-band-note { margin-top: 12px; font-size: 0.88rem; color: var(--charcoal-soft); }
.pricing-band-figure {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  flex-shrink: 0;
}
.pricing-amount { font-family: var(--font-display); font-size: var(--step-4); color: var(--forest); line-height: 1; }
.pricing-unit { font-size: 0.85rem; color: var(--charcoal-soft); margin-bottom: 10px; }

/* ============================================================
   12. EXPERIENCE / FEATURE TILES (bonfire, pool, etc.)
   ============================================================ */
.tile-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
}
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius-m);
  grid-column: span 6;
}
@media (min-width: 720px) {
  .tile--lg { grid-column: span 4; grid-row: span 2; }
  .tile--sm { grid-column: span 2; }
}
@media (min-width: 720px) and (max-width: 1000px) {
  .tile--lg { grid-column: span 3; }
  .tile--sm { grid-column: span 3; }
}
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.tile:hover img { transform: scale(1.08); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,18,14,0.85) 0%, rgba(20,18,14,0.1) 55%, transparent 75%);
}
.tile-label {
  position: absolute; left: 22px; bottom: 20px; right: 22px; z-index: 2; color: var(--paper);
}
.tile-label .eyebrow { color: var(--gold-bright); }
.tile-label h3, .tile-label h4 { color: var(--paper); margin-top: 6px; }
.tile-label p { color: rgba(251,248,242,0.82); font-size: 0.88rem; margin-top: 6px; max-width: 42ch; }

/* ============================================================
   13. GALLERY (masonry)
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 44px); }
.filter-bar button {
  background: transparent; border: 1px solid var(--line);
  padding: 9px 20px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  transition: all var(--dur-s);
}
.filter-bar button:hover { border-color: var(--gold); }
.filter-bar button.is-active { background: var(--charcoal); color: var(--paper); border-color: var(--charcoal); }

.masonry {
  columns: 1; column-gap: 18px;
}
@media (min-width: 620px) { .masonry { columns: 2; } }
@media (min-width: 980px) { .masonry { columns: 3; } }
.masonry-item {
  break-inside: avoid; margin-bottom: 18px; position: relative;
  overflow: hidden; border-radius: var(--radius-s);
  cursor: zoom-in;
}
.masonry-item img {
  width: 100%; display: block;
  transition: transform 0.8s var(--ease-out), filter 0.6s;
  filter: blur(0);
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,18,14,0.55), transparent 45%);
  opacity: 0; transition: opacity var(--dur-s);
}
.masonry-item:hover::after { opacity: 1; }
.masonry-item .cap {
  position: absolute; left: 14px; bottom: 12px; color: var(--paper);
  font-size: 0.82rem; opacity: 0; transform: translateY(6px);
  transition: all var(--dur-s); z-index: 2;
}
.masonry-item:hover .cap { opacity: 1; transform: none; }
.is-hidden-filter { display: none; }

/* ============================================================
   14. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; background: rgba(15,13,10,0.96);
  z-index: 1300; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--dur-m) var(--ease-out);
  padding: 24px;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-figure { max-width: 90vw; max-height: 84vh; text-align: center; }
.lightbox-img { max-width: 90vw; max-height: 78vh; width: auto; margin-inline: auto; box-shadow: 0 30px 90px rgba(0,0,0,0.5); }
.lightbox-caption { color: rgba(251,248,242,0.8); margin-top: 16px; font-size: 0.9rem; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; background: transparent; border: none;
  color: var(--paper); font-size: 2.2rem; line-height: 1; width: 48px; height: 48px;
}
.lightbox-close:hover { color: var(--gold-bright); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(251,248,242,0.08); border: 1px solid rgba(251,248,242,0.25);
  color: var(--paper); width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.8rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-s);
}
.lightbox-nav:hover { background: rgba(251,248,242,0.18); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
@media (max-width: 640px) { .lightbox-nav { width: 40px; height: 40px; font-size: 1.3rem; } }

.video-lightbox {
  position: fixed; inset: 0; background: rgba(15,13,10,0.96);
  z-index: 1300; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--dur-m) var(--ease-out);
  padding: 24px;
}
.video-lightbox.is-open { opacity: 1; pointer-events: auto; }
.video-lightbox-player { max-width: min(94vw, 420px); max-height: 84vh; width: 100%; box-shadow: 0 30px 90px rgba(0,0,0,0.5); border-radius: var(--radius-m); }

/* ============================================================
   15. VIDEO / REELS GRID
   ============================================================ */
.reel-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 620px) { .reel-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .reel-grid { grid-template-columns: repeat(5, 1fr); } }
.reel {
  position: relative; aspect-ratio: 9/16; border-radius: var(--radius-m);
  overflow: hidden; cursor: pointer; background: var(--charcoal);
}
.reel img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.reel:hover img { transform: scale(1.06); }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,18,14,0.8), transparent 50%); }
.reel-play {
  position: absolute; inset: 0; margin: auto; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(251,248,242,0.92); border-radius: 50%; z-index: 2;
  transition: transform var(--dur-s) var(--ease-out);
}
.reel:hover .reel-play { transform: scale(1.12); }
.reel-play svg { width: 18px; height: 18px; color: var(--charcoal); margin-left: 3px; }
.reel-cap { position: absolute; left: 12px; bottom: 12px; right: 12px; color: var(--paper); font-size: 0.8rem; z-index: 2; }

/* Cinematic featured video strip (autoplay muted preview) */
.feature-video {
  position: relative; border-radius: var(--radius-m); overflow: hidden;
  aspect-ratio: 21/9; background: var(--charcoal);
  box-shadow: var(--shadow-lift);
}
.feature-video video { width: 100%; height: 100%; object-fit: cover; }
.feature-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,18,14,0.7), transparent 40%, transparent 70%, rgba(20,18,14,0.35)); pointer-events: none; }
.feature-video-copy {
  position: absolute; left: clamp(20px, 4vw, 48px); bottom: clamp(20px, 4vw, 48px); z-index: 2; color: var(--paper); max-width: 520px;
}
.feature-video-copy h3 { color: var(--paper); }
.feature-video-copy p { color: rgba(251,248,242,0.85); margin-top: 10px; }
@media (max-width: 720px) { .feature-video { aspect-ratio: 9/12; } }

/* ============================================================
   15b. REELS — premium vertical cards, hover/tap preview
   ============================================================ */
/* ---- Reels carousel: horizontal snap-scroll, Instagram-style cards ---- */
.reels-carousel-wrap { position: relative; }
.reels-carousel-wrap::before, .reels-carousel-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 3; pointer-events: none;
}
.reels-carousel-wrap::before { left: 0; background: linear-gradient(90deg, var(--charcoal), transparent); }
.reels-carousel-wrap::after { right: 0; background: linear-gradient(270deg, var(--charcoal), transparent); }
.reels-carousel {
  display: flex; gap: 18px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: var(--gutter);
  padding: 6px var(--gutter) 26px;
  scrollbar-width: none;
}
.reels-carousel::-webkit-scrollbar { display: none; }
.reel-slide {
  flex: 0 0 auto;
  width: clamp(150px, 32vw, 200px);
  scroll-snap-align: start;
}
@media (min-width: 720px) { .reel-slide { width: 210px; } }
.reel-card {
  position: relative; aspect-ratio: 9/16; border-radius: 16px;
  overflow: hidden; background: var(--charcoal); box-shadow: var(--shadow-soft);
  transition: transform var(--dur-m) var(--ease-out), box-shadow var(--dur-m) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .reel-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 60px -18px rgba(199,162,94,0.45), var(--shadow-lift); }
}
.reel-card img.reel-poster, .reel-card .reel-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.reel-card .reel-video { opacity: 0; transition: opacity 0.4s var(--ease-out); }
.reel-card:hover .reel-video { opacity: 1; }
.reel-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,18,14,0.5), transparent 40%, transparent 75%, rgba(20,18,14,0.2)); pointer-events: none; }
.reel-play-btn {
  position: absolute; inset: 0; margin: auto; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(251,248,242,0.9); border-radius: 50%; border: none; z-index: 2;
  opacity: 0.9; transition: transform var(--dur-s) var(--ease-out), opacity var(--dur-s);
}
.reel-card:hover .reel-play-btn { transform: scale(1.12); opacity: 1; }
.reel-play-btn svg { width: 16px; height: 16px; color: var(--charcoal); margin-left: 3px; }
.reel-scroll-hint {
  text-align: center; font-size: 0.78rem; color: rgba(251,248,242,0.45);
  margin-top: 2px; letter-spacing: 0.03em;
}
@media (min-width: 720px) { .reel-scroll-hint { display: none; } }

/* ---- Reels: desktop prev/next arrows ---- */
.reel-arrow {
  display: none;
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: none; z-index: 4;
  background: rgba(251,248,242,0.12); backdrop-filter: blur(6px);
  color: var(--paper); align-items: center; justify-content: center;
  transition: background var(--dur-s), transform var(--dur-s);
}
.reel-arrow svg { width: 20px; height: 20px; }
.reel-arrow:hover { background: rgba(251,248,242,0.24); transform: translateY(-50%) scale(1.08); }
.reel-arrow--prev { left: 14px; }
.reel-arrow--next { right: 14px; }
@media (min-width: 900px) { .reel-arrow { display: flex; } }

/* ---- Testimonial grid: 3 / 2 / 1 columns, distinct from the Reels carousel ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: clamp(36px, 5vw, 56px);
}
@media (min-width: 640px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  position: relative; aspect-ratio: 9/16; border-radius: 16px;
  overflow: hidden; background: var(--charcoal); box-shadow: var(--shadow-soft);
  transition: transform var(--dur-m) var(--ease-out), box-shadow var(--dur-m) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px -18px rgba(199,162,94,0.4), var(--shadow-lift); }
}
.testimonial-poster, .testimonial-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.testimonial-video { opacity: 0; transition: opacity 0.4s var(--ease-out); }
.testimonial-card:hover .testimonial-video { opacity: 1; }
.testimonial-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,18,14,0.55), transparent 40%, transparent 75%, rgba(20,18,14,0.15));
  pointer-events: none;
}
.testimonial-play-btn {
  position: absolute; inset: 0; margin: auto; width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(251,248,242,0.92); border-radius: 50%; border: none; z-index: 2;
  transition: transform var(--dur-s) var(--ease-out), opacity var(--dur-s);
}
.testimonial-card:hover .testimonial-play-btn { transform: scale(1.12); }
.testimonial-play-btn svg { width: 18px; height: 18px; color: var(--charcoal); margin-left: 3px; }

/* ---- Instagram CTA ---- */
.insta-cta {
  margin-top: clamp(40px, 6vw, 64px);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}
.insta-cta p { color: rgba(251,248,242,0.75); font-size: 1.02rem; max-width: 40ch; }
.insta-cta-btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 30px; border-radius: 999px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7);
  color: #fff; font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 18px 50px -18px rgba(238,42,123,0.55);
  transition: transform var(--dur-s) var(--ease-out), box-shadow var(--dur-s) var(--ease-out);
}
.insta-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -16px rgba(238,42,123,0.65); }
.insta-cta-btn svg { width: 20px; height: 20px; }
.insta-cta-handle { font-size: 0.82rem; color: rgba(251,248,242,0.5); }

/* ============================================================
   16. TESTIMONIALS
   ============================================================ */
.testimonial-strip { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testimonial {
  background: var(--paper); padding: 32px 30px; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; }
.testimonial p { font-size: 1rem; color: var(--charcoal-soft); font-style: italic; }
.testimonial-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-who .avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--forest);
  color: var(--paper); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem;
}
.testimonial-who b { display: block; font-size: 0.92rem; }
.testimonial-who span { font-size: 0.8rem; color: var(--charcoal-soft); }

/* ============================================================
   17. FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--font-display); font-size: 1.15rem;
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--charcoal); transition: transform var(--dur-s) var(--ease-out);
}
.faq-q .plus::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; left: 50%; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { padding: 0 4px 24px; color: var(--charcoal-soft); max-width: 68ch; }
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ============================================================
   18. FORMS
   ============================================================ */
.form-card {
  background: var(--paper); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-lift);
  border-radius: var(--radius-m);
}
.enquiry-form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } .form-row--3 { grid-template-columns: 1fr 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--charcoal-soft); }
.field input, .field textarea, .field select {
  border: 1px solid var(--line); background: var(--cream);
  padding: 13px 16px; border-radius: var(--radius-s); font-size: 0.96rem;
  transition: border-color var(--dur-s), background var(--dur-s);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); background: var(--paper); }
.field textarea { min-height: 120px; resize: vertical; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #A5443A; }
.field-error { display: none; font-size: 0.78rem; color: #A5443A; }
.field.has-error .field-error { display: block; }
.field-hint { font-size: 0.78rem; color: var(--charcoal-soft); opacity: 0.8; }

button[type="submit"] { position: relative; }
button[type="submit"].is-loading { color: transparent; pointer-events: none; }
button[type="submit"].is-loading::after {
  content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(35,32,26,0.3); border-top-color: var(--charcoal);
  top: 50%; left: 50%; margin: -9px 0 0 -9px;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  text-align: center; padding: 40px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.form-success svg { width: 52px; height: 52px; color: var(--forest); }
.form-success h3 { font-size: 1.5rem; }

/* ============================================================
   19. ENQUIRY POPUP
   ============================================================ */
.enquiry-popup {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,18,14,0.6);
  backdrop-filter: blur(6px) saturate(120%);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-m) var(--ease-out), visibility 0s linear var(--dur-m);
  padding: 20px;
}
.enquiry-popup.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity var(--dur-m) var(--ease-out);
}
.enquiry-popup-card {
  position: relative; background: var(--paper); max-width: 400px; width: 100%;
  display: grid; grid-template-columns: 1fr;
  box-shadow: var(--shadow-lift); border-radius: 18px; overflow: hidden;
  transform: translateY(18px) scale(0.96); transition: transform var(--dur-m) var(--ease-out);
}
.enquiry-popup.is-open .enquiry-popup-card { transform: none; }
.enquiry-popup-media { aspect-ratio: 16/8; overflow: hidden; }
.enquiry-popup-media img { width: 100%; height: 100%; object-fit: cover; }
.enquiry-popup-body { padding: 26px 26px 28px; }
.enquiry-popup-body h3 { font-size: 1.4rem; }
.enquiry-popup-body p { font-size: 0.88rem; color: var(--charcoal-soft); margin-top: 6px; }
.enquiry-popup-body form { margin-top: 18px; display: grid; gap: 12px; }
.enquiry-popup-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(20,18,14,0.55);
  color: var(--paper); border: none; font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-s), transform var(--dur-s);
}
.enquiry-popup-close:hover { background: rgba(20,18,14,0.8); transform: scale(1.08); }

/* ============================================================
   19b. SUCCESS MODAL — replaces inline .form-success entirely
   ============================================================ */
.success-modal {
  position: fixed; inset: 0; z-index: 1150;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,18,14,0.62);
  backdrop-filter: blur(8px) saturate(120%);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-m) var(--ease-out), visibility 0s linear var(--dur-m);
  padding: 20px;
}
.success-modal.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity var(--dur-m) var(--ease-out);
}
.success-modal-card {
  position: relative; background: var(--paper); max-width: 420px; width: 100%;
  border-radius: 18px; box-shadow: var(--shadow-lift);
  padding: 44px 32px 36px; text-align: center;
  transform: translateY(18px) scale(0.94); transition: transform var(--dur-m) var(--ease-out);
}
.success-modal.is-open .success-modal-card { transform: none; }
.success-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%; background: var(--cream);
  color: var(--charcoal); border: 1px solid var(--line); font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-s), transform var(--dur-s);
}
.success-modal-close:hover { background: var(--cream-deep); transform: scale(1.08); }

.success-check {
  width: 68px; height: 68px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  animation: successPop 0.5s var(--ease-out) 0.15s both;
}
.success-check svg { width: 32px; height: 32px; }
.success-check svg path {
  stroke: var(--paper); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 24; stroke-dashoffset: 24;
  animation: successDraw 0.5s ease-out 0.5s forwards;
}
@keyframes successPop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes successDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .success-check { animation: none; }
  .success-check svg path { animation: none; stroke-dashoffset: 0; }
}
.success-modal-card h3 { font-size: 1.6rem; }
.success-modal-card p { color: var(--charcoal-soft); margin-top: 12px; font-size: 0.95rem; }
.success-modal-card .btn { margin-top: 24px; }
.success-modal-urgent { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.success-modal-urgent span { display: block; font-size: 0.8rem; color: var(--charcoal-soft); margin-bottom: 10px; }

/* ============================================================
   20. FLOATING CTAS
   ============================================================ */
.floating-actions {
  position: fixed; right: 20px; bottom: 88px; z-index: 850;
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 760px) { .floating-actions { bottom: 28px; } }
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift);
  transition: transform var(--dur-s) var(--ease-out);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 24px; height: 24px; }
.fab--call { background: var(--charcoal); color: var(--paper); }
.fab--whatsapp { background: #2E4433; color: var(--paper); }

.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--charcoal); color: var(--paper);
}
@media (min-width: 760px) { .mobile-cta-bar { display: none; } }
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 10px; font-size: 0.88rem; font-weight: 600;
}
.mobile-cta-bar a:first-child { background: var(--gold); color: var(--charcoal); }
.mobile-cta-bar svg { width: 18px; height: 18px; }
body { padding-bottom: 0; }
@media (max-width: 759px) { body { padding-bottom: 58px; } }

/* ============================================================
   21. LOCATION / MAP
   ============================================================ */
.map-frame { position: relative; aspect-ratio: 16/9; box-shadow: var(--shadow-soft); border-radius: var(--radius-m); overflow: hidden; }
@media (min-width: 760px) { .map-frame { aspect-ratio: 16/8; } }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.location-facts { display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }
.location-fact { display: flex; gap: 14px; align-items: flex-start; }
.location-fact svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.location-fact b { display: block; }
.location-fact span { color: var(--charcoal-soft); font-size: 0.92rem; }

/* ============================================================
   22. INSTAGRAM STRIP
   ============================================================ */
.insta-strip { display: grid; gap: 6px; grid-template-columns: repeat(3, 1fr); }
@media (min-width: 640px) { .insta-strip { grid-template-columns: repeat(6, 1fr); } }
.insta-item { position: relative; aspect-ratio: 1; overflow: hidden; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.insta-item:hover img { transform: scale(1.1); }
.insta-item::after {
  content: ""; position: absolute; inset: 0; background: rgba(46,68,51,0.0);
  transition: background var(--dur-s);
  display: flex; align-items: center; justify-content: center;
}
.insta-item:hover::after { background: rgba(46,68,51,0.35); }

/* ============================================================
   23. CTA BAND
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-m);
  padding: clamp(48px, 8vw, 88px) clamp(24px, 6vw, 72px);
  background: var(--charcoal); color: var(--paper);
  text-align: center;
}
.cta-band .hero-media { position: absolute; inset: 0; opacity: 0.34; animation-duration: 30s; }
.cta-band-content { position: relative; z-index: 2; }
.cta-band h2 { color: var(--paper); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(251,248,242,0.8); margin-inline: auto; margin-top: 16px; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }

/* ============================================================
   24. FOOTER
   ============================================================ */
.site-footer { background: var(--forest-deep); color: rgba(251,248,242,0.82); padding-block: 72px 28px; }
.footer-grid {
  display: grid; gap: 44px;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p { color: rgba(251,248,242,0.65); font-size: 0.9rem; max-width: 34ch; }
.footer-social {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(251,248,242,0.25); padding: 10px 16px; border-radius: 999px;
  font-size: 0.85rem; transition: border-color var(--dur-s), background var(--dur-s);
}
.footer-social:hover { border-color: var(--gold-bright); background: rgba(251,248,242,0.06); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--gold-bright); margin-bottom: 18px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a:hover { color: var(--paper); }
.footer-col li { font-size: 0.92rem; }
.footer-bottom {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(251,248,242,0.14);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(251,248,242,0.55);
}
.footer-bottom a:hover { color: var(--paper); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   25. LOADER
   ============================================================ */
.page-loader {
  position: fixed; inset: 0; z-index: 2000; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.page-loader img { width: 74px; opacity: 0.9; animation: loaderPulse 1.4s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100% { opacity: 0.5; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1.02); } }
body.is-ready .page-loader { opacity: 0; visibility: hidden; }
@media (prefers-reduced-motion: reduce) { .page-loader img { animation: none; } }

/* ============================================================
   26. MISC PAGE HELPERS
   ============================================================ */
.two-col { display: grid; gap: clamp(28px, 5vw, 60px); }
@media (min-width: 820px) { .two-col { grid-template-columns: 1fr 1fr; } }
.stat-row { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 56px); margin-top: 12px; }
.stat b { display: block; font-family: var(--font-display); font-size: var(--step-3); color: var(--forest); }
.stat span { font-size: 0.85rem; color: var(--charcoal-soft); }

/* About section: text always sits on a solid surface, never raw over a photo */
.about-panel {
  background: var(--paper); padding: clamp(30px, 4vw, 52px);
  box-shadow: var(--shadow-soft); border-radius: var(--radius-m);
}
.about-panel p { color: var(--charcoal-soft); }

/* ============================================================
   TEAM SECTION — rebuilt from scratch (Grid-based, editorial)
   ============================================================ */
.team-section {
  background: var(--cream);
  padding-block: clamp(64px, 10vw, 128px);
}
.team-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --- Founder: editorial photo-left / text-right grid --- */
.founder-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  margin-top: clamp(40px, 6vw, 72px);
}
@media (min-width: 860px) {
  .founder-block {
    grid-template-columns: minmax(320px, 460px) 1fr;
    gap: clamp(48px, 6vw, 88px);
    align-items: center;
  }
}
.founder-photo {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 3/4;
  width: 100%;
}
.founder-slideshow { position: relative; width: 100%; height: 100%; }
.founder-slideshow img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.1s ease, transform 0.8s var(--ease-out);
}
.founder-slideshow img.is-active { opacity: 1; }
.founder-photo:hover .founder-slideshow img.is-active { transform: scale(1.06); }

.slideshow-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: none; z-index: 3;
  background: rgba(20,18,14,0.35); backdrop-filter: blur(4px);
  color: var(--paper); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--dur-s), background var(--dur-s), transform var(--dur-s);
}
.founder-photo:hover .slideshow-arrow { opacity: 1; }
.slideshow-arrow:hover { background: rgba(20,18,14,0.6); transform: translateY(-50%) scale(1.08); }
.slideshow-arrow svg { width: 18px; height: 18px; }
.slideshow-arrow--prev { left: 14px; }
.slideshow-arrow--next { right: 14px; }
.slideshow-dots {
  position: absolute; bottom: 18px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; gap: 8px;
}
.slideshow-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(251,248,242,0.45); padding: 0;
  transition: background var(--dur-s), transform var(--dur-s);
}
.slideshow-dot.is-active { background: var(--gold-bright); transform: scale(1.3); }
.slideshow-dot:hover { background: rgba(251,248,242,0.75); }

.founder-content { display: flex; flex-direction: column; }
.founder-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.founder-label::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.founder-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--step-4); margin-top: 14px; color: var(--charcoal);
}
.founder-text {
  margin-top: 22px; max-width: 700px;
  display: flex; flex-direction: column; gap: 16px;
}
.founder-text p { font-size: 1rem; line-height: 1.75; color: var(--charcoal-soft); max-width: none; }
.founder-quote {
  margin-top: 24px; max-width: 700px;
  border-left: 3px solid var(--gold); padding-left: 22px;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.3rem; line-height: 1.5; color: var(--charcoal);
}

/* --- Leadership: three equal cards --- */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: clamp(56px, 8vw, 96px) auto 0;
}
@media (min-width: 620px) {
  .leadership-grid { grid-template-columns: repeat(2, 1fr); max-width: 620px; }
}
@media (min-width: 900px) {
  .leadership-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
}
.leadership-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-m) var(--ease-out), box-shadow var(--dur-m) var(--ease-out), border-color var(--dur-m);
}
.leadership-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold);
}
.leadership-photo {
  width: 132px; height: 132px; margin-inline: auto;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}
.leadership-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.leadership-card:hover .leadership-photo img { transform: scale(1.1); }
.leadership-name { margin-top: 20px; font-size: 1.15rem; }
.leadership-role {
  margin-top: 6px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold);
}

/* ============================================================
   CTA SECTION — YouTube + Google Review (rebuilt from scratch)
   ============================================================ */
.cta-section { background: var(--cream); padding-block: clamp(56px, 8vw, 100px); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (min-width: 760px) {
  .cta-grid { grid-template-columns: repeat(2, 1fr); }
}
.cta-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-m);
  overflow: hidden;
  padding: clamp(32px, 5vw, 48px) clamp(28px, 5vw, 44px);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; align-items: flex-start;
  height: 100%;
  transition: transform var(--dur-m) var(--ease-out), box-shadow var(--dur-m) var(--ease-out);
}
.cta-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: var(--shadow-lift); }
.cta-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}
.cta-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-deep); margin-bottom: 20px;
}
.cta-icon svg { width: 26px; height: 26px; }
.cta-icon--youtube svg { color: #FF0000; }
.cta-icon--review svg { color: var(--gold); }
.cta-card h3 { font-size: 1.4rem; }
.cta-card p { color: var(--charcoal-soft); font-size: 0.94rem; margin-top: 10px; margin-bottom: 26px; }
.cta-card .btn { margin-top: auto; }

/* Honeypot field — hidden from real visitors, visible to bots that fill everything */
.hp-field {
  position: absolute !important; left: -9999px !important; width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

.form-error {
  background: rgba(165,68,58,0.1); border: 1px solid rgba(165,68,58,0.3);
  color: #A5443A; padding: 12px 16px; border-radius: var(--radius-s);
  font-size: 0.85rem;
}

.policy-content h2 { font-size: var(--step-2); margin-top: 42px; margin-bottom: 14px; }.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li { color: var(--charcoal-soft); margin-bottom: 12px; }
.policy-content ul { list-style: disc; padding-left: 22px; }
.policy-content ul li { list-style: disc; }

.team-note { border-left: 3px solid var(--gold); padding-left: 20px; margin-top: 24px; }

@media print {
  .site-header, .mobile-cta-bar, .floating-actions, .enquiry-popup, .lightbox, .video-lightbox { display: none !important; }
}

/* ============================================================
   AGE-PROOF FALLBACK — aspect-ratio has excellent support in any
   browser from roughly the last 4 years, but every container that
   uses it here also holds absolutely-positioned media (img/video
   with inset:0), which means if aspect-ratio is ever NOT honoured
   the box collapses to zero height and that media vanishes. This
   block gives every one of those containers a classic padding-top
   fallback so they hold their height even without aspect-ratio
   support at all — belt and braces for maximum compatibility.
   ============================================================ */
@supports not (aspect-ratio: 1 / 1) {
  .accommodation-media { height: 0; padding-top: 80%; }          /* 5:4  */
  .reel-card { height: 0; padding-top: 177.78%; }                /* 9:16 */
  .testimonial-card { height: 0; padding-top: 177.78%; }         /* 9:16 */
  .feature-video { height: 0; padding-top: 42.857%; }            /* 21:9 */
  @media (max-width: 720px) { .feature-video { padding-top: 133.33%; } } /* 9:12 */
  .enquiry-popup-media { height: 0; padding-top: 50%; }          /* 16:8 */
  .map-frame { height: 0; padding-top: 56.25%; }                 /* 16:9 */
  @media (min-width: 760px) { .map-frame { padding-top: 50%; } } /* 16:8 */
  .insta-item { height: 0; padding-top: 100%; }                  /* 1:1  */
  .founder-photo { height: 0; padding-top: 133.33%; }            /* 3:4  */
}
