/* ============================================================
   La Fuente de Casares — bespoke build by Zafiro Studio
   Palette & type derived from the estate's own brand identity
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  /* Brand colours (sourced from original identity) */
  --olive:        #3E492B;   /* deep olive — primary ink & headings */
  --olive-deep:   #2A331F;   /* forest — dark sections & footer */
  --olive-soft:   #55603f;   /* muted olive for secondary text on light */
  --sage:         #BDC1B6;   /* signature sage canvas */
  --sage-mist:    #D3D6CC;   /* lighter sage */
  --terracotta:   #B46A3C;   /* accent — the source / water clay */
  --terracotta-d: #9a552d;   /* darker terracotta for hover/contrast */
  --cream:        #F4F1E8;   /* warm paper */
  --cream-deep:   #ECE7DA;
  --line:         rgba(62, 73, 43, 0.16);
  --line-light:   rgba(244, 241, 232, 0.18);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --serif:   "Libre Baskerville", Georgia, serif;
  --sans:    "Overpass", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --step--1: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.15rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.2rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.8rem);
  --step-5:  clamp(3.1rem, 2rem + 5.4vw, 6.6rem);

  /* Spacing & layout */
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --measure: 66ch;
  --maxw: 1320px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- 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; }
}
body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--olive);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--terracotta); outline-offset: 3px; border-radius: 2px; }

/* ---- Typography roles ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 1.6em; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.centered { justify-content: center; }

h1, h2, h3, h4 { font-weight: 400; line-height: 1.08; color: var(--olive); letter-spacing: -0.01em; }
.display {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 340;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 90;
}
.serif { font-family: var(--serif); }

.h-hero  { font-family: var(--display); font-size: var(--step-5); line-height: 0.98; font-weight: 330; font-variation-settings:"opsz" 120; }
.h-xl    { font-family: var(--display); font-size: var(--step-4); font-weight: 340; }
.h-lg    { font-family: var(--display); font-size: var(--step-3); font-weight: 350; }
.h-md    { font-family: var(--serif);   font-size: var(--step-2); line-height: 1.2; }
.lead    { font-family: var(--serif); font-size: var(--step-1); line-height: 1.55; color: var(--olive-soft); }
.prose p { max-width: var(--measure); }
.prose p + p { margin-top: 1.1em; }

/* ---- Layout primitives ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.stack > * + * { margin-top: var(--flow, 1.5rem); }

/* Surfaces */
.bg-cream { background: var(--cream); }
.bg-sage  { background: var(--sage); }
.bg-mist  { background: var(--cream-deep); }
.bg-olive { background: var(--olive-deep); color: var(--cream); }
.bg-olive h1, .bg-olive h2, .bg-olive h3 { color: var(--cream); }
.bg-olive .lead { color: rgba(244,241,232,0.82); }
.bg-olive .eyebrow { color: #d69a6e; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 1.05em 1.9em;
  border-radius: var(--radius);
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--terracotta); color: var(--cream); }
.btn--primary:hover { background: var(--terracotta-d); }
.btn--ghost { border: 1px solid currentColor; color: var(--olive); }
.btn--ghost:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
.bg-olive .btn--ghost { color: var(--cream); }
.bg-olive .btn--ghost:hover { background: var(--cream); color: var(--olive-deep); border-color: var(--cream); }
.btn .arw { transition: transform .4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.link-underline {
  font-family: var(--sans); font-size: var(--step--1); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--terracotta);
  display: inline-flex; align-items: center; gap: 0.55em;
  padding-bottom: 3px; border-bottom: 1px solid rgba(180,106,60,0.4);
  transition: border-color .35s var(--ease), gap .35s var(--ease);
}
.link-underline:hover { border-color: var(--terracotta); gap: 0.85em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.nav--solid {
  background: rgba(244,241,232,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; z-index: 2; }
.nav__brand img { width: 40px; height: 40px; transition: width .5s var(--ease); }
.nav--solid .nav__brand img { width: 34px; }
.nav__wordmark {
  font-family: var(--display); font-size: 1.12rem; font-weight: 400; line-height: 1;
  color: var(--olive); letter-spacing: 0.01em;
}
.nav__wordmark small { display:block; font-family: var(--sans); font-size: 0.52rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--terracotta); margin-top: 3px; font-weight:600; }

/* nav on hero (transparent) — light text with a soft top scrim for legibility */
.nav:not(.nav--solid)::before {
  content:""; position: fixed; top: 0; left: 0; right: 0; height: 150px; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(22,28,14,0.34) 0%, rgba(22,28,14,0.12) 45%, rgba(22,28,14,0) 100%);
}
.nav:not(.nav--solid) .nav__wordmark { color: #FBFAF5; text-shadow: 0 1px 12px rgba(20,26,12,0.4); }
.nav:not(.nav--solid) .nav__wordmark small { color: #e6c3a3; text-shadow: 0 1px 10px rgba(20,26,12,0.4); }
.nav:not(.nav--solid) .nav__links a { color: #FBFAF5; text-shadow: 0 1px 10px rgba(20,26,12,0.35); }
.nav:not(.nav--solid) .nav__cta { color: #FBFAF5; border-color: rgba(247,245,238,0.55); }
.nav:not(.nav--solid) .nav__burger span { background: #FBFAF5; }
.nav { position: fixed; }

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.3rem); }
.nav__links a {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--olive);
  position: relative; padding: 0.4em 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content:""; position:absolute; left:0; bottom:0; width:0; height:1.5px;
  background: var(--terracotta); transition: width .35s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--terracotta); }
.nav:not(.nav--solid) .nav__links a.is-active { color: #f0cba6; }

.nav__cta {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.13em;
  padding: 0.7em 1.35em; border: 1px solid var(--olive); border-radius: var(--radius);
  color: var(--olive);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.nav--solid .nav__cta { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.nav__cta:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
.nav--solid .nav__cta:hover { background: var(--olive); }

.nav__burger { display:none; flex-direction: column; gap: 5px; width: 30px; height: 22px; justify-content:center; z-index: 2; }
.nav__burger span { display:block; height: 2px; width: 100%; background: var(--olive); border-radius:2px; transition: transform .4s var(--ease), opacity .3s var(--ease); }

/* mobile menu */
.nav__mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--olive-deep);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  visibility: hidden;
}
.nav__mobile.open { transform: translateY(0); visibility: visible; }
.nav__mobile a {
  font-family: var(--display); font-size: clamp(1.8rem, 8vw, 3rem); color: var(--cream);
  padding: 0.28em 0; border-bottom: 1px solid var(--line-light);
  display:flex; justify-content: space-between; align-items:center;
  opacity: 0; transform: translateY(18px);
}
.nav__mobile.open a { animation: fadeUp .6s var(--ease) forwards; }
.nav__mobile.open a:nth-child(1){animation-delay:.08s}
.nav__mobile.open a:nth-child(2){animation-delay:.14s}
.nav__mobile.open a:nth-child(3){animation-delay:.20s}
.nav__mobile.open a:nth-child(4){animation-delay:.26s}
.nav__mobile.open a:nth-child(5){animation-delay:.32s}
.nav__mobile.open a:nth-child(6){animation-delay:.38s}
.nav__mobile.open a:nth-child(7){animation-delay:.44s}
.nav__mobile a span { font-family: var(--sans); font-size: 0.8rem; color: var(--terracotta); letter-spacing: 0.1em; }
.nav__mobile .m-contact { margin-top: 2rem; opacity:0; }
.nav__mobile.open .m-contact { animation: fadeUp .6s var(--ease) .5s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Left-anchored gradient: ~40% at the left edge, faded to clear by the centre.
   The landscape and house on the right stay fully visible. A soft, low bottom
   vignette only seats the scroll cue — it does not darken the frame. */
.hero__media::after {
  content:""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(26,32,17,0.46) 0%, rgba(26,32,17,0.34) 20%, rgba(26,32,17,0.12) 42%, rgba(26,32,17,0) 62%),
    linear-gradient(0deg, rgba(24,30,15,0.34) 0%, rgba(24,30,15,0.04) 22%, rgba(24,30,15,0) 40%);
}
.hero__inner {
  position: relative; z-index: 1; width: 100%;
  /* Lift content to the optical centre of the left side (slightly above true centre) */
  padding-top: clamp(1rem, 3vh, 3rem);
  padding-bottom: clamp(1rem, 4vh, 3rem);
}
.hero__col { max-width: 560px; }

.hero__eyebrow {
  color: #e0b083 !important;               /* warm sandstone */
  margin-bottom: 1.5rem;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
}
.hero__eyebrow::before { background: currentColor; opacity: 0.85; }

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 1.7rem + 3.4vw, 4rem);   /* reduced from prior scale */
  line-height: 1.08;
  font-weight: 340;
  font-variation-settings: "opsz" 110;
  letter-spacing: -0.012em;
  color: #FBFAF5;                          /* warm ivory, maximum contrast */
  max-width: 15ch;
  text-shadow: 0 1px 26px rgba(20,26,12,0.42), 0 1px 3px rgba(20,26,12,0.3);
}
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.02rem, 0.96rem + 0.4vw, 1.2rem);
  line-height: 1.75;
  margin-top: 1.7rem;
  max-width: 46ch;
  color: rgba(247,245,238,0.82);           /* softer than the heading */
  text-shadow: 0 1px 16px rgba(20,26,12,0.32);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; } /* ~32px */
.hero .btn { padding-block: 1.1em; }
.hero .btn--ghost {
  color: var(--cream); border-color: rgba(247,245,238,0.5);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.hero .btn--ghost:hover { background: rgba(247,245,238,0.12); border-color: var(--cream); color: var(--cream); }

/* Staged entrance: nav → eyebrow → heading → paragraph → buttons */
.hero__inner .hero-anim { opacity: 0; transform: translateY(14px); }
.hero.ready .hero-anim { animation: heroIn 1.1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero__inner .hero-anim { opacity: 1; transform: none; }
  .hero.ready .hero-anim { animation: none; }
}

/* Elegant scroll cue — thin animated line + small arrow */
.hero__scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  color: rgba(247,245,238,0.7); opacity: 0;
}
.hero.ready .hero__scroll { animation: heroIn 1.2s var(--ease) 1.5s forwards; }
.hero__scroll .ln { width: 1px; height: 48px; background: rgba(247,245,238,0.28); overflow: hidden; position: relative; }
.hero__scroll .ln::after { content:""; position: absolute; top: -60%; left: 0; width: 100%; height: 60%; background: linear-gradient(rgba(224,176,131,0), var(--terracotta)); animation: scrollLn 2.6s var(--ease) infinite; }
.hero__scroll .arw { width: 11px; height: 11px; opacity: 0.85; animation: scrollArw 2.6s var(--ease) infinite; }
@keyframes scrollLn { 0% { top: -60%; } 70%,100% { top: 100%; } }
@keyframes scrollArw { 0%,60% { transform: translateY(0); opacity: 0.5; } 80% { transform: translateY(3px); opacity: 1; } 100% { transform: translateY(0); opacity: 0.5; } }
@media (prefers-reduced-motion: reduce) {
  .hero__scroll .ln::after, .hero__scroll .arw { animation: none; }
  .hero.ready .hero__scroll { opacity: 1; animation: none; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* image cover reveal */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal img { transition: transform 1.6s var(--ease); transform: scale(1.06); }
.img-reveal.in img { transform: scale(1); }

/* ============================================================
   INTRO / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__body { max-width: 52ch; }
.figure-caption {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--olive-soft); margin-top: 0.9rem; display: flex; align-items: center; gap: 0.6rem;
}
.figure-caption::before { content:""; width: 1.4em; height: 1px; background: var(--terracotta); }

/* Source motif — thin vertical line with drop */
.source-mark { display: flex; flex-direction: column; align-items: center; gap: 0; color: var(--terracotta); }
.source-mark .drop { width: 8px; height: 8px; border-radius: 0 50% 50% 50%; background: currentColor; transform: rotate(45deg); }
.source-mark .stem { width: 1px; height: 54px; background: linear-gradient(currentColor, transparent); }

.section-mark { display:flex; justify-content:center; margin-bottom: 2.2rem; }

/* ============================================================
   STAYS  (three residences)
   ============================================================ */
.stays { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: repeat(3, 1fr); }
.stay {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream); border: 1px solid var(--line);
  overflow: hidden;
}
.stay__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.stay__media img { width:100%; height:100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.stay:hover .stay__media img { transform: scale(1.05); }
.stay__badge {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.5em 0.9em; border-radius: 100px; background: var(--cream); color: var(--olive);
}
.stay__badge--soon { background: var(--olive-deep); color: var(--cream); }
.stay__badge--live { background: var(--terracotta); color: var(--cream); }
.stay__body { padding: 1.6rem 1.5rem 1.8rem; display:flex; flex-direction: column; flex: 1; }
.stay__body h3 { font-family: var(--display); font-size: var(--step-2); margin-bottom: 0.5rem; }
.stay__meta { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.03em; color: var(--olive-soft); }
.stay__desc { margin-top: 0.9rem; font-size: 0.95rem; color: var(--olive-soft); flex:1; }
.stay__foot { margin-top: 1.4rem; }

/* ============================================================
   FEATURE STRIP  (facts)
   ============================================================ */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.fact { background: var(--cream); padding: clamp(1.6rem,3vw,2.6rem) clamp(1.2rem,2vw,1.8rem); text-align: center; }
.bg-sage .facts, .bg-sage .fact { background: transparent; }
.bg-sage .facts { background: rgba(62,73,43,0.16); }
.bg-sage .fact { background: var(--sage); }
.fact__num { font-family: var(--display); font-size: var(--step-3); color: var(--olive); line-height: 1; white-space: nowrap; }
.fact__num .unit { font-size: 0.42em; font-family: var(--sans); font-weight: 500; letter-spacing: 0.04em; margin-left: 0.15em; color: var(--olive-soft); vertical-align: baseline; }
.fact__label { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); margin-top: 0.7rem; }

/* ============================================================
   GALLERY (editorial mosaic)
   ============================================================ */
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(0.6rem, 1.3vw, 1rem); grid-auto-flow: dense; }
.mosaic figure { position: relative; overflow: hidden; }
.mosaic img { width:100%; height:100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.mosaic figure:hover img { transform: scale(1.05); }
.m-tall { grid-column: span 4; aspect-ratio: 3/4; }
.m-wide { grid-column: span 8; aspect-ratio: 16/10; }
.m-sq   { grid-column: span 4; aspect-ratio: 1; }
.m-full { grid-column: span 6; aspect-ratio: 4/3; }
.m-cap {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 1.4rem 1.2rem 1rem;
  background: linear-gradient(transparent, rgba(28,35,18,0.72));
  color: var(--cream); font-family: var(--serif); font-size: 0.95rem;
  opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mosaic figure:hover .m-cap { opacity: 1; transform: none; }

/* room grid (villa detail) */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.room figure { aspect-ratio: 3/2; overflow: hidden; margin-bottom: 1rem; }
.room img { width:100%; height:100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.room:hover img { transform: scale(1.05); }
.room h4 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 0.3rem; }
.room p { font-size: 0.88rem; color: var(--olive-soft); max-width: 34ch; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.8rem); }
.review {
  background: var(--cream); border: 1px solid var(--line);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex; flex-direction: column;
}
.bg-olive .review { background: rgba(244,241,232,0.05); border-color: var(--line-light); }
.review__stars { color: var(--terracotta); letter-spacing: 0.15em; font-size: 0.85rem; margin-bottom: 1.2rem; }
.review__quote { font-family: var(--serif); font-size: 1.02rem; line-height: 1.62; color: var(--olive); }
.bg-olive .review__quote { color: rgba(244,241,232,0.9); }
.review__quote p + p { margin-top: 0.9em; }
.review__author { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-top: 1.6rem; }

/* ============================================================
   AREA / experiences list
   ============================================================ */
.exp-list { border-top: 1px solid var(--line); }
.exp {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem,3vw,3rem); align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0; border-bottom: 1px solid var(--line);
  transition: padding-inline .4s var(--ease);
}
.exp:hover { padding-inline: 0.6rem; }
.exp__idx { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--terracotta); font-weight: 600; }
.exp__main h3 { font-family: var(--display); font-size: var(--step-2); margin-bottom: 0.4rem; }
.exp__main p { font-size: 0.92rem; color: var(--olive-soft); max-width: 62ch; }
.exp__cta { white-space: nowrap; }
@media (max-width: 760px){
  .exp { grid-template-columns: auto 1fr; }
  .exp__cta { grid-column: 2; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; text-align: center; color: var(--cream); }
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width:100%; height:100%; object-fit: cover; }
.cta-band__media::after { content:""; position:absolute; inset:0; background: rgba(28,35,18,0.66); }
.cta-band__inner { position: relative; z-index: 1; }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive-soft);
}
.field label .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.98rem; color: var(--olive);
  background: var(--cream); border: 1px solid var(--line);
  padding: 0.9em 1em; border-radius: var(--radius);
  transition: border-color .3s var(--ease), background .3s var(--ease);
  width: 100%;
}
.bg-sage .field input, .bg-sage .field select, .bg-sage .field textarea { background: rgba(244,241,232,0.55); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terracotta); background: #fff;
}
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.8rem; color: var(--olive-soft); margin-top: 0.4rem; }
.form-status { font-family: var(--sans); font-size: 0.9rem; padding: 1em 1.2em; border-radius: var(--radius); margin-top: 1rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(62,73,43,0.1); color: var(--olive); border: 1px solid var(--line); }
.form-status.err { background: rgba(180,106,60,0.12); color: var(--terracotta-d); border: 1px solid rgba(180,106,60,0.35); }
.honey { position: absolute; left: -9999px; opacity: 0; }

/* ============================================================
   CONTACT split
   ============================================================ */
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { }
.contact-item .k { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.4rem; }
.contact-item .v { font-family: var(--serif); font-size: 1.12rem; color: var(--olive); }
.contact-item a.v:hover { color: var(--terracotta); }
.map-embed { aspect-ratio: 4/3; width: 100%; border: 1px solid var(--line); filter: saturate(0.85) contrast(0.95); }
.map-embed iframe { width:100%; height:100%; border:0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--olive-deep); color: rgba(244,241,232,0.8); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem,4vw,4rem); padding-bottom: 3.5rem; border-bottom: 1px solid var(--line-light); }
.footer__brand img { width: 64px; margin-bottom: 1.2rem; }
.footer__brand p { font-family: var(--serif); font-size: 1rem; max-width: 32ch; color: rgba(244,241,232,0.72); }
.footer__col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #d69a6e; margin-bottom: 1.2rem; font-weight: 600; }
.footer__col a, .footer__col p { display: block; font-size: 0.92rem; color: rgba(244,241,232,0.8); padding: 0.32em 0; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--cream); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-block: 2rem 2.5rem; font-size: 0.78rem; color: rgba(244,241,232,0.55); }
.footer__bottom a:hover { color: var(--cream); }
.footer__social { display: flex; gap: 1.2rem; }
.footer__social a { display: inline-flex; }
.footer__social svg { width: 20px; height: 20px; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.pagehead {
  position: relative; min-height: 62vh; display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
}
.pagehead--tall { min-height: 72vh; }
.pagehead__media { position: absolute; inset: 0; z-index: 0; }
.pagehead__media img { width:100%; height:100%; object-fit: cover; }
/* Left-anchored gradient with a soft bottom seat — mirrors the home hero, landscape stays visible */
.pagehead__media::after {
  content:""; position:absolute; inset:0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(26,32,17,0.5) 0%, rgba(26,32,17,0.36) 22%, rgba(26,32,17,0.12) 46%, rgba(26,32,17,0) 66%),
    linear-gradient(0deg, rgba(24,30,15,0.36) 0%, rgba(24,30,15,0.05) 26%, rgba(24,30,15,0) 46%);
}
.pagehead__inner {
  position: relative; z-index: 1; width:100%;
  padding-top: clamp(4rem, 8vh, 6rem);          /* clear the fixed nav */
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
}
.pagehead__col { max-width: 620px; }
.pagehead__title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 1.6rem + 2.8vw, 3.6rem);
  line-height: 1.08; font-weight: 340; letter-spacing: -0.012em;
  margin-top: 1.3rem; max-width: 18ch; color: #FBFAF5;
  text-shadow: 0 1px 26px rgba(20,26,12,0.42), 0 1px 3px rgba(20,26,12,0.3);
}
.pagehead__sub {
  font-family: var(--serif);
  font-size: clamp(1.02rem, 0.96rem + 0.4vw, 1.2rem);
  line-height: 1.7; margin-top: 1.2rem; max-width: 48ch;
  color: rgba(247,245,238,0.82);
  text-shadow: 0 1px 16px rgba(20,26,12,0.32);
}
.breadcrumb {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #e0b083; text-shadow: 0 1px 10px rgba(20,26,12,0.4);
}
.breadcrumb a { color: rgba(247,245,238,0.75); }
.breadcrumb a:hover { color: #FBFAF5; }

/* Staged entrance: breadcrumb → title → sub → actions */
.pagehead .ph-anim { opacity: 0; transform: translateY(14px); }
.pagehead.ready .ph-anim { animation: heroIn 1.1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@media (prefers-reduced-motion: reduce) {
  .pagehead .ph-anim { opacity: 1; transform: none; }
  .pagehead.ready .ph-anim { animation: none; }
}

/* two-col rich text */
.rich { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,5rem); }
.rich__aside .eyebrow { margin-bottom: 1rem; }
.rich__aside h2 { font-family: var(--display); font-size: var(--step-3); }
.rich__body { max-width: var(--measure); }
.rich__body p + p { margin-top: 1.1em; }
.rich__body p { color: var(--olive-soft); }
.rich__body .lead { color: var(--olive); }

/* checklist */
.checklist { display: grid; gap: 0.9rem; }
.checklist li { display: flex; gap: 0.9rem; align-items: flex-start; font-size: 0.95rem; color: var(--olive-soft); }
.checklist li::before { content:""; flex: none; width: 7px; height: 7px; margin-top: 0.55em; border-radius: 0 50% 50% 50%; background: var(--terracotta); transform: rotate(45deg); }

/* pill list */
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.04em; padding: 0.55em 1.1em; border: 1px solid var(--line); border-radius: 100px; color: var(--olive-soft); }
.bg-olive .pill { border-color: var(--line-light); color: rgba(244,241,232,0.8); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .stays { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .stay__media { aspect-ratio: 16/11; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .rooms { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .split__media { order: -1; }
  .rich { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr !important; }
  .mosaic { grid-template-columns: repeat(6, 1fr); }
  .m-tall, .m-sq { grid-column: span 3; }
  .m-wide, .m-full { grid-column: span 6; }
}
@media (max-width: 540px) {
  .rooms { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .mosaic { grid-template-columns: 1fr; }
  .m-tall, .m-sq, .m-wide, .m-full { grid-column: span 1; aspect-ratio: 4/3; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
