/* ─────────────────────────────────────────────────────────────
   SFJ Stables — concept proposal
   Surfaces run the arc the stables name themselves: from soil, to
   saddle, to hearth. Change a surface colour on :root, never at the
   call site.
   ───────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-italic.woff2') format('woff2');
  font-weight: 300 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost.woff2') format('woff2');
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* surfaces — the soil→saddle→hearth arc */
  --soil:     #15120D;   /* near-black earth: hero furniture, Friesian, find-us, footer */
  --soil-2:   #1E1A14;   /* raised card on soil */
  --linen:    #F1EBDF;   /* honesty, story */
  --paper:    #FAF6EE;   /* the stay */
  --pasture:  #E6E9DD;   /* the ride */
  --olive:    #414D39;   /* rates */
  --olive-2:  #4C5943;

  /* ink */
  --ink:      #1B170F;
  --ink-soft: #4A443A;
  --cream:    #F6F1E6;
  --cream-dim:#C9C1B2;

  /* accents */
  --brass:    #B79462;
  --brass-lt: #D8BE8E;
  --rust:     #9E4A32;

  --rail:     rgba(27,23,15,.14);
  --rail-lt:  rgba(246,241,230,.16);

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans:  'Jost', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;

  --wrap: 1160px;
  --gut: clamp(20px, 5vw, 64px);
  --ribbon-h: 30px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── the disclaimer ribbon ────────────────────────────────────
   JS measures its real height (it wraps on narrow screens) and
   publishes --ribbon-h. Anything fixed below it reads that var. */
.concept {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  margin: 0;
  padding: 6px var(--gut);
  background: var(--rust);
  color: #FFF3EC;
  font-size: 11.5px;
  letter-spacing: .04em;
  line-height: 1.4;
  text-align: center;
}
.concept strong { font-weight: 500; letter-spacing: .07em; text-transform: uppercase; }

/* ── nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed; z-index: 80;
  top: var(--ribbon-h, 30px); left: 0; right: 0;
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  padding: 14px var(--gut);
  color: var(--cream);
  transition: background .45s ease, color .45s ease, padding .45s ease,
              box-shadow .45s ease, border-color .45s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(250,246,238,.94);
  backdrop-filter: blur(10px);
  color: var(--ink);
  padding-top: 9px; padding-bottom: 9px;
  border-bottom-color: var(--rail);
}
.nav__mark {
  display: flex; align-items: baseline; gap: .4em;
  font-family: var(--serif);
  text-decoration: none;
  line-height: 1;
}
.nav__mark-name { font-size: 1.5rem; letter-spacing: .1em; font-weight: 600; }
.nav__mark-sub {
  font-family: var(--sans);
  font-size: .62rem; letter-spacing: .34em; text-transform: uppercase;
  opacity: .8;
}
.nav__list {
  display: flex; gap: clamp(12px, 1.9vw, 28px);
  margin: 0 auto 0 0; padding: 0; list-style: none;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
}
.nav__list a { text-decoration: none; opacity: .82; transition: opacity .2s; }
.nav__list a:hover { opacity: 1; }
.nav__cta {
  flex: none;
  font: inherit; font-size: .7rem; letter-spacing: .17em; text-transform: uppercase;
  padding: 9px 18px; cursor: pointer;
  color: inherit; background: none;
  border: 1px solid currentColor; border-radius: 0;
  transition: background .25s, color .25s;
}
.nav__cta:hover { background: currentColor; }
.nav__cta:hover { color: var(--soil); }
.nav.is-stuck .nav__cta:hover { color: var(--paper); }
@media (max-width: 900px) { .nav__list { display: none; } .nav__mark { margin-right: auto; } }

/* ── hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--ribbon-h, 30px) + 96px) var(--gut) clamp(56px, 9vh, 104px);
  background: var(--soil);
  color: var(--cream);
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: settle 15s ease-out forwards;
}
@keyframes settle { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(21,18,13,.88) 0%, rgba(21,18,13,.34) 46%, rgba(21,18,13,.5) 100%);
}
.hero__inner { position: relative; max-width: 46rem; }
.hero__title {
  margin: .18em 0 .1em;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.4rem, 12vw, 8.4rem);
  line-height: .88; letter-spacing: .01em;
}
.hero__title em { font-style: italic; font-weight: 300; display: block; padding-left: .12em; }
.hero__line {
  margin: 0 0 .9rem;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--brass-lt);
}
.hero__sub { margin: 0 0 2rem; max-width: 34rem; color: rgba(246,241,230,.86); }
.hero__acts { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__scroll {
  position: relative;
  margin: clamp(40px, 8vh, 80px) 0 0;
  font-size: .66rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(246,241,230,.5);
}

/* the gate: two panels part on load — the stables' own line is
   "we are reopening our gates to the public" */
.gate { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.gate__half {
  position: absolute; top: 0; bottom: 0; width: 50.4%;
  background: var(--soil);
  animation: gateOpen 1.5s cubic-bezier(.66,0,.2,1) .18s forwards;
}
.gate__half::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--brass), transparent);
  opacity: .7;
}
.gate__half--l { left: 0; transform-origin: left center; }
.gate__half--l::after { right: 0; }
.gate__half--r { right: 0; transform-origin: right center; }
.gate__half--r::after { left: 0; }
.gate__half--l { animation-name: gateOpenL; }
.gate__half--r { animation-name: gateOpenR; }
@keyframes gateOpenL { to { transform: translateX(-101%); } }
@keyframes gateOpenR { to { transform: translateX(101%); } }
.gate.is-done { display: none; }

/* ── shared type ──────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.band { padding: clamp(64px, 11vh, 132px) 0; }
.band--linen   { background: var(--linen); }
.band--paper   { background: var(--paper); }
.band--pasture { background: var(--pasture); }
.band--soil    { background: var(--soil); color: var(--cream); }
.band--olive   { background: var(--olive); color: var(--cream); }

.eyebrow {
  margin: 0 0 .9rem;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow--light { color: rgba(246,241,230,.62); }
.eyebrow--brass { color: var(--brass); }

.h2 {
  margin: 0 0 1.1rem;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.3rem, 5.6vw, 4.1rem);
  line-height: 1.02; letter-spacing: .005em;
}
.h2 em { font-style: italic; }
.h2--light { color: var(--cream); }

.h3 {
  margin: clamp(48px, 7vw, 84px) 0 1.4rem;
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
}

.lede { font-size: clamp(1.02rem, 1.4vw, 1.16rem); max-width: 40rem; color: var(--ink-soft); }
.lede--light { color: rgba(246,241,230,.8); }
.fine { font-size: .82rem; line-height: 1.6; color: var(--ink-soft); }
.fine--light { color: rgba(246,241,230,.6); }

/* ── buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font: inherit; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 14px 26px; cursor: pointer; text-decoration: none;
  border: 1px solid currentColor; border-radius: 0;
  transition: background .25s, color .25s, border-color .25s;
}
.btn--solid { background: var(--brass); border-color: var(--brass); color: var(--soil); }
.btn--solid:hover { background: var(--brass-lt); border-color: var(--brass-lt); }
.btn--ghost { background: none; color: inherit; }
.btn--ghost:hover { background: rgba(246,241,230,.12); }
.btn--plain { background: none; border-color: transparent; text-decoration: underline; text-underline-offset: 4px; }
.btn--lg { padding: 17px 34px; }
.btn--full { width: 100%; }

/* ── the fence rule ───────────────────────────────────────────
   the recurring motif: the estate's white post-and-rail fence,
   drawn as the divider between bands */
.fence-rule {
  height: 34px;
  background:
    /* posts */
    repeating-linear-gradient(to right,
      var(--ink) 0 2px, transparent 2px 46px),
    /* two rails */
    linear-gradient(to bottom, transparent 9px, var(--ink) 9px 10px,
                    transparent 10px 21px, var(--ink) 21px 22px, transparent 22px);
  opacity: .17;
}

/* ── the honesty spread ───────────────────────────────────── */
.honest {
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
  margin-top: clamp(36px, 6vw, 64px);
  align-items: start;
}
@media (max-width: 860px) { .honest { grid-template-columns: 1fr; } }

.honest__label {
  margin: 0 0 1rem; padding-bottom: .6rem;
  border-bottom: 1px solid var(--rail);
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--rust);
}
.honest__label--is { color: var(--olive); }

.strike { margin: 0 0 1.6rem; padding: 0; list-style: none; }
.strike li {
  position: relative; width: fit-content; max-width: 100%;
  padding: .5rem 0;
  font-family: var(--serif); font-size: 1.5rem; line-height: 1.2;
  color: var(--ink-soft);
}
.strike li::after {
  content: ''; position: absolute; left: 0; top: 55%;
  width: 100%; height: 1px; background: var(--rust); opacity: .7;
}
.honest__note { font-size: .88rem; color: var(--ink-soft); margin: 0; }

.haves { margin: 0; padding: 0; list-style: none; display: grid; gap: clamp(28px, 4vw, 44px); }
@media (min-width: 720px) { .haves { grid-template-columns: 1fr 1fr; } }
.have p {
  margin: 1rem 0 0;
  font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.35;
}

/* the gable: the Manor's roof line, used as an image frame */
.gable { margin: 0; overflow: hidden; }
.gable img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  clip-path: polygon(0 26%, 50% 0, 100% 26%, 100% 100%, 0 100%);
}
.gable--tall img { aspect-ratio: 3/4; clip-path: polygon(0 18%, 50% 0, 100% 18%, 100% 100%, 0 100%); }

/* ── the Friesian ─────────────────────────────────────────── */
.friesian {
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
}
@media (max-width: 860px) { .friesian { grid-template-columns: 1fr; } }
.friesian__lead { margin: 0; }
.friesian__lead img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.friesian__text .fine { margin-top: 1.4rem; max-width: 30rem; }

.strip {
  display: grid; gap: 10px; margin-top: clamp(36px, 5vw, 60px);
  grid-template-columns: repeat(4, 1fr);
}
.strip--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .strip, .strip--3 { grid-template-columns: 1fr 1fr; } }
.strip__i { margin: 0; }
.strip__i img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ── the ride ─────────────────────────────────────────────── */
.ride {
  display: grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center; margin-top: clamp(32px, 5vw, 52px);
}
@media (max-width: 860px) { .ride { grid-template-columns: 1fr; } }
.ride__img { margin: 0; }
.ride__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.clock {
  border: 1px solid var(--rail);
  border-top: 3px solid var(--olive);
  padding: 1.4rem 1.5rem;
  background: rgba(255,255,255,.5);
}
.clock__state {
  margin: 0;
  font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.2;
}
.clock__state.is-open { color: var(--olive); }
.clock__now {
  margin: .5rem 0 0;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft);
}
.windows { margin: 1.4rem 0 1.2rem; padding: 0; list-style: none; }
.windows li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px solid var(--rail);
}
.windows__k { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.windows__v { font-family: var(--serif); font-size: 1.2rem; }

.dress { display: grid; gap: 1px; padding: 0; margin: 0; list-style: none; background: var(--rail); }
@media (min-width: 720px) { .dress { grid-template-columns: repeat(3, 1fr); } }
.dress__i { padding: 1.6rem; background: var(--pasture); }
.dress__n {
  display: block; margin-bottom: .8rem;
  font-size: .68rem; letter-spacing: .24em; color: var(--brass);
}
.dress__i h4 { margin: 0 0 .25rem; font-family: var(--serif); font-weight: 400; font-size: 1.5rem; }
.dress__i p { margin: 0; font-size: .86rem; color: var(--ink-soft); }

/* ── the stay ─────────────────────────────────────────────── */
.villa {
  display: grid; gap: clamp(32px, 5vw, 60px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: clamp(36px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 860px) { .villa { grid-template-columns: 1fr; } }
.villa__list { margin: 0; }
.villa__list > div { padding: 1.1rem 0; border-bottom: 1px solid var(--rail); }
.villa__list dt {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--brass); margin-bottom: .35rem;
}
.villa__list dd {
  margin: 0;
  font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.3rem); line-height: 1.35;
}
.villa__pix { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: start; }
.villa__pix figure { margin: 0; }
.villa__pix figure img { width: 100%; aspect-ratio: 1; object-fit: cover; }
/* the gable frame keeps its roof line at 1:1 inside this grid */
.villa__pix .gable img { aspect-ratio: 1; clip-path: polygon(0 22%, 50% 0, 100% 22%, 100% 100%, 0 100%); }

.exp { margin: 0; padding: 0; list-style: none; display: grid; gap: 1px; background: var(--rail); }
@media (min-width: 900px) { .exp { grid-template-columns: repeat(2, 1fr); } }
.exp li {
  position: relative; background: var(--paper);
  padding: 1.3rem 1.4rem 1.3rem 3.1rem;
  font-size: .95rem;
}
.exp li::before {
  content: '✓'; position: absolute; left: 1.4rem; top: 1.25rem;
  color: var(--olive); font-size: .95rem;
}
/* an odd number of points would otherwise leave a hole in the grid */
@media (min-width: 900px) { .exp li:last-child { grid-column: 1 / -1; } }

.incl {
  margin-top: clamp(40px, 6vw, 64px);
  padding: clamp(24px, 4vw, 40px);
  background: var(--linen);
  border-left: 3px solid var(--brass);
}
.incl__h {
  margin: 0 0 .7rem;
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft);
}
.incl__p { margin: 0; font-family: var(--serif); font-size: clamp(1.1rem, 1.9vw, 1.32rem); line-height: 1.45; }

/* ── rates ────────────────────────────────────────────────── */
.cards {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(36px, 5vw, 56px);
}
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--olive-2);
  border: 1px solid rgba(246,241,230,.16);
  padding: clamp(22px, 3.2vw, 34px);
}
.card--alt { background: var(--soil-2); }
.card--wide { grid-column: 1 / -1; background: var(--soil-2); }
.card__kicker {
  margin: 0 0 1.2rem;
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass);
}
.card__title { margin: 0 0 .3rem; font-family: var(--serif); font-weight: 400; font-size: 2.2rem; }
.card__sub { margin: .2rem 0 1.2rem; font-size: .84rem; color: var(--cream-dim); }
.card__fine { margin: 1.3rem 0 0; font-size: .78rem; line-height: 1.55; color: var(--cream-dim); }

.tiers { margin: 0; padding: 0; list-style: none; }
.tier {
  display: grid; grid-template-columns: 1fr auto; gap: .1rem 1rem;
  padding: .95rem 0; border-bottom: 1px solid rgba(246,241,230,.14);
}
.tier__n { font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; }
.tier__m { grid-column: 1; font-size: .76rem; letter-spacing: .04em; color: var(--cream-dim); }
.tier__p {
  grid-row: 1 / span 2; grid-column: 2; align-self: center;
  font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--brass-lt);
}

.bigprice {
  margin: 0; font-family: var(--serif); font-weight: 300;
  font-size: clamp(3rem, 7vw, 4.6rem); line-height: 1; color: var(--brass-lt);
}
.bigprice span { font-family: var(--sans); font-size: .9rem; letter-spacing: .12em; color: var(--cream-dim); }
.bigprice--sm { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: 1rem; }

.ticks { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.ticks li {
  position: relative; padding: .45rem 0 .45rem 1.5rem;
  font-size: .9rem; color: rgba(246,241,230,.88);
}
.ticks li::before { content: '·'; position: absolute; left: .35rem; color: var(--brass); font-size: 1.4rem; line-height: 1; top: .5rem; }

.conflict {
  margin: clamp(28px, 4vw, 40px) 0 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--brass);
  background: rgba(21,18,13,.28);
  font-size: .84rem; line-height: 1.65; color: rgba(246,241,230,.86);
  max-width: 54rem;
}
.conflict strong { color: var(--brass-lt); font-weight: 500; }

.planbar {
  margin-top: clamp(32px, 5vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
}
.planbar .fine { max-width: 26rem; margin: 0; }

/* ── story ────────────────────────────────────────────────── */
.story {
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  align-items: start;
}
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } }
.story__text p { max-width: 36rem; }
.story__pix { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.story__pix figure { margin: 0; }
.story__pix figure img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.signoff {
  margin-top: 1.8rem;
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--olive);
}
.school {
  grid-column: 1 / -1;
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--rail);
}
.school__k { margin: 0 0 .6rem; font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); }
.school__p { margin: 0; max-width: 46rem; }

/* ── find us ──────────────────────────────────────────────── */
.find {
  display: grid; gap: clamp(32px, 5vw, 60px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 860px) { .find { grid-template-columns: 1fr; } }
.find__img { margin: 0; }
.find__img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.find__img figcaption {
  margin-top: .7rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,241,230,.5);
}

/* the verify block — the reason this pitch exists */
.verify {
  margin-top: clamp(28px, 4vw, 40px);
  background: #100E0A;
  border-top: 3px solid var(--rust);
  padding: clamp(22px, 3.2vw, 34px);
}
.verify__h {
  margin: 0 0 .8rem;
  font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--cream);
}
.verify__p { margin: 0 0 1.3rem; font-size: .9rem; color: rgba(246,241,230,.78); }
.verify__list { margin: 0; padding: 0; list-style: none; }
.verify__list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid rgba(246,241,230,.12);
}
.verify__list span { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); }
.verify__list a {
  font-family: var(--serif); font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  text-decoration: none; border-bottom: 1px solid transparent;
}
.verify__list a:hover { border-bottom-color: var(--brass); }
.verify__fine { margin: 1.2rem 0 0; font-size: .76rem; line-height: 1.6; color: rgba(246,241,230,.52); }

/* ── footer ───────────────────────────────────────────────── */
.foot { background: #0D0B08; color: var(--cream); padding: clamp(52px, 8vh, 88px) 0 0; }
.foot__grid {
  display: grid; gap: clamp(28px, 4vw, 48px);
  grid-template-columns: 1.3fr repeat(3, 1fr);
}
@media (max-width: 820px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
.foot__crest { width: 110px; height: auto; mix-blend-mode: screen; }
.foot__tag {
  margin: .9rem 0 0;
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--cream-dim);
}
.foot__k { margin: 0 0 .7rem; font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); }
.foot__col p { margin: 0; font-size: .92rem; line-height: 1.8; color: rgba(246,241,230,.82); }
.foot__col a { text-decoration: none; border-bottom: 1px solid rgba(183,148,98,.4); }
.foot__col a:hover { border-bottom-color: var(--brass); }
.foot__fine {
  max-width: var(--wrap); margin: clamp(44px, 6vw, 72px) auto 0;
  padding: 1.6rem var(--gut) 2.4rem;
  border-top: 1px solid rgba(246,241,230,.14);
  font-size: .76rem; line-height: 1.7; color: rgba(246,241,230,.5);
}
.foot__fine strong { color: rgba(246,241,230,.78); font-weight: 500; }

/* ── the estimator sheet ──────────────────────────────────── */
.sheet {
  width: min(440px, calc(100vw - 32px));
  padding: clamp(26px, 4vw, 38px);
  border: none; border-top: 3px solid var(--brass);
  background: var(--paper); color: var(--ink);
}
.sheet::backdrop { background: rgba(13,11,8,.72); backdrop-filter: blur(3px); }
.sheet__x { display: flex; justify-content: flex-end; margin: -12px -12px 0 0; }
.sheet__close {
  font: inherit; font-size: 1.5rem; line-height: 1;
  background: none; border: none; cursor: pointer; color: var(--ink-soft); padding: 4px 8px;
}
.sheet__k { margin: 0 0 .5rem; font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); }
.sheet__h { margin: 0 0 1.4rem; font-family: var(--serif); font-weight: 400; font-size: 1.9rem; line-height: 1.15; }
.sheet__note { margin: 1.2rem 0 1.4rem; font-size: .78rem; line-height: 1.6; color: var(--ink-soft); }
.sheet__acts { display: grid; gap: 8px; }

.pane { display: none; }
.pane.is-on { display: block; }

.counter { display: flex; align-items: center; justify-content: center; gap: 1.6rem; }
.counter__b {
  width: 46px; height: 46px; font: inherit; font-size: 1.4rem; cursor: pointer;
  background: none; border: 1px solid var(--rail); color: var(--ink);
}
.counter__b:hover { border-color: var(--brass); }
.counter__n { font-family: var(--serif); font-size: 3.6rem; line-height: 1; min-width: 2.4ch; text-align: center; }
.counter__cap { margin: .6rem 0 1.6rem; text-align: center; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }

.nights {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 0 1.4rem; border-top: 1px solid var(--rail);
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft);
}
.nights input {
  font: inherit; font-family: var(--serif); font-size: 1.5rem;
  width: 4.5rem; text-align: right; padding: .2rem .4rem;
  border: 1px solid var(--rail); background: #fff; color: var(--ink);
}

.quote { display: grid; gap: 10px; }
.qrow { padding: 1rem 1.1rem; background: var(--linen); border-left: 3px solid var(--olive); }
.qrow--alt { border-left-color: var(--brass); }
.qrow__k { margin: 0 0 .2rem; font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); }
.qrow__v { margin: 0; font-family: var(--serif); font-size: 1.85rem; line-height: 1.1; }
.qrow__m { margin: .3rem 0 0; font-size: .78rem; color: var(--ink-soft); }
.qwarn { padding: .9rem 1.1rem; background: rgba(158,74,50,.09); border-left: 3px solid var(--rust); font-size: .82rem; }

/* ── reveal ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ── scroll offsets ───────────────────────────────────────── */
section[id], header[id] { scroll-margin-top: calc(var(--ribbon-h, 30px) + 68px); }

/* ── reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__img { transform: none; }
  .reveal { opacity: 1; transform: none; }
}
