/* =========================================================================
   The Golf Almanac — site styles
   Magazine-grade editorial layout. Calm, generous, restrained.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --green: #074834;
  --green-deep: #053a2a;
  --green-darker: #042a1f;
  --gold: #AF7D36;
  --gold-soft: #c79a5a;
  --parchment: #EFE4D0;
  --ivory: #FBF7EC;
  --ivory-warm: #F5EDD8;
  --ink: #2A1F0D;
  --ink-soft: #4a3e26;
  --hairline: rgba(42, 31, 13, 0.14);
  --hairline-gold: rgba(175, 125, 54, 0.45);

  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --container: 1240px;
  --container-narrow: 920px;

  --shadow-cover: 0 14px 28px -16px rgba(0, 0, 0, 0.35),
                  0 6px 12px -8px rgba(0, 0, 0, 0.25);
  --shadow-cover-hover: 0 22px 40px -18px rgba(0, 0, 0, 0.45),
                        0 10px 20px -10px rgba(0, 0, 0, 0.30);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: oldstyle-nums;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--green);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.125rem, 4.4vw, 2.625rem); line-height: 1.08; letter-spacing: -0.018em; font-weight: 600; }
h2 { font-size: clamp(1.875rem, 3.8vw, 2.25rem); line-height: 1.15; font-weight: 700; letter-spacing: -0.022em; }
h3 { font-family: var(--font-sans); font-size: 1.25rem; line-height: 1.3; font-weight: 600; color: var(--ink); }
p  { margin: 0 0 1em; text-wrap: pretty; }
em, .ed-italic { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.eyebrow.on-dark { color: var(--gold-soft); }

.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.7vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
}

.tnum { font-variant-numeric: tabular-nums; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container-narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(4rem, 8vw, 6.5rem); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

.bg-parchment { background: var(--parchment); }
.bg-ivory { background: var(--ivory); }
.bg-green { background: var(--green); color: var(--ivory); }
.bg-green h2, .bg-green h3, .bg-green h4 { color: var(--ivory); }
.bg-green-deep { background: var(--green-deep); color: var(--ivory); }
.bg-green-deep h2, .bg-green-deep h3 { color: var(--ivory); }

/* Section dividers — gold hairline with tiny ornament */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 0.9rem;
  color: var(--gold);
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  max-width: 320px;
}
.ornament::before, .ornament::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-gold), transparent);
}
.ornament svg { width: 14px; height: 14px; flex: none; }
.ornament.on-dark { color: var(--gold-soft); }
.ornament.on-dark::before, .ornament.on-dark::after {
  background: linear-gradient(90deg, transparent, rgba(199, 154, 90, 0.55), transparent);
}

/* ---------- Buttons / Links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.875rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}
.btn-gold {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #9a6c2c;
  border-color: #9a6c2c;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -10px rgba(0,0,0,0.35);
}
.btn-green {
  background: var(--green);
  color: var(--ivory);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
}
.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(251, 247, 236, 0.5);
}
.btn-ghost-light:hover {
  background: rgba(251, 247, 236, 0.08);
  border-color: var(--ivory);
}
.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: rgba(7, 72, 52, 0.35);
}
.btn-ghost:hover {
  background: rgba(7, 72, 52, 0.06);
  border-color: var(--green);
}

/* Text link with underline-from-left */
.tlink {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ivory);
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 220ms ease;
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; right: auto; bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(0.35);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.tlink:hover::after { transform: scaleX(1); }
.tlink-dark { color: var(--green); }
.tlink-dark::after { background: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background-color 260ms ease, padding 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-over-hero {
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.05));
}
.site-header.is-scrolled,
.site-header.is-static {
  background: var(--parchment);
  border-bottom-color: var(--hairline);
  padding: 0.625rem 0;
  box-shadow: 0 2px 18px -10px rgba(0,0,0,0.25);
}
.site-header .nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex; align-items: center;
  height: 40px;
  transition: height 220ms ease;
}
.brand img {
  height: 100%;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 220ms ease;
}
.site-header.is-scrolled .brand img,
.site-header.is-static .brand img { filter: none; }
.site-header.is-scrolled .brand,
.site-header.is-static .brand { height: 34px; }
.brand-fallback {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ivory);
}
.site-header.is-scrolled .brand-fallback,
.site-header.is-static .brand-fallback { color: var(--green); }

.primary-nav { display: flex; align-items: center; gap: 0.25rem; }
.primary-nav a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--ivory);
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  transition: color 200ms ease, background-color 200ms ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.primary-nav a:hover { color: var(--gold-soft); }
.site-header.is-scrolled .primary-nav a,
.site-header.is-static .primary-nav a {
  color: var(--ink);
  text-shadow: none;
}
.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-static .primary-nav a:hover {
  color: var(--green);
  background: rgba(7, 72, 52, 0.06);
}

.nav-cta {
  margin-left: 0.5rem;
  background: var(--gold);
  color: var(--ivory) !important;
  text-shadow: none !important;
  padding: 0.625rem 1.125rem !important;
  border-radius: 999px;
  font-weight: 500 !important;
  transition: background-color 220ms ease, transform 220ms ease;
  border: 1px solid var(--gold);
}
.nav-cta:hover {
  background: #9a6c2c !important;
  color: var(--ivory) !important;
  transform: translateY(-1px);
}
.site-header.is-scrolled .nav-cta,
.site-header.is-static .nav-cta { color: var(--ivory) !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(251, 247, 236, 0.4);
  color: var(--ivory);
  width: 44px; height: 44px;
  border-radius: 999px;
  align-items: center; justify-content: center;
}
.site-header.is-scrolled .nav-toggle,
.site-header.is-static .nav-toggle { color: var(--ink); border-color: var(--hairline); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-darker);
  color: var(--ivory);
  isolation: isolate;
}
.hero-photo {
  position: absolute; inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  line-height: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
}

/* Hero photo: no motion — quiet confidence per the brief. */
/* (the hero now uses <picture>; the old hidden <img> rule is gone) */
.hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 30, 22, 0.94) 0%,
      rgba(4, 30, 22, 0.88) 18%,
      rgba(4, 30, 22, 0.55) 38%,
      rgba(4, 30, 22, 0.18) 55%,
      rgba(4, 30, 22, 0) 70%
    );
}
.hero-scrim::after {
  /* very subtle vignette top + bottom on the dark side */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), transparent 30%, transparent 75%, rgba(0,0,0,0.22));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}
.hero-copy { max-width: 540px; }
.hero h1 {
  color: var(--ivory);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero h1 .ital { font-style: italic; font-weight: 500; color: var(--gold-soft); letter-spacing: -0.02em; }
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  line-height: 1.55;
  color: rgba(251, 247, 236, 0.92);
  margin: 0 0 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  max-width: 460px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center;
}
.hero-meta {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 0.9rem;
  color: rgba(251, 247, 236, 0.75);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-meta .rule { display: inline-block; width: 28px; height: 1px; background: var(--gold); }

/* External-link arrow icon */
.btn-gold .arrow,
.tlink .arrow { display: inline-block; transition: transform 220ms ease; }
.btn-gold:hover .arrow { transform: translateX(2px) translateY(-2px); }
.tlink:hover .arrow { transform: translateX(3px); }

/* ---------- Stat strip ---------- */
.stat-band {
  background: var(--green);
  color: var(--ivory);
  position: relative;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-block: 1px solid rgba(175, 125, 54, 0.18);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}
.stat {
  text-align: left;
  position: relative;
  padding-left: 1.25rem;
}
.stat::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4rem; bottom: 0.4rem;
  width: 1px;
  background: rgba(175, 125, 54, 0.5);
}
.stat-num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 4.4vw, 3rem);
  line-height: 1;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.stat-num .plus { font-size: 0.7em; margin-left: 0.05em; color: var(--gold-soft); }
.stat-num .pct  { font-size: 0.55em; margin-left: 0.1em; color: var(--gold-soft); font-weight: 400; }
.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(251, 247, 236, 0.85);
  font-weight: 400;
  max-width: 18ch;
}

/* Gold underline that draws when the count-up lands. */
.stat-rule {
  display: block;
  height: 1px;
  width: 56px;
  margin: 0.65rem 0 0;
  background: var(--gold-soft);
  transform-origin: left center;
  transform: scaleX(1);
}
html.has-js .stat-rule {
  transform: scaleX(0);
  transition: transform 1100ms cubic-bezier(.2,.7,.2,1);
}
html.has-js .stat-band.is-counted .stat-rule { transform: scaleX(1); }
.stat-band.is-counted .stat:nth-child(1) .stat-rule { transition-delay: 0ms; }
.stat-band.is-counted .stat:nth-child(2) .stat-rule { transition-delay: 200ms; }
.stat-band.is-counted .stat:nth-child(3) .stat-rule { transition-delay: 400ms; }
.stat-band.is-counted .stat:nth-child(4) .stat-rule { transition-delay: 600ms; }
.stat-label { margin-top: 0.5rem; }

/* ---------- Editorial sections ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.split .section-title { padding-top: 0.5rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title .kicker {
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
}
.body-prose p { font-size: 1.0625rem; line-height: 1.7; color: var(--ink); margin-bottom: 1.1em; max-width: 62ch; }
.body-prose p:last-child { margin-bottom: 0; }

/* Pull figures inline with text */
.inline-figs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
.inline-fig .num {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.inline-fig .lbl {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* ---------- Featured writer ---------- */
.writer {
  background: var(--ivory);
  position: relative;
  overflow-x: clip;
}
.writer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.writer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.4;
  color: var(--green);
  margin: 0 0 1.75rem;
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}
.writer-attr {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
}
.writer-attr .name { font-weight: 600; color: var(--green); display: block; margin-bottom: 0.1rem; font-size: 1rem; }
.writer-attr .cred { color: var(--ink-soft); }

/* Large editorial portrait — square crop, full face visible, magazine masthead feel. */
.writer-portrait-large {
  margin: 0;
  position: relative;
  display: block;
}
.writer-portrait-large picture {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-gold);
  box-shadow:
    0 18px 40px -22px rgba(0,0,0,0.35),
    0 6px 14px -10px rgba(0,0,0,0.18);
}
.writer-portrait-large picture::before {
  /* Gold accent strip across the top — echoes the .award-card detail we replaced. */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  z-index: 2;
}
.writer-portrait-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.writer-portrait-large figcaption {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.writer-portrait-large .badge {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.writer-portrait-large .cap-name {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--green);
  font-size: 1.0625rem;
  line-height: 1.3;
}

@media (max-width: 960px) {
  .writer-portrait-large { max-width: 360px; margin: 0 auto; }
}

.award-card {
  background: var(--parchment);
  border: 1px solid var(--hairline);
  padding: 2rem 1.75rem;
  position: relative;
}
.award-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--gold);
}
.award-card .eyebrow { margin-bottom: 0.75rem; }
.award-card h3 { font-family: var(--font-serif); color: var(--green); font-weight: 500; font-size: 1.25rem; line-height: 1.25; margin-bottom: 0.625rem; }
.award-card p { font-size: 0.9375rem; color: var(--ink-soft); margin-bottom: 1.25rem; line-height: 1.55; }
.award-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.8125rem;
  color: var(--ink-soft);
}
.award-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.award-meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; display: inline-block; }

/* Featured Writer — Award card slides in from the right after the quote settles. */
html.has-js .writer [data-reveal] .award-card {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 1300ms ease-out, transform 1500ms cubic-bezier(.2,.7,.2,1);
}
html.has-js .writer [data-reveal].is-revealed .award-card {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1100ms;
}

/* ---------- Past editions ---------- */
.covers-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.covers-head .left { max-width: 620px; }
.covers-head h2 { margin-bottom: 0.5rem; }
.covers-head p { color: var(--ink-soft); font-size: 1rem; margin: 0; max-width: 50ch; }

.covers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
}
.cover {
  display: block;
  position: relative;
  aspect-ratio: 1725 / 2625;
  background: var(--ivory-warm);
  box-shadow: var(--shadow-cover);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease;
  overflow: hidden;
}
.cover picture {
  display: block;
  width: 100%;
  height: 100%;
}
.cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.cover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-cover-hover);
}
.cover:hover img { transform: scale(1.02); }
.cover-caption {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--ink-soft);
}
.cover-caption .ed-name {
  display: block;
  color: var(--green);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  margin-bottom: 0.15rem;
}

.covers-foot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex; justify-content: center;
}

/* Past-editions fan-in — staggered tilt that settles to flat. */
html.has-js [data-cover-fan] .cover {
  opacity: 0;
  transform: translateY(44px) rotate(var(--cover-rot, 0deg)) scale(0.94);
  filter: blur(1.5px);
  transition:
    opacity 1400ms ease-out,
    transform 1600ms cubic-bezier(.2,.7,.2,1),
    filter 1400ms ease-out,
    box-shadow 320ms ease;
  transition-delay: calc(var(--cover-i, 0) * 300ms);
}
html.has-js [data-cover-fan].is-fanned .cover {
  filter: blur(0);
}
html.has-js [data-cover-fan].is-fanned .cover {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}
/* Hover lift stays on top of the entrance transition */
html.has-js [data-cover-fan].is-fanned .cover:hover {
  transform: translateY(-6px);
  transition-delay: 0ms;
}
.covers-foot {
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.how-item {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-gold);
}
.how-item .num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.625rem;
  display: block;
}
.how-item h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.how-item p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.how-foot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 1.25rem 2rem;
}
.how-foot p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--ink);
  margin: 0;
  max-width: 48ch;
  text-align: right;
}

/* How it works — sequential reveal of the four step cards.
   Each card lifts in, with its big italic numeral arriving slightly later. */
html.has-js [data-how-stagger] .how-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1300ms ease-out, transform 1500ms cubic-bezier(.2,.7,.2,1);
}
html.has-js [data-how-stagger] .how-item .num {
  opacity: 0;
  transform: translateY(16px);
  display: block;
  transition: opacity 1100ms ease-out, transform 1300ms cubic-bezier(.2,.7,.2,1);
}
html.has-js [data-how-stagger].is-stepped .how-item { opacity: 1; transform: none; }
html.has-js [data-how-stagger].is-stepped .how-item .num { opacity: 1; transform: none; }

html.has-js [data-how-stagger].is-stepped .how-item:nth-child(1) { transition-delay: 0ms; }
html.has-js [data-how-stagger].is-stepped .how-item:nth-child(2) { transition-delay: 600ms; }
html.has-js [data-how-stagger].is-stepped .how-item:nth-child(3) { transition-delay: 1200ms; }
html.has-js [data-how-stagger].is-stepped .how-item:nth-child(4) { transition-delay: 1800ms; }

html.has-js [data-how-stagger].is-stepped .how-item:nth-child(1) .num { transition-delay: 600ms; }
html.has-js [data-how-stagger].is-stepped .how-item:nth-child(2) .num { transition-delay: 1200ms; }
html.has-js [data-how-stagger].is-stepped .how-item:nth-child(3) .num { transition-delay: 1800ms; }
html.has-js [data-how-stagger].is-stepped .how-item:nth-child(4) .num { transition-delay: 2400ms; }

/* ---------- Endorsements ---------- */
.endorsement {
  background: var(--green);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.endorsement::before, .endorsement::after {
  /* corner ornaments — faint gold botanical flourishes */
  content: "";
  position: absolute;
  width: 140px; height: 140px;
  border: 1px solid rgba(175, 125, 54, 0.25);
  pointer-events: none;
}
.endorsement::before { top: 2rem; left: 2rem; border-right: none; border-bottom: none; }
.endorsement::after  { bottom: 2rem; right: 2rem; border-left: none; border-top: none; }

.endorsement-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.endorsement .eyebrow { color: var(--gold-soft); }
.endorsement-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  line-height: 1.45;
  color: var(--ivory);
  margin: 0 auto 2rem;
  text-wrap: pretty;
  position: relative;
}
/* h2 weight/letter-spacing unified at the base; no per-section overrides needed. */
.endorsement-quote::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
.endorsement-attr {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.endorsement-attr .name {
  display: block;
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.endorsement-attr .role { color: rgba(251, 247, 236, 0.85); }
.endorsement-others {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(175, 125, 54, 0.2);
  display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem; justify-content: center;
  font-size: 0.875rem;
  color: rgba(251, 247, 236, 0.78);
}
.endorsement-others .item { display: inline-flex; align-items: baseline; gap: 0.5rem; }
.endorsement-others .name { color: var(--gold-soft); font-weight: 500; }

.endorsement-heading {
  color: var(--ivory);
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 26ch;
}

/* Endorsement carousel — Letter of Endorsement, with signature row. */

/* The stage uses a single grid cell that all cards share, so the stage
   auto-sizes to whichever quote is tallest and cards crossfade in place. */
.endorsement-stage {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 760px;
}
.endorsement-card {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1200ms ease-out, transform 1300ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  visibility: hidden;
}
.endorsement-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.endorsement-card .endorsement-quote { margin: 0 auto 1.75rem; }
.endorsement-card .endorsement-attr  { text-align: center; }

/* Signature row — magazine-letter signatures, each clickable. */
.endorsement-signatures {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: clamp(2.75rem, 5vw, 3.75rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(175, 125, 54, 0.2);
}
.endorsement-sig {
  position: relative;
  background: transparent;
  border: 0;
  padding: 0.25rem 0 1.25rem;
  text-align: center;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: color 300ms ease;
}
.endorsement-sig .sig-name {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(251, 247, 236, 0.78);
  margin-bottom: 0.2rem;
  letter-spacing: -0.005em;
  transition: color 320ms ease;
  line-height: 1.2;
}
.endorsement-sig .sig-role {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(251, 247, 236, 0.55);
  text-transform: none;
  line-height: 1.4;
  transition: color 320ms ease;
}
/* Baseline hairline beneath each signature */
.endorsement-sig::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 44px;
  height: 1px;
  background: rgba(175, 125, 54, 0.28);
  transform: translateX(-50%);
}
/* Gold rule that draws in when the signature is active */
.endorsement-sig .sig-rule {
  position: absolute;
  left: 50%; bottom: 0;
  width: 44px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 720ms cubic-bezier(.2,.7,.2,1);
}
.endorsement-sig.is-active .sig-name { color: var(--gold-soft); }
.endorsement-sig.is-active .sig-role { color: rgba(251, 247, 236, 0.85); }
.endorsement-sig.is-active .sig-rule { transform: translateX(-50%) scaleX(1); }
.endorsement-sig:hover .sig-name { color: var(--gold-soft); }
.endorsement-sig:not(.is-active):hover .sig-rule { transform: translateX(-50%) scaleX(0.5); }
.endorsement-sig:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

/* Initial staged reveal of the whole section (one-time on scroll-into-view).
   The carousel itself fades in as a single unit; the active card is already
   visible inside via .is-active. */
html.has-js [data-endorsement-reveal] .eyebrow,
html.has-js [data-endorsement-reveal] .endorsement-heading,
html.has-js [data-endorsement-reveal] .endorsement-stage,
html.has-js [data-endorsement-reveal] .endorsement-signatures {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1000ms ease-out, transform 1100ms cubic-bezier(.2,.7,.2,1);
}
html.has-js [data-endorsement-reveal].is-endorsement-revealed .eyebrow             { opacity: 1; transform: none; transition-delay: 0ms; }
html.has-js [data-endorsement-reveal].is-endorsement-revealed .endorsement-heading  { opacity: 1; transform: none; transition-delay: 220ms; }
html.has-js [data-endorsement-reveal].is-endorsement-revealed .endorsement-stage   { opacity: 1; transform: none; transition-delay: 620ms; }
html.has-js [data-endorsement-reveal].is-endorsement-revealed .endorsement-signatures { opacity: 1; transform: none; transition-delay: 1280ms; }

/* Inside the active card on initial reveal, draw the active signature's rule
   slightly later so the eye is led from quote → signature. */
html.has-js [data-endorsement-reveal] .endorsement-sig .sig-rule {
  transition-delay: 0ms;
}
html.has-js [data-endorsement-reveal].is-endorsement-revealed .endorsement-sig.is-active .sig-rule {
  transition-delay: 1450ms;
}

/* Mobile signature row — stack 2x2 */
@media (max-width: 720px) {
  .endorsement-signatures { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1rem; }
  .endorsement-card .endorsement-quote { font-size: 1.125rem; line-height: 1.5; }
}

/* ---------- Specs preview ---------- */
.specs-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.specs-rates {
  background: var(--ivory);
  border: 1px solid var(--hairline);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
}
.specs-rates::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--gold);
}
.specs-rates .head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 0.875rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--hairline);
}
.specs-rates .head h3 {
  font-family: var(--font-serif);
  color: var(--green);
  font-weight: 500;
  font-size: 1.125rem;
  margin: 0;
}
.specs-rates .head small { font-size: 0.75rem; color: var(--ink-soft); letter-spacing: 0.05em; text-transform: uppercase; }
.rate-list { list-style: none; padding: 0; margin: 0; }
.rate-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dotted var(--hairline);
  font-size: 0.9375rem;
  color: var(--ink);
  align-items: baseline;
}
.rate-list li:last-child { border-bottom: none; }
.rate-list .price { font-family: var(--font-serif); font-weight: 500; color: var(--green); font-variant-numeric: tabular-nums; }
.rate-list .note  { color: var(--gold); font-style: italic; font-family: var(--font-serif); font-size: 0.8125rem; margin-left: 0.5rem; }
.specs-rates .foot { margin-top: 1rem; font-size: 0.8125rem; color: var(--ink-soft); font-style: italic; }

/* Specs — "what's included" panel (replaces published rates) */
.specs-included {
  background: var(--ivory);
  border: 1px solid var(--hairline);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
}
.specs-included::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--gold);
}
.specs-included .head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 0.875rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--hairline);
  gap: 1rem;
}
.specs-included .head h3 {
  font-family: var(--font-serif);
  color: var(--green);
  font-weight: 500;
  font-size: 1.125rem;
  margin: 0;
}
.specs-included .head small {
  font-size: 0.75rem; color: var(--ink-soft);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.included-list { list-style: none; padding: 0; margin: 0; }
.included-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px dotted var(--hairline);
  align-items: start;
}
.included-list li:last-child { border-bottom: none; }
.included-list strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--green);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.included-list span:not(.check) {
  display: block;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.included-list .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(175, 125, 54, 0.12);
  color: var(--gold);
  margin-top: 2px;
  flex: none;
}
.included-list .check svg { width: 12px; height: 12px; }
.specs-included .foot {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ===========================================================================
   FAQ PAGE — magazine-style Q&A column
   ========================================================================= */

/* Active nav link (shared with any future subpage) */
.primary-nav a[aria-current="page"] {
  color: var(--gold-soft);
  background-color: rgba(175, 125, 54, 0.12);
}
/* On parchment headers (subpages), the active link uses deeper gold + green wash
   so it reads cleanly against the warm light background. */
.site-header.is-scrolled .primary-nav a[aria-current="page"],
.site-header.is-static .primary-nav a[aria-current="page"] {
  color: var(--gold);
  background-color: rgba(7, 72, 52, 0.08);
}

/* FAQ hero — small parchment band, no photo */
.faq-hero {
  background: var(--parchment);
  padding: clamp(5rem, 11vw, 7.5rem) 0 clamp(3.5rem, 7vw, 5rem);
  text-align: center;
  position: relative;
}
.faq-hero .ornament { margin-bottom: 2rem; }
.faq-hero .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
}
.faq-hero h1 {
  max-width: 18ch;
  margin: 0 auto 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 700;
}
.faq-hero .lede {
  max-width: 52ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.5;
}

/* Sticky section navigation */
.faq-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 236, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid var(--hairline-gold);
  border-bottom: 1px solid var(--hairline-gold);
  padding: 0.75rem 0;
}
.faq-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.faq-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--hairline-gold);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: transparent;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}
.faq-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.faq-pill.is-current {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--ivory);
}

/* FAQ section heads */
.faq-section { padding-block: clamp(4rem, 8vw, 6rem); }
.faq-section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.faq-section-head .eyebrow { margin-bottom: 0.75rem; }
.faq-section-head h2 {
  max-width: 28ch;
  margin: 0 auto;
}

/* FAQ Q&A column */
.faq-column {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  padding: clamp(1.75rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--hairline-gold);
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline-gold); }
.faq-item:target {
  /* Light highlight when arriving from an anchor link */
  background:
    linear-gradient(to right, transparent, rgba(175, 125, 54, 0.06) 8%, rgba(175, 125, 54, 0.06) 92%, transparent);
}
.faq-question {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--green);
  font-size: clamp(1.1875rem, 2.1vw, 1.4375rem);
  line-height: 1.25;
  letter-spacing: -0.008em;
  margin: 0 0 0.875rem;
}
.faq-answer {
  font-family: var(--font-sans);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-answer p { margin: 0; max-width: 62ch; }
.faq-answer p + p { margin-top: 0.9rem; }
.faq-answer a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--hairline-gold);
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
.faq-answer a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* Still-asking row at the end of Logistics */
.faq-still-asking {
  max-width: 720px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  padding-top: clamp(2.5rem, 4vw, 3rem);
  border-top: 1px solid var(--hairline-gold);
  text-align: center;
}
.faq-still-asking p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin: 0;
}
.faq-still-asking a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: color 200ms ease;
}
.faq-still-asking a:hover { color: var(--gold); }

/* Mobile tuning */
@media (max-width: 720px) {
  .faq-pill { padding: 0.45rem 0.875rem; font-size: 0.75rem; }
  .faq-nav-inner { gap: 0.4rem; }
  .faq-question { font-size: 1.1875rem; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--green-deep);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 6.5rem);
}
.final-cta h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--ivory);
  font-size: clamp(1.875rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto 1rem;
}
.final-cta .lede {
  color: rgba(251, 247, 236, 0.85);
  max-width: 52ch;
  margin: 0 auto 2.25rem;
}
.final-cta .actions { display: inline-flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ivory);
  color: var(--ink);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.footer-nap .brand-mark {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.footer-nap .brand-mark img { height: 32px; width: auto; display: block; }
.footer-nap address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.footer-nap a { color: var(--green); }
.footer-nap a:hover { color: var(--gold); }
.footer-nap .lic { font-size: 0.8125rem; color: var(--ink-soft); margin-top: 0.75rem; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--hairline);
  color: var(--green);
  border-radius: 8px;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.footer-socials a:hover { background: var(--green); color: var(--ivory); border-color: var(--green); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.9375rem;
  color: var(--ink);
  transition: color 200ms ease;
}
.footer-col a:hover { color: var(--green); }

/* Buy Now button (Authorize.net) + disclaimer — bottom-left row above legal info */
.footer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  padding-top: 1.75rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid var(--hairline);
}
.footer-buy-now {
  margin: 0;
  line-height: 0;
  flex: none;
}
.footer-buy-now input[type="image"] {
  display: inline-block;
  height: auto;
  border: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}
.footer-buy-now input[type="image"]:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.footer-buy-now input[type="image"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.footer-buy-disclaimer {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
  flex: 1 1 240px;
}
.footer-buy-disclaimer a {
  font-size: inherit;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 0.5px;
  transition: color 200ms ease;
}
.footer-buy-disclaimer a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 0.25rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--green); }

/* ---------- Reveal animations ---------- */
.is-pre-reveal { opacity: 0; transform: translateY(20px); }
.is-revealed   {
  opacity: 1; transform: translateY(0);
  transition: opacity 900ms ease-out, transform 1000ms cubic-bezier(.2,.7,.2,1);
}

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
  .split { grid-template-columns: 1fr; gap: 1.5rem; }
  .writer-card { grid-template-columns: 1fr; }
  .covers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .specs-grid { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-nap { grid-column: 1 / -1; }
  .inline-figs { grid-template-columns: 1fr; gap: 1rem; }
  .inline-fig { padding-top: 1rem; border-top: 1px solid var(--hairline); }
  .inline-fig:first-child { padding-top: 0; border-top: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: 0;
    background: var(--parchment);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(.2,.7,.2,1);
    z-index: 99;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a {
    color: var(--ink) !important;
    text-shadow: none !important;
    font-size: 1.125rem;
    padding: 0.875rem 0 !important;
    width: 100%;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-cta {
    margin-top: 1.5rem;
    margin-left: 0 !important;
    width: 100%;
    text-align: center;
    border: 1px solid var(--gold) !important;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .hero-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(4, 30, 22, 0.85) 0%,
        rgba(4, 30, 22, 0.7) 35%,
        rgba(4, 30, 22, 0.45) 60%,
        rgba(4, 30, 22, 0.2) 80%,
        rgba(4, 30, 22, 0.1) 100%
      );
  }
  .hero-photo { background-position: 60% center; }
  .hero-inner { padding-top: 6rem; padding-bottom: 5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 0.875rem; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas .tlink { text-align: center; padding-top: 0.5rem; }

  .covers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
  .how-grid { grid-template-columns: 1fr; }
  .how-foot { flex-direction: column; align-items: flex-start; }
  .how-foot p { text-align: left; max-width: 100%; }
  .endorsement::before, .endorsement::after { width: 60px; height: 60px; }
  .endorsement::before { top: 1rem; left: 1rem; }
  .endorsement::after { bottom: 1rem; right: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; flex-direction: column; gap: 0.5rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .cover:hover { transform: none; }
  .cover:hover img { transform: none; }
  .btn:hover { transform: none; }
  .is-pre-reveal { opacity: 1; transform: none; }
  html.has-js [data-cover-fan] .cover,
  html.has-js [data-endorsement-reveal] .eyebrow,
  html.has-js [data-endorsement-reveal] .endorsement-heading,
  html.has-js [data-endorsement-reveal] .endorsement-stage,
  html.has-js [data-endorsement-reveal] .endorsement-signatures,
  html.has-js [data-endorsement-reveal] .endorsement-card.is-active {
    opacity: 1 !important;
    transform: none !important;
  }
  html.has-js [data-endorsement-reveal] .endorsement-sig.is-active .sig-rule {
    transform: translateX(-50%) scaleX(1) !important;
  }
  html.has-js .stat-rule { transform: scaleX(1) !important; }
  html.has-js [data-how-stagger] .how-item,
  html.has-js [data-how-stagger] .how-item .num,
  html.has-js .writer [data-reveal] .award-card {
    opacity: 1 !important;
    transform: none !important;
  }
  html.has-js [data-cover-fan] .cover { filter: none !important; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .nav-toggle, .hero-scrim, .final-cta .btn { display: none; }
  body { background: #fff; color: #000; }
}



/* ===========================================================================
   ADVERTISE PAGE
   ========================================================================= */

/* Hero photo position — clubhouse-reader subject is on the right side */
.advertise-hero .hero-photo img {
  object-position: 60% center;
}
@media (max-width: 720px) {
  .advertise-hero .hero-photo img {
    object-position: 72% center;
  }
}

/* ---------- Print is back — two-column editorial argument ---------- */
.print-back-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 1080px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  position: relative;
}
.print-back-grid::before {
  /* Thin gold hairline between columns on desktop only */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--hairline-gold);
}
.print-back-col h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  letter-spacing: -0.012em;
  color: var(--green);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}
.print-back-col p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1rem;
  max-width: 48ch;
}
.print-back-col p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .print-back-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .print-back-grid::before { display: none; }
  .print-back-col + .print-back-col {
    padding-top: 2.5rem;
    border-top: 1px solid var(--hairline-gold);
  }
}

/* ---------- What's included — 4 cards in a row with serif numerals ---------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-top: clamp(3rem, 5vw, 4rem);
}
.included-card {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-gold);
}
.included-card .num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.625rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.included-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1.25;
  color: var(--green);
  margin: 0 0 0.75rem;
  letter-spacing: -0.008em;
}
.included-card p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 980px) {
  .included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
}
@media (max-width: 520px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* Pricing hint — small editorial callout below the cards */
.pricing-hint {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 720px;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-gold);
}
.pricing-hint .eyebrow { display: inline-block; margin-bottom: 0.75rem; }
.pricing-hint p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.pricing-hint a {
  color: var(--green);
  /* Inherit the surrounding italic serif so the link reads as part of the sentence,
     not as a button pasted into it. */
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--hairline-gold);
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
.pricing-hint a:hover { color: var(--gold); text-decoration-color: var(--gold); }

/* ---------- Advertiser testimonials — 2x2 grid of editorial cards ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2rem);
  max-width: 1080px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
}
.testimonial-card {
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-gold);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 2px;
}
.testimonial-card .stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
}
.testimonial-card .stars svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  quotes: "\201C" "\201D";
}
.testimonial-card blockquote::before {
  content: open-quote;
  color: var(--gold);
  font-weight: 600;
  margin-right: 2px;
}
.testimonial-card blockquote::after { content: close-quote; color: var(--gold); }
.testimonial-card footer {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hairline-gold);
}
.testimonial-card footer .name {
  font-weight: 600;
  color: var(--green);
  font-size: 0.9375rem;
}
.testimonial-card footer .role { color: var(--ink-soft); }
.testimonial-card footer .source {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.1rem;
}
@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---------- Lead form ---------- */
.advertise-form { scroll-margin-top: 80px; }
.advertise-form .form-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}
.advertise-form .form-head h2 {
  margin: 0.5rem 0 1rem;
}
.advertise-form .form-head .lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.advertise-form-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid var(--hairline-gold);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 3px;
  box-shadow:
    0 24px 50px -32px rgba(0,0,0,0.25),
    0 8px 16px -12px rgba(0,0,0,0.12);
}

/* Honeypot — visually hidden but available to bots */
.hp-field {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-row-full { grid-template-columns: 1fr; }
@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--green);
  text-transform: uppercase;
}
.form-field .req { color: var(--gold); margin-left: 0.15rem; }

.form-field input,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--parchment);
  border: 1px solid var(--hairline-gold);
  padding: 0.75rem 0.9rem;
  border-radius: 3px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.form-field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }

.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--gold);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(175, 125, 54, 0.18);
}
.form-field input:invalid:not(:placeholder-shown),
.form-field input.is-invalid {
  border-color: rgba(180, 60, 40, 0.6);
}

.cf-turnstile-placeholder {
  /* Turnstile mounts here. When empty (no key set), this collapses to zero height. */
  margin: 0.5rem 0 0;
}
.cf-turnstile-placeholder:empty { display: none; }

.form-submit-row {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.form-submit { font-size: 1rem; padding: 1rem 1.75rem; }
.form-privacy {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 28ch;
}
@media (max-width: 580px) {
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit { width: 100%; }
  .form-privacy { text-align: center; }
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  border-radius: 3px;
  border: 1px solid;
}
.form-message-success {
  background: rgba(7, 72, 52, 0.06);
  border-color: var(--green);
  color: var(--green-deep);
}
.form-message-error {
  background: rgba(180, 60, 40, 0.06);
  border-color: rgba(180, 60, 40, 0.5);
  color: rgb(120, 40, 26);
}
.form-message a { color: inherit; text-decoration: underline; }


/* ---------- Hero scroll cue (subtle, editorial "continue reading" affordance) ---------- */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: rgba(251, 247, 236, 0.7);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: color 240ms ease, transform 240ms ease;
  /* Slow loop on the whole element so it appears after the hero text settles. */
  animation: hero-cue-fade-in 1200ms ease-out 1800ms both;
}
.hero-scroll-cue:hover {
  color: var(--gold-soft);
  transform: translate(-50%, 2px);
}
.hero-scroll-cue:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 6px;
  border-radius: 2px;
}
.hero-scroll-cue .cue-line {
  display: block;
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(175,125,54,0) 100%);
  transform-origin: top center;
  animation: hero-cue-pulse 2400ms cubic-bezier(.4,0,.2,1) infinite;
}
.hero-scroll-cue:hover .cue-line { background: linear-gradient(to bottom, var(--gold-soft) 0%, rgba(214,170,79,0) 100%); }

@keyframes hero-cue-fade-in {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes hero-cue-pulse {
  0%   { transform: scaleY(0.7); opacity: 0.55; }
  50%  { transform: scaleY(1);   opacity: 1; }
  100% { transform: scaleY(0.7); opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue,
  .hero-scroll-cue .cue-line {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .hero-scroll-cue { font-size: 0.625rem; gap: 0.45rem; bottom: 1rem; }
  .hero-scroll-cue .cue-line { height: 28px; }
}

/* ---------- Turnstile widget container — give it a touch of breathing room ---------- */
.cf-turnstile-placeholder { margin: 0.75rem 0 0; }
.cf-turnstile-placeholder:has(.cf-turnstile:empty) { display: none; }


/* ===========================================================================
   SPECS PAGE — ad sizing, submission specs, design desk callout
   ========================================================================= */

.specs-section { padding-block: clamp(4rem, 8vw, 6rem); }
.specs-intro {
  max-width: 64ch;
  margin: 1.25rem auto 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}
.specs-intro strong {
  font-weight: 600;
  color: var(--green);
}

/* ---------- Sizes grid ---------- */
.sizes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1180px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
}
@media (max-width: 960px) {
  .sizes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .sizes-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.size-card {
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-gold);
  border-radius: 3px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  scroll-margin-top: 80px;
}
.size-card:target {
  outline: 2px solid var(--gold);
  outline-offset: -1px;
}

/* SVG diagram — bleed area dark, dashed gold = live area */
.size-diagram-wrap {
  display: flex; align-items: center; justify-content: center;
  /* Reserve a consistent height so cards align in their rows */
  min-height: 200px;
  background: var(--parchment);
  border-radius: 2px;
  padding: 0.75rem;
}
.size-diagram {
  display: block;
  width: 100%;
  max-height: 220px;
  height: auto;
  object-fit: contain;
}
/* Logo splash is tiny — show it at a more sensible scale */
.size-diagram-noBleed {
  max-width: 130px;
}

.size-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.size-meta h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--green);
  margin: 0;
  letter-spacing: -0.008em;
}
.size-dims {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.25rem 1rem;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}
.size-dims > div {
  display: contents;
}
.size-dims dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  align-self: center;
}
.size-dims dd {
  margin: 0;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.size-note {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hairline);
}

/* ---------- Submit grid ---------- */
.submit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 1000px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
}
@media (max-width: 800px) {
  .submit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.submit-col h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--green);
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hairline-gold);
  letter-spacing: -0.005em;
}
.submit-col p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.spec-list li {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.spec-list strong { color: var(--green); font-weight: 600; }
.spec-list code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.875em;
  background: rgba(7, 72, 52, 0.06);
  border: 1px solid rgba(7, 72, 52, 0.12);
  padding: 0.05em 0.4em;
  border-radius: 3px;
  color: var(--green);
  word-break: break-all;
}
.spec-list a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--hairline-gold);
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
.spec-list a:hover { color: var(--gold); text-decoration-color: var(--gold); }

/* Ordered version — numbered with serif italic numerals */
.spec-list-ordered { counter-reset: spec; }
.spec-list-ordered li {
  padding-left: 2.25rem;
  counter-increment: spec;
}
.spec-list-ordered li::before {
  content: counter(spec);
  background: transparent;
  width: auto; height: auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--gold);
  border-radius: 0;
  top: 0; left: 0;
}

/* ---------- Canva block (full-section in its own H2 section) ---------- */
.canva-block {
  max-width: 760px;
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  padding: clamp(2rem, 4vw, 2.75rem);
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-gold);
  border-radius: 3px;
  position: relative;
}
.canva-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}
.canva-steps {
  gap: 1rem;
}

/* Inline UI labels — visually marks the buttons / menus the reader will click in Canva */
.ui {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.005em;
  color: var(--green);
  background: rgba(7, 72, 52, 0.07);
  padding: 0.12em 0.5em;
  border-radius: 3px;
  border: 1px solid rgba(7, 72, 52, 0.12);
  white-space: nowrap;
}

/* ---------- Design Desk card ---------- */
.design-desk-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-gold);
  border-radius: 3px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  align-items: center;
  position: relative;
}
.design-desk-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}
.design-desk-copy .eyebrow { display: inline-block; margin-bottom: 0.75rem; }
.design-desk-copy h2 {
  margin: 0 0 1rem;
  max-width: 18ch;
}
.design-desk-copy p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
.design-desk-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-left: clamp(1rem, 3vw, 2rem);
  border-left: 1px solid var(--hairline-gold);
}
.contact-block { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.125rem, 1.8vw, 1.3125rem);
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 200ms ease;
}
.contact-value:hover { color: var(--gold); }

@media (max-width: 760px) {
  .design-desk-card {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .design-desk-contact {
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: 0;
    border-top: 1px solid var(--hairline-gold);
  }
}


/* ===========================================================================
   REVIEWS PAGE
   ========================================================================= */

.reviews-section { padding-block: clamp(4rem, 8vw, 6rem); }
.reviews-intro {
  max-width: 60ch;
  margin: 1.25rem auto 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}

/* ---------- PGA endorsements — magazine-letter cards in a column ---------- */
.endorsements-column {
  max-width: 780px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.endorsement-letter {
  position: relative;
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--hairline-gold);
}
.endorsement-letter:last-child { border-bottom: 0; padding-bottom: 0; }

.endorsement-letter .letter-mark {
  position: absolute;
  top: -0.7rem;
  left: -0.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(5rem, 9vw, 7rem);
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}
.endorsement-letter blockquote {
  position: relative;
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.0625rem, 1.7vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}
.endorsement-letter footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}
.endorsement-letter .signature {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--green);
  letter-spacing: -0.005em;
}
.endorsement-letter .credential {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-transform: none;
}

/* ---------- Advertiser reviewer cards — 2x2 grid ---------- */
.reviewer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1080px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
}
.reviewer-card {
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-gold);
  border-radius: 3px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reviewer-card .stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
}
.reviewer-card .stars svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.reviewer-card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  quotes: "\201C" "\201D";
}
.reviewer-card blockquote::before {
  content: open-quote;
  color: var(--gold);
  font-weight: 600;
  margin-right: 2px;
}
.reviewer-card blockquote::after { content: close-quote; color: var(--gold); }
.reviewer-card footer {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline-gold);
}
.reviewer-card footer .name {
  font-weight: 600;
  color: var(--green);
  font-size: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
}

/* The Google verification link */
.source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--hairline-gold);
  border-radius: 999px;
  background: transparent;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}
.source-link .source-glyph {
  width: 14px;
  height: 14px;
  flex: none;
}
.source-link:hover {
  background: rgba(7, 72, 52, 0.05);
  border-color: var(--gold);
  color: var(--green);
}

/* Tag for the unlinked verified review (Bo R.) */
.source-tag {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--hairline-gold);
  border-radius: 999px;
}

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

/* ---------- Share your experience callout ---------- */
.reviews-share { text-align: center; }
.share-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-gold);
  border-radius: 3px;
  padding: clamp(2.25rem, 5vw, 3.25rem);
  position: relative;
}
.share-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}
.share-card .eyebrow { display: inline-block; margin-bottom: 1rem; }
.share-card h2 {
  margin: 0 auto 1rem;
  max-width: 22ch;
}
.share-card p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 auto 2rem;
  max-width: 52ch;
}
.share-actions {
  display: flex;
  justify-content: center;
}
.btn .google-glyph {
  width: 16px;
  height: 16px;
  flex: none;
  margin-right: 0.15rem;
}


/* ===========================================================================
   ABOUT PAGE
   ========================================================================= */

/* ---------- Hero — full-bleed production photo, centered text ---------- */
.about-hero .hero-photo img {
  object-position: 55% center;
}
@media (max-width: 720px) {
  .about-hero .hero-photo img { object-position: 60% center; }
}
.about-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(520px, 80vh, 760px);
  width: 100%;
  padding-bottom: clamp(5rem, 10vw, 7rem);
}
.about-hero-copy {
  max-width: none;
  width: 100%;
  margin: 0;
  color: var(--ivory);
}
.about-hero-copy .eyebrow {
  display: block;
  text-align: right;
  margin: 0 0 1.5rem;
}
.about-hero-copy h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem auto;
  max-width: 720px;
  text-align: right;
  color: var(--ivory);
}
.about-hero-copy h1 .ital {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 600;
}
.about-hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.5;
  color: rgba(251, 247, 236, 0.88);
  margin: 0 auto;
  max-width: 56ch;
  text-align: center;
}

/* ---------- Our Story — editorial single-column spread ---------- */
.about-story { padding-block: clamp(5rem, 10vw, 7rem); }
.story-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
}
.story-head h2 {
  margin: 0.75rem 0 0;
  max-width: 26ch;
  margin-inline: auto;
}
.story-prose {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.65;
  color: var(--ink);
}
.story-prose p {
  margin: 0 0 1.5rem;
}
.story-prose p:last-child { margin-bottom: 0; }

/* Drop cap on the lede */
.story-prose .dropcap {
  float: left;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 5.25rem;
  line-height: 0.85;
  color: var(--gold);
  padding: 0.35rem 0.65rem 0 0;
  margin-top: 0.25rem;
  letter-spacing: -0.04em;
}

/* Pull quote — magazine-style aside */
.story-pullquote {
  position: relative;
  margin: clamp(2rem, 4vw, 3rem) 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--hairline-gold);
  border-bottom: 1px solid var(--hairline-gold);
  background: rgba(175, 125, 54, 0.04);
}
.story-pullquote .pullquote-mark {
  position: absolute;
  top: -0.35rem;
  left: 0.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.story-pullquote p {
  margin: 0;
  font-style: italic;
  font-size: clamp(1.1875rem, 2vw, 1.4375rem);
  line-height: 1.4;
  color: var(--green);
  padding-left: 2.5rem;
  letter-spacing: -0.005em;
  max-width: 100%;
}

@media (max-width: 580px) {
  .story-prose .dropcap { font-size: 4rem; padding-right: 0.45rem; }
  .story-pullquote .pullquote-mark { font-size: 3.5rem; }
  .story-pullquote p { padding-left: 1.75rem; font-size: 1.125rem; }
}

/* ---------- By the numbers — 4 number cards in a quiet grid ---------- */
.about-numbers { padding-block: clamp(4rem, 8vw, 6rem); }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1080px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
}
.number-card {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem) 0.5rem;
  border-top: 1px solid var(--hairline-gold);
}
.number-card .num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.number-card .num .plus,
.number-card .num .pct {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.7em;
  margin-left: 0.05em;
}
.number-card .lbl {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 22ch;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
}

/* ---------- Masthead ---------- */
.about-masthead { padding-block: clamp(4rem, 8vw, 6rem); }
.masthead-intro {
  max-width: 56ch;
  margin: 1.25rem auto 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}

.masthead-featured {
  max-width: 920px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.masthead-portrait {
  margin: 0;
}
.masthead-portrait picture {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-gold);
  position: relative;
  box-shadow: 0 14px 32px -22px rgba(0,0,0,0.3);
}
.masthead-portrait picture::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  z-index: 2;
}
.masthead-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.masthead-featured-copy .role-line {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  font-weight: 500;
}
.masthead-featured-copy h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--green);
  margin: 0 0 0.5rem;
  letter-spacing: -0.015em;
}
.masthead-featured-copy .cred {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.masthead-featured-copy .bio {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 52ch;
}

@media (max-width: 720px) {
  .masthead-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .masthead-portrait { max-width: 220px; margin: 0 auto; }
  .masthead-featured-copy .bio { margin-left: auto; margin-right: auto; }
}

/* Roster — supporting endorsers laid out in a clean 2x2 grid */
.masthead-roster {
  max-width: 920px;
  margin: clamp(3.5rem, 6vw, 5rem) auto 0;
  padding-top: clamp(2.5rem, 4vw, 3rem);
  border-top: 1px solid var(--hairline-gold);
  text-align: center;
}
.roster-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
}
.roster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2.5rem;
  text-align: left;
}
.roster-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--hairline-gold);
}
.roster-name .name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--green);
  letter-spacing: -0.005em;
}
.roster-name .role {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 580px) {
  .roster-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ---------- How we work — principles grid ---------- */
.about-principles { padding-block: clamp(4rem, 8vw, 6rem); }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1080px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
}
.principle {
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-gold);
}
.principle .num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.principle h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.2;
  color: var(--green);
  margin: 0 0 0.875rem;
  letter-spacing: -0.012em;
}
.principle p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 900px) {
  .principles-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Where to find us ---------- */
.about-locate { padding-block: clamp(4rem, 8vw, 6rem); }
.locate-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-gold);
  border-radius: 3px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
}
.locate-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}
.locate-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.locate-head h2 {
  margin: 0.5rem 0 0;
}
.locate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.locate-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.locate-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
.locate-value,
.locate-block address {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--green);
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-decoration: none;
}
a.locate-value:hover { color: var(--gold); }
@media (max-width: 580px) {
  .locate-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===========================================================================
   CONTACT PAGE
   ========================================================================= */

.contact-hero {
  min-height: clamp(620px, 88vh, 860px);
  background: var(--parchment);
  color: var(--ink);
}

.contact-hero .hero-photo img {
  object-position: 50% center;
}

.contact-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 30, 22, 0.12) 0%,
      rgba(4, 30, 22, 0.05) 42%,
      rgba(251, 247, 236, 0.38) 64%,
      rgba(251, 247, 236, 0.78) 100%
    ),
    linear-gradient(180deg, rgba(0,0,0,0.16), transparent 34%, rgba(0,0,0,0.18));
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(620px, 88vh, 860px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.contact-hero-copy {
  width: max(380px, min(42vw, 520px));
  margin-left: auto;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--ink);
  background: rgba(251, 247, 236, 0.74);
  border: 1px solid rgba(175, 125, 54, 0.42);
  box-shadow: 0 22px 46px -30px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
}

.contact-hero-copy .ornament {
  margin: 0 0 1.4rem;
}

.contact-hero-copy .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
}

.contact-hero-copy h1 {
  max-width: 10ch;
  margin: 0 0 1.2rem;
  color: var(--green);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.contact-hero-copy .hero-sub {
  max-width: 38ch;
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
  text-shadow: none;
}

.contact-hero-copy .hero-ctas {
  gap: 1rem;
}

@media (max-width: 860px) {
  .contact-hero .hero-photo img {
    object-position: 58% center;
  }
  .contact-hero-scrim {
    background:
      linear-gradient(180deg, rgba(4,30,22,0.22) 0%, rgba(4,30,22,0.05) 36%, rgba(251,247,236,0.86) 100%),
      linear-gradient(90deg, rgba(251,247,236,0.12), rgba(251,247,236,0.36));
  }
  .contact-hero-inner {
    align-items: flex-end;
    justify-content: center;
    min-height: 720px;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
  .contact-hero-copy {
    margin-inline: auto;
    width: min(100%, 560px);
  }
}

@media (max-width: 560px) {
  .contact-hero-inner {
    min-height: 680px;
    padding-inline: 1rem;
  }
  .contact-hero-copy {
    padding: 1.25rem;
  }
  .contact-hero-copy .hero-ctas {
    align-items: stretch;
  }
}

/* ---------- Story prose reveal — subtle stagger different from homepage.
   Use direct-child combinator so paragraphs INSIDE the pullquote aside
   don't inherit the hidden state (they never get .is-revealed). */
html.has-js .story-prose > p,
html.has-js .story-prose > aside {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1000ms ease-out, transform 1100ms cubic-bezier(.2,.7,.2,1);
}
html.has-js .story-prose > p.is-revealed,
html.has-js .story-prose > aside.is-revealed {
  opacity: 1;
  transform: none;
}


/* ===========================================================================
   LEGAL PAGES (Terms, Privacy) — quiet editorial reading column
   ========================================================================= */

.faq-hero .legal-meta {
  margin: 1rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.legal-section { padding-block: clamp(4rem, 8vw, 6rem); }

.legal-prose {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.legal-clause {
  scroll-margin-top: 80px;
}
.legal-clause .clause-num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.625rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.legal-clause h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.375rem, 2.4vw, 1.625rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--green);
  margin: 0 0 1rem;
}
.legal-clause p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 0.9rem;
  max-width: 62ch;
}
.legal-clause p:last-child { margin-bottom: 0; }

.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.legal-list li {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
  max-width: 62ch;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.6rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-list a,
.legal-clause p a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--hairline-gold);
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
.legal-list a:hover,
.legal-clause p a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* Contact block at the end */
.legal-contact {
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-gold);
  border-radius: 3px;
  padding: 1.5rem 1.75rem;
  position: relative;
}
.legal-contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}
.legal-contact-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--green);
  margin: 0 0 0.75rem;
}
.legal-contact address {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.legal-contact-line {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
}
.legal-contact-line:last-child { margin-bottom: 0; }
.legal-contact-label {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  min-width: 4.5rem;
  margin-right: 0.5rem;
}


/* Sub-clauses (used on the Privacy page where each main clause has 2-5 numbered sub-clauses) */
.legal-subclause {
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--hairline-gold);
}
.legal-subclause:first-of-type { margin-top: 1.25rem; }
.legal-subclause h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--green);
  margin: 0 0 0.6rem;
  letter-spacing: -0.005em;
}
.legal-subclause p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 0.7rem;
  max-width: 60ch;
}
.legal-subclause p:last-child { margin-bottom: 0; }
.legal-subclause .legal-list { margin: 0.4rem 0 0.7rem; }

/* "Methods of Collection" inline note */
.legal-method {
  font-size: 0.9375rem !important;
  font-style: italic;
  color: var(--ink-soft) !important;
  margin-top: 0.6rem !important;
}
.legal-method-label {
  font-style: normal;
  font-weight: 600;
  color: var(--green);
  margin-right: 0.25rem;
}
