/* ============================================================
   The Saginaw Front Porch — components (v2, warm brand)
   Single-page reservation site. Modeled on the structure of
   bloomingtonrecs.com, skinned in the SFP porch brand.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

/* Backstop against sideways drift. If anything ever grows a few px wider than
   the screen — a late-loading font, an animating number, a third-party embed —
   the page becomes horizontally scrollable and the layout reads as shoved
   left with a dead strip down the right. `clip` forbids that outright.
   Deliberately `clip`, NOT `hidden`: `hidden` turns these into scroll
   containers and breaks position:sticky on the nav. `clip` does not. */
html, body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-deep); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.amber { color: var(--amber-deep); }
.sage { color: var(--sage-deep); }
.brick { color: var(--brick); }

/* Kicker (small-caps label) */
.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 14px;
  display: inline-block;
}
.kicker--sage { color: var(--sage-deep); }
.kicker--live { color: var(--brick); }
.kicker--live::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  margin-right: 8px;
  box-shadow: 0 0 0 0 var(--amber-glow);
  animation: pulse 1.8s infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--amber-glow); }
  70%  { box-shadow: 0 0 0 9px rgba(224,167,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,167,62,0); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary {
  background: var(--brick); color: var(--cream);
  box-shadow: 0 6px 22px -8px var(--amber-glow), 0 4px 14px -6px rgba(133,49,31,.5);
}
.btn--primary:hover { background: var(--brick-deep); transform: translateY(-1px); }
.btn--sage { background: var(--sage); color: var(--cream); }
.btn--sage:hover { background: var(--sage-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--charcoal); border: 1.5px solid var(--cream-edge); }
.btn--ghost:hover { border-color: var(--sage); }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; }
.textlink { font-weight: 600; color: var(--sage-deep); text-decoration: none; border-bottom: 1.5px solid var(--amber); padding-bottom: 1px; }
.textlink:hover { color: var(--brick); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,238,223,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-edge);
}
/* A sticky bar with backdrop-filter has to re-sample and re-blur what's
   behind it on every scroll frame. On phones that's the single most common
   source of scroll stutter and stray repaint artifacts (iOS Safari especially).
   The bar sits over a cream page anyway, so on touch screens use a solid
   fill and drop the blur — visually near-identical, far cheaper to paint. */
@media (max-width: 860px){
  .nav { background: var(--cream); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--charcoal); text-decoration: none; }
.nav__logo img { height: 42px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-weight: 600; font-size: .95rem; color: var(--charcoal-2); text-decoration: none; }
.nav__links a:hover { color: var(--sage-deep); }
.nav__cta { display: inline-flex; }
.nav__toggle { display: none; }
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { padding: 10px 18px; font-size: .9rem; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; color: var(--cream);
  background: linear-gradient(180deg, rgba(43,42,40,.30), rgba(43,42,40,.78)), var(--sage-deep);
  background-size: cover; background-position: center;
}
/* The `0` in this shorthand wipes out .wrap's `0 24px` side gutters. Above
   760px that's harmless (the box is centered with room to spare), but on a
   phone the hero spans the viewport and the headline runs flush to both
   edges while every other section sits inset 24px — the page reads as
   shoved left. Gutters are restored below 760px only; desktop is untouched. */
.hero__inner { padding: 96px 0 104px; max-width: 760px; }
@media (max-width: 760px){
  .hero__inner { padding-left: 24px; padding-right: 24px; }
}
.hero h1 { color: var(--cream); font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 600; margin-bottom: .35em; }
.hero h1 .hl { color: var(--brick-bright); font-style: italic; }
.hero__sub { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: #F3EAD8; max-width: 620px; margin-bottom: 1.8em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__trust {
  margin-top: 34px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: #E9DFC9; display: flex; flex-wrap: wrap; gap: 10px 18px;
}
.hero__trust span::before { content: "•"; margin-right: 18px; color: #E4DAC4; }
.hero__trust span:first-child::before { display: none; }
.hero .textlink { color: var(--cream); border-bottom-color: rgba(246,238,223,.55); }
.hero .textlink:hover { color: #fff; }

/* ---------- STAT BAR ---------- */
.stats { background: var(--sage-deep); color: var(--cream); }
/* minmax(0,1fr), not 1fr — these cells hold the count-up numbers, which grow
   from "0" to "5,000+" when you scroll them into view. With a bare 1fr the
   columns can't shrink below that new min-content width, so the grid gets
   WIDER mid-scroll and drags the whole page with it. See .aud__tiles. */
.stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding: 34px 0; }
.stat { text-align: center; padding: 8px; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--cream); line-height: 1; }
.stat__label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: #E4DAC4; margin-top: 8px; font-weight: 600; }
@media (max-width: 640px){ .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; } }

/* ---------- AUDIENCE ---------- */
.map-embed { position: relative; height: 380px; max-width: 900px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--cream-edge); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
/* minmax(0,1fr) not 1fr: a bare 1fr is minmax(auto,1fr), and `auto` will
   not shrink below the content's min-content width — the columns then
   compute wider than the container and push the whole PAGE wider than the
   viewport, which shows up as a thin dead strip down the right edge. */
.aud__tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.aud__tiles--row { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 820px; margin: 26px auto 0; }
.aud__tiles--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 640px; margin: 26px auto 0; }
.tile { background: var(--cream); border: 1px solid var(--cream-edge); border-radius: var(--radius); padding: 22px 16px; text-align: center; box-shadow: var(--shadow-card); }
.tile__num { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--sage-deep); }
.tile__lab { font-size: .78rem; color: var(--taupe); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-top: 4px; }
/* This rule used to target only .aud__tiles--row, but the audience section
   markup is .aud__tiles--3 — so the mobile collapse never fired and three
   tiles stayed jammed across a phone screen. Cover both. */
@media (max-width: 620px){
  .aud__tiles--row,
  .aud__tiles--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aud__tiles--3 > :last-child { grid-column: 1 / -1; }  /* odd tile spans, no gap */
  .map-embed { height: 300px; }
}

/* ---------- LIVE SLOTS ---------- */
.slots { background: var(--cream-deep); }
.slots__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 10px; }
.toggle { display: inline-flex; background: var(--cream); border: 1px solid var(--cream-edge); border-radius: 999px; padding: 4px; }
.toggle button { border: 0; background: transparent; padding: 8px 20px; border-radius: 999px; font-family: var(--font-body); font-weight: 700; font-size: .92rem; cursor: pointer; color: var(--charcoal-2); }
.toggle button.active { background: var(--sage); color: var(--cream); }
.legend { display: flex; gap: 18px; flex-wrap: wrap; margin: 18px 0 24px; font-size: .85rem; color: var(--charcoal-2); font-weight: 600; }
.legend b { display: inline-block; width: 13px; height: 13px; border-radius: 4px; margin-right: 7px; vertical-align: -1px; }
.card-face {
  background: var(--cream); border: 1px solid var(--cream-edge); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;            /* landscape 9x12 postcard proportions */
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.card-band { background: var(--sage); color: var(--cream); display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 18px; border-radius: var(--radius-sm); flex: none; flex-wrap: wrap; }
.card-band__brand { display: flex; align-items: center; gap: 12px; }
.card-band__brand img { height: 40px; width: auto; }
.card-band .mh-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1; color: var(--cream); }
.card-band .mh-sub { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: #E4DAC4; font-weight: 600; margin-top: 4px; }
.card-band__meta { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: #E4DAC4; font-weight: 600; text-align: right; }

.slot-row { display: flex; gap: 12px; flex: 1; min-height: 0; }
.slot {
  flex: 1; min-height: 0;
  border-radius: var(--radius-sm); border: 1.5px solid var(--cream-edge); background: var(--sage-tint);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 8px; cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.slot-stack { flex: 1; min-height: 0; display: flex; flex-direction: column; gap: 12px; }
.slot.size-full { flex: 1; }
.slot.size-double { flex: 2; }
.slot.size-triple { flex: 3; }
.slot.size-half { flex: 1; }
.slot__price { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--sage-deep); }
.slot__meta { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--taupe); font-weight: 700; margin-top: 2px; }
.slot__tag { font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; padding: 3px 8px; border-radius: 999px; }
.slot.open { border-color: var(--amber); background: var(--amber-tint); }
.slot.open .slot__tag { background: var(--amber); color: var(--charcoal); }
.slot.open:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -12px var(--amber-glow); border-color: var(--amber-deep); }
.slot.taken { cursor: not-allowed; background: var(--sage-tint); border-style: solid; opacity: .82; }
.slot.taken .slot__price { color: var(--taupe); font-size: .95rem; }
.slot.taken .slot__tag { background: var(--cream-edge); color: var(--charcoal-2); }
.slot.taken .slot__industry { font-weight: 700; font-size: .82rem; color: var(--charcoal-2); }
.slots__foot { margin-top: 18px; text-align: center; font-size: .95rem; color: var(--charcoal-2); }
/* ---------- CARD ON SMALL SCREENS ----------
   The card must stay LANDSCAPE and keep its true proportions: a
   double is twice a full, a half is half a full. That's the whole
   point of the graphic — buyers judge footprint by size.

   This block used to wrap slots to 50% width, which broke both.
   Worse, `.slot.size-full` above is specificity (0,2,0) and a
   media query adds none, so a bare `.slot {...}` rule in here
   LOSES to it — half slots ended up 3x the area of full slots.
   Every size override below is therefore written at (0,2,0).
   Keep it that way. Shrink type to fit; never re-flow the grid. */
@media (max-width: 560px){
  .card-face { padding: 10px; gap: 8px; }   /* keeps the 4/3 landscape ratio */
  .slot-row { gap: 6px; }
  .slot-stack { gap: 6px; }
  .slot { padding: 4px 2px; }

  /* proportions, restated at matching specificity so they actually win */
  .slot.size-full   { flex: 1; }
  .slot.size-double { flex: 2; }
  .slot.size-triple { flex: 3; }
  .slot.size-half   { flex: 1; }

  .slot__price { font-size: .8rem; }
  .slot__meta { display: none; }            /* "~10¢/home" won't fit; it's in the table below */
  .slot__tag { font-size: .45rem; padding: 2px 4px; margin-top: 3px; letter-spacing: .04em; }
  .slot.taken .slot__price { font-size: .7rem; }
  .slot.taken .slot__industry { font-size: .56rem; line-height: 1.1; }

  /* A half slot is only ~40px tall here, so it can't hold three lines.
     Drop the "Half" size label (the geometry already says it) and keep
     what a buyer actually needs: who owns it, or what it costs. */
  .slot.size-half { padding: 2px; }
  /* A claimed half shows the industry only. The size label and the
     CLAIMED pill both overflow once the card drops under ~300px wide,
     and the muted sage fill already reads as claimed against the
     amber "available" slots. Industry name is what buyers scan for. */
  .slot.size-half.taken .slot__price { display: none; }
  .slot.size-half.taken .slot__tag { display: none; }
  .slot.size-half .slot__industry { font-size: .52rem; line-height: 1.05; }
  .slot.size-half .slot__price { font-size: .68rem; }
  .slot.size-half .slot__tag { font-size: .4rem; margin-top: 1px; padding: 1px 4px; }

  /* compact masthead so it doesn't eat the card's height */
  .card-band { padding: 5px 8px; gap: 6px; flex-wrap: nowrap; }
  .card-band__brand { gap: 7px; }
  .card-band__brand img { height: 22px; }
  .card-band .mh-name { font-size: .78rem; }
  .card-band .mh-sub { font-size: .46rem; letter-spacing: .05em; margin-top: 2px; }
  .card-band__meta { display: none; }
}
/* Below ~320px (rare devices, or a phone with large accessibility text)
   a claimed slot's three lines stop fitting. Drop the size label — the
   slot's footprint already communicates it. */
@media (max-width: 340px){
  .slot.taken .slot__price { display: none; }
}

/* ---------- COUNTDOWN ---------- */
.count { background: var(--brick); color: var(--cream); text-align: center; padding: 30px 0; }
.count__title { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; margin-bottom: 14px; color: var(--cream); }
.count__clock { display: flex; justify-content: center; gap: 14px; }
.count__cell { min-width: 74px; }
.count__n { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; line-height: 1; color: var(--cream); }
.count__l { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 6px; color: #F0E4CD; }
/* Final week — the clock flips to cream tiles so the deadline reads as close.
   NOTE: do not reach for var(--amber) on this band. Amber was retired 7/14
   and repointed to brick (#A23E2E) — the same color as this section's
   background — so amber text here is invisible. Contrast has to come from
   the cream/charcoal side of the palette. */
.count__clock--urgent .count__cell { background: var(--cream); border-radius: var(--radius-sm); padding: 8px 4px; }
.count__clock--urgent .count__n { color: var(--brick-deep); }
.count__clock--urgent .count__l { color: var(--charcoal-2); }
/* Deadline passed — honest "closing" line instead of a frozen 00:00:00. */
.count__closed { max-width: 620px; margin: 0 auto; font-size: 1.02rem; line-height: 1.5; color: #F0E4CD; }
/* The four clock cells are min-width:74px + 14px gaps = 338px, which is
   wider than the content column on a small phone and pushed the page
   sideways. Let them share whatever width there is instead. */
@media (max-width: 560px){
  .count__title { font-size: 1.12rem; }
  .count__clock { gap: 8px; }
  .count__cell { min-width: 0; flex: 1 1 0; }
  .count__n { font-size: 1.85rem; }
}
/* Honest scarcity line under the clock — counted off the live slot map. */
.count__slots { margin-top: 16px; font-size: .98rem; color: #F0E4CD; }
.count__slots strong { color: var(--cream); }   /* not --amber: that IS this band's bg */
.count__clock--done { display: block; }

/* ---------- STEPS / SNOWBALL ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.step { background: var(--cream); border: 1px solid var(--cream-edge); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-card); }
.step__n { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--cream); background: var(--sage); width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.snowball { margin-top: 40px; background: var(--sage-tint); border-radius: var(--radius); padding: 30px; text-align: center; }
.snowball__flow { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin-top: 14px; }
.snowball__flow .node { background: var(--cream); border: 1.5px solid var(--sage); color: var(--sage-deep); font-weight: 700; padding: 10px 18px; border-radius: 999px; font-size: .95rem; }
.snowball__flow .arrow { color: var(--amber-deep); font-weight: 800; font-size: 1.2rem; }
@media (max-width: 780px){ .steps { grid-template-columns: 1fr; } }

/* ---------- BENEFITS ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.benefit { background: var(--cream); border: 1px solid var(--cream-edge); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-card); }
.benefit__ic { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.benefit h3 { font-size: 1.2rem; margin-bottom: .35em; }
.benefit p { color: var(--charcoal-2); font-size: .96rem; margin: 0; }
@media (max-width: 820px){ .benefits { grid-template-columns: 1fr; } }

/* ---------- CATEGORIES ---------- */
.cats { columns: 3; column-gap: 30px; margin-top: 10px; }
.cats span { display: block; padding: 6px 0; border-bottom: 1px solid var(--cream-edge); font-weight: 600; color: var(--charcoal-2); break-inside: avoid; }
@media (max-width: 780px){ .cats { columns: 2; } }
@media (max-width: 480px){ .cats { columns: 1; } }

/* ---------- MATH TABLE ---------- */
.mathtable { width: 100%; border-collapse: collapse; background: var(--cream); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); font-size: .98rem; }
.mathtable th, .mathtable td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--cream-edge); }
.mathtable thead th { background: var(--sage); color: var(--cream); font-family: var(--font-display); font-weight: 600; }
.mathtable tr:last-child td { border-bottom: 0; }
.mathtable .em { font-weight: 800; color: var(--brick); }
.mathtable .row-total td { background: var(--amber-tint); font-weight: 700; }
.pullquote { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--sage-deep); text-align: center; max-width: 620px; margin: 34px auto 0; }

/* ---------- VIDEO ---------- */
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--charcoal); }
.video-embed iframe, .video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--cream); background: linear-gradient(160deg, var(--sage-deep), var(--charcoal)); text-align: center; padding: 20px; }
.video-ph .play { width: 66px; height: 66px; border-radius: 50%; background: var(--amber); color: var(--charcoal); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 14px; }

/* ---------- MEET CARTER ---------- */
.meet { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center; }
.meet img { border-radius: var(--radius); box-shadow: var(--shadow-soft); width: 100%; object-fit: cover; }
.meet__foot { font-style: italic; color: var(--taupe); font-size: .92rem; }
@media (max-width: 720px){ .meet { grid-template-columns: 1fr; } .meet img { max-width: 260px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--cream); border: 1px solid var(--cream-edge); border-radius: var(--radius-sm); margin-bottom: 12px; padding: 4px 8px; }
.faq summary { cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; padding: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--amber-deep); font-size: 1.5rem; font-family: var(--font-body); }
.faq details[open] summary::after { content: "\2013"; }
.faq p { padding: 0 16px 18px; color: var(--charcoal-2); margin: 0; }

/* ---------- FORM ---------- */
.reserve { background: var(--sage-deep); color: var(--cream); }
.reserve h2 { color: var(--cream); }
.reserve__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: start; }
.reserve__copy .kicker { color: #E9C7A0; }
.reserve__copy p { color: #EEE4CF; }
.trust-lines { list-style: none; padding: 0; margin: 22px 0 0; }
.trust-lines li { padding: 7px 0 7px 30px; position: relative; color: #F3EAD8; }
.trust-lines li::before { content: "\2713"; position: absolute; left: 0; color: #E9DFC9; font-weight: 800; }
.form-card { background: var(--cream); color: var(--charcoal); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--charcoal-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--cream-edge); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: #fffdf8; color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--amber); border-color: var(--amber); }
.field textarea { min-height: 84px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .84rem; color: var(--taupe); margin-top: 4px; }
.form-success { display: none; text-align: center; padding: 20px; }
.form-success.show { display: block; }
.form-success .ic { font-size: 2.4rem; }
.form-error { color: var(--brick); font-weight: 600; margin-top: 10px; display: none; }
.form-error.show { display: block; }
@media (max-width: 780px){ .reserve__grid { grid-template-columns: 1fr; } .field--row { grid-template-columns: 1fr; } }

/* ---------- FINAL CTA + FOOTER ---------- */
.finalcta { background: var(--sage); color: var(--cream); text-align: center; }
.finalcta h2 { color: var(--cream); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.finalcta p { color: #EEE4CF; font-size: 1.1rem; margin-bottom: 1.4em; }
.footer { background: var(--cream); color: var(--charcoal-2); border-top: 1px solid var(--sage); padding: 40px 0 48px; font-size: .95rem; }
.footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer__left { display: flex; gap: 18px; align-items: flex-start; max-width: 460px; }
.footer__left img { height: 42px; width: auto; flex: 0 0 auto; }
.footer__left p { margin: 0; font-size: 14px; color: var(--charcoal-2); line-height: 1.5; }
.footer__right { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; text-align: right; }
.footer a { color: var(--charcoal); text-decoration: none; border-bottom: 1px solid transparent; }
.footer a:hover { border-bottom-color: var(--sage); }

/* count-up helper */
.counting { opacity: 1; }
