/* ============================================================
   ROCK LAKE EARTH LODGE — “Quiet Wild” design system (2.2)
   Structure & pacing modeled on award-winning wilderness-lodge
   editorial sites: full-bleed photography, generous whitespace,
   serif statements, understated letterspaced CTAs.
   Palette: the real Rock Lake brand. Voice: dreamlike, unhurried.
   ============================================================ */

:root {
  /* Brand — the real Rock Lake palette */
  --cream:   #FFFDED;
  --moss:    #6F7D41;
  --forest:  #283618;
  --gold:    #DDA15E;
  --copper:  #BC6C25;
  --ink:     #342E37;
  --ember:   #E07C2E;

  /* Derived, sparingly */
  --forest-deep: #1C2611;
  --cream-dim:   #F7F3DE;
  --line:        #E7E1C6;
  --ink-soft:    #6A6357;
  --gold-soft:   rgba(221, 161, 94, .32);

  /* Roles (day) */
  --bg:         var(--cream);
  --bg-panel:   #FFFEF6;
  --tx:         var(--ink);
  --tx-soft:    var(--ink-soft);
  --tx-label:   var(--copper);
  --rule:       var(--line);
  --head:       var(--forest);

  /* Type — IM Fell English SC is the Rock Lake brand face (labels, wordmark);
     Marcellus SC carries the button/CTA text */
  --f-display: "Fraunces", Georgia, serif;
  --f-label:   "IM Fell English SC", "Marcellus SC", Georgia, serif;
  --f-btn:     "Marcellus SC", Georgia, serif;
  --f-body:    "Hanken Grotesk", -apple-system, "Segoe UI", system-ui, sans-serif;

  --fs-hero:  clamp(2.6rem, 5.4vw, 4.6rem);
  --fs-h2:    clamp(2rem, 3.8vw, 3.1rem);
  --fs-h3:    clamp(1.3rem, 2vw, 1.62rem);
  --fs-body:  1.09rem;
  --fs-lede:  clamp(1.12rem, 1.7vw, 1.32rem);
  --fs-sm:    .92rem;
  --fs-xs:    .78rem;

  --band:  clamp(5.5rem, 11vw, 10rem);
  --wrap:  1240px;
  --meas:  680px;               /* centered editorial measure */
  --gut:   clamp(1.3rem, 4.5vw, 3rem);
  --t:     .4s cubic-bezier(.25,.8,.25,1);
  --t-theme: 1.1s ease;
}

/* After Dark — the valley at night */
html.after-dark {
  --bg:        var(--forest-deep);
  --bg-panel:  #222C14;
  --tx:        var(--cream);
  --tx-soft:   #C6C1A4;
  --tx-label:  var(--gold);
  --rule:      #364126;
  --head:      var(--cream);
}

/* ---------- base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body.wild {
  background: var(--bg); color: var(--tx);
  font-family: var(--f-body); font-size: var(--fs-body); line-height: 1.8;
  font-weight: 400; letter-spacing: .004em;
  transition: background var(--t-theme), color var(--t-theme);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 {
  font-family: var(--f-display); font-optical-sizing: auto;
  font-weight: 380; line-height: 1.14; letter-spacing: .002em;
  color: var(--head); transition: color var(--t-theme);
}
h2 { font-size: var(--fs-h2); text-wrap: balance; }
h3 { font-size: var(--fs-h3); }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 330; }
p { transition: color var(--t-theme); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gut); }

:focus-visible { outline: 2.5px solid var(--ember); outline-offset: 3px; border-radius: 2px; }
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 300; background: var(--forest); color: var(--cream); padding: .7rem 1.2rem; border-radius: 6px; transition: top .2s; }
.skip-link:focus { top: 12px; }
::selection { background: var(--gold-soft); }
[id] { scroll-margin-top: 96px; }  /* keep anchor jumps clear of the fixed header */

/* ---------- editorial primitives ---------- */
/* the small letterspaced label above a heading */
.elev {
  font-family: var(--f-label); font-size: var(--fs-xs); letter-spacing: .38em;
  text-transform: uppercase; color: var(--tx-label); margin-bottom: 1.5rem;
  transition: color var(--t-theme);
}
/* a centered editorial block — heading, flowing paragraph, quiet CTA */
.ed { max-width: var(--meas); margin-inline: auto; text-align: center; }
.ed h1 { font-size: var(--fs-h2); text-wrap: balance; }
.ed p { margin-top: 1.7rem; font-size: var(--fs-lede); line-height: 1.85; color: var(--tx-soft); }
.ed .w-cta { margin-top: 2.4rem; }
/* left-aligned variant for splits */
.ed-left { text-align: left; }
.ed-left p { margin-left: 0; }

/* the understated letterspaced text CTA */
.w-cta {
  display: inline-block; font: 400 .88rem var(--f-btn); letter-spacing: .22em;
  text-transform: uppercase; color: var(--head); padding-bottom: .45em;
  border-bottom: 1px solid var(--gold); transition: color var(--t), border-color var(--t), letter-spacing var(--t);
}
.w-cta:hover { color: var(--copper); border-bottom-color: var(--copper); letter-spacing: .26em; }
html.after-dark .w-cta:hover { color: var(--gold); border-bottom-color: var(--gold); }
.w-cta.on-photo { color: var(--cream); }
.w-cta.on-photo:hover { color: var(--gold); }

/* the one solid button — reserve only. Brand gold, copper on hover, rectangle. */
.w-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font: 400 .86rem var(--f-btn); letter-spacing: .2em; text-transform: uppercase;
  padding: 1em 2.3em; border-radius: 0; border: none; cursor: pointer;
  background: var(--gold); color: var(--forest); transition: background var(--t), color var(--t), box-shadow var(--t);
}
.w-btn:hover, .w-btn:focus-visible { background: var(--copper); color: var(--cream); box-shadow: 0 6px 30px rgba(188, 108, 37, .45); }
.w-btn-sm { padding: .72em 1.7em; font-size: .74rem; }

[data-icon] { display: inline-flex; }
[data-icon] svg { width: 1.15em; height: 1.15em; }

/* coordinates line — quiet identity */
.w-coords {
  text-align: center; font-family: var(--f-label); font-size: var(--fs-xs);
  letter-spacing: .44em; color: var(--tx-soft); opacity: .65; padding: 2.2rem var(--gut) 0;
}

/* thin single contour divider */
.w-divider { overflow: hidden; line-height: 0; opacity: .55; }
.w-divider svg { width: 100%; height: 60px; }
.w-divider path {
  fill: none; stroke: var(--gold); stroke-width: 1; opacity: .6;
  stroke-dasharray: 1700; stroke-dashoffset: 1700; transition: stroke-dashoffset 3s ease;
}
.w-divider.is-in path { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) { .w-divider path { stroke-dashoffset: 0 !important; transition: none; } }

/* reveal */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 1s ease, transform 1s ease; }
.rv.is-in { opacity: 1; transform: none; }
.rv[data-d="2"] { transition-delay: .15s; } .rv[data-d="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }
html.no-js .rv { opacity: 1; transform: none; }

/* ---------- header ---------- */
.w-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .5s ease, box-shadow .5s ease, transform .45s ease; }
.w-header-in { max-width: 1500px; margin: 0 auto; padding: 1rem var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; }
.w-header.is-solid { background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(14px) saturate(130%); box-shadow: 0 1px 0 var(--rule); }
.w-header.is-hidden { transform: translateY(-110%); }

.w-brand { display: flex; align-items: center; gap: .75rem; }
.w-brand img { border-radius: 50%; }
.w-brand-word { display: flex; flex-direction: column; line-height: 1.15; }
.w-brand-word b { font-family: var(--f-label); font-weight: 400; font-size: 1.05rem; letter-spacing: .08em; color: var(--head); transition: color var(--t-theme); }
.w-brand-word i { font-family: var(--f-label); font-style: normal; font-size: .64rem; letter-spacing: .4em; text-transform: uppercase; color: var(--tx-label); }

/* hero-overlay state: light text until scrolled */
.w-header:not(.is-solid) .w-brand-word b { color: var(--cream); }
.w-header:not(.is-solid) .w-brand-word i { color: var(--gold); }
.w-header:not(.is-solid) .w-nav > ul > li > a { color: var(--cream); }
.w-header:not(.is-solid) .w-phone { color: var(--cream); }
.w-header:not(.is-solid) .w-burger span { background: var(--cream); }

.w-nav > ul { display: flex; gap: .25rem; }
.w-nav > ul > li > a {
  font: 600 .74rem var(--f-body); letter-spacing: .18em; text-transform: uppercase;
  padding: .6rem .9rem; color: var(--tx); display: inline-flex; align-items: center; gap: .35em;
  border-bottom: 1px solid transparent; transition: color var(--t), border-color var(--t);
}
.w-nav > ul > li > a:hover, .w-nav a[aria-current="page"] { border-bottom-color: var(--gold); }
.w-nav [data-icon] svg { width: .7em; height: .7em; }

.w-has-sub { position: relative; }
.w-sub {
  position: absolute; top: calc(100% + .6rem); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--bg-panel); border: 1px solid var(--rule); border-radius: 8px;
  box-shadow: 0 22px 60px rgba(28, 38, 17, .18); padding: .5rem; min-width: 236px;
  opacity: 0; visibility: hidden; transition: all .3s ease;
}
.w-has-sub:hover .w-sub, .w-has-sub:focus-within .w-sub { opacity: 1; visibility: visible; transform: translateX(-50%); }
.w-sub li a { display: block; padding: .65rem .9rem; border-radius: 5px; color: var(--tx); font-size: .92rem; }
.w-sub li a:hover { background: var(--gold-soft); }

.w-actions { display: flex; align-items: center; gap: 1rem; }
.w-phone { display: inline-flex; align-items: center; gap: .45em; font: 600 .85rem var(--f-body); color: var(--tx); transition: color var(--t); }
.w-phone [data-icon] svg { color: var(--gold); }

/* after-dark toggle — round, single crossfading icon */
.w-dark-toggle {
  position: relative; width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--gold); background: transparent; flex: none;
  display: grid; place-items: center; color: var(--gold); transition: background var(--t), border-color var(--t);
}
.w-dark-toggle:hover { background: var(--gold-soft); }
.w-header:not(.is-solid) .w-dark-toggle { border-color: rgba(255,253,237,.6); color: var(--cream); }
.w-dark-toggle span { grid-area: 1 / 1; display: inline-flex; transition: opacity .45s ease; }
.w-dark-toggle .wdt-moon { opacity: 0; }
html.after-dark .w-dark-toggle .wdt-sun  { opacity: 0; }
html.after-dark .w-dark-toggle .wdt-moon { opacity: 1; }
.w-dark-toggle [data-icon] svg { width: 16px; height: 16px; }

.w-burger { display: none; }

/* ---------- mobile nav ---------- */
.w-mobile {
  position: fixed; inset: 0; z-index: 200; background: var(--forest-deep); color: var(--cream);
  padding: 1.2rem var(--gut) 2.6rem; overflow-y: auto;
  transform: translateX(102%); transition: transform .55s cubic-bezier(.7,0,.2,1); visibility: hidden;
}
.w-mobile.is-open { transform: none; visibility: visible; }
.w-mobile-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.4rem; }
.w-mobile-top .w-brand-word b { color: var(--cream); }
.w-mobile-close { background: none; border: 1px solid rgba(255,253,237,.4); color: var(--cream); border-radius: 50%; width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer; }
.w-mobile-links > li > a { font-family: var(--f-display); font-weight: 380; font-size: 1.8rem; display: block; padding: .65rem 0; border-bottom: 1px solid rgba(221,161,94,.16); color: var(--cream); }
.w-mobile-links ul { padding: .5rem 0 .9rem; }
.w-mobile-links ul a { font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; color: #C6C1A4; display: block; padding: .35rem 0 .35rem 1.1rem; }
.w-mobile-foot { margin-top: 2.4rem; display: grid; gap: 1.2rem; justify-items: start; }
.w-mobile-foot a:not(.w-btn) { color: var(--gold); font-weight: 600; display: inline-flex; gap: .5em; align-items: center; }

/* ---------- HERO — centered identity block over the photo ---------- */
.w-hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--cream); text-align: center; }
.w-hero-bg, .w-hero-bg-night { position: absolute; inset: 0; }
.w-hero-bg picture, .w-hero-bg-night picture, .w-hero-bg img, .w-hero-bg-night img { width: 100%; height: 100%; object-fit: cover; }
.w-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: reduce) { .w-hero-video { display: none; } }
.w-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,38,17,.3) 0%, rgba(28,38,17,.06) 34%, rgba(24,32,14,.74) 92%); }
.w-hero-bg-night { opacity: 0; transition: opacity 1.8s ease; }
.w-hero-bg-night::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,12,5,.3), rgba(8,12,5,.12) 40%, rgba(8,12,5,.8)); }
html.after-dark .w-hero-bg-night { opacity: 1; }

.w-stars { position: absolute; inset: 0 0 34% 0; opacity: 0; transition: opacity 2.2s ease; pointer-events: none; }
html.after-dark .w-stars { opacity: 1; }
.w-stars i { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #FFF; animation: w-twinkle 4s infinite; }
@keyframes w-twinkle { 0%, 100% { opacity: .18; } 50% { opacity: .9; } }
@media (prefers-reduced-motion: reduce) { .w-stars i { animation: none; opacity: .5; } }

.w-hero-in { position: relative; z-index: 2; width: 100%; max-width: 900px; margin: 0 auto; padding: 8rem var(--gut) 6rem; display: flex; flex-direction: column; align-items: center; }
.w-hero-logo { width: clamp(190px, 24vw, 300px); height: auto; filter: drop-shadow(0 4px 30px rgba(10, 14, 5, .35)); }
.w-hero-word { margin-top: 2.2rem; font-family: var(--f-label); font-weight: 400; font-size: clamp(1.15rem, 2.4vw, 1.8rem); letter-spacing: .34em; text-transform: uppercase; color: var(--cream); text-indent: .34em; text-shadow: 0 1px 3px rgba(8,12,4,.55), 0 3px 30px rgba(8,12,4,.65); }
.w-hero-rule { width: min(340px, 62%); height: 1px; background: rgba(255,253,237,.85); margin: 1.15rem auto; box-shadow: 0 1px 8px rgba(8,12,4,.5); }
.w-hero-loc { font-family: var(--f-label); font-size: clamp(.82rem, 1.3vw, 1.02rem); letter-spacing: .5em; text-transform: uppercase; color: rgba(255,253,237,.95); text-indent: .5em; text-shadow: 0 1px 3px rgba(8,12,4,.6), 0 2px 18px rgba(8,12,4,.6); }
.w-hero-logo { filter: drop-shadow(0 4px 30px rgba(10, 14, 5, .55)) drop-shadow(0 1px 4px rgba(8,12,4,.5)); }
.w-hero-ctas { display: flex; flex-wrap: wrap; gap: 2.6rem; margin-top: 2.6rem; align-items: center; justify-content: center; }

/* live conditions — a quiet line, not a widget */
.w-live {
  display: inline-flex; align-items: center; gap: .65em; margin-top: 2.6rem;
  font-family: var(--f-label); font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,253,237,.78); opacity: 0; transform: translateY(8px);
  transition: opacity 1s ease, transform 1s ease;
}
.w-live.is-on { opacity: 1; transform: none; }
.w-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px 2px rgba(221,161,94,.7); animation: w-pulse 3s infinite; flex: none; }
@keyframes w-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.35); } }
@media (prefers-reduced-motion: reduce) { .w-live .dot { animation: none; } }
.w-live b { color: var(--gold); font-weight: 400; }

/* ---------- bands ---------- */
.w-band { padding-block: var(--band); position: relative; }
.w-band-tight { padding-block: calc(var(--band) * .55); }
.w-band-half { padding-block: calc(var(--band) * .5); }

/* full-bleed image band (Clayoquot-style punctuation) */
.w-bleed { position: relative; height: clamp(420px, 72vh, 760px); overflow: hidden; }
.w-bleed picture { position: absolute; inset: 0; }
.w-bleed img { width: 100%; height: 100%; object-fit: cover; }
.w-bleed .w-bleed-caption {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--f-label); font-size: .72rem; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(255,253,237,.85); text-shadow: 0 1px 12px rgba(0,0,0,.4); white-space: nowrap;
}

/* split: editorial text + tall image */
.w-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.4rem, 6vw, 5.5rem); align-items: center; }
.w-split.is-flip { grid-template-columns: 1.15fr 1fr; }
.w-split-media { overflow: hidden; }
.w-split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.6; transition: transform 2s ease; }
.w-split-media:hover img { transform: scale(1.035); }
.w-split .ed-left p { font-size: 1.06rem; line-height: 1.85; }
.w-split .ed-left .w-cta { margin-top: 2rem; }

/* minimal amenity previews — for the visual learners, hairline quiet */
.w-amen { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin-top: 1.8rem; }
.w-amen span { display: inline-flex; align-items: center; gap: .55em; font-size: .86rem; letter-spacing: .04em; color: var(--tx-soft); }
.w-amen [data-icon] svg { width: 1.1em; height: 1.1em; color: var(--moss); }
html.after-dark .w-amen [data-icon] svg { color: var(--gold); }

/* ---------- feature showcase — big slideshow + overlapping card ---------- */
.w-feature { position: relative; max-width: 1500px; margin: 0 auto; padding-inline: var(--gut); }
.w-feature-media { position: relative; width: min(100%, calc(100% - clamp(0px, 22vw, 320px))); aspect-ratio: 16 / 10.5; overflow: hidden; }
.w-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.w-slide.is-active { opacity: 1; }
.w-slide picture, .w-slide img { width: 100%; height: 100%; object-fit: cover; }
.w-slide-btn {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 4;
  background: rgba(28,38,17,.32); border: none; color: var(--cream); cursor: pointer;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  backdrop-filter: blur(4px); transition: background var(--t), opacity var(--t); opacity: .8;
}
.w-slide-btn:hover { background: rgba(28,38,17,.6); opacity: 1; }
.w-slide-btn.prev { left: 14px; } .w-slide-btn.prev svg { transform: rotate(180deg); }
.w-slide-btn.next { right: 14px; }
.w-slide-btn [data-icon] svg { width: 1.15em; height: 1.15em; }
.w-slide-dots { position: absolute; bottom: 16px; left: 50%; translate: -50% 0; z-index: 4; display: flex; gap: 12px; }
.w-slide-dots button {
  width: 9px; height: 9px; border: none; cursor: pointer; padding: 0;
  background: rgba(255,253,237,.55); transform: rotate(45deg); transition: background var(--t), scale var(--t);
}
.w-slide-dots button.is-active { background: var(--gold); scale: 1.25; }
.w-slide-nav {
  position: absolute; bottom: 14px; left: 50%; translate: -50% 0; z-index: 5;
  display: flex; align-items: center; gap: 10px;
}
.w-slide-nav .w-slide-btn { position: static; top: auto; translate: none; width: 40px; height: 40px; }
.w-slide-count {
  font-size: .72rem; letter-spacing: .18em; font-variant-numeric: tabular-nums;
  color: var(--cream); background: rgba(28,38,17,.4); backdrop-filter: blur(4px);
  padding: .55em .95em; border-radius: 999px;
}
.w-slide-count .w-slide-cur { color: var(--gold); }

/* wedding deep-dive carousel box (sits inside a .w-split media column) */
.w-slideshow { position: relative; aspect-ratio: 4 / 3.3; overflow: hidden; }

/* overview cards rendered as jump links */
a.w-tenet { text-decoration: none; color: inherit; cursor: pointer; }
.w-tenet-more { display: block; margin-top: .7rem; font-family: var(--f-label); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* premium vendors directory */
.w-vendors { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.4vw, 2.8rem); margin-top: 3.2rem; }
.w-vendor-cat h3 { font-family: var(--f-label); font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--tx-label); padding-bottom: .7rem; border-bottom: 1px solid var(--rule); }
.w-vendor-cat ul { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.w-vendor-cat a { color: var(--head); font-size: 1rem; display: inline-flex; align-items: baseline; gap: .35em; transition: color var(--t); }
.w-vendor-cat a:hover { color: var(--gold); }
.w-vendor-cat a::after { content: "↗"; font-size: .82em; color: var(--tx-label); }
@media (max-width: 900px) { .w-vendors { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .w-vendors { grid-template-columns: 1fr; } }
.w-feature-card {
  position: absolute; right: var(--gut); top: 50%; translate: 0 -50%; z-index: 5;
  width: min(430px, 78vw); background: var(--bg); padding: clamp(2rem, 3.4vw, 3.2rem);
  box-shadow: 0 18px 60px rgba(28, 38, 17, .3), 0 42px 120px rgba(28, 38, 17, .22);
  transition: background var(--t-theme);
}
.w-feature-card::before { content: ""; position: absolute; top: 0; left: -5rem; width: calc(100% + 5rem); height: 1px; background: var(--head); opacity: .55; transition: background var(--t-theme); }
/* flipped: photo right, card left */
.w-feature.is-flip .w-feature-media { margin-left: auto; }
.w-feature.is-flip .w-feature-card { right: auto; left: var(--gut); }
.w-feature.is-flip .w-feature-card::before { left: 0; width: calc(100% + 5rem); }
.w-feature-card .elev { margin-bottom: .9rem; }
.w-feature-card h2 { font-size: clamp(2rem, 3.2vw, 2.9rem); }
.w-feature-card p { margin-top: 1.2rem; color: var(--tx-soft); font-size: .99rem; line-height: 1.8; }
.w-feature-card .w-cta { margin-top: 1.7rem; }
@media (max-width: 900px) {
  .w-feature { padding-inline: 0; }
  .w-feature-media { width: 100%; aspect-ratio: 16 / 11; }
  .w-feature-card { position: relative; right: auto; top: auto; translate: none; margin: -3.2rem auto 0; width: min(560px, calc(100% - 2.4rem)); }
  .w-feature-card::before { left: 0; width: 100%; }
}

/* ---------- destination collage — two stacked photos, big vista, floating card ---------- */
.w-dest { position: relative; max-width: 1500px; margin: 0 auto; padding-inline: var(--gut); }
.w-dest-grid { display: grid; grid-template-columns: minmax(220px, 30%) 1fr; grid-template-rows: 46% 1fr; gap: 10px; aspect-ratio: 16 / 9.5; }
.w-dest-grid > div { overflow: hidden; }
.w-dest-grid picture, .w-dest-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.w-dest-vista { grid-column: 2; grid-row: 1 / span 2; }
.w-dest-card {
  position: absolute; left: clamp(1rem, 16%, 240px); top: 50%; translate: 0 -50%; z-index: 5;
  width: min(400px, 76vw); background: var(--bg); padding: clamp(2rem, 3.2vw, 3rem);
  box-shadow: 0 18px 60px rgba(28, 38, 17, .3), 0 42px 120px rgba(28, 38, 17, .22);
  transition: background var(--t-theme);
}
.w-dest-card h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); }
.w-dest-card p { margin-top: 1.2rem; color: var(--tx-soft); font-size: .97rem; line-height: 1.8; }
.w-dest-card .w-cta { margin-top: 1.7rem; }
@media (max-width: 900px) {
  .w-dest { padding-inline: 0; }
  .w-dest-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; aspect-ratio: auto; gap: 8px; }
  .w-dest-vista { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 16 / 10; }
  .w-dest-grid > div:not(.w-dest-vista) { aspect-ratio: 4 / 3.4; }
  .w-dest-card { position: relative; left: auto; top: auto; translate: none; margin: -3.2rem auto 0; width: min(560px, calc(100% - 2.4rem)); }
}

/* ---------- stay cards ---------- */
.w-stay { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); margin-top: 3.4rem; }
.w-stay-card { display: flex; flex-direction: column; text-align: left; }
.w-stay-media { overflow: hidden; aspect-ratio: 4 / 4.7; }
.w-stay-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s ease; }
.w-stay-card:hover .w-stay-media img { transform: scale(1.04); }
.w-stay-label { font-family: var(--f-label); font-size: .68rem; letter-spacing: .32em; text-transform: uppercase; color: var(--tx-label); margin-top: 1.6rem; }
.w-stay-card h3 { margin-top: .55rem; font-size: 1.55rem; }
.w-stay-card p { margin-top: .8rem; color: var(--tx-soft); font-size: .98rem; line-height: 1.75; }
.w-stay-card .w-cta { margin-top: 1.4rem; align-self: flex-start; font-size: .74rem; }
.w-stay-card .w-btn { margin-top: 1.5rem; align-self: flex-start; }
.w-stay-card .w-amen { margin-top: 1.1rem; }

/* ---------- season cards (destination page) ---------- */
.w-seasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.6vw, 2.4rem); margin-top: 3.2rem; }
.w-season { border-top: 2px solid var(--gold); padding-top: 1.5rem; }
.w-season h3 { font-family: var(--f-label); font-weight: 400; font-size: 1.05rem; letter-spacing: .3em; text-transform: uppercase; color: var(--tx-label); }
.w-season p { margin-top: .9rem; color: var(--tx-soft); font-size: .95rem; line-height: 1.75; }
.w-season .w-season-note { margin-top: .9rem; font-family: var(--f-label); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--tx-soft); opacity: .8; }
@media (max-width: 900px) { .w-seasons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .w-seasons { grid-template-columns: 1fr; } }

/* ---------- direction steps (destination page) ---------- */
.w-steps { counter-reset: step; display: grid; gap: 1.3rem; margin-top: 1.8rem; }
.w-step { display: flex; gap: 1.1rem; align-items: baseline; }
.w-step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--f-display); font-weight: 300; font-size: 1.5rem; color: var(--tx-label);
  border-bottom: 1px solid var(--gold); min-width: 1.6em; text-align: center; flex: none;
}
.w-step p { color: var(--tx-soft); line-height: 1.7; font-size: .99rem; }
.w-step p b { color: var(--tx); font-weight: 650; }

/* quiet advisory line */
.w-advisory { display: flex; align-items: center; justify-content: center; gap: .8em; margin-top: 2.6rem; text-align: center; font-size: .93rem; color: var(--tx-soft); }
.w-advisory [data-icon] svg { color: var(--tx-label); }

/* ---------- credibility strip ---------- */
.w-cred { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); transition: border-color var(--t-theme); }
.w-cred .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem 3.6rem; padding-block: 2.1rem; }
.w-cred span { font-family: var(--f-label); font-size: .76rem; letter-spacing: .3em; text-transform: uppercase; color: var(--tx-soft); display: inline-flex; align-items: center; gap: .7em; }
.w-cred [data-icon] svg { color: var(--gold); width: 1em; height: 1em; }

/* ---------- valley map ---------- */
.w-map-frame { position: relative; margin-top: 3.2rem; background: transparent; }
.w-map-frame svg { width: 100%; height: auto; display: block; }
.w-map-frame .w-map-canvas text { font-family: var(--f-label); letter-spacing: .18em; fill: var(--tx); transition: fill var(--t-theme); }
.w-spot { cursor: pointer; }
.w-spot .halo { transition: r .35s ease, opacity .35s ease; }
.w-spot:hover .halo, .w-spot:focus .halo { r: 30; opacity: .3; }
.w-map-tip {
  position: absolute; z-index: 3; background: var(--forest); color: var(--cream);
  font-size: .88rem; line-height: 1.5; padding: .75rem 1.05rem; border-radius: 6px;
  pointer-events: none; opacity: 0; transition: opacity .25s; max-width: 250px;
  box-shadow: 0 14px 40px rgba(15,22,8,.35);
}
.w-map-tip b { color: var(--gold); display: block; font-family: var(--f-label); font-weight: 400; letter-spacing: .12em; }
.w-map-note { margin-top: 1.6rem; font-size: var(--fs-sm); color: var(--tx-soft); text-align: center; }

/* ---------- numbers — quiet, serif, hairline ---------- */
.w-numbers { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-top: 3rem; transition: border-color var(--t-theme); }
.w-numbers.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 760px) { .w-numbers.cols-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .w-numbers.cols-5 { grid-template-columns: repeat(2, 1fr); } }
/* diagram/line-art media (maps) — show the whole graphic, never crop it */
.w-split-media.is-diagram { aspect-ratio: auto; display: flex; align-items: center; }
.w-split-media.is-diagram img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
.w-num { padding: clamp(2rem, 4vw, 3.2rem) 1rem; text-align: center; border-left: 1px solid var(--rule); transition: border-color var(--t-theme); }
.w-num:first-child { border-left: none; }
.w-num .n { font-family: var(--f-display); font-weight: 300; font-size: clamp(2.3rem, 4.2vw, 3.6rem); line-height: 1; color: var(--head); }
.w-num .n sub { font-size: .36em; vertical-align: baseline; }
.w-num .l { margin-top: .9rem; font-family: var(--f-label); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--tx-soft); }

/* ---------- occasions ---------- */
.w-occ { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.6rem); margin-top: 3.4rem; }
.w-occ-card { position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: flex-end; color: var(--cream); }
.w-occ-card > picture { position: absolute; inset: 0; }
.w-occ-card > picture img { width: 100%; height: 100%; object-fit: cover; transition: transform 2.2s ease; }
.w-occ-card:hover > picture img { transform: scale(1.045); }
.w-occ-card::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 92% 60% at 50% 100%, rgba(16,22,8,.8), rgba(16,22,8,.18) 62%, transparent 78%),
    linear-gradient(180deg, rgba(28,38,17,0) 38%, rgba(20,28,10,.7) 100%);
}
.w-occ-body { position: relative; z-index: 2; padding: 2.6rem; width: 100%; text-align: center; }
.w-occ-body .elev { color: var(--gold); margin-bottom: .8rem; }
.w-occ-body h3 { color: var(--cream); font-size: clamp(1.7rem, 2.6vw, 2.25rem); }
.w-occ-body p { margin: .9rem auto 0; color: rgba(255,253,237,.86); font-size: .99rem; max-width: 32em; line-height: 1.75; }
.w-occ-body .w-cta { margin-top: 1.5rem; }

/* ---------- dark bands: quotes + sky ---------- */
.w-night { background: var(--forest); color: var(--cream); transition: background var(--t-theme); }
html.after-dark .w-night { background: var(--bg-panel); }
.w-night .elev { color: var(--gold); }
.w-night h2 { color: var(--cream); }

.w-quotes { max-width: 800px; margin: 0 auto; text-align: center; }
.w-quote { padding-block: 1rem; }
.w-quote blockquote { font-family: var(--f-display); font-style: italic; font-weight: 340; font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.65; color: var(--cream); }
.w-quote figcaption { margin-top: 1.6rem; font-family: var(--f-label); font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); }
.w-quote + .w-quote { border-top: 1px solid rgba(221,161,94,.18); margin-top: 2.6rem; padding-top: 3.4rem; }

.w-sky { position: relative; color: var(--cream); overflow: hidden; padding-block: calc(var(--band) * 1.3); text-align: center; }
.w-sky > picture { position: absolute; inset: 0; }
.w-sky > picture img { width: 100%; height: 100%; object-fit: cover; }
.w-sky::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,12,5,.55), rgba(8,12,5,.25) 45%, rgba(8,12,5,.65)); }
.w-sky .wrap { position: relative; z-index: 2; }
.w-sky .elev { color: var(--gold); }
.w-sky h2 { color: var(--cream); }
.w-sky .ed p { color: rgba(255,253,237,.88); }
.w-sky .w-cta { color: var(--cream); } .w-sky .w-cta:hover { color: var(--gold); }

/* ---------- hosts ---------- */
.w-hosts { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.4rem, 6vw, 5.5rem); align-items: center; }
.w-hosts-photo { overflow: hidden; position: relative; }
.w-hosts-photo img { aspect-ratio: 4 / 4.4; object-fit: cover; width: 100%; }
/* Show the full photo, uncropped (no chopped faces) — natural aspect ratio. */
.w-hosts-photo.is-full img { aspect-ratio: auto; height: auto; object-fit: contain; }
.w-hosts-photo.is-full::after { bottom: 10px; right: 10px; }
.w-hosts-photo::after { content: "EST. 12 · 31 · 23"; position: absolute; bottom: 14px; right: 16px; font-family: var(--f-label); font-size: .66rem; letter-spacing: .3em; color: rgba(255,253,237,.9); background: rgba(28,38,17,.5); padding: .55em 1.1em; backdrop-filter: blur(4px); }
.w-hosts-sign { margin-top: 1.8rem; font-family: var(--f-display); font-style: italic; font-size: 1.3rem; color: var(--head); }

/* ---------- newsletter ---------- */
.w-news { border-top: 1px solid var(--rule); transition: border-color var(--t-theme); }
.w-news .ed p { font-size: 1.02rem; }

/* ---------- final cta ---------- */
.w-final { position: relative; color: var(--cream); overflow: hidden; padding-block: calc(var(--band) * 1.25); text-align: center; }
.w-final > picture { position: absolute; inset: 0; }
.w-final > picture img { width: 100%; height: 100%; object-fit: cover; }
.w-final::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,12,5,.6), rgba(8,12,5,.38) 50%, rgba(8,12,5,.72)); }
.w-final .wrap { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.w-final h2 { color: var(--cream); font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
.w-final p { margin-top: 1.3rem; color: rgba(255,253,237,.88); max-width: 38em; font-size: var(--fs-lede); line-height: 1.8; }
.w-final .w-hero-ctas { margin-top: 2.4rem; }
.w-final .promo-line { margin-top: 2rem; font-family: var(--f-label); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,253,237,.75); }
.w-final .promo-line b { color: var(--gold); border: 1px solid rgba(221,161,94,.5); padding: .2em .8em; margin-left: .4em; }

/* ---------- footer ---------- */
.w-footer { background: var(--forest-deep); color: #C6C1A4; position: relative; overflow: hidden; }
.w-foot-contour { position: absolute; inset: 0; color: var(--gold); opacity: .08; pointer-events: none; }
.w-foot-contour svg { width: 100%; height: 100%; }
.w-foot-live {
  position: relative; padding-top: 3.4rem; display: flex; align-items: center; justify-content: center;
  gap: .6em; font-family: var(--f-label); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: #B4AE90; text-align: center; opacity: .55; transition: opacity 1s ease;
}
.w-foot-live.is-on { opacity: 1; }
.w-foot-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px 2px rgba(221,161,94,.7); animation: w-pulse 3s infinite; flex: none; }
.w-foot-live b { color: var(--gold); font-weight: 400; }
@media (prefers-reduced-motion: reduce) { .w-foot-live .dot { animation: none; } }
.w-foot-grid { position: relative; max-width: var(--wrap); margin: 0 auto; padding: 3rem var(--gut) 2.2rem; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.6rem; }
.w-foot-brand .w-brand-word b { color: var(--cream); } .w-foot-brand .w-brand-word i { color: var(--gold); }
.w-foot-brand p { margin-top: 1.1rem; font-size: .95rem; max-width: 30em; line-height: 1.75; }
.w-foot-nap { margin-top: 1.4rem; display: grid; gap: .6rem; font-size: .92rem; }
.w-foot-nap a, .w-foot-nap span { display: inline-flex; align-items: center; gap: .6em; }
.w-foot-nap [data-icon] svg { color: var(--gold); width: 1.05em; height: 1.05em; }
.w-foot-social { margin-top: 1.4rem; display: flex; gap: .8rem; }
.w-foot-social a { border: 1px solid rgba(221,161,94,.35); border-radius: 50%; width: 40px; height: 40px; display: grid; place-items: center; color: var(--gold); transition: background var(--t); }
.w-foot-social a:hover { background: rgba(221,161,94,.14); }
.w-foot-col h3 { font-family: var(--f-label); font-weight: 400; font-size: .74rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.w-foot-col li { margin-bottom: .6rem; }
.w-foot-col a { font-size: .95rem; transition: color var(--t); }
.w-foot-col a:hover { color: var(--cream); }
.w-foot-base { position: relative; border-top: 1px solid rgba(221,161,94,.14); max-width: var(--wrap); margin: 0 auto; padding: 1.5rem var(--gut) 2.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .88rem; }
.w-foot-base a { margin-left: 1.3rem; }
.w-foot-base a:hover { color: var(--cream); }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .w-nav, .w-phone { display: none; }
  .w-burger { display: inline-flex; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
  .w-burger span { width: 26px; height: 1.5px; background: var(--tx); border-radius: 2px; transition: background var(--t-theme); }
}
@media (max-width: 900px) {
  .w-split, .w-split.is-flip { grid-template-columns: 1fr; }
  .w-split-media { order: -1; }
  .w-split-media img { aspect-ratio: 16 / 11; }
  .w-stay { grid-template-columns: 1fr; gap: 3rem; }
  .w-stay-media { aspect-ratio: 16 / 10; }
  .w-occ { grid-template-columns: 1fr; } .w-occ-card { min-height: 480px; }
  .w-hosts { grid-template-columns: 1fr; }
  .w-foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .w-numbers { grid-template-columns: 1fr 1fr; }
  .w-num { border-left: none; border-top: 1px solid var(--rule); }
  .w-num:nth-child(-n+2) { border-top: none; }
  .w-num:nth-child(even) { border-left: 1px solid var(--rule); }
  .w-hero-in { padding-top: 7.5rem; }
  .w-hero-ctas { gap: 1.6rem; }
  .w-occ-body { padding: 1.8rem 1.4rem; }
  .w-foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .w-foot-base { flex-direction: column; }
  .w-foot-base a { margin-left: 0; margin-right: 1.3rem; }
}

/* ============================================================
   Interior-page components (2.2 full-site rollout)
   ============================================================ */

/* shorter identity hero for interior pages */
.w-hero.is-short { min-height: 74svh; }
/* interior heroes center their text over the middle of the photo (often the
   brightest part), so add a radial darkening behind the identity block for legibility */
.w-hero.is-short .w-hero-bg::after {
  background:
    radial-gradient(ellipse 58% 52% at 50% 50%, rgba(8,12,4,.62), rgba(8,12,4,.12) 66%, transparent 80%),
    linear-gradient(180deg, rgba(28,38,17,.34) 0%, rgba(24,32,14,.2) 42%, rgba(24,32,14,.66) 100%);
}

/* icon feature grid on light bands */
.w-tenets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.w-tenet { border: 1px solid var(--rule); padding: 1.6rem 1.7rem; display: flex; gap: 1rem; align-items: flex-start; transition: border-color var(--t), transform var(--t), background var(--t-theme); background: var(--bg-panel); }
.w-tenet:hover { border-color: var(--gold); transform: translateY(-2px); }
.w-tenet > [data-icon] svg { width: 1.6em; height: 1.6em; color: var(--tx-label); flex: none; margin-top: .15em; }
.w-tenet b { display: block; font-family: var(--f-display); font-weight: 460; font-size: 1.12rem; color: var(--head); margin-bottom: .35rem; }
.w-tenet span { font-size: .93rem; color: var(--tx-soft); line-height: 1.7; }

/* accordion — native details */
.w-accordion { margin-top: 2.6rem; border-top: 1px solid var(--rule); }
.w-accordion details { border-bottom: 1px solid var(--rule); }
.w-accordion summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.35rem .2rem; font-family: var(--f-display); font-weight: 440; font-size: 1.18rem; color: var(--head);
  transition: color var(--t);
}
.w-accordion summary::-webkit-details-marker { display: none; }
.w-accordion summary:hover { color: var(--copper); }
html.after-dark .w-accordion summary:hover { color: var(--gold); }
.w-acc-icon { border: 1px solid var(--rule); border-radius: 50%; width: 34px; height: 34px; display: grid; place-items: center; flex: none; transition: transform .4s ease, border-color var(--t); }
.w-acc-icon svg { width: .9em; height: .9em; color: var(--tx-label); }
.w-accordion details[open] .w-acc-icon { transform: rotate(45deg); border-color: var(--gold); }
.w-acc-body { padding: 0 .2rem 1.6rem; color: var(--tx-soft); line-height: 1.75; max-width: 62em; }
.w-acc-body p { margin-bottom: .8rem; }
.w-specs-2col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.2rem); margin-top: 2.2rem; }
.w-specs-2col h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.w-specs-2col .w-spec-cols { grid-template-columns: 1fr; gap: .65rem; }
@media (max-width: 640px) { .w-specs-2col { grid-template-columns: 1fr; gap: 2rem; } }
.w-spec-cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .6rem 1.6rem; }
.w-spec-cols li { display: flex; gap: .6em; align-items: baseline; font-size: .95rem; color: var(--tx-soft); }
.w-spec-cols [data-icon] svg { width: .95em; height: .95em; color: var(--moss); }
html.after-dark .w-spec-cols [data-icon] svg { color: var(--gold); }

/* photo amenity showcase — 2 columns, label over each photo */
.w-amenity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.6rem); margin-top: 3rem; }
.w-amenity { position: relative; overflow: hidden; aspect-ratio: 3 / 2.15; margin: 0; }
.w-amenity picture, .w-amenity img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.8s ease; }
.w-amenity:hover img { transform: scale(1.05); }
.w-amenity::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,28,10,0) 42%, rgba(16,22,8,.82)); }
.w-amenity figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.5rem 1.6rem; color: var(--cream); }
.w-amenity-label { display: flex; align-items: center; gap: .6em; font-family: var(--f-display); font-weight: 440; font-size: clamp(1.15rem, 1.9vw, 1.5rem); }
.w-amenity-label [data-icon] svg { width: 1.05em; height: 1.05em; color: var(--gold); }
.w-amenity-note { display: block; margin-top: .35rem; font-size: .88rem; color: rgba(255,253,237,.82); line-height: 1.55; }

/* visual icon list — quick-glance amenity grid */
.w-icongrid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; margin-top: 3rem; background: var(--rule); border: 1px solid var(--rule); transition: background var(--t-theme), border-color var(--t-theme); }
.w-icongrid li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .7rem; padding: 1.9rem 1rem; background: var(--bg); transition: background var(--t); }
.w-icongrid li:hover { background: var(--bg-panel); }
.w-icongrid [data-icon] svg { width: 1.7em; height: 1.7em; color: var(--tx-label); }
.w-icongrid span { font-size: .88rem; line-height: 1.45; color: var(--tx-soft); letter-spacing: .01em; }
@media (max-width: 1100px) { .w-icongrid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 820px) {
  .w-amenity-grid { grid-template-columns: 1fr; }
  .w-icongrid { grid-template-columns: 1fr 1fr; }
}

/* gallery grid */
.w-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 3rem; }
.w-gallery > div { overflow: hidden; aspect-ratio: 4 / 3; }
.w-gallery img, .w-gallery picture { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.6s ease; }
.w-gallery > div:hover img { transform: scale(1.05); }

/* comparison rows (lodge vs cabin) */
.w-compare { margin-top: 3rem; border-top: 1px solid var(--rule); }
.w-compare-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-bottom: 1px solid var(--rule); }
.w-compare-row > div { padding: 1.05rem 1rem; font-size: .96rem; }
.w-compare-row > div:first-child { font-weight: 650; color: var(--tx); }
.w-compare-row > div:not(:first-child) { color: var(--tx-soft); border-left: 1px solid var(--rule); }
.w-compare-head > div { font-family: var(--f-label); font-size: .74rem !important; letter-spacing: .28em; text-transform: uppercase; color: var(--tx-label) !important; font-weight: 400 !important; }
.w-compare [data-icon] svg { width: 1em; height: 1em; color: var(--moss); }
html.after-dark .w-compare [data-icon] svg { color: var(--gold); }

/* inquiry form band */
.w-ghl { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; margin-top: 3rem; }
.w-ghl-aside h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-top: .4rem; }
.w-ghl-aside > p { margin-top: 1.1rem; color: var(--tx-soft); line-height: 1.8; }
.w-ghl-trust { margin-top: 1.6rem; display: grid; gap: .8rem; }
.w-ghl-trust li { display: flex; gap: .7em; align-items: baseline; font-size: .95rem; color: var(--tx-soft); }
.w-ghl-trust [data-icon] svg { width: 1em; height: 1em; color: var(--tx-label); }
.w-ghl-frame { background: var(--bg-panel); border: 1px solid var(--rule); padding: clamp(.8rem, 2vw, 1.6rem); box-shadow: 0 18px 60px rgba(28, 38, 17, .12); transition: background var(--t-theme), border-color var(--t-theme); }

/* legal prose */
.w-prose h2 { font-size: 1.45rem; margin: 2.4rem 0 .8rem; }
.w-prose p { margin-bottom: 1rem; color: var(--tx-soft); line-height: 1.8; }

/* contact details list */
.w-nap { display: grid; gap: 1.4rem; margin-top: 2.4rem; }
.w-nap a, .w-nap > span { display: flex; gap: 1rem; align-items: baseline; }
.w-nap [data-icon] svg { width: 1.2em; height: 1.2em; color: var(--tx-label); }
.w-nap b { display: block; font-size: 1.05rem; color: var(--tx); }
.w-nap i { font-style: normal; font-size: .86rem; color: var(--tx-soft); }
.w-path { display: grid; gap: .8rem; margin-top: 2.4rem; }
.w-path a { display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--rule); padding: 1.05rem 1.3rem; font-weight: 600; font-size: .98rem; transition: border-color var(--t), background var(--t); background: var(--bg-panel); }
.w-path a:hover { border-color: var(--gold); background: var(--gold-soft); }
.w-path [data-icon] svg { color: var(--tx-label); }

/* 4-up stay-card grid (guided partners) */
.w-stay.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .w-stay.cols-4 { grid-template-columns: 1fr 1fr; } }

/* 5-up stay-card grid (the five ensuite suites) */
.w-stay.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .w-stay.cols-5 { grid-template-columns: repeat(3, 1fr); } }

/* 2-up book-now grid (lodge / whole property) */
.w-stay.cols-2 { grid-template-columns: 1fr 1fr; max-width: 920px; margin-left: auto; margin-right: auto; }
@media (max-width: 760px) { .w-stay.cols-2 { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .w-tenets { grid-template-columns: 1fr; }
  .w-stay.cols-4 { grid-template-columns: 1fr; }
  .w-stay.cols-5 { grid-template-columns: 1fr; }
  .w-gallery { grid-template-columns: 1fr 1fr; }
  .w-ghl { grid-template-columns: 1fr; }
  .w-compare-row { grid-template-columns: 1.1fr 1fr 1fr; font-size: .9rem; }
}
@media (max-width: 560px) { .w-gallery { grid-template-columns: 1fr; } }

/* ---------- guided-experience tour cards (Guided Fishing page) ---------- */
.w-tour-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); margin-top: 3rem; }
.w-tour-card { border: 1px solid var(--rule); background: var(--bg-panel); padding: clamp(1.8rem, 3vw, 2.6rem); transition: border-color var(--t-theme), background var(--t-theme); }
.w-tour-card h3 { margin-top: .5rem; font-size: clamp(1.4rem, 2vw, 1.8rem); }
.w-tour-price { margin-top: 1rem; font-family: var(--f-display); font-weight: 400; font-size: 2rem; color: var(--head); }
.w-tour-price span { font-family: var(--f-body); font-size: .95rem; font-weight: 500; color: var(--tx-soft); margin-left: .3em; }
.w-tour-card .w-spec-cols { grid-template-columns: 1fr; gap: .8rem; margin-top: 1.5rem; }
.w-tour-card .w-spec-cols li { font-size: .96rem; line-height: 1.6; align-items: flex-start; }
.w-tour-card .w-spec-cols [data-icon] svg { margin-top: .2em; }
.w-tour-card .w-btn { margin-top: 1.8rem; width: 100%; }
.w-tour-note {
  margin-top: 2.4rem; text-align: center; font-size: .92rem; color: var(--tx-soft);
  border-top: 1px solid var(--rule); padding-top: 1.6rem;
}
.w-tour-note b { color: var(--tx); }
@media (max-width: 760px) { .w-tour-cards { grid-template-columns: 1fr; } }
