/* ============================================================
   GAROUTTE PROVISIONS — "The Field Guide"
   Design system · cream paper, forest ink, orange marginalia
   Poppins only. No serif anywhere.
   ============================================================ */

:root {
  --cream: #F4F1E8;
  --forest: #1B3A2F;
  --green: #2D5A40;
  --orange: #FF914D;
  --refine: #2A4A38;
  --cream-dim: rgba(244, 241, 232, 0.72);
  --forest-hairline: rgba(27, 58, 47, 0.16);
  --cream-hairline: rgba(244, 241, 232, 0.18);
  --shadow-card: 0 12px 28px rgba(27, 58, 47, 0.14);
  --ease-quiet: cubic-bezier(0.22, 0.61, 0.36, 1);
  --r-card: 16px;
  --r-callout: 14px;
  --r-render: 12px;
  --r-pill: 999px;
  --measure: 68ch;
  --pad-x: clamp(20px, 5vw, 64px);
  --site-max: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: Poppins, "Open Sans", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--refine);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ---- Paper grain (feTurbulence, multiply, .035) ---- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

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

/* ============================================================
   TYPE
   ============================================================ */

.display {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--forest);
}

h1.display { font-size: clamp(46px, 7.6vw, 104px); }
/* Brand hero: sized so "NO COMPROMISES." holds together on one line.
   Double class beats h1.display's specificity so this actually applies. */
.cover__headline.cover__headline--brand { font-size: clamp(34px, 4.6vw, 60px); }
.cover__headline.cover__headline--brand .nowrap { white-space: nowrap; }
@media (max-width: 900px) {
  .cover__headline.cover__headline--brand { font-size: clamp(27px, 7.2vw, 52px); }
}
h2.display { font-size: clamp(34px, 4.6vw, 62px); }
h3.display { font-size: clamp(24px, 3vw, 36px); }

.eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--orange);
}

.eyebrow--green { color: var(--green); }
.eyebrow--cream { color: var(--cream-dim); }

.deck {
  font-weight: 500;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: var(--green);
}

.hook {
  font-style: italic;
  font-weight: 400;
  color: var(--refine);
}

.body-sm { font-size: 14px; }

.meta-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11.5px;
  color: var(--green);
}

/* Orange accent word inside display type */
.acc { color: var(--orange); }

/* ---- Links: orange underline drawing in ---- */
p a, .fn a, li a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 200ms var(--ease-quiet);
}
p a:hover, .fn a:hover, li a:hover { background-size: 100% 1px; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */

.wrap {
  max-width: var(--site-max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section { padding: clamp(72px, 10vw, 140px) 0; }
.section--tight { padding: clamp(48px, 7vw, 88px) 0; }

.section--forest {
  background: var(--forest);
  color: var(--cream);
  border-radius: 0; /* full-bleed forest is SQUARE */
}
.section--forest .display { color: var(--cream); }
.section--forest .deck { color: var(--cream-dim); }
/* one soft vignette allowed on forest */
.section--forest.vignette {
  background-image: radial-gradient(ellipse 90% 70% at 50% 20%, rgba(45, 90, 64, 0.5), transparent 70%);
  background-color: var(--forest);
}

.rule { border: 0; border-top: 1px solid var(--forest-hairline); }
.section--forest .rule { border-top-color: var(--cream-hairline); }

/* ============================================================
   BUTTONS — quiet by mandate
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-pill);
  padding: 15px 30px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: background-color 180ms var(--ease-quiet),
              color 180ms var(--ease-quiet),
              border-color 180ms var(--ease-quiet),
              transform 180ms var(--ease-quiet);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--fill {
  background: var(--orange);
  color: var(--forest);
}
.btn--fill:hover { background: #ff9f66; }

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--ghost:hover { background: rgba(27, 58, 47, 0.06); }

.section--forest .btn--ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.section--forest .btn--ghost:hover { background: rgba(244, 241, 232, 0.08); }

.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ============================================================
   THE RIBBON (nav)
   ============================================================ */

.ribbon {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  transition: background-color 220ms var(--ease-quiet), box-shadow 220ms var(--ease-quiet);
}
.ribbon.scrolled {
  background: rgba(244, 241, 232, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--forest-hairline);
}

.ribbon__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 28px;
}

.ribbon__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.ribbon__brand img { width: 150px; height: auto; max-width: 100%; }

.ribbon__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.ribbon__nav a {
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 200ms var(--ease-quiet);
}
.ribbon__nav a:hover, .ribbon__nav a[aria-current="page"] { background-size: 100% 1px; }

.ribbon .btn { padding: 11px 22px; font-size: 13.5px; }

.ribbon__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  color: var(--forest);
}

/* Capture pages: stripped ribbon */
.ribbon--capture .ribbon__nav,
.ribbon--capture .btn { display: none; }
.ribbon--capture .ribbon__exit {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
}

@media (max-width: 900px) {
  .ribbon__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--forest-hairline);
    padding: 8px var(--pad-x) 20px;
  }
  .ribbon__nav.open { display: flex; }
  .ribbon__nav a { padding: 12px 0; font-size: 15px; }
  .ribbon__toggle { display: block; }
}

/* ============================================================
   THE COVER (hero)
   ============================================================ */

.cover {
  padding: clamp(48px, 7vw, 110px) 0 clamp(64px, 8vw, 120px);
}
.cover__grid {
  display: grid;
  /* minmax(0,…) locks the columns to the ratio so a nowrap headline can't
     steal width from the book column. ~58/42 split gives the mockup real room. */
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.cover__eyebrow { margin-bottom: 22px; }
.cover__headline { margin-bottom: 26px; }
.cover__deck { max-width: 34em; margin-bottom: 36px; }
.cover__note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--green);
}

.cover__art { position: relative; }
.cover__art img {
  transform: rotate(-3deg);
  border-radius: var(--r-render);
  box-shadow: 0 30px 60px rgba(27, 58, 47, 0.28), 0 8px 20px rgba(27, 58, 47, 0.18);
}

/* Brand hero: two covers fanned on the table */
.cover__art--stack { position: relative; }
.cover__art--stack .stack-back {
  position: absolute;
  top: 6%;
  right: -8%;
  width: 78%;
  transform: rotate(5deg);
  border-radius: var(--r-render);
  box-shadow: 0 18px 40px rgba(27, 58, 47, 0.2);
  opacity: 0.92;
}
.cover__art--stack img:not(.stack-back) { position: relative; }

/* Featured guide (home) */
.featured {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.featured__art img {
  transform: rotate(-3deg);
  border-radius: var(--r-render);
  box-shadow: 0 30px 60px rgba(27, 58, 47, 0.28), 0 8px 20px rgba(27, 58, 47, 0.18);
  margin: 0 auto;
}
@media (max-width: 860px) {
  .featured { grid-template-columns: 1fr; }
  .featured__art { max-width: 230px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .cover__grid { grid-template-columns: 1fr; }
  .cover__art--stack { max-width: 260px; }
  .cover__art--stack .stack-back { right: -14%; }
  /* text (and the CTA) first — CTA must be visible without scrolling */
  .cover__art { max-width: 220px; margin: 10px auto 0; }
  .cover { padding-top: 20px; }
  .cover__headline { font-size: clamp(32px, 9vw, 64px); margin-bottom: 18px; overflow-wrap: anywhere; }
  .cover__eyebrow { margin-bottom: 14px; }
  .cover__deck { margin-bottom: 24px; font-size: 16.5px; }
}

/* ============================================================
   № NUMBERING + INDEX ROWS (The Kit Index)
   ============================================================ */

.no {
  font-weight: 800;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}

.index-list { list-style: none; }
.index-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--forest-hairline);
}
.index-row:first-child { border-top: 1px solid var(--forest-hairline); }
.index-row .no { font-size: 20px; }
.index-row__name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  color: var(--forest);
}
.index-row__desc {
  font-size: 14.5px;
  color: var(--refine);
  margin-top: 3px;
}

@media (max-width: 640px) {
  .index-row { grid-template-columns: 44px 1fr; gap: 12px; }
}

/* ============================================================
   5 O'CLOCK (problem · forest beats)
   ============================================================ */

.beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(40px, 5vw, 64px);
}
.beat .no { font-size: 26px; display: block; margin-bottom: 14px; }
.beat h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 10px;
}
.beat p { color: var(--cream-dim); font-size: 15px; }

@media (max-width: 760px) {
  .beats { grid-template-columns: 1fr; }
}

/* ============================================================
   THE FLIP-THROUGH (proof rail)
   ============================================================ */

.flip { overflow: hidden; }
.flip__rail {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 48px var(--pad-x) 56px;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.flip__rail::-webkit-scrollbar { display: none; }
.flip__rail.dragging { cursor: grabbing; scroll-behavior: auto; }

.flip__page {
  flex: 0 0 auto;
  width: clamp(240px, 30vw, 380px);
  margin-right: -34px; /* fanned overlap */
}
.flip__page:last-child { margin-right: 0; }
.flip__page img {
  border-radius: var(--r-render);
  box-shadow: 0 18px 40px rgba(27, 58, 47, 0.22);
  border: 1px solid rgba(27, 58, 47, 0.08);
  pointer-events: none;
}
.flip__page:nth-child(odd) img { transform: rotate(-1.6deg); }
.flip__page:nth-child(even) img { transform: rotate(1.4deg); }
.flip__caption {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
}
.flip__hint {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  opacity: 0.7;
}

/* ============================================================
   THE CONTRAST (thesis)
   ============================================================ */

.contrast { text-align: center; }
.contrast__small {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--cream-dim);
  margin-bottom: 26px;
}
.contrast__huge {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
  font-size: clamp(44px, 9vw, 128px);
  color: var(--cream);
  margin-bottom: 30px;
}
.contrast__hook {
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 23px);
  color: var(--cream-dim);
  max-width: 34em;
  margin: 0 auto;
}

/* ============================================================
   CARDS (shelf, posts, testimonials, resources)
   ============================================================ */

.card {
  background: #fff;
  border: 1px solid var(--forest-hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform 220ms var(--ease-quiet), box-shadow 220ms var(--ease-quiet);
  display: flex;
  flex-direction: column;
}
a.card { text-decoration: none; color: inherit; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--forest); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--cover { aspect-ratio: 3.4 / 4; background: var(--cream); }
.card__media--cover img { object-fit: contain; padding: 10px; }
/* product cover shown whole on the card's dark ground (e.g. NO-BONK in The Fork) */
.card__media--contain { background: var(--forest); }
.card__media--contain img { object-fit: contain; padding: 18px; }

.card__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card__no { font-size: 15px; }
.card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--forest);
}
.card__desc { font-size: 14px; color: var(--refine); }
.card__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; gap: 10px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
/* One item — keep it centred and readable instead of stretching edge to edge. */
.grid-1 { display: grid; grid-template-columns: minmax(0, 620px); justify-content: center; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* status / price / tag pills */
.pill {
  display: inline-block;
  border-radius: var(--r-pill);
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill--price { background: var(--orange); color: var(--forest); font-weight: 700; }
.pill--soon { border: 1px solid var(--green); color: var(--green); }
.pill--tag { border: 1px solid rgba(244, 241, 232, 0.6); color: var(--cream); }
.pill--tag-dark { border: 1px solid var(--green); color: var(--green); }

/* ============================================================
   THE LETTER (trust)
   ============================================================ */

.letter { max-width: var(--measure); margin: 0 auto; }
.letter p { margin-bottom: 18px; font-size: 16.5px; line-height: 1.78; }
.letter .lead { font-weight: 600; color: var(--forest); font-size: 18px; }
.letter__sign {
  margin-top: 30px;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  color: var(--green);
}
.letter__tag {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

/* ============================================================
   THE PROMISE (price + guarantee panel)
   ============================================================ */

.promise {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r-card);
  padding: clamp(36px, 5vw, 64px);
  border-top: 6px solid var(--orange);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.promise__price {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 18px 0 10px;
}
.promise__was {
  font-size: 26px;
  font-weight: 600;
  color: var(--cream-dim);
  text-decoration: line-through;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
}
.promise__now {
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.promise__anchors { font-size: 14.5px; color: var(--cream-dim); font-style: italic; }
.promise__badges { list-style: none; display: grid; gap: 14px; }
.promise__badges li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
  color: var(--cream);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-hairline);
}
.promise__badges li:last-child { border-bottom: 0; padding-bottom: 0; }
.promise__badges .no { font-size: 14px; }

@media (max-width: 860px) { .promise { grid-template-columns: 1fr; } }

/* ============================================================
   SIGNATURE — "The Plate" recipe card
   ============================================================ */

.plate {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--forest-hairline);
  background: #fff;
  max-width: 560px;
}
.plate__head {
  position: relative;
  background: var(--forest);
  padding: 34px 30px 26px;
  border-bottom: 6px solid var(--orange);
  overflow: hidden;
}
.plate__head img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
}
.plate__head > div { position: relative; }
.plate__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.plate__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.plate__meta {
  display: flex;
  gap: 26px;
  padding: 13px 30px;
  background: var(--green);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.plate__meta b { color: #fff; }
.plate__body { padding: 24px 30px 28px; font-size: 15px; }
.plate__body .hook { display: block; margin-bottom: 6px; }

/* ============================================================
   SIGNATURE — Cameron's Tip callout
   ============================================================ */

.tip {
  background: var(--forest);
  border-left: 5px solid var(--orange);
  border-radius: var(--r-callout);
  padding: 22px 26px;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.65;
  margin: 34px 0;
}
.tip b, .tip strong { color: var(--orange); }
.tip__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

/* ============================================================
   CAPTURE — "3 Dinners, On Us"
   ============================================================ */

.capture {
  border: 2px solid var(--orange);
  border-radius: var(--r-card);
  padding: clamp(30px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.45);
}
.capture__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
}
.capture__photos img {
  border-radius: var(--r-render);
  aspect-ratio: 1;
  object-fit: cover;
}
.capture__photos figcaption {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 8px;
}

.form-row {
  display: flex;
  gap: 12px;
  max-width: 520px;
}
.form-row input[type="email"] {
  flex: 1;
  min-width: 0;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  border: 2px solid var(--forest);
  background: #fff;
  color: var(--forest);
  outline: none;
}
.form-row input[type="email"]:focus { border-color: var(--orange); }
.form-note { margin-top: 12px; font-size: 12.5px; color: var(--green); }
.form-ok { margin-top: 14px; font-weight: 600; color: var(--green); display: none; }

.section--forest .form-row input[type="email"] { border-color: var(--cream); background: rgba(244,241,232,0.97); }

@media (max-width: 640px) {
  .form-row { flex-direction: column; }
  .capture__photos { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .capture__photos figcaption { display: none; }
}

/* ============================================================
   ARTICLE (T4) — editorial longform
   ============================================================ */

.article-head { padding: clamp(48px, 6vw, 88px) 0 clamp(28px, 4vw, 48px); }
.article-head .eyebrow { margin-bottom: 18px; display: block; }
.article-head h1 { max-width: 18em; }
.article-head .deck { max-width: 34em; margin-top: 22px; }
.article-hero {
  border-radius: var(--r-card);
  overflow: hidden;
  margin: 12px 0 0;
}
.article-hero img { width: 100%; max-height: 520px; object-fit: cover; }

.article {
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) 0 24px;
}
.article p { margin-bottom: 20px; font-size: 16.5px; line-height: 1.8; }
.article h2 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 24px;
  color: var(--forest);
  margin: 44px 0 16px;
}
.article h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  margin: 32px 0 12px;
}
.article ul, .article ol { margin: 0 0 20px 22px; }
.article li { margin-bottom: 8px; font-size: 16px; }
.article .lead { font-weight: 600; color: var(--forest); font-size: 18.5px; }

.pullquote {
  margin: 40px 0;
  padding: 6px 0 6px 26px;
  border-left: 3px solid var(--orange);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.55;
  color: var(--forest);
}

.fn {
  margin: 32px 0;
  padding-top: 14px;
  border-top: 1px solid var(--forest-hairline);
  font-size: 13px;
  color: var(--green);
}
.fn .no { font-size: 12px; margin-right: 8px; }

/* ============================================================
   FAQ
   ============================================================ */

.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--forest-hairline); }
.faq details:first-of-type { border-top: 1px solid var(--forest-hairline); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--forest);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-weight: 800;
  font-size: 22px;
  transition: transform 180ms var(--ease-quiet);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 24px; max-width: 62ch; }

/* ============================================================
   THE COLOPHON (footer)
   ============================================================ */

.colophon {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) 0 40px;
  font-size: 13.5px;
}
.colophon a {
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 180ms var(--ease-quiet);
}
.colophon a:hover { color: var(--orange); }

.colophon__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 44px;
  border-bottom: 1px solid var(--cream-hairline);
}
.colophon__brand img { height: 56px; width: auto; margin-bottom: 18px; }
.colophon__tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.colophon h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 16px;
}
.colophon ul { list-style: none; display: grid; gap: 10px; }
.colophon__news p { margin-bottom: 14px; color: var(--cream-dim); }
.colophon__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 12px;
  color: rgba(244, 241, 232, 0.5);
  letter-spacing: 0.04em;
}
.colophon__legal nav { display: flex; gap: 20px; }

@media (max-width: 860px) {
  .colophon__grid { grid-template-columns: 1fr 1fr; }
  .colophon__brand, .colophon__news { grid-column: span 2; }
}

/* ============================================================
   CAPTURE PAGES (T5)
   ============================================================ */

.capture-page {
  min-height: calc(100vh - 200px);
  display: grid;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
}
.capture-page__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.capture-page .form-row { margin: 30px auto 0; }
.capture-page .capture__photos { max-width: 560px; margin: 34px auto; }

/* ============================================================
   EMPTY STATE (Founding Families)
   ============================================================ */

.empty {
  border: 1px dashed rgba(27, 58, 47, 0.35);
  border-radius: var(--r-card);
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.empty .hook { font-size: 17px; color: var(--green); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.sec-head { margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head .eyebrow { display: block; margin-bottom: 16px; }
.sec-head .deck { margin-top: 16px; max-width: 36em; }
.sec-head--center { text-align: center; }
.sec-head--center .deck { margin-left: auto; margin-right: auto; }

/* ============================================================
   MOTION — one move: fade + rise, once
   ============================================================ */

.rise {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease-out, transform 520ms ease-out;
}
.rise.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   FX LAYER — the living book + scroll moments
   (all motion driven by fx.js; these are the resting styles)
   ============================================================ */

/* Cover tilt: perspective lives on the parent (CSS property, reliable),
   rotation on the child. Keeps the entrance (.rise) from fighting the tilt. */
.cover__art { perspective: 1100px; }
.cover__tilt {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.cover__art-in { position: relative; }

/* The table sets itself (home, pinned) */
.table-set {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
}
.table-set__inner {
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.table-set__head { margin-bottom: clamp(24px, 4vh, 44px); }
.table-set__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.5vw, 30px);
  max-width: 780px;
  margin: 0 auto;
}
.table-set__plate {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(27, 58, 47, 0.24);
  border: 4px solid #fff;
  will-change: transform;
}
.table-set__plate img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) {
  .table-set__grid { max-width: 92vw; gap: 10px; }
  .table-set__plate { border-width: 3px; }
}

/* The 5:00 clock */
.prob-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.fxclock { width: clamp(90px, 11vw, 150px); flex: 0 0 auto; }

/* The page-turn book */
.book-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
  padding-top: 26px;
}
.book {
  position: relative;
  width: min(400px, 68vw);
  aspect-ratio: 612 / 792;
  perspective: 2400px;
  transform-style: preserve-3d; /* children depth-sort by translateZ */
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.book:active { cursor: grabbing; }
.book__page {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform-style: preserve-3d;
  will-change: transform;
}
.book__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--r-render);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 58, 47, 0.2);
  border: 1px solid rgba(27, 58, 47, 0.08);
}
.book__face img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.book__back {
  transform: rotateY(180deg);
  background: var(--cream);
}
.book__shade {
  position: absolute;
  inset: 0;
  border-radius: var(--r-render);
  background: linear-gradient(to right, rgba(27, 58, 47, 0.45), transparent 65%);
  opacity: 0;
  pointer-events: none;
}
.book-arrow {
  border: 2px solid var(--forest);
  background: transparent;
  color: var(--forest);
  border-radius: var(--r-pill);
  width: 46px; height: 46px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 180ms var(--ease-quiet), transform 180ms var(--ease-quiet), opacity 180ms;
  flex: 0 0 auto;
}
.book-arrow:hover { background: rgba(27, 58, 47, 0.06); transform: translateY(-1px); }
.book-wrap:has(.book.at-start) [data-book-prev],
.book-wrap:has(.book.at-end) [data-book-next] { opacity: 0.25; pointer-events: none; }
.flip .flip__caption { text-align: center; margin-top: 22px; }

/* The calendar assembles */
.cal { position: relative; max-width: 860px; margin: 0 auto; }
.cal__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(6px, 1vw, 10px);
}
.cal__cell {
  background: #fff;
  border: 1px solid var(--forest-hairline);
  border-radius: 10px;
  padding: 8px 8px 9px;
  min-height: 62px;
  font-size: 11px;
  line-height: 1.3;
  color: var(--refine);
  font-weight: 500;
}
.cal__num { display: block; font-weight: 800; font-size: 13px; color: var(--green); margin-bottom: 2px; }
.cal__tag {
  display: block;
  margin-top: 3px;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cal__cell--big { background: var(--orange); border-color: var(--orange); color: var(--forest); font-weight: 700; }
.cal__cell--big .cal__num { color: var(--forest); }
.cal__cell--big .cal__tag { color: rgba(27, 58, 47, 0.7); }
.cal__cell--remix { background: var(--forest); border-color: var(--forest); color: var(--cream); font-weight: 600; }
.cal__cell--remix .cal__num { color: var(--orange); }
.cal__cell--remix .cal__tag { color: var(--orange); }
.cal__arrow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% - 60px);
  pointer-events: none;
}
@media (max-width: 640px) {
  .cal__cell { min-height: 46px; padding: 5px 5px 6px; font-size: 9px; }
  .cal__num { font-size: 11px; }
  .cal__tag { display: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */

.mt-1 { margin-top: 14px; } .mt-2 { margin-top: 28px; } .mt-3 { margin-top: 48px; }
.mb-1 { margin-bottom: 14px; } .mb-2 { margin-bottom: 28px; } .mb-3 { margin-bottom: 48px; }
.center { text-align: center; }
.measure { max-width: var(--measure); }
.strike { text-decoration: line-through; text-decoration-color: var(--orange); }

/* ============================================================
   CAMPAIGN LANDING PAGE  —  /dinner/
   Scoped to the launch page; nothing here affects other pages.
   ============================================================ */

/* Sticky offer bar — slides in once the hero CTA is out of view */
.offerbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--forest);
  border-top: 1px solid var(--cream-hairline);
  transform: translateY(105%);
  transition: transform .45s var(--ease-quiet);
  padding: 12px var(--pad-x);
  box-shadow: 0 -10px 30px rgba(27, 58, 47, .22);
}
.offerbar.is-on { transform: translateY(0); }
.offerbar__in {
  max-width: var(--site-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 10px 22px; flex-wrap: wrap;
}
.offerbar__note {
  color: var(--cream); font-size: 14px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.offerbar__cd {
  color: var(--orange); font-size: 14px; font-weight: 700;
  font-variant-numeric: tabular-nums; letter-spacing: .06em;
}
.offerbar .btn { padding: 11px 22px; font-size: 15px; }

/* Hero offer block */
.cover--camp .cover__headline { font-size: clamp(38px, 6vw, 78px); }
.camp-offer { margin: 26px 0 6px; }
.camp-offer .promise__price { margin: 0; }
.cdown {
  margin-top: 10px; color: var(--green); font-weight: 700;
  font-size: 15px; letter-spacing: .05em; font-variant-numeric: tabular-nums;
}
.cdown:empty { display: none; }
.section--forest .cdown, .promise .cdown { color: var(--orange); }

/* Cook-once-eat-twice worked example */
.remix {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 26px;
  max-width: 900px; margin: 42px auto 0;
}
.remix__night { margin: 0; }
.remix__night img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-render); display: block;
  border: 1px solid var(--cream-hairline);
}
.remix__night figcaption {
  margin-top: 14px; color: var(--cream);
  font-size: 16px; font-weight: 600; line-height: 1.4;
}
.remix__night figcaption .no { display: block; margin-bottom: 6px; }
.remix__night figcaption em {
  display: block; margin-top: 6px; font-style: normal;
  font-weight: 400; font-size: 14px; color: var(--cream-dim);
}
.remix__arrow { color: var(--orange); font-size: 34px; line-height: 1; }
.remix__foot {
  text-align: center; color: var(--cream-dim);
  margin: 30px auto 0; max-width: 60ch; font-size: 16px;
}
@media (max-width: 720px) {
  .remix { grid-template-columns: 1fr; gap: 18px; }
  .remix__arrow { transform: rotate(90deg); justify-self: center; }
}

/* Proof stats */
.statbar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; padding: 30px 0;
  border-top: 1px solid var(--forest-hairline);
  border-bottom: 1px solid var(--forest-hairline);
}
.stat { text-align: center; }
.stat__n {
  display: block; font-family: inherit; font-weight: 800;
  font-size: clamp(30px, 4vw, 46px); color: var(--forest); line-height: 1;
}
.stat__l {
  display: block; margin-top: 8px; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--green);
}
@media (max-width: 620px) {
  .statbar { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
}

/* Testimonial rail (renders only when real quotes exist) */
.voices { margin-top: 46px; }
.voice {
  margin: 0; padding: 26px 24px; background: #fff;
  border-radius: var(--r-card); box-shadow: var(--shadow-card);
  border-top: 3px solid var(--orange);
}
.voice blockquote {
  margin: 0; font-size: 17px; line-height: 1.6; color: var(--forest);
}
.voice figcaption { margin-top: 16px; font-size: 14px; line-height: 1.5; }
.voice figcaption strong { display: block; color: var(--forest); }
.voice figcaption span { color: var(--green); }

/* Closing promise block */
.promise--close .promise__price { margin: 18px 0 0; }
.close__deadline {
  margin-top: 14px; color: var(--orange);
  font-size: 15px; font-weight: 600;
}

/* .beat is authored for forest sections (cream text). This variant lets the
   same markup sit on the cream background of the campaign outcomes section. */
.beats--light .beat h3 { color: var(--forest); }
.beats--light .beat p  { color: var(--green); }

/* .promise__was is cream (authored for the forest promise block). On the
   campaign hero it sits on cream, so it needs the dark-on-light treatment. */
.camp-offer .promise__was { color: var(--green); }

/* Exit capture — the near-miss net on /dinner/ */
.exitcap {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease-quiet), visibility .3s;
}
.exitcap.is-on { opacity: 1; visibility: visible; }
.exitcap__veil { position: absolute; inset: 0; background: rgba(27, 58, 47, .72); }
.exitcap__card {
  position: relative; z-index: 1;
  width: min(560px, 100%); max-height: 92vh; overflow-y: auto;
  background: var(--forest); color: var(--cream);
  border-radius: var(--r-card); border-top: 4px solid var(--orange);
  padding: 38px 36px 32px; text-align: center;
  box-shadow: 0 24px 60px rgba(27, 58, 47, .4);
  transform: translateY(14px) scale(.98);
  transition: transform .35s var(--ease-quiet);
}
.exitcap.is-on .exitcap__card { transform: none; }
.exitcap__card h2 {
  font-size: clamp(26px, 3.4vw, 36px); line-height: 1.05;
  color: var(--cream); margin: 12px 0 14px;
}
.exitcap__card > p {
  color: var(--cream-dim); font-size: 15.5px; line-height: 1.6;
  max-width: 44ch; margin: 0 auto;
}
.exitcap__photos {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin: 24px 0;
}
.exitcap__photos img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 10px; display: block;
}
.exitcap__card .btn--fill { width: 100%; justify-content: center; }
/* Newsletter popup: the capture form sits on the dark card, but .form-row's
   input and .form-ok are authored for cream backgrounds (green on forest is
   invisible). Scope them the way .section--forest already does. */
.exitcap__card .form-row { max-width: none; margin-top: 4px; }
.exitcap__card .form-row input[type="email"] { border-color: var(--cream); background: rgba(244,241,232,.97); }
.exitcap__card .exitcap__form .btn--fill { width: auto; flex: 0 0 auto; }
.exitcap__card .form-ok { color: var(--orange); }
.exitcap__no {
  display: block; margin: 16px auto 0; background: none; border: 0;
  color: var(--cream-dim); font: inherit; font-size: 14px;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
}
.exitcap__no:hover { color: var(--cream); }
.exitcap__x {
  position: absolute; top: 12px; right: 14px;
  background: none; border: 0; cursor: pointer;
  color: var(--cream-dim); font-size: 30px; line-height: 1;
  width: 40px; height: 40px;
}
.exitcap__x:hover { color: var(--orange); }
@media (max-width: 520px) {
  .exitcap__card { padding: 34px 22px 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .exitcap, .exitcap__card { transition: none; }
}
