/*
Theme Name: Wild Fit Free
Theme URI: https://wildfitfree.co.za
Author: Your Digital Way
Author URI: https://yourdigitalway.co.za
Description: Bespoke luxury retreat theme for Wild Fit Free — cinematic, safari-elegant, WooCommerce-ready. Built hand-coded (no page builder), tasafaris-inspired with the Wild Fit Free gold identity.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wildfitfree
*/

/* =====================================================================
   DESIGN TOKENS
   ===================================================================== */
:root{
  /* Brand palette (from WFF logo) */
  --cream:      #FBF8F2;
  --cream-2:    #F4EDE0;   /* paper band */
  --sand:       #E7D6BC;
  --sand-soft:  #EFE3CE;
  --gold:       #A9762A;   /* primary accent / CTA */
  --gold-deep:  #8A5A1E;   /* hover */
  --gold-lite:  #C79A4E;
  --bronze:     #6E4B27;   /* eyebrows, secondary */
  --charcoal:   #26211B;   /* dark bands */
  --charcoal-2: #322B23;
  --ink:        #2A241D;   /* body text on light */
  --ink-soft:   #5B5148;   /* muted body */
  --ocean:      #6E8A97;   /* micro accent */
  --olive:      #6F7A4F;   /* micro accent */
  --line:       rgba(42,36,29,.14);
  --line-lite:  rgba(255,255,255,.16);
  --cream-rgb:  251,248,242;

  /* Type */
  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --wrap: 1240px;
  --wrap-narrow: 880px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(64px, 9vw, 132px);
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* =====================================================================
   RESET / BASE
   ===================================================================== */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  font-size:clamp(16px,1.05vw,17.5px);
  line-height:1.75;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--gold-deep); text-decoration:none; transition:color .25s var(--ease); }
a:hover{ color:var(--gold); }
button{ font-family:inherit; }
::selection{ background:var(--gold); color:#fff; }
:focus-visible{ outline:2px solid var(--gold-deep); outline-offset:3px; border-radius:2px; }
.section--dark :focus-visible,.hero :focus-visible,.newsletter :focus-visible,.site-footer :focus-visible,.page-hero :focus-visible{ outline-color:var(--gold-lite); }

/* subtle warm paper grain */
body::before{
  content:""; position:fixed; inset:0; z-index:0; pointer-events:none; opacity:.5;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
#page{ position:relative; z-index:1; }

/* =====================================================================
   TYPOGRAPHY
   ===================================================================== */
h1,h2,h3,h4{ font-family:var(--serif); font-weight:500; color:var(--ink); line-height:1.08; margin:0 0 .5em; letter-spacing:.005em; }
h1{ font-size:clamp(2.6rem,6vw,4.75rem); font-weight:500; }
h2{ font-size:clamp(2rem,4vw,3.25rem); }
h3{ font-size:clamp(1.4rem,2.4vw,2rem); }
p{ margin:0 0 1.15em; }
p:last-child{ margin-bottom:0; }
strong{ font-weight:700; }

.eyebrow{
  font-family:var(--sans);
  font-size:.74rem; font-weight:700; letter-spacing:.28em; text-transform:uppercase;
  color:var(--gold-deep); margin:0 0 1.1rem; display:inline-block; /* gold-deep: 5.7:1 on cream (WCAG AA); plain gold was 3.8:1 */
}
.eyebrow--light{ color:var(--gold-lite); }
.display-caps{ text-transform:uppercase; letter-spacing:.06em; font-weight:500; }
.lead{ font-family:var(--serif); font-size:clamp(1.35rem,2.1vw,1.7rem); line-height:1.5; color:var(--ink-soft); font-weight:400; }
.script{ font-family:var(--serif); font-style:italic; }

/* =====================================================================
   LAYOUT
   ===================================================================== */
.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--gutter); }
.wrap--narrow{ max-width:var(--wrap-narrow); }
.section{ padding-block:var(--section-y); position:relative; }
.section--cream{ background:var(--cream-2); }
.section--dark{ background:var(--charcoal); color:var(--sand-soft); }
.section--dark h1,.section--dark h2,.section--dark h3{ color:#fff; }
/* cinematic photo band — image behind a strong dark scrim so text stays crisp */
.section--photo{ position:relative; background-color:var(--charcoal); background-size:cover; background-position:center; background-repeat:no-repeat; background-attachment:fixed; }
.section--photo::before{ content:""; position:absolute; inset:0; z-index:0; background:linear-gradient(180deg, rgba(20,16,11,.86) 0%, rgba(20,16,11,.8) 50%, rgba(20,16,11,.9) 100%); }
.section--photo > .wrap{ position:relative; z-index:1; }
.section--whatif{ background-image:url('assets/img/gen-safari.jpg'); }
.section--exclusive{ background-image:url('assets/img/gen-dining.jpg'); }
@media (max-width:820px){ .section--photo{ background-attachment:scroll; } }
.section--dark .lead{ color:rgba(255,255,255,.72); }
.center{ text-align:center; }
.measure{ max-width:60ch; }
.center .measure{ margin-inline:auto; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn,
.main-nav .btn{ /* double selector beats .main-nav a so nav CTAs never inherit italic serif/ink */
  --btn-c:var(--gold-deep); /* gold-deep bg: white text = 5.9:1 (AA); plain gold was 3.9:1 */
  display:inline-flex; align-items:center; gap:.6em;
  font-family:var(--sans); font-style:normal; font-weight:700; font-size:.82rem; letter-spacing:.13em; text-transform:uppercase;
  padding:1.05em 2.1em; border-radius:var(--radius); cursor:pointer;
  transition:transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  border:1.5px solid var(--btn-c); background:var(--btn-c); color:#fff; line-height:1;
}
.btn:hover,
.main-nav .btn:hover{ background:var(--bronze); border-color:var(--bronze); color:#fff; transform:translateY(-2px); }

/* hand-framed outline (tasafaris "sketch rectangle") */
.btn-outline{
  position:relative; background:transparent; color:var(--gold-deep); border-color:var(--gold);
  padding:1.05em 2.2em;
}
.btn-outline::before{
  content:""; position:absolute; inset:4px; border:1px solid var(--gold); opacity:.55;
  transition:inset .3s var(--ease), opacity .3s var(--ease); pointer-events:none;
}
.btn-outline:hover{ background:var(--gold-deep); color:#fff; border-color:var(--gold-deep); transform:translateY(-2px); }
.btn-outline:hover::before{ inset:6px; opacity:.85; border-color:rgba(255,255,255,.6); }
.btn-outline--light{ color:#fff; border-color:rgba(255,255,255,.7); }
.btn-outline--light::before{ border-color:rgba(255,255,255,.5); }
.btn-outline--light:hover{ background:#fff; color:var(--ink); border-color:#fff; }

/* text link with animated underline */
.link-underline{
  font-weight:700; font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-deep);
  display:inline-block; padding-bottom:.35em; position:relative;
}
.link-underline::after{
  content:""; position:absolute; left:0; bottom:0; height:1.5px; width:100%;
  background:var(--gold); transform:scaleX(1); transform-origin:left; transition:transform .35s var(--ease);
}
.link-underline:hover::after{ transform:scaleX(.4); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header{
  position:fixed; top:0; left:0; width:100%; z-index:100;
  background:rgba(var(--cream-rgb),.86); backdrop-filter:saturate(1.1) blur(10px);
  border-bottom:1px solid var(--line); transition:background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled{ box-shadow:0 6px 30px rgba(38,33,27,.08); }
.header-inner{
  max-width:1360px; margin-inline:auto; padding:.55rem var(--gutter);
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
}
.brand{ display:flex; align-items:center; gap:.7rem; flex:0 0 auto; }
.brand img{ height:74px; width:auto; transition:height .35s var(--ease); }
.is-scrolled .brand img{ height:60px; }
.brand__name{
  font-family:var(--serif); font-weight:500; font-size:1.5rem; line-height:1;
  letter-spacing:.02em; color:var(--gold-deep); white-space:nowrap;
  position:relative; top:.32em; /* drop it to sit level with the emblem's figures, not the arc */
}

.main-nav{ display:flex; align-items:center; gap:2rem; margin-left:auto; }
.main-nav ul{ list-style:none; display:flex; align-items:center; gap:2rem; margin:0; padding:0; }
.main-nav ul a{ /* scoped to menu items only — must never style the CTA button */
  font-family:var(--serif); font-style:italic; font-size:1.28rem; font-weight:500; color:var(--ink);
  position:relative; padding-bottom:2px;
}
.main-nav ul a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0; background:var(--gold); transition:width .3s var(--ease);
}
.main-nav ul a:hover{ color:var(--gold-deep); }
.main-nav ul a:hover::after{ width:100%; }
.header-cta{ margin-left:.5rem; }
.header-cta .btn{ padding:.85em 1.6em; font-size:.74rem; }

/* Contact + social block — only shown inside the full-screen burger overlay */
.nav-extra{ display:none; }
.nav-contact__label{ font-family:var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-deep); margin:0 0 .7rem; }
.nav-contact a,.nav-contact__loc{ display:block; font-family:var(--serif); font-size:1.2rem; color:var(--ink); text-decoration:none; line-height:1.75; }
.nav-contact a:hover{ color:var(--gold-deep); }
.nav-social{ display:flex; gap:1.1rem; margin-top:1.1rem; }
.nav-social a{ color:var(--gold-deep); display:inline-flex; transition:color .3s var(--ease), transform .3s var(--ease); }
.nav-social a:hover{ color:var(--bronze); transform:translateY(-2px); }
.nav-social svg{ width:22px; height:22px; }

.nav-toggle{
  display:none; background:none; border:0; cursor:pointer; padding:.4rem; margin-left:.5rem;
  flex-direction:column; gap:5px;
}
.nav-toggle span{ display:block; width:26px; height:2px; background:var(--ink); transition:transform .3s var(--ease), opacity .3s var(--ease); }
.nav-open .nav-toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
.nav-open .nav-toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:flex-end;
  color:#fff; overflow:hidden; background:var(--charcoal);
  padding-top:96px; /* clear the fixed header so the eyebrow never tucks under it */
}
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__media img,.hero__media video{ width:100%; height:100%; object-fit:cover; }
/* branded placeholder gradient until real hero video/poster is added */
.hero__placeholder{
  position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(199,154,78,.55), transparent 55%),
    linear-gradient(180deg, #3a3126 0%, #241d15 60%, #1c160f 100%);
}
.hero__overlay{ position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(20,16,11,.45) 0%, rgba(20,16,11,.22) 40%, rgba(20,16,11,.78) 100%); } /* stronger scrim so white text stays readable over bright video frames */
.hero__inner{ position:relative; z-index:2; width:100%; max-width:var(--wrap); margin-inline:auto; padding:0 var(--gutter) clamp(60px,10vh,120px); }
.hero .eyebrow{ color:#fff; opacity:.9; }
.hero h1{ color:#fff; max-width:20ch; font-size:clamp(2.4rem,5.2vw,4.2rem); text-shadow:0 2px 30px rgba(0,0,0,.35); }
.hero__sub{ font-family:var(--serif); font-size:clamp(1.15rem,1.8vw,1.55rem); max-width:46ch; color:rgba(255,255,255,.9); margin:.85rem 0 1.75rem; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:1rem; align-items:center; }
.scroll-hint{
  position:absolute; bottom:26px; right:clamp(20px,4vw,56px); left:auto; transform:none; z-index:2;
  font-size:.68rem; letter-spacing:.25em; text-transform:uppercase; color:rgba(255,255,255,.7);
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
}
.scroll-hint::after{ content:""; width:1px; height:38px; background:rgba(255,255,255,.5); animation:pulseLine 2.2s var(--ease) infinite; }
@keyframes pulseLine{ 0%,100%{ transform:scaleY(.4); opacity:.4;} 50%{ transform:scaleY(1); opacity:1;} }

/* =====================================================================
   SPLIT (image / text)
   ===================================================================== */
.split{ display:grid; grid-template-columns:1.05fr 1fr; align-items:center; gap:clamp(32px,5vw,84px); }
.split--reverse .split__media{ order:2; }
.split__media{ position:relative; }
.split__media img,.ph{ border-radius:var(--radius); }
.split__media .ph{ aspect-ratio:4/5; }
.split__media img{ aspect-ratio:4/5; width:100%; object-fit:cover; }
.retreat-card__img{ width:100%; height:100%; object-fit:cover; }
.newsletter__media img{ width:100%; height:100%; object-fit:cover; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; border-radius:var(--radius); }
.split__body{ max-width:52ch; }

/* image placeholder block (until Drive photos land) */
.ph{
  display:flex; align-items:center; justify-content:center; text-align:center;
  background:
    linear-gradient(135deg, rgba(169,118,42,.14), rgba(110,75,39,.20)),
    var(--sand);
  color:var(--bronze); border:1px solid var(--line);
  font-family:var(--sans); font-size:.7rem; letter-spacing:.22em; text-transform:uppercase; font-weight:700;
  min-height:220px; position:relative;
}
.ph::before{ content:"✦"; position:absolute; top:14px; left:16px; color:var(--gold); opacity:.5; font-size:1rem; letter-spacing:0; }
.ph span{ opacity:.8; padding:1rem; }

/* =====================================================================
   VALUE STRIP (line icons)
   ===================================================================== */
.valuestrip{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(20px,3vw,48px); }
.value{ display:flex; gap:1rem; align-items:flex-start; }
.value__icon{ flex:0 0 auto; width:40px; height:40px; color:var(--gold); }
.value__icon svg{ width:100%; height:100%; stroke:currentColor; fill:none; stroke-width:1.3; }
.value h4{ font-family:var(--sans); font-size:.82rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--ink); margin:.35rem 0 0; line-height:1.5; }

/* =====================================================================
   INCLUDES GRID
   ===================================================================== */
.includes{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(12px,1.4vw,18px); }
.include{
  position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(24px,2.6vw,36px) clamp(22px,2.4vw,30px);
  display:flex; flex-direction:column; gap:.7rem; align-items:flex-start; overflow:hidden;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
/* gold accent bar, top-left, grows on hover */
.include::before{
  content:""; position:absolute; top:0; left:0; height:3px; width:32px;
  background:var(--gold-deep); transition:width .4s var(--ease);
}
.include:hover{ transform:translateY(-5px); box-shadow:0 18px 44px rgba(38,33,27,.12); border-color:rgba(138,90,30,.35); }
.include:hover::before{ width:72px; }
.include__no{ font-family:var(--serif); font-style:italic; font-size:2.3rem; color:var(--gold-deep); line-height:1; }
.include p{ margin:0; font-size:1rem; line-height:1.55; color:var(--ink); }

/* =====================================================================
   EXCLUSIVITY
   ===================================================================== */
.exclusivity{ text-align:center; }
.exclusivity .big-number{ font-family:var(--serif); font-size:clamp(4rem,12vw,9rem); line-height:.9; color:var(--gold); font-weight:500; }
.exclusivity .big-number small{ font-size:.28em; display:block; letter-spacing:.2em; text-transform:uppercase; color:var(--sand-soft); font-family:var(--sans); font-weight:700; margin-top:1rem; }

/* =====================================================================
   FEATURED RETREAT CARD
   ===================================================================== */
.retreat-card{
  display:grid; grid-template-columns:1.1fr 1fr; background:var(--cream); border:1px solid var(--line);
  border-radius:var(--radius); overflow:hidden; box-shadow:0 30px 80px -40px rgba(38,33,27,.35);
}
.retreat-card .ph{ min-height:100%; border:0; }
.retreat-card__body{ padding:clamp(28px,4vw,56px); }
.retreat-card .meta{ display:flex; gap:2rem; margin:1.2rem 0 1.6rem; flex-wrap:wrap; }
.meta__item .k{ font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-deep); font-weight:700; }
.meta__item .v{ font-family:var(--serif); font-size:1.5rem; color:var(--ink); }

/* =====================================================================
   NEWSLETTER BAND
   ===================================================================== */
.newsletter{ position:relative; color:#fff; background:var(--charcoal); overflow:hidden; }
.newsletter h2,.newsletter h3{ color:#fff; } /* headings otherwise inherit dark ink — unreadable on the dark band */
.newsletter__media{ position:absolute; inset:0; z-index:0; }
.newsletter__media .ph{ height:100%; border:0; border-radius:0; align-items:flex-end; justify-content:flex-end; }
.newsletter__media .ph span{ opacity:.5; color:#fff; padding:1.2rem 1.4rem; } /* photo-slot hint tucked in the corner, not under the headline */
.newsletter__media .ph::before{ display:none; }
.newsletter__overlay{ position:absolute; inset:0; z-index:1; background:linear-gradient(90deg, rgba(20,16,11,.85) 0%, rgba(20,16,11,.55) 60%, rgba(20,16,11,.3) 100%); }
.newsletter__inner{ position:relative; z-index:2; }
.nl-form{ display:flex; flex-wrap:wrap; gap:1.4rem 1.6rem; align-items:flex-end; margin-top:1.6rem; }
.nl-field{ display:flex; flex-direction:column; min-width:190px; flex:1; }
.nl-field label{ font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.7); margin-bottom:.5rem; }
.nl-field input{ background:transparent; border:0; border-bottom:1px solid rgba(255,255,255,.4); color:#fff; padding:.5rem 0; font-family:var(--sans); font-size:1rem; }
.nl-field input:focus{ outline:none; border-color:var(--gold-lite); }
.nl-consent{ display:flex; gap:.6rem; align-items:flex-start; font-size:.82rem; color:rgba(255,255,255,.75); margin-top:1rem; max-width:52ch; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer{ background:var(--charcoal); color:rgba(255,255,255,.72); padding-block:clamp(56px,7vw,90px) 2rem; }
.footer-top{ display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:clamp(28px,4vw,60px); }
.footer-brand .wordmark{ font-family:var(--serif); font-size:2rem; color:#fff; line-height:1; }
.footer-brand .tagline{ font-size:.7rem; letter-spacing:.24em; text-transform:uppercase; color:var(--gold-lite); margin-top:.6rem; }
.footer-brand p{ margin-top:1.2rem; max-width:34ch; font-size:.92rem; color:rgba(255,255,255,.6); }
.footer-col h4{ font-family:var(--serif); text-transform:uppercase; letter-spacing:.05em; font-size:1.1rem; color:#fff; margin-bottom:1rem; }
.footer-col ul{ list-style:none; margin:0; padding:0; }
.footer-col li{ margin-bottom:.6rem; }
.footer-col a{ color:rgba(255,255,255,.72); font-size:.92rem; }
.footer-col a:hover{ color:var(--gold-lite); }
.footer-bottom{ border-top:1px solid var(--line-lite); margin-top:clamp(36px,5vw,60px); padding-top:1.6rem; display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; font-size:.8rem; color:rgba(255,255,255,.5); }

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
/* Content is visible by default; only hidden (for the fade-in) when JS is present,
   so no text is ever gated behind JavaScript. */
.js .reveal{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .js .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
  .scroll-hint::after{ animation:none; }
}

/* =====================================================================
   WOOCOMMERCE (light touch — full shop styling in a later phase)
   ===================================================================== */
.woocommerce .button,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,
.woocommerce #respond input#submit,.woocommerce .button.alt{
  background:var(--gold-deep)!important; color:#fff!important; border-radius:var(--radius);
  font-family:var(--sans); font-style:normal; font-weight:700; letter-spacing:.08em; text-transform:uppercase; font-size:.8rem;
  padding:.9em 1.8em; transition:background .3s var(--ease);
}
.woocommerce .button:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce .button.alt:hover{ background:var(--bronze)!important; }
.woocommerce ul.products li.product .price{ color:var(--gold-deep); font-family:var(--serif); font-size:1.3rem; }
.woocommerce ul.products li.product h2,.woocommerce ul.products li.product .woocommerce-loop-product__title{ font-family:var(--serif); }
.woocommerce span.onsale{ background:var(--bronze); }

/* =====================================================================
   INTERIOR PAGE HERO
   ===================================================================== */
.page-hero{
  position:relative; min-height:56vh; display:flex; align-items:flex-end; color:#fff;
  background:var(--charcoal); overflow:hidden; padding-top:120px;
}
.page-hero__media{ position:absolute; inset:0; z-index:0; }
.page-hero__media .ph{ height:100%; border:0; border-radius:0; }
.page-hero__placeholder{ position:absolute; inset:0; background:url('assets/img/newsletter-bg.jpg') center/cover no-repeat, linear-gradient(180deg,#39301f,#1d160f); }
.page-hero__overlay{ position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(20,16,11,.25), rgba(20,16,11,.72)); }
.page-hero__inner{ position:relative; z-index:2; width:100%; max-width:var(--wrap); margin-inline:auto; padding:0 var(--gutter) clamp(40px,6vw,72px); }
.page-hero h1{ color:#fff; max-width:18ch; }
.page-hero .eyebrow{ color:#fff; opacity:.92; }
.page-hero__sub{ font-family:var(--serif); font-size:clamp(1.15rem,1.7vw,1.5rem); color:rgba(255,255,255,.85); max-width:52ch; margin-top:.6rem; }

/* =====================================================================
   PROSE (legal / long-form)
   ===================================================================== */
.prose{ max-width:74ch; }
.prose.center{ margin-inline:auto; }
.prose h2{ font-size:clamp(1.6rem,2.6vw,2.2rem); margin-top:2.2em; }
.prose h3{ font-size:1.3rem; font-family:var(--serif); margin-top:1.8em; color:var(--bronze); }
.prose p,.prose li{ color:var(--ink-soft); }
.prose ul,.prose ol{ padding-left:1.3em; margin:0 0 1.15em; }
.prose li{ margin-bottom:.5em; }
.prose a{ text-decoration:underline; text-underline-offset:3px; }
.prose .placeholder{ background:rgba(169,118,42,.14); color:var(--gold-deep); padding:.05em .4em; border-radius:2px; font-weight:600; font-size:.92em; }
.legal-note{ border-left:3px solid var(--gold); background:var(--cream-2); padding:1rem 1.25rem; margin:1.5rem 0; font-size:.92rem; color:var(--ink-soft); }
.legal-meta{ font-size:.85rem; color:var(--ink-soft); letter-spacing:.02em; }

/* =====================================================================
   ITINERARY TIMELINE
   ===================================================================== */
.timeline{ position:relative; max-width:960px; margin-inline:auto; }
.timeline::before{ content:""; position:absolute; left:38px; top:8px; bottom:8px; width:1px; background:linear-gradient(var(--gold),transparent); }
.day{ position:relative; padding:0 0 clamp(36px,5vw,58px) 92px; }
.day:last-child{ padding-bottom:0; }
.day__badge{
  position:absolute; left:0; top:0; width:78px; height:78px; border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:var(--cream); border:1px solid var(--gold); color:var(--gold-deep); z-index:1;
}
.day__badge .n{ font-family:var(--serif); font-size:1.9rem; line-height:1; }
.day__badge .l{ font-size:.52rem; letter-spacing:.18em; text-transform:uppercase; margin-top:2px; }
.day__title{ font-family:var(--serif); font-size:clamp(1.4rem,2.4vw,1.9rem); margin:.1em 0 .4em; }
.day__eyebrow{ font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-deep); font-weight:700; }
.day p{ color:var(--ink-soft); max-width:62ch; }

/* =====================================================================
   CHECKLIST (included / not included)
   ===================================================================== */
.cols-2{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,4vw,64px); }
.checklist{ list-style:none; margin:0; padding:0; }
.checklist li{ position:relative; padding:.55em 0 .55em 1.9em; border-bottom:1px solid var(--line); color:var(--ink-soft); }
.checklist li::before{ content:""; position:absolute; left:0; top:1.05em; width:9px; height:9px; border:1.5px solid var(--gold); border-radius:50%; }
.checklist--excl li::before{ border-color:var(--ink-soft); opacity:.5; border-radius:1px; }

/* facility spec chips */
.spec{ display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1rem; }
.spec span{ font-size:.8rem; letter-spacing:.04em; padding:.45em .9em; border:1px solid var(--line); border-radius:100px; color:var(--ink-soft); background:var(--cream); }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:220px; gap:12px; }
.gallery-grid .ph{ min-height:0; height:100%; }
.gallery-grid .g-tall{ grid-row:span 2; }
.gallery-grid .g-wide{ grid-column:span 2; }
.video-embed{ position:relative; aspect-ratio:16/9; margin-top:2rem; border-radius:var(--radius); overflow:hidden; }
.video-embed .ph{ height:100%; }

/* =====================================================================
   FAQ (CSS-only accordion — content always readable)
   ===================================================================== */
.faq{ max-width:820px; margin-inline:auto; }
.faq details{ border-bottom:1px solid var(--line); }
.faq summary{
  list-style:none; cursor:pointer; padding:1.35em 3rem 1.35em 0; position:relative;
  font-family:var(--serif); font-size:clamp(1.15rem,1.8vw,1.4rem); color:var(--ink);
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:""; position:absolute; right:.4rem; top:50%; width:12px; height:12px; margin-top:-6px;
  border-right:1.5px solid var(--gold); border-bottom:1.5px solid var(--gold);
  transform:rotate(45deg); transition:transform .3s var(--ease);
}
.faq details[open] summary::after{ transform:rotate(-135deg); }
.faq details p{ padding:0 2rem 1.5em 0; color:var(--ink-soft); margin:0; }

/* =====================================================================
   FORMS (contact / enquiry)
   ===================================================================== */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1.4rem 1.6rem; }
.field{ display:flex; flex-direction:column; }
.field--full{ grid-column:1 / -1; }
.field label{ font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--bronze); font-weight:700; margin-bottom:.5rem; }
.field input,.field select,.field textarea{
  font-family:var(--sans); font-size:1rem; color:var(--ink); background:var(--cream);
  border:1px solid var(--line); border-radius:var(--radius); padding:.85em 1em; width:100%;
}
.field textarea{ min-height:140px; resize:vertical; }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(169,118,42,.12); }
/* checkboxes/radios must not inherit the full-width text-input styling */
.field input[type="checkbox"],.field input[type="radio"]{ width:auto; padding:0; border:1px solid var(--line); box-shadow:none; flex:0 0 auto; margin-top:.25em; }
.form-consent,.field label.form-consent{ display:flex; gap:.6rem; align-items:flex-start; font-size:.9rem; font-weight:400; letter-spacing:normal; text-transform:none; color:var(--ink-soft); margin-bottom:0; }
.contact-aside{ background:var(--cream-2); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(24px,3vw,40px); }
.contact-aside h3{ font-size:1.4rem; }
.contact-aside .row{ margin-bottom:1.2rem; }
.contact-aside .k{ font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-deep); font-weight:700; }
.contact-aside .v{ font-size:1.05rem; color:var(--ink); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width:960px){
  .cols-2,.form-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid .g-wide{ grid-column:span 2; }
  .valuestrip{ grid-template-columns:repeat(2,1fr); gap:28px; }
  .includes{ grid-template-columns:repeat(2,1fr); }
  .retreat-card,.split{ grid-template-columns:1fr; }
  .split--reverse .split__media{ order:0; }
  .footer-top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:820px){
  /* full-screen overlay menu (links + contact + socials) */
  .main-nav{
    position:fixed; inset:0; width:100%; height:100dvh; background:var(--cream);
    display:flex; flex-direction:column; align-items:flex-start; justify-content:center;
    gap:1.6rem; padding:6.5rem clamp(1.6rem,7vw,4rem) 3rem; overflow-y:auto;
    transform:translateX(100%); transition:transform .45s var(--ease); z-index:99;
  }
  .nav-open .main-nav{ transform:none; }
  .nav-open{ overflow:hidden; }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:1.1rem; width:100%; }
  .main-nav ul a{ font-size:clamp(1.5rem,6.5vw,2rem); font-style:italic; color:var(--ink); }
  .main-nav ul a:hover,.main-nav ul a:focus-visible{ color:var(--gold-deep); }
  .header-cta{ margin:.4rem 0 0; }
  .header-cta .btn{ font-size:.82rem; }
  /* contact + socials, divided off below the links */
  .nav-extra{ display:flex; flex-direction:column; gap:.4rem; width:100%; margin-top:1rem; padding-top:1.8rem; border-top:1px solid var(--line); }
  .nav-toggle{ display:flex; z-index:100; }
  .footer-top{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  /* keep emblem + wordmark + hamburger comfortable on phones */
  .header-inner .brand{ gap:.5rem; }
  .header-inner .brand img{ height:54px; }
  .site-header.is-scrolled .brand img{ height:46px; }
  .brand__name{ font-size:1.15rem; }
}
@media (max-width:560px){
  .scroll-hint{ display:none; } /* no room beside the full-width hero buttons */
  .includes{ grid-template-columns:1fr; }
  .valuestrip{ grid-template-columns:1fr; }
  .hero__cta .btn{ width:100%; justify-content:center; }
  .gallery-grid{ grid-template-columns:1fr; }
  .gallery-grid .g-wide,.gallery-grid .g-tall{ grid-column:auto; grid-row:auto; }
  .timeline::before{ left:26px; }
  .day{ padding-left:66px; }
  .day__badge{ width:54px; height:54px; }
  .day__badge .n{ font-size:1.4rem; }
  .day__badge .l{ display:none; }
}

/* ===== CLIENT PREVIEW WATERMARK — Your Digital Way (demo build only) ===== */
body::after{
  content:"";
  position:fixed; inset:0; z-index:9998; pointer-events:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='460' height='300'><text x='10' y='170' transform='rotate(-26 230 150)' font-family='Arial,Helvetica,sans-serif' font-size='20' font-weight='700' letter-spacing='3' fill='%23A9762A'>YOUR DIGITAL WAY</text></svg>");
  background-repeat:repeat;
  opacity:.14;
}
