/* ═══════════════════════════════════════════════════════════════
   KAP Film Village & Resort — Unified Design System v2.0
   Brand: Brown #70462E | Orange #F88D33 | Dark Brown #533423
   Typography: Cormorant Garamond + Jost
   Luxury African Hospitality — One Cohesive Identity
   ═══════════════════════════════════════════════════════════════ */

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

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Core brand */
  --c-brown:        #70462E;
  --c-brown-dk:     #533423;
  --c-brown-deep:   #3a2418;
  --c-brown-lt:     #8f5c3c;
  --c-brown-pale:   #f0e0d2;
  --c-orange:       #F88D33;
  --c-orange-dk:    #d4711a;
  --c-orange-lt:    #ffaa5e;
  --c-orange-pale:  #fef0e0;
  --c-cream:        #FDF6EE;
  --c-sand:         #F5E6D0;
  --c-sand-dk:      #e8d0b4;

  /* Neutrals */
  --c-ink:          #1a1108;
  --c-text:         #2a1f15;
  --c-text-md:      #5a4535;
  --c-text-lt:      #8a7060;
  --c-border:       #e2d5c8;
  --c-white:        #ffffff;

  /* Status */
  --c-success:      #2e7d32;
  --c-error:        #c62828;
  --c-warn:         #ef6c00;

  /* Typography */
  --f-head:   'Cormorant Garamond', Georgia, serif;
  --f-body:   'Jost', system-ui, sans-serif;
  --lh:       1.72;

  /* Space scale */
  --s1: .25rem;  --s2: .5rem;   --s3: .75rem;  --s4: 1rem;
  --s5: 1.5rem;  --s6: 2rem;    --s7: 3rem;    --s8: 4rem;  --s9: 6rem;

  /* Layout */
  --max-w:    1320px;
  --pad-x:    clamp(1.25rem, 5vw, 2.5rem);
  --nav-h:    96px;

  /* Radius */
  --r-sm: 4px;  --r-md: 8px;  --r-lg: 16px;  --r-xl: 24px;  --r-pill: 9999px;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(83,52,35,.08);
  --sh-md: 0 4px 16px rgba(83,52,35,.12);
  --sh-lg: 0 12px 36px rgba(83,52,35,.16);
  --sh-xl: 0 24px 64px rgba(83,52,35,.22);

  /* Transitions */
  --ease:    .3s ease;
  --ease-f:  .15s ease;

  /* ── Backward compat aliases (for pages using old variable names) ── */
  --kap-brown:         var(--c-brown);
  --kap-brown-dark:    var(--c-brown-dk);
  --kap-brown-deep:    var(--c-brown-deep);
  --kap-brown-light:   var(--c-brown-lt);
  --kap-brown-pale:    var(--c-brown-pale);
  --kap-orange:        var(--c-orange);
  --kap-orange-dark:   var(--c-orange-dk);
  --kap-orange-light:  var(--c-orange-lt);
  --kap-orange-pale:   var(--c-orange-pale);
  --kap-cream:         var(--c-cream);
  --kap-sand:          var(--c-sand);
  --kap-gray-900:      var(--c-text);
  --kap-gray-700:      var(--c-text-md);
  --kap-gray-500:      var(--c-text-lt);
  --kap-gray-300:      #c0b8b0;
  --kap-gray-100:      var(--c-cream);
  --kap-black:         var(--c-ink);
  --kap-white:         var(--c-white);
  --color-primary:     var(--c-brown);
  --color-accent:      var(--c-orange);
  --color-text:        var(--c-text);
  --color-text-muted:  var(--c-text-lt);
  --color-bg:          var(--c-cream);
  --color-bg-alt:      var(--c-sand);
  --color-border:      var(--c-border);
  --color-success:     var(--c-success);
  --color-error:       var(--c-error);
  --color-warning:     var(--c-warn);
  --font-heading:      var(--f-head);
  --font-body:         var(--f-body);
  --line-height:       var(--lh);
  --container-max:     var(--max-w);
  --container-pad:     var(--pad-x);
  --header-h:          var(--nav-h);
  --radius-sm:         var(--r-sm);  --radius-md: var(--r-md);
  --radius-lg:         var(--r-lg);  --radius-xl: var(--r-xl);
  --radius-full:       var(--r-pill);
  --shadow-sm:         var(--sh-sm); --shadow-md: var(--sh-md);
  --shadow-lg:         var(--sh-lg); --shadow-xl: var(--sh-xl);
  --transition:        var(--ease);  --transition-fast: var(--ease-f);
  --space-xs: var(--s1); --space-sm: var(--s2); --space-md: var(--s4);
  --space-lg: var(--s5); --space-xl: var(--s6); --space-2xl: var(--s7);
  --space-3xl: var(--s8); --space-4xl: var(--s9);
  /* old page names */
  --forest-dark:       var(--c-brown-dk);
  --forest-medium:     var(--c-brown);
  --gold:              var(--c-orange);
  --gold-dark:         var(--c-orange-dk);
  --gold-light:        var(--c-orange-lt);
  --bg-cream:          var(--c-cream);
  --text-body:         var(--c-text);
  --text-muted:        var(--c-text-lt);
  --shadow-xl-old:     var(--sh-xl);
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--f-body); color: var(--c-text); background: var(--c-cream); line-height: var(--lh); overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  line-height: 1.15;
  color: var(--c-brown-dk);
  font-weight: 500;
}
h1 { font-size: clamp(2.4rem,  5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem,  4vw,   3.2rem); }
h3 { font-size: clamp(1.45rem, 3vw,   2.2rem); }
h4 { font-size: clamp(1.2rem,  2.5vw, 1.55rem); }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p { margin-bottom: var(--s4); color: var(--c-text-md); }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.12rem; font-weight: 300; line-height: 1.82; }
.text-muted  { color: var(--c-text-lt) !important; }
.text-orange, .text-gold { color: var(--c-orange) !important; }
.text-brown, .text-green { color: var(--c-brown) !important; }
.text-white  { color: #fff !important; }
.text-center { text-align: center; }
.text-sm     { font-size: .875rem; }
.text-xs     { font-size: .75rem; }
.text-serif  { font-family: var(--f-head); font-style: italic; }

/* Section label / eyebrow */
.section-eyebrow,
.section-label {
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-orange);
  display: block;
  margin-bottom: var(--s2);
}

/* Underline rule on section titles */
.section-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-brown));
  margin-top: .65rem;
  border-radius: 2px;
}
.section-title.centered::after,
.section-title.text-center::after { margin-inline: auto; }

/* Section header wrapper (used by some pages) */
.section-header { margin-bottom: var(--s7); }
.section-header h2 { margin-top: var(--s2); }

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x); }
.section    { padding-block: var(--s9); }
.section-sm { padding-block: var(--s7); }

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAV — One unified style for all pages
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
  padding-top: env(safe-area-inset-top, 0px); /* notch safety */
  /* Flex column so the child .container + .nav-inner fills the
     remaining height below the safe-area pad and stays centred */
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
/* Ensure the container inside the header stretches to fill height */
.site-header > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.site-header.transparent { background: transparent; }
.site-header.scrolled,
.site-header.solid {
  background: rgba(58,36,24,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 28px rgba(0,0,0,.35);
}

/* nav-inner (used by about, accommodation, film-village, index) */
.nav-inner,
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Use min-height so items stay vertically centred even when
     padding-top (safe-area inset) shifts the header downward.
     We subtract the safe-area pad so the flex container fills
     only the remaining visible height and centres within it. */
  min-height: calc(var(--nav-h) - env(safe-area-inset-top, 0px));
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Logo — far left */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-shrink: 0;
  order: 0;
  margin-right: auto; /* push everything else to the right */
}
.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.32));
  transition: height var(--ease);
}
/* Fallback text logo */
.nav-logo-text {
  font-family: var(--f-head);
  font-size: 1.1rem;
  color: var(--c-orange);
  line-height: 1.1;
  font-weight: 600;
}
.nav-logo-sub, .logo-sub {
  display: block;
  font-family: var(--f-body);
  font-size: .58rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.logo-kap { color: var(--c-orange); font-family: var(--f-head); font-size: 1.2rem; font-weight: 700; }

/* ── Weather widget (desktop) — clean, no border/bg ── */
.nav-weather {
  display: flex;
  align-items: center;
  gap: .45rem;
  /* No background or border — seamlessly part of the nav */
  background: none;
  border: none;
  padding: 0 0 0 1rem;  /* small left gap from nav-menu */
  order: 2;             /* after nav-menu, before hamburger */
  flex-shrink: 0;
}
.nav-weather:hover { background: none; }
.nav-weather-icon {
  font-size: .95rem;
  color: var(--c-orange);
  flex-shrink: 0;
}
.nav-weather-temp {
  font-family: var(--f-body);
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .03em;
  white-space: nowrap;
}
.nav-weather-desc {
  font-family: var(--f-body);
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .15rem;
  order: 1;
  /* No auto margin — logo's margin-right:auto already pushes menu right */
}
.nav-links { /* old class alias */
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nav-link,
.nav-links li a {
  font-size: .76rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .4rem .72rem;
  border-radius: var(--r-sm);
  transition: color var(--ease);
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
.nav-link:hover, .nav-link.active,
.nav-links li a:hover { color: var(--c-orange); }

.nav-link::after,
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .72rem;
  right: .72rem;
  height: 1px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-link:hover::after, .nav-link.active::after,
.nav-links li a:hover::after { transform: scaleX(1); }

/* Contact link — same styling as all other nav links, no orange pill */
.nav-cta,
.nav-links li a.nav-cta {
  background: none !important;
  color: rgba(255,255,255,.78) !important;
  font-weight: 500 !important;
  padding: .4rem .72rem !important;
  border-radius: var(--r-sm) !important;
  transition: color var(--ease) !important;
  box-shadow: none !important;
}
.nav-cta:hover,
.nav-links li a.nav-cta:hover {
  background: none !important;
  color: var(--c-orange) !important;
  transform: none !important;
  box-shadow: none !important;
}
/* Restore the underline animation for Contact */
.nav-cta::after,
.nav-links li a.nav-cta::after {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: .72rem !important;
  right: .72rem !important;
  height: 1px !important;
  background: var(--c-orange) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform var(--ease) !important;
}
.nav-cta:hover::after,
.nav-links li a.nav-cta:hover::after { transform: scaleX(1) !important; }

/* Hamburger — hidden on desktop, rightmost on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  z-index: 10;
  order: 99;          /* always far right */
  margin-left: auto;  /* push to right on mobile */
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width:1024px) {
  /* Show hamburger, hide weather widget */
  .nav-toggle   { display: flex; }
  .nav-weather  { display: none; }

  /* nav-inner: [LOGO — far left] ... [HAMBURGER — far right] */
  .nav-inner,
  .nav-container {
    flex-wrap: nowrap;
  }
  .nav-logo   { order: 0; margin-right: auto; } /* far left */
  .nav-toggle { order: 99; margin-left: 0; }    /* far right */

  /* Logo slightly smaller on tablet/mobile */
  .nav-logo img { height: 54px; }

  /* Raise header above EVERYTHING when menu is open */
  .site-header { z-index: 1200; }

  /* Slide-in mobile menu — sits ABOVE all page content */
  .nav-menu,
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--c-brown-deep);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--s6);
    gap: .2rem;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    /* z-index must be below site-header (1200) but above all page content */
    z-index: 1100;
    order: 1;
  }
  .nav-menu.open,
  .nav-links.open { transform: translateX(0); }
  .nav-link,
  .nav-links li a {
    font-size: .95rem;
    padding: .72rem var(--s4);
    width: 100%;
    border-radius: var(--r-md);
    display: block;
  }
  .nav-cta,
  .nav-links li a.nav-cta {
    margin-top: var(--s4) !important;
    text-align: center !important;
  }
}

/* ── Nav Dropdown (Contact submenu) ───────────────────────────────────── */
.nav-item-dropdown {
  position: relative;
}

/* Arrow icon rotates when dropdown is open */
.nav-dropdown-arrow {
  font-size: .6rem;
  margin-left: .25rem;
  transition: transform .25s ease;
  display: inline-block;
}
.nav-item-dropdown:hover .nav-dropdown-arrow,
.nav-item-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* The dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: var(--c-brown-deep, #1a0e00);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md, .5rem);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  padding: .4rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 2000;
}
/* Small triangle pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,.08);
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--c-brown-deep, #1a0e00);
}

/* Show on hover (desktop) */
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Show when JS adds .open class (keyboard / touch) */
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown links */
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.1rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  transition: color var(--ease), background var(--ease);
  border-radius: 0;
  white-space: nowrap;
}
.nav-dropdown-link i {
  font-size: .75rem;
  width: 1rem;
  text-align: center;
  color: var(--c-orange);
  flex-shrink: 0;
}
.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  color: var(--c-orange);
  background: rgba(255,255,255,.05);
}

/* ── Mobile dropdown behaviour ─────────────────────────────────── */
@media (max-width:1024px) {
  /* On mobile the dropdown is not absolute-positioned — it flows in the menu */
  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    background: rgba(255,255,255,.04);
    border: none;
    border-left: 2px solid var(--c-orange);
    border-radius: 0;
    box-shadow: none;
    padding: .2rem 0 .2rem .5rem;
    margin: .1rem 0 .2rem 1rem;
    /* collapsed by default on mobile */
    display: none;
  }
  .nav-dropdown::before,
  .nav-dropdown::after { display: none; }

  /* Show when parent li has .open */
  .nav-item-dropdown.open .nav-dropdown { display: block; }

  /* Parent link on mobile fills full width like other links */
  .nav-item-dropdown > a.nav-link-dropdown {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-dropdown-link {
    font-size: .88rem;
    padding: .55rem var(--s4);
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: var(--r-sm);
  }
}

/* Mobile nav backdrop — covers page content behind open menu */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(0,0,0,.55);
  z-index: 1050;
  opacity: 0;
  transition: opacity .38s ease;
  pointer-events: none;
}
.nav-backdrop.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Extra small: slightly smaller logo */
@media (max-width:480px) {
  .nav-logo img { height: 46px; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO — consistent across all inner pages
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background-color: var(--c-brown-dk);
  background-size: cover;
  background-position: center;
}
/* Overlay — works with inline style bg-image or child div */
.page-hero-overlay,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(58,36,24,.88) 0%,
    rgba(58,36,24,.62) 50%,
    rgba(58,36,24,.28) 100%
  );
}
.page-hero-overlay { content: none; display: block; } /* explicit div */
.page-hero > .page-hero-overlay ~ * { position: relative; z-index: 1; }

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--s8) var(--s7);
  color: white;
}
/* When container wraps the content */
.page-hero .container { position: relative; z-index: 2; }

.page-hero-title,
.page-hero h1 {
  color: white !important;
  margin-top: var(--s4);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.page-hero-subtitle,
.page-hero p {
  color: rgba(255,255,255,.8) !important;
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: var(--s3);
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--s4);
  font-family: var(--f-body);
  letter-spacing: .04em;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--c-orange); }
.breadcrumb span, .breadcrumb > *:last-child { color: var(--c-orange); }
.breadcrumb i { font-size: .6rem; opacity: .5; }

/* ═══════════════════════════════════════════════════════════════
   HERO (homepage full-screen)
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(58,36,24,.92) 0%,
    rgba(58,36,24,.62) 45%,
    rgba(58,36,24,.2) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(58,36,24,.7), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--s6);
  font-family: var(--f-body);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-orange);
  opacity: .7;
}
.hero h1 {
  color: white;
  margin-bottom: var(--s5);
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
  font-weight: 400;
}
.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  margin-bottom: var(--s6);
  font-weight: 300;
  max-width: 560px;
}
.hero-dots {
  position: absolute;
  bottom: 2.5rem; right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  z-index: 10;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
  cursor: pointer;
  transition: background var(--ease), height var(--ease), border-radius var(--ease);
}
.hero-dot.active { background: var(--c-orange); height: 18px; border-radius: 4px; }
.hero-scroll {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.45);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: floatY 2.5s ease-in-out infinite;
}
.hero-scroll i { color: var(--c-orange); font-size: 1rem; }
@keyframes floatY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 2rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: all var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--f-body);
}
.btn-primary   { background: var(--c-orange); color: white; border-color: var(--c-orange); }
.btn-primary:hover { background: var(--c-orange-dk); border-color: var(--c-orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(248,141,51,.4); }

.btn-secondary { background: var(--c-brown); color: white; border-color: var(--c-brown); }
.btn-secondary:hover { background: var(--c-brown-dk); border-color: var(--c-brown-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(112,70,46,.3); }

.btn-outline   { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.btn-outline:hover { background: white; color: var(--c-brown-dk); border-color: white; transform: translateY(-2px); }

.btn-outline-gold,
.btn-outline-orange { background: transparent; color: var(--c-orange); border-color: var(--c-orange); }
.btn-outline-gold:hover,
.btn-outline-orange:hover { background: var(--c-orange); color: white; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(248,141,51,.32); }

.btn-outline-brown { background: transparent; color: var(--c-brown); border-color: var(--c-brown); }
.btn-outline-brown:hover { background: var(--c-brown); color: white; transform: translateY(-2px); }

.btn-gold { background: var(--c-orange); color: white; border-color: var(--c-orange); } /* alias */
.btn-gold:hover { background: var(--c-orange-dk); transform: translateY(-2px); }

.btn-sm  { padding: .52rem 1.35rem; font-size: .7rem; }
.btn-lg  { padding: 1rem 2.75rem; font-size: .82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════ */
.card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

.card-img, .card-img-16-9, .card-img-3-2 { width: 100%; object-fit: cover; display: block; }
.card-img     { aspect-ratio: 4/3; }
.card-img-16-9 { aspect-ratio: 16/9; }
.card-img-3-2 { aspect-ratio: 3/2; }

.card-body  { padding: var(--s5); }
.card-title { font-family: var(--f-head); font-size: 1.3rem; color: var(--c-brown-dk); margin-bottom: var(--s2); font-weight: 500; }
.card-text  { color: var(--c-text-md); font-size: .9rem; }

/* Room card */
.room-card .room-price,
.room-luxury-price { font-family: var(--f-head); font-size: 1.5rem; color: var(--c-orange); font-weight: 500; }
.room-card .room-price span,
.room-luxury-price small { font-family: var(--f-body); font-size: .76rem; color: var(--c-text-lt); font-weight: 400; }

.room-amenities { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }
.amenity-tag { display: inline-flex; align-items: center; gap: 4px; font-size: .7rem; color: var(--c-brown); background: var(--c-brown-pale); padding: .18rem .6rem; border-radius: var(--r-pill); }

/* ═══════════════════════════════════════════════════════════════
   FEATURE STRIP (icon row)
   ═══════════════════════════════════════════════════════════════ */
.feature-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--s7); padding: var(--s7) 0; }
.feature-item { display: flex; flex-direction: column; align-items: center; gap: var(--s2); text-align: center; max-width: 130px; }
.feature-icon {
  width: 60px; height: 60px;
  background: var(--c-orange-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--c-orange-dk);
  transition: background var(--ease), transform var(--ease);
}
.feature-item:hover .feature-icon { background: var(--c-orange); color: white; transform: scale(1.08); }
.feature-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--c-brown);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--f-body);
}

/* ═══════════════════════════════════════════════════════════════
   GRID UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.grid     { display: grid; gap: var(--s6); }
.grid-2   { grid-template-columns: repeat(2,1fr); }
.grid-3   { grid-template-columns: repeat(3,1fr); }
.grid-4   { grid-template-columns: repeat(4,1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); }
@media (max-width:1024px) { .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: var(--s2); } .gap-md { gap: var(--s4); } .gap-lg { gap: var(--s5); }

/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 6px;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
  background: var(--c-sand);
  border-radius: var(--r-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(83,52,35,.62);
  opacity: 0; display: flex;
  align-items: center; justify-content: center;
  transition: opacity var(--ease);
  color: white; font-size: 1.4rem;
  border-radius: var(--r-sm);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-masonry { columns: 4; column-gap: 6px; }
.gallery-masonry .gallery-item { break-inside: avoid; margin-bottom: 6px; aspect-ratio: auto; }
.gallery-masonry .gallery-item img { height: auto; }
@media (max-width:1024px) { .gallery-masonry { columns: 3; } }
@media (max-width:640px)  { .gallery-masonry { columns: 2; } }

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed; color: white; cursor: pointer;
  background: rgba(255,255,255,.1);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  transition: background var(--ease); font-size: 1.2rem;
}
.lightbox-close { top: 1rem; right: 1rem; width: 44px; height: 44px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; padding: 1rem; }
.lightbox-prev { left: 1rem; } .lightbox-next { right: 1rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }

/* ═══════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════ */
.form-group { margin-bottom: var(--s5); }
.form-label {
  display: block; font-size: .76rem;
  font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--c-brown-dk);
  margin-bottom: var(--s1);
}
.form-control {
  width: 100%;
  padding: .78rem 1.05rem;
  font-size: .9rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  background: white; color: var(--c-text);
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}
.form-control:focus { outline: none; border-color: var(--c-orange); box-shadow: 0 0 0 3px rgba(248,141,51,.14); }
.form-control.error { border-color: var(--c-error); }
.form-error { font-size: .76rem; color: var(--c-error); margin-top: var(--s1); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s5); }
@media (max-width:640px) { .form-row { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   ALERTS & BADGES
   ═══════════════════════════════════════════════════════════════ */
.alert { padding: var(--s4) var(--s5); border-radius: var(--r-md); margin-bottom: var(--s4); font-size: .9rem; display: flex; align-items: center; gap: var(--s2); }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 3px solid #2e7d32; }
.alert-error   { background: #ffebee; color: #c62828; border-left: 3px solid #c62828; }
.alert-warning { background: #fff3e0; color: #ef6c00; border-left: 3px solid #ef6c00; }
.alert-info    { background: var(--c-orange-pale); color: var(--c-brown-dk); border-left: 3px solid var(--c-orange); }

.badge {
  display: inline-flex; align-items: center;
  padding: .18rem .62rem;
  font-size: .68rem; font-weight: 700;
  border-radius: var(--r-pill);
  letter-spacing: .06em; text-transform: uppercase;
  font-family: var(--f-body);
}
.badge-gold, .badge-orange { background: var(--c-orange-pale); color: var(--c-orange-dk); }
.badge-green, .badge-brown { background: var(--c-brown-pale); color: var(--c-brown-dk); }
.badge-gray   { background: var(--c-cream); color: var(--c-text-lt); }
.badge-red    { background: #ffebee; color: #c62828; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonial-card {
  background: white; border-radius: var(--r-xl);
  padding: var(--s6); box-shadow: var(--sh-sm);
  position: relative;
  border-bottom: 3px solid var(--c-orange-pale);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: .5rem; left: 1.5rem;
  font-family: var(--f-head); font-size: 5rem;
  color: var(--c-orange-pale); line-height: 1;
  pointer-events: none;
}
.testimonial-body { font-style: italic; color: var(--c-text-md); font-size: .95rem; line-height: 1.82; margin-bottom: var(--s5); position: relative; z-index: 1; font-family: var(--f-head); }
.testimonial-author { display: flex; align-items: center; gap: var(--s4); }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-orange-pale); }
.testimonial-name { font-weight: 600; color: var(--c-brown-dk); font-size: .95rem; }
.testimonial-meta { font-size: .76rem; color: var(--c-text-lt); }
.stars { color: var(--c-orange); letter-spacing: 2px; font-size: .9rem; }

/* ═══════════════════════════════════════════════════════════════
   EVENT & BLOG CARDS
   ═══════════════════════════════════════════════════════════════ */
.event-card .event-date-box {
  background: var(--c-brown); color: white;
  padding: var(--s2) var(--s4); border-radius: var(--r-md);
  text-align: center; min-width: 64px;
}
.event-date-box .day   { font-family: var(--f-head); font-size: 1.6rem; font-weight: 500; line-height: 1; }
.event-date-box .month { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: var(--c-orange); }

.blog-card .blog-category { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-orange); }
.blog-card .blog-title { font-family: var(--f-head); font-size: 1.2rem; color: var(--c-brown-dk); font-weight: 500; transition: color var(--ease); }
.blog-card:hover .blog-title { color: var(--c-orange); }
.blog-card .blog-meta { font-size: .76rem; color: var(--c-text-lt); display: flex; align-items: center; gap: var(--s4); }

/* ═══════════════════════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════════════════════ */
.map-container { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 16/7; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--c-brown-deep); color: rgba(255,255,255,.72); padding-top: var(--s9); }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: var(--s7);
  padding-bottom: var(--s7);
  border-bottom: 1px solid rgba(248,141,51,.12);
}
@media (max-width:1024px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { font-family: var(--f-head); font-size: 1.4rem; color: var(--c-orange); font-weight: 600; margin-bottom: var(--s4); display: block; }
.footer-logo img { height: 68px; width: auto; margin-bottom: var(--s4); opacity: .92; }
.footer-about { font-size: .875rem; line-height: 1.78; color: rgba(255,255,255,.52); margin-bottom: var(--s5); }

.footer-heading {
  font-family: var(--f-body); font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-orange); margin-bottom: var(--s5);
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.52); transition: color var(--ease), padding-left var(--ease); display: flex; align-items: center; gap: var(--s2); }
.footer-links a:hover { color: var(--c-orange); padding-left: 4px; }
.footer-links a i { font-size: .62rem; color: var(--c-orange); opacity: .65; }

.footer-contact-item { display: flex; align-items: flex-start; gap: var(--s2); font-size: .875rem; color: rgba(255,255,255,.52); margin-bottom: var(--s4); }
.footer-contact-item i { color: var(--c-orange); margin-top: 3px; flex-shrink: 0; opacity: .82; }

.social-links { display: flex; gap: var(--s2); margin-top: var(--s4); }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(248,141,51,.22);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.58); font-size: .875rem;
  transition: all var(--ease);
}
.social-link:hover { background: var(--c-orange); border-color: var(--c-orange); color: white; transform: translateY(-2px); }

.newsletter-form { display: flex; gap: var(--s2); margin-top: var(--s4); }
.newsletter-form input {
  flex: 1; padding: .62rem 1rem;
  border: 1px solid rgba(248,141,51,.18);
  background: rgba(255,255,255,.06);
  border-radius: var(--r-pill); color: white;
  font-size: .875rem; font-family: var(--f-body);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.32); }
.newsletter-form input:focus { outline: none; border-color: var(--c-orange); background: rgba(255,255,255,.09); }
.newsletter-form button {
  background: var(--c-orange); color: white; font-weight: 700;
  padding: .62rem 1.2rem; border-radius: var(--r-pill);
  font-size: .75rem; letter-spacing: .07em; text-transform: uppercase;
  transition: background var(--ease); border: none; cursor: pointer; font-family: var(--f-body);
}
.newsletter-form button:hover { background: var(--c-orange-dk); }

.footer-bottom {
  padding: var(--s5) 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .76rem; color: rgba(255,255,255,.32);
  flex-wrap: wrap; gap: var(--s4);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--ease); }
.footer-bottom a:hover { color: var(--c-orange); }

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity .65s ease; }
.fade-in.visible { opacity: 1; }

.stagger > *:nth-child(1) { transition-delay: .04s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .16s; }
.stagger > *:nth-child(4) { transition-delay: .22s; }
.stagger > *:nth-child(5) { transition-delay: .28s; }
.stagger > *:nth-child(6) { transition-delay: .34s; }

/* ═══════════════════════════════════════════════════════════════
   SPINNERS & SKELETONS
   ═══════════════════════════════════════════════════════════════ */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(112,70,46,.12);
  border-top-color: var(--c-brown);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.spinner-sm { width: 20px; height: 20px; border-width: 2px; }
.spinner-gold, .spinner-orange { border-color: rgba(248,141,51,.18); border-top-color: var(--c-orange); }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-center { display: flex; justify-content: center; align-items: center; padding: var(--s7); }

.skeleton {
  background: linear-gradient(90deg, #f0ebe5 25%, #e5ddd4 50%, #f0ebe5 75%);
  background-size: 200% 100%;
  animation: skel 1.5s ease infinite;
  border-radius: var(--r-sm);
}
@keyframes skel { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ═══════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════ */
.pagination { display: flex; justify-content: center; align-items: center; gap: var(--s2); padding: var(--s6) 0; flex-wrap: wrap; }
.page-btn {
  min-width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); border: 1.5px solid var(--c-border);
  font-size: .875rem; font-weight: 500; color: var(--c-text-md);
  cursor: pointer; transition: all var(--ease); padding: 0 .75rem;
}
.page-btn:hover  { border-color: var(--c-brown); color: var(--c-brown); }
.page-btn.active { background: var(--c-brown); color: white; border-color: var(--c-brown); }
.page-btn:disabled { opacity: .35; cursor: not-allowed; }

/* ═══════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════ */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.62); z-index: 8000; display: flex; align-items: center; justify-content: center; padding: var(--s5); opacity: 0; pointer-events: none; transition: opacity var(--ease); }
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal { background: white; border-radius: var(--r-xl); max-width: 520px; width: 100%; padding: var(--s7); transform: scale(.95); transition: transform var(--ease); box-shadow: var(--sh-xl); }
.modal-backdrop.open .modal { transform: scale(1); }
.modal-icon    { font-size: 3rem; margin-bottom: var(--s4); text-align: center; }
.modal-title   { text-align: center; font-family: var(--f-head); color: var(--c-brown-dk); margin-bottom: var(--s2); }
.modal-text    { text-align: center; color: var(--c-text-md); font-size: .9rem; }
.modal-actions { display: flex; justify-content: center; gap: var(--s4); margin-top: var(--s6); }

/* ═══════════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--c-orange); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); transition: all var(--ease);
  opacity: 0; pointer-events: none; z-index: 500; cursor: pointer; border: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--c-orange-dk); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(248,141,51,.38); }

.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 2rem;
  width: 48px; height: 48px;
  background: #25D366; color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: var(--sh-md);
  transition: all var(--ease); z-index: 500; text-decoration: none;
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.1); }

/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider { border: none; border-top: 1px solid var(--c-border); margin: var(--s6) 0; }
.divider-orange, .divider-gold { border-top-color: var(--c-orange-pale); }
.mt-auto  { margin-top: auto; }
.overflow-hidden { overflow: hidden; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-4-3  { aspect-ratio: 4/3; }

.bg-brown, .bg-green          { background: var(--c-brown); }
.bg-brown-dark, .bg-green-dark { background: var(--c-brown-dk); }
.bg-orange, .bg-gold          { background: var(--c-orange); }
.bg-orange-pale, .bg-gold-pale { background: var(--c-orange-pale); }
.bg-alt   { background: var(--c-sand); }
.bg-cream { background: var(--c-cream); }
.bg-white { background: white; }
.bg-dark  { background: var(--c-brown-deep); }

/* Ornament divider */
.ornament { display: flex; align-items: center; justify-content: center; gap: var(--s4); margin: var(--s6) 0; }
.ornament::before, .ornament::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--c-orange-pale)); }
.ornament::after { background: linear-gradient(to left, transparent, var(--c-orange-pale)); }
.ornament i { color: var(--c-orange); font-size: .85rem; opacity: .65; }

/* ═══════════════════════════════════════════════════════════════
   STATS STRIP (shared across pages)
   ═══════════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--c-brown-dk);
  padding: var(--s7) 0;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(248,141,51,.03) 0, rgba(248,141,51,.03) 1px, transparent 1px, transparent 20px);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s6); text-align: center; position: relative; }
@media (max-width:768px) { .stats-grid { grid-template-columns: repeat(2,1fr); gap: var(--s5); } }
.stat-number { font-family: var(--f-head); font-size: clamp(2rem,5vw,3.4rem); color: var(--c-orange); font-weight: 500; line-height: 1; margin-bottom: .35rem; }
.stat-label  { font-size: .7rem; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .12em; font-family: var(--f-body); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   INLINE QUOTE / PULL QUOTE
   ═══════════════════════════════════════════════════════════════ */
.pull-quote {
  background: var(--c-orange);
  padding: var(--s7) 0;
  text-align: center;
}
.pull-quote p {
  font-family: var(--f-head);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  color: white;
  font-style: italic;
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   ICON FEATURE CARD
   ═══════════════════════════════════════════════════════════════ */
.icon-card {
  background: white;
  border-radius: var(--r-xl);
  padding: var(--s6);
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
  border: 1px solid rgba(248,141,51,.08);
}
.icon-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.icon-card-icon {
  width: 64px; height: 64px;
  background: var(--c-orange-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; color: var(--c-orange-dk);
  margin: 0 auto var(--s4);
  transition: background var(--ease), color var(--ease);
}
.icon-card:hover .icon-card-icon { background: var(--c-orange); color: white; }
.icon-card h4 { font-size: 1.1rem; color: var(--c-brown-dk); margin-bottom: var(--s2); }
.icon-card p  { font-size: .88rem; color: var(--c-text-md); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   IMAGE + TEXT SPLIT (used on about, film-village, etc.)
   ═══════════════════════════════════════════════════════════════ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.split-section.reverse > :first-child { order: 2; }
.split-section.reverse > :last-child  { order: 1; }
.split-img { border-radius: var(--r-xl); overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
@media (max-width:1024px) {
  .split-section { grid-template-columns: 1fr; gap: var(--s6); }
  .split-section.reverse > * { order: unset; }
  .split-img img { min-height: 300px; }
}

/* Accent line before headings */
.accent-line::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--c-orange);
  margin-bottom: var(--s3);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  background-color: var(--c-brown-dk);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,36,24,.94) 0%, rgba(83,52,35,.85) 100%);
}
.cta-section .container { position: relative; z-index: 1; }
