/* ================================================
   Round Mountain Retreat — Venue Marketing Layer
   Loads AFTER site.css. Conversion surfaces:
   dual hero, proof, packages, timeline, FAQ,
   inquiry cards, cabin products.
   ================================================ */

:root {
  --ink: #241F1A;
  --ink-soft: #5C544A;
  --rule: #E3DED5;
  --cream: #FBF9F6;
  --sand: #F4F0E9;
  --forest: #22452F;
  --forest-deep: #16301F;
  --brass: #B98D57;
  --brass-soft: #E7D6BE;
  --measure: 68ch;
  --pad-section: clamp(56px, 8vw, 108px);
}

/* ---------- Base rhythm ---------- */
.sec { padding: var(--pad-section) 0; }
.sec-tight { padding: clamp(40px, 5vw, 68px) 0; }
.sec-cream { background: var(--cream); }
.sec-sand { background: var(--sand); }
.sec-forest { background: var(--forest-deep); color: #F4EFE7; }
.sec-forest h2, .sec-forest h3 { color: #fff; }
.sec-forest p { color: rgba(255,255,255,0.78); }

.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.wrap-narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }

.eyebrow {
  display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 14px;
}
.sec-forest .eyebrow { color: var(--brass-soft); }

.display {
  font-family: var(--font-serif); font-weight: 700; line-height: 1.08;
  letter-spacing: -0.015em; color: var(--ink);
  font-size: clamp(2rem, 4.6vw, 3.35rem); margin: 0 0 18px;
}
.sec-forest .display { color: #fff; }
.lede { font-size: clamp(1.04rem, 1.5vw, 1.18rem); line-height: 1.75; color: var(--ink-soft); max-width: var(--measure); }
.sec-forest .lede { color: rgba(255,255,255,0.8); }
.head-center { text-align: center; }
.head-center .lede { margin-inline: auto; }

/* ---------- Media primitives (no CLS) ---------- */
.ph { display: block; width: 100%; height: 100%; object-fit: cover; background: var(--sand); }
.ratio { position: relative; overflow: hidden; border-radius: 14px; background: var(--sand); }
/* NB: images are wrapped in <picture>, so these must not be child selectors. */
.ratio picture { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
.ratio img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.r-16x9 { aspect-ratio: 16 / 9; }
.r-4x3  { aspect-ratio: 4 / 3; }
.r-3x2  { aspect-ratio: 3 / 2; }
.r-1x1  { aspect-ratio: 1 / 1; }
.r-3x4  { aspect-ratio: 3 / 4; }

/* ---------- Dual-path hero (homepage) ---------- */
.vhero { position: relative; min-height: clamp(560px, 84vh, 840px); display: grid; place-items: center; isolation: isolate; }
.vhero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--forest-deep); }
.vhero-media picture { display: block; width: 100%; height: 100%; }
.vhero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vhero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,26,17,0.58) 0%, rgba(12,26,17,0.30) 38%, rgba(12,26,17,0.76) 100%);
}
.vhero-inner { position: relative; z-index: 2; width: min(1080px, calc(100% - 40px)); margin-inline: auto; text-align: center; padding: 120px 0 64px; color: #fff; }
.vhero-badge {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 24px; backdrop-filter: blur(2px);
}
.vhero h1 {
  font-family: var(--font-serif); font-weight: 700; color: #fff; margin: 0 0 18px;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem); line-height: 1.03; letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.vhero p.vhero-sub {
  font-size: clamp(1.02rem, 1.9vw, 1.28rem); color: rgba(255,255,255,0.93);
  max-width: 640px; margin: 0 auto 34px; line-height: 1.65; text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* two audience doors */
.doors { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; max-width: 760px; margin: 0 auto; }
.door {
  display: block; text-decoration: none; text-align: left; padding: 22px 24px;
  border-radius: 14px; border: 1px solid rgba(255,255,255,0.28);
  background: rgba(14,28,19,0.42); backdrop-filter: blur(8px);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.door:hover, .door:focus-visible { background: rgba(14,28,19,0.66); transform: translateY(-3px); border-color: rgba(255,255,255,0.55); }
.door-k { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-soft); font-weight: 700; margin-bottom: 7px; }
.door-t { display: block; font-family: var(--font-serif); font-size: 1.42rem; color: #fff; margin-bottom: 5px; line-height: 1.2; }
.door-d { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.5; }
.door-go { display: inline-block; margin-top: 12px; font-size: 0.85rem; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.door-go::after { content: ' →'; }

/* page hero (interior pages) */
.phero { position: relative; isolation: isolate; display: grid; place-items: center; min-height: clamp(420px, 62vh, 620px); }
.phero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--forest-deep); }
.phero-media picture { display: block; width: 100%; height: 100%; }
.phero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phero::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,26,17,0.58), rgba(12,26,17,0.7)); }
.phero-inner { position: relative; z-index: 2; width: min(880px, calc(100% - 40px)); margin-inline: auto; text-align: center; color: #fff; padding: 118px 0 56px; }
.phero h1 { font-family: var(--font-serif); color: #fff; margin: 0 0 16px;
  font-size: clamp(2.1rem, 5.4vw, 3.7rem); line-height: 1.06; letter-spacing: -0.018em; }
.phero p { color: rgba(255,255,255,0.9); font-size: clamp(1rem, 1.6vw, 1.16rem); max-width: 560px; margin: 0 auto; line-height: 1.65; }
.phero .eyebrow { color: var(--brass-soft); }
.phero-cta { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* hero with an inline inquiry card (weddings lead page) */
.phero.hero-lead { min-height: 0; place-items: stretch; }
.phero.hero-lead .phero-inner { width: min(1180px, calc(100% - 40px)); margin-inline: auto; text-align: left; padding: 132px 0 76px; }
.hero-lead-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(28px, 4.5vw, 62px); align-items: center; }
.hero-lead h1 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
.hero-lead .hero-lead-sub { color: rgba(255,255,255,0.9); font-size: clamp(1rem, 1.5vw, 1.14rem); line-height: 1.68; max-width: 46ch; margin: 0 0 24px; }
.hero-lead .ticks li { color: rgba(255,255,255,0.88); }
.hero-lead .ticks li::before { background: var(--brass-soft); box-shadow: 0 0 0 4px rgba(231,214,190,0.18); }
.hero-trust { margin-top: 26px; display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  font-size: 0.84rem; color: rgba(255,255,255,0.75); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brass-soft); }
@media (max-width: 980px) {
  .hero-lead-grid { grid-template-columns: 1fr; }
  .phero.hero-lead .phero-inner { padding: 112px 0 56px; }
}


/* ---------- Hero media as CSS background ----------
   Full-bleed hero photography is delivered as a background image with
   viewport-stepped sources. Decorative role is carried by the parent's
   aria-label, and the LCP candidate is preloaded in each page <head>. */
.vhero-media, .phero-media { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* ART DIRECTION (2026-07-28): the homepage and weddings heroes are ART-DIRECTED
   PER BREAKPOINT — the <=820px file is a DIFFERENT CROP of the same negative,
   not a smaller copy, and the two masters have different aspect ratios on
   purpose. Do not "simplify" these to one file per hero.
     hero-venue-golden : 1.70:1 wide for desktop; 0.84:1 for phones, because a
       centre-cropped 1.70:1 frame in a 0.63:1 phone viewport loses both the
       arbor and the lit doorway.
     venue-ceremony    : 4:3 for desktop; 0.47:1 portrait for phones, because
       `.phero.hero-lead` collapses to roughly 0.24:1 once the inquiry form
       stacks, and `cover` then shows a narrow vertical sliver — the portrait
       master makes that sliver land on the flower arch and the aisle. */
.hero-venue-golden      { background-image: url('/images/v8/hero-venue-golden-1200.jpg'); background-position: center; }
.hero-venue-ceremony    { background-image: url('/images/v8/venue-ceremony-1200.jpg'); background-position: center 58%; }
.hero-village-firepit   { background-image: url('/images/v7/village-firepit-1200.jpg'); }
@media (max-width: 820px) {
  .hero-venue-golden    { background-image: url('/images/v8/hero-venue-golden-800.jpg'); }
  .hero-venue-ceremony  { background-image: url('/images/v8/venue-ceremony-tall-800.jpg'); }
  .hero-village-firepit   { background-image: url('/images/v7/village-firepit-800.jpg'); }
}
@media (min-width: 1400px) {
  .hero-venue-golden    { background-image: url('/images/v8/hero-venue-golden-1600.jpg'); }
  .hero-venue-ceremony  { background-image: url('/images/v8/venue-ceremony-1600.jpg'); }
  .hero-village-firepit   { background-image: url('/images/v7/village-firepit-1600.jpg'); }
}

/* ---------- Proof strip ---------- */
.proof { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: #fff; }
.proof-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px; padding: 30px 0; }
.proof-cell { text-align: center; padding: 6px 12px; border-right: 1px solid var(--rule); }
.proof-cell:last-child { border-right: 0; }
.proof-n { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; color: var(--forest); line-height: 1; }
.proof-l { font-size: 0.76rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; font-weight: 600; }
.proof-sub { font-size: 0.72rem; color: #6E665C; margin-top: 4px; }

/* ---------- Alternating feature rows ---------- */
.frow { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.frow + .frow { margin-top: clamp(48px, 7vw, 96px); }
.frow.flip > .frow-media { order: 2; }
.frow-body h2 { margin-top: 0; }
.frow-body ul.ticks { margin: 22px 0 0; padding: 0; list-style: none; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--ink-soft); line-height: 1.55; }
.ticks li::before {
  content: ''; position: absolute; left: 4px; top: 8px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 4px rgba(185,141,87,0.16);
}

/* ---------- Spaces / package cards ---------- */
.cards3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.cards2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.vcard {
  background: #fff; border: 1px solid var(--rule); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .28s ease, box-shadow .28s ease;
}
.vcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,58,42,0.13); }
.vcard-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.vcard h3 { font-family: var(--font-serif); font-size: 1.32rem; margin: 0 0 6px; color: var(--ink); line-height: 1.25; }
.vcard .spec { font-size: 0.79rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--brass); font-weight: 700; margin-bottom: 12px; }
.vcard p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.62; margin: 0 0 16px; }
.vcard .vcard-foot { margin-top: auto; }

.pills { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 18px; padding: 0; list-style: none; }
.pills li { font-size: 0.76rem; background: var(--sand); color: var(--ink-soft); padding: 5px 11px; border-radius: 999px; }

/* package tier */
.tier { background: #fff; border: 1px solid var(--rule); border-radius: 18px; padding: 30px 28px 32px; display: flex; flex-direction: column; }
.tier.feature { border-color: var(--brass); box-shadow: 0 14px 40px rgba(185,141,87,0.18); position: relative; }
.tier.feature::before {
  content: 'Most requested'; position: absolute; top: -12px; left: 28px; background: var(--brass); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.tier h3 { font-family: var(--font-serif); font-size: 1.45rem; margin: 0 0 4px; color: var(--ink); }
.tier .tier-for { font-size: 0.88rem; color: var(--brass); font-weight: 600; margin-bottom: 16px; }
.tier .tier-price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--forest); margin-bottom: 4px; }
.tier .tier-price-note { font-size: 0.82rem; color: #6E665C; margin-bottom: 18px; }
.tier ul { list-style: none; margin: 0 0 22px; padding: 0; }
.tier li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 0.94rem; color: var(--ink-soft); line-height: 1.5; }
.tier li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--brass); font-weight: 700; }
.tier .btn { margin-top: auto; }

/* ---------- Timeline ---------- */
.tl { list-style: none; margin: 0; padding: 0; position: relative; }
.tl::before { content: ''; position: absolute; left: 11px; top: 10px; bottom: 10px; width: 2px; background: var(--brass-soft); }
.tl li { position: relative; padding: 0 0 30px 46px; }
.tl li:last-child { padding-bottom: 0; }
.tl li::before {
  content: ''; position: absolute; left: 4px; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--brass);
}
.tl .tl-time { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); font-weight: 700; }
.tl h4 { margin: 5px 0 5px; font-family: var(--font-serif); font-size: 1.12rem; color: var(--ink); }
.tl p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }

/* ---------- Photo story ---------- */
.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 12px; }
.story-grid .ratio { border-radius: 12px; height: 100%; }
.sg-wide { grid-column: span 2; }
.sg-tall { grid-row: span 2; }
.sg-big  { grid-column: span 2; grid-row: span 2; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 44px 22px 0; font-size: 1.03rem; font-weight: 600; color: var(--ink);
  font-family: var(--font-system); position: relative; line-height: 1.45;
}
.faq-q:hover { color: var(--forest); }
.faq-q::after {
  content: ''; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--brass); border-bottom: 2px solid var(--brass);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-20%) rotate(-135deg); }
.faq-a { padding: 0 44px 24px 0; color: var(--ink-soft); line-height: 1.72; font-size: 0.98rem; }
.faq-a p { margin: 0 0 12px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- Inquiry card (the money component) ---------- */
.inquiry-card {
  background: #fff; border: 1px solid var(--rule); border-radius: 18px;
  padding: clamp(24px, 3.4vw, 38px); box-shadow: 0 18px 50px rgba(26,58,42,0.10);
}
.inquiry-card .inquiry-head { margin-bottom: 22px; }
.inquiry-card h3 { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin: 0 0 8px; color: var(--ink); line-height: 1.2; }
.inquiry-card .form-subtitle { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.6; margin: 0; }
.form-fields { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px 16px; }
.form-fields .form-group { grid-column: 1 / -1; display: flex; flex-direction: column; margin: 0; }
.form-fields .form-group.half { grid-column: span 1; }
.inquiry-card label { font-size: 0.83rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.01em; }
.inquiry-card .req { color: var(--brass); }
.inquiry-card input, .inquiry-card select, .inquiry-card textarea {
  width: 100%; font-family: inherit; font-size: 0.97rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--rule); border-radius: 10px; background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.inquiry-card input:focus, .inquiry-card select:focus, .inquiry-card textarea:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(34,69,47,0.13);
}
/* ---------- Validation styling — never on first paint ----------
   Do NOT use bare :invalid here. An empty required field matches :invalid
   the instant the page loads, and :not(:placeholder-shown) does not save you:
   inputs with no placeholder (type=date, for one) never match
   :placeholder-shown, so a blank required date rendered red before the visitor
   had typed a single character.
   :user-invalid only matches once the user has edited/left a field or tried to
   submit. The .was-submitted fallback (class added by JS on the first submit
   attempt / first `invalid` event) covers engines without :user-invalid.
   NB: keep the two rule blocks separate — a selector list containing an
   unsupported pseudo-class is dropped whole by older parsers. */
.inquiry-card input:user-invalid,
.inquiry-card select:user-invalid,
.inquiry-card textarea:user-invalid,
.inquiry-form input:user-invalid,
.inquiry-form select:user-invalid,
.inquiry-form textarea:user-invalid {
  border-color: #C75D5D; box-shadow: 0 0 0 3px rgba(199,93,93,0.12);
}
.inquiry-card form.was-submitted input:invalid,
.inquiry-card form.was-submitted select:invalid,
.inquiry-card form.was-submitted textarea:invalid,
.inquiry-form form.was-submitted input:invalid,
.inquiry-form form.was-submitted select:invalid,
.inquiry-form form.was-submitted textarea:invalid {
  border-color: #C75D5D; box-shadow: 0 0 0 3px rgba(199,93,93,0.12);
}
.inquiry-card textarea { resize: vertical; min-height: 104px; }
.inquiry-card input::placeholder, .inquiry-card textarea::placeholder { color: #6E665C; opacity: 1; }
.form-hint { font-size: 0.78rem; color: #6E665C; margin-top: 5px; }
.btn-block { width: 100%; margin-top: 20px; }
.form-micro { font-size: 0.8rem; color: #6E665C; text-align: center; margin: 12px 0 0; }
.form-fallback { font-size: 0.88rem; color: var(--ink-soft); text-align: center; margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--rule); line-height: 1.6; }
.form-fallback a { color: var(--forest); font-weight: 700; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form-alert { margin-top: 18px; padding: 14px 16px; border-radius: 10px; font-size: 0.92rem; line-height: 1.6; }
.form-alert.error { background: #FCEDED; border: 1px solid #E8BDBD; color: #8C3232; }
.form-alert.error a { color: #8C3232; font-weight: 700; text-decoration: underline; }

.inquiry-success { text-align: center; padding: 18px 8px 10px; }
.success-mark {
  width: 56px; height: 56px; border-radius: 50%; background: var(--forest); color: #fff;
  display: grid; place-items: center; font-size: 1.6rem; margin: 0 auto 18px;
}
.inquiry-success h3 { margin-bottom: 10px; }
.inquiry-success p { color: var(--ink-soft); line-height: 1.7; max-width: 44ch; margin: 0 auto; }

/* inquiry section layouts */
.inquiry-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.inquiry-aside h2 { margin-top: 0; }
.inquiry-aside .ticks { margin-top: 22px; }
.sec-forest .inquiry-aside .ticks li { color: rgba(255,255,255,0.82); }
.contact-lines { margin-top: 26px; display: grid; gap: 12px; }
.contact-line { display: flex; gap: 12px; align-items: baseline; font-size: 0.98rem; }
.contact-line .k { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); font-weight: 700; min-width: 66px; }
.sec-forest .contact-line a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Ratings / proof cards ---------- */
.rating-row { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; color: var(--ink-soft); }
.rating-row .score { font-weight: 800; color: var(--ink); }
.stars { color: var(--brass); letter-spacing: 1px; }

.quote-band { text-align: center; }
.quote-band blockquote { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.7vw, 1.85rem); line-height: 1.45; color: #fff; margin: 0 auto 18px; max-width: 24ch; }

/* ---------- Sticky inline CTA ---------- */
.cta-band { background: var(--forest-deep); color: #fff; border-radius: 20px; padding: clamp(30px, 5vw, 52px); text-align: center; }
.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 56ch; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.nav-cta-mobile { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .frow, .inquiry-split { grid-template-columns: 1fr; }
  .frow.flip > .frow-media { order: 0; }
  .cards3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .story-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .sg-big { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 720px) {
  .doors { grid-template-columns: 1fr; gap: 12px; max-width: 460px; }
  .door { padding: 18px 20px; }
  .proof-row { grid-template-columns: repeat(2, 1fr); gap: 22px 8px; }
  .proof-cell:nth-child(2) { border-right: 0; }
  .cards3, .cards2 { grid-template-columns: 1fr; }
  .form-fields { grid-template-columns: 1fr; }
  .form-fields .form-group.half { grid-column: 1 / -1; }
  .story-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .vhero-inner { padding-top: 104px; }
  .nav-cta-mobile { display: block; }
  /* keep the sticky mobile bar from covering page-end content */
  body { padding-bottom: 0; }
  .sec:last-of-type { padding-bottom: calc(var(--pad-section) + 72px); }
}

@media (prefers-reduced-motion: reduce) {
  .vcard, .door { transition: none; }
}

/* ==========================================================================
   2026-07-27 — Outdoors / retreats / trails / games modules
   ========================================================================== */

/* Heroes added this round (v3 photography). */
/* trail-view is 4:3 in a ~2.7:1 band, so it loses 50% of its height. Position
   is set at 30% deliberately: any lower and the mountain ridge and the cumulus
   — the entire reason this frame exists — crop off the top and you are left
   with an anonymous wall of conifers. */
.hero-trail-view    { background-image: url('/images/v8/trail-view-1200.jpg'); background-position: center 30%; }
.hero-meadow-lights { background-image: url('/images/v7/meadow-lights-1200.jpg'); background-position: center 55%; }
@media (max-width: 820px) {
    .hero-trail-view    { background-image: url('/images/v8/trail-view-800.jpg'); }
  .hero-meadow-lights { background-image: url('/images/v7/meadow-lights-800.jpg'); }
}
@media (min-width: 1400px) {
    .hero-trail-view    { background-image: url('/images/v8/trail-view-1600.jpg'); }
  .hero-meadow-lights { background-image: url('/images/v7/meadow-lights-1600.jpg'); }
}

/* Ten nav items need a little more room between the desktop breakpoint
   (969px) and comfortable width, or the header wraps. */
@media (min-width: 969px) and (max-width: 1210px) {
  .header-nav a { padding: 8px 7px; font-size: 0.8rem; }
  .header-nav { gap: 0; }
  .header-cta-book { padding: 9px 13px; font-size: 0.8rem; }
  .header-brand .brand-sub { display: none; }
}

/* ---------- Trail cards ---------- */
.trail-list { display: grid; gap: clamp(26px, 4vw, 44px); }
.trail-card {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(20px, 3.4vw, 42px);
  align-items: center; background: #fff; border: 1px solid var(--rule);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.trail-card:nth-child(even) > .trail-media { order: 2; }
.trail-media { position: relative; min-height: 100%; }
.trail-media .ratio { border-radius: 0; height: 100%; }
.trail-body { padding: clamp(22px, 3vw, 38px) clamp(20px, 3vw, 40px) clamp(24px, 3vw, 38px) 0; }
.trail-card:nth-child(even) .trail-body { padding-right: 0; padding-left: clamp(20px, 3vw, 40px); }
.trail-body h3 { font-family: var(--font-serif); font-size: clamp(1.25rem, 2.3vw, 1.6rem); margin: 6px 0 10px; color: var(--ink); }
.trail-body p { color: var(--ink-soft); line-height: 1.65; margin: 0 0 14px; }
.trail-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; padding: 0; list-style: none; }
.trail-meta li {
  font-size: 0.79rem; font-weight: 700; letter-spacing: 0.03em;
  background: var(--sand); color: var(--ink); border-radius: 999px; padding: 6px 13px;
}
.trail-meta li.easy     { background: #E4EFE5; color: #2C5A38; }
.trail-meta li.moderate { background: #F3E9D8; color: #7A5A22; }
.trail-meta li.strenuous{ background: #F2E1DC; color: #8A4030; }
.trail-see { font-size: 0.94rem; color: var(--ink-soft); }
.trail-see strong { color: var(--ink); }
@media (max-width: 860px) {
  .trail-card { grid-template-columns: 1fr; }
  .trail-card:nth-child(even) > .trail-media { order: 0; }
  .trail-body,
  .trail-card:nth-child(even) .trail-body { padding: 22px 22px 26px; }
  .trail-media .ratio { aspect-ratio: 3 / 2; }
}

/* ---------- Games / activities grid ---------- */
.games { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.game {
  background: #fff; border: 1px solid var(--rule); border-radius: 16px;
  padding: 24px 22px 26px; box-shadow: var(--shadow-sm);
}
.game .game-ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--sand); color: var(--forest-deep); margin-bottom: 14px;
}
.game h3 { font-family: var(--font-serif); font-size: 1.1rem; margin: 0 0 7px; color: var(--ink); }
.game p { color: var(--ink-soft); font-size: 0.93rem; line-height: 1.58; margin: 0; }
.game .game-tag {
  display: inline-block; margin-top: 12px; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass);
}

/* ---------- Itinerary timeline ---------- */
.itins { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.itin { background: #fff; border: 1px solid var(--rule); border-radius: 18px; padding: 28px 26px 30px; box-shadow: var(--shadow-sm); }
.itin > h3 { font-family: var(--font-serif); font-size: 1.24rem; margin: 8px 0 6px; color: var(--ink); }
.itin > p.itin-for { color: var(--brass); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; margin: 0; }
.itin > p.itin-sub { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.6; margin: 0 0 18px; }
.itin ol { list-style: none; margin: 0; padding: 0; }
.itin ol li { position: relative; padding: 0 0 16px 22px; border-left: 2px solid var(--rule); }
.itin ol li:last-child { padding-bottom: 0; border-left-color: transparent; }
.itin ol li::before {
  content: ''; position: absolute; left: -6px; top: 5px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 3px rgba(184,149,86,0.18);
}
.itin ol li b { display: block; font-size: 0.79rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink); margin-bottom: 3px; }
.itin ol li span { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.55; }

/* ---------- Capacity table ---------- */
.cap-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; }
.cap-table th, .cap-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--rule); font-size: 0.95rem; }
.cap-table th { background: var(--sand); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.cap-table td.num { text-align: right; font-weight: 700; white-space: nowrap; }
.cap-table tr:last-child td { border-bottom: 0; }
.cap-table tfoot td { background: var(--cream); font-weight: 700; }
.cap-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- "New" ribbon on a card ---------- */
.vcard { position: relative; }
.badge-new {
  position: absolute; z-index: 3; top: 14px; left: 14px;
  background: var(--forest-deep); color: #fff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
}

/* ---------- Photo strip ---------- */
.pstrip { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.pstrip .ratio { border-radius: 12px; }

/* ---------- Note / callout ---------- */
.note-card {
  background: var(--cream); border: 1px dashed var(--border-dark);
  border-radius: 16px; padding: 22px 24px; color: var(--ink-soft); line-height: 1.6;
}
.note-card strong { color: var(--ink); }

/* Three-door hero (weddings / retreats / stay). */
.doors.doors-3 { grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 1000px; }
.doors.doors-3 .door-t { font-size: 1.24rem; }
@media (max-width: 900px) { .doors.doors-3 { grid-template-columns: 1fr; max-width: 460px; } }
/* /activities hero. Was cabin-area — a gravel service yard with two utility
   sheds in it. Replaced 2026-07-28 with the meadow at golden hour: it is the
   place the lawn games and the long tables actually happen. */
.hero-meadow-fall { background-image: url('/images/v7/meadow-fall-1200.jpg'); background-position: center 58%; }
@media (max-width: 820px) { .hero-meadow-fall { background-image: url('/images/v7/meadow-fall-800.jpg'); } }

/* The mobile drawer now carries 10 links + a CTA. Without a scroll container
   the last item is clipped on short viewports (measured: scrollHeight 659 vs
   clientHeight 645 at 390x701). Make it scrollable and tighten the rhythm. */
@media (max-width: 968px) {
  .header-nav { overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
  .header-nav a { padding-top: 13px; padding-bottom: 13px; }
  .header-nav .nav-cta-mobile { margin-bottom: 18px; }
}
