/* =========================================================================
   Proof Hunter — marketing site
   v4 "brought to life" (2026-06-10). Builds on the v3 editorial bones but
   adds the app's identity: the black-lab mascot lockup, Hunter-Green accent
   (#1F6B4A, the app's primary CTA), the app's status-pill vocabulary
   (On the shelf / Cooling off / Cold trail), and an in-page CSS recreation
   of the Hunt screen (no third-party brands — invented bottles/stores).
   ========================================================================= */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Light, slightly warm neutral palette */
  --ground:    #FAFAF8;
  --surface:   #FFFFFF;
  --ink:       #0E0F11;   /* primary text, CTAs */
  --ink-2:     #2C3036;   /* secondary text */
  --ink-3:     #5A6068;   /* tertiary text, metadata */
  --line:      #E5E5E2;   /* borders, hairlines */
  --line-2:    #EFEFEC;   /* lighter dividers */

  /* Brand accent + status colors — lifted straight from the app theme so the
     site and the app are visibly the same product. */
  --accent:      #1F6B4A;   /* Hunter Green — primary CTA (app: colors.accent) */
  --accent-deep: #18573C;   /* hover / pressed */
  --accent-soft: #E8F0EB;   /* green tint (app: successBg) */
  --success:     #2D7A4F;   /* "On the shelf" */
  --warn:        #C97C2A;   /* "Cooling off" (app: warning) */
  --warn-bg:     #FBF1E3;
  --cold:        #5A6068;   /* "Cold trail" */
  --founder:     #B8860B;   /* Founder's Club badge gold */
  --founder-bg:  #FBF3DE;

  /* Type — Inter only */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Scale (fluid) */
  --fs-meta: clamp(0.78rem, 0.74rem + 0.2vw, 0.85rem);
  --fs-body: clamp(1.00rem, 0.96rem + 0.2vw, 1.06rem);
  --fs-lede: clamp(1.10rem, 1.02rem + 0.4vw, 1.22rem);
  --fs-h3:   clamp(1.15rem, 1.08rem + 0.4vw, 1.35rem);
  --fs-h2:   clamp(1.55rem, 1.30rem + 1.2vw, 2.25rem);
  --fs-h1:   clamp(2.40rem, 1.80rem + 3.0vw, 4.20rem);

  --maxw: 1080px;
  --gutter: clamp(1.25rem, 4vw, 2.25rem);
  --radius: 10px;
}

/* --- Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ink); color: var(--ground); }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: color-mix(in oklab, var(--ink) 30%, transparent);
  text-underline-offset: 3px;
  transition: text-decoration-color 120ms ease;
}
a:hover { text-decoration-color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

img, svg { display: block; max-width: 100%; height: auto; }

/* Headings — all Inter, weight does the work */
h1, h2, h3 {
  font-family: var(--font);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.015em;
}
h1 {
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
h2 {
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.15;
  letter-spacing: -0.018em;
}
h3 {
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.meta {
  font-size: var(--fs-meta);
  color: var(--ink-3);
  letter-spacing: 0;
}

.lede {
  font-size: var(--fs-lede);
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.55;
}

/* --- Layout primitives -------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 60ch;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
}

/* --- Skip link (a11y) --------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -10000px;
  top: 0;
  background: var(--ink);
  color: var(--ground);
  padding: 0.5rem 0.75rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--ground) 92%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

/* Editorial-nameplate wordmark: uppercase, tight, with a single rule beneath. */
.brand {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1.5px solid var(--ink);
  line-height: 1;
}
.brand:hover { text-decoration: none; color: var(--ink); }
.site-footer .brand { font-size: 0.8rem; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2.4vw, 1.6rem);
}
/* Match the editorial wordmark — uppercase, tracked, with an underline
   that fades in on hover at the wordmark's rule weight. */
.primary-nav a {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  transition: text-decoration-color 140ms ease, color 140ms ease;
}
.primary-nav a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

@media (max-width: 560px) {
  .primary-nav a:not(:last-child) { display: none; }
}

/* --- Buttons / "Coming soon" badges ------------------------------------ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.15rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ground);
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease;
}
.button:hover {
  background: var(--ground);
  color: var(--ink);
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.button.secondary:hover {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.app-badge img {
  height: 47px;
  width: auto;
  display: block;
}
.app-badge-soon {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  padding: 0.15rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.95rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font);
  user-select: none;
}
.store-badge .store-platform {
  font-weight: 600;
  font-size: 0.98rem;
}
.store-badge .store-status {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  padding: 0.15rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 4px;
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  padding-block: clamp(4rem, 10vw, 8rem) clamp(3rem, 6vw, 5rem);
  text-align: left;
}
.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.hero .lede {
  margin-bottom: 2rem;
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero .availability {
  font-size: var(--fs-meta);
  color: var(--ink-3);
  margin-top: 0.75rem;
}

/* --- Find · Prove · Track signal band ---------------------------------- */
.signal {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 760px) {
  .signal-grid { grid-template-columns: 1fr; }
}
.signal-cell {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-right: 1px solid var(--line);
}
.signal-cell:last-child { border-right: 0; }
@media (max-width: 760px) {
  .signal-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .signal-cell:last-child { border-bottom: 0; }
}
.signal-cell .num {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.signal-cell h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.signal-cell p {
  color: var(--ink-2);
  margin: 0;
}

/* --- Steps grid --------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.step .step-num {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.step h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0.6rem 0 0.4rem;
  letter-spacing: -0.01em;
}
.step p { color: var(--ink-2); margin: 0; }

/* --- Why panel ---------------------------------------------------------- */
.why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 760px) { .why { grid-template-columns: 1fr; } }

/* Scoped override: Founder's Club section has 3 cards, not 4 */
#founders .why {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 760px) {
  #founders .why { grid-template-columns: 1fr; }
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.why-card .why-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.5rem;
}
.why-card h3 {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.why-card p { color: var(--ink-2); margin: 0; }

/* --- Sighting (example product card) ----------------------------------- */
.sighting {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  max-width: 380px;
}
.sighting .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.sighting .bottle { font-weight: 700; font-size: 1.1rem; }
.sighting .price { font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.sighting .store { color: var(--ink-3); font-size: 0.92rem; margin-top: 0.3rem; }
.sighting .proven {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.sighting .proven::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
}

/* --- FAQ ---------------------------------------------------------------- */
.faq {
  display: grid;
  gap: 0.55rem;
  max-width: 760px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--ink-3);
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details > p {
  color: var(--ink-2);
  margin: 0.6rem 0 0;
}

/* --- CTA strip ---------------------------------------------------------- */
.cta {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
}
.cta h2 {
  max-width: 22ch;
  margin-inline: auto;
}
.cta .lede {
  margin: 1rem auto 1.75rem;
  color: var(--ink-2);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ground);
  padding-block: 2.5rem 2rem;
  color: var(--ink-3);
  font-size: 0.92rem;
}
.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.site-footer nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
/* Footer nav mirrors the header treatment, scaled down a notch. */
.site-footer nav a {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  transition: text-decoration-color 140ms ease, color 140ms ease;
}
.site-footer nav a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}
.site-footer .legal {
  width: 100%;
  font-size: 0.78rem;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

/* --- Subpage prose (privacy/terms/support) ----------------------------- */
.prose {
  max-width: 70ch;
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.prose h1 {
  font-size: clamp(2rem, 1.6rem + 2vw, 2.75rem);
  margin-bottom: 0.5rem;
}
.prose .meta {
  margin-bottom: 2rem;
}
.prose h2 {
  font-size: 1.3rem;
  margin: 2.25rem 0 0.6rem;
}
.prose h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.4rem;
}
.prose p, .prose li { color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5rem; }
.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

/* =========================================================================
   v4 — Identity layer (mascot lockup, Hunter-Green accent, app recreation)
   ========================================================================= */

/* --- Brand lockup (mascot + wordmark) ---------------------------------- */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.brand-lockup:hover { text-decoration: none; }
.brand-mascot { width: 30px; height: 29px; }
.site-footer .brand-mascot { width: 26px; height: 25px; }

/* --- Accent applications ------------------------------------------------ */
.accent-word { color: var(--accent); }
.signal-cell .num { color: var(--accent); }
.section-heading .meta,
.cta .meta,
section[aria-label="Example sighting"] .meta { color: var(--accent); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.button.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.button.accent:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}

/* --- Hero: two-column (copy + phone) ----------------------------------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { max-width: 14ch; }
.hero-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.hero-cap { font-size: var(--fs-meta); color: var(--ink-3); text-align: center; }
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero-phone-wrap { margin-top: 0.5rem; }
}

/* --- Phone mockup ------------------------------------------------------- */
.phone-frame {
  width: 288px;
  max-width: 78vw;
  margin-inline: auto;
  background: #0E0F11;
  border-radius: 42px;
  padding: 9px;
  box-shadow:
    0 34px 64px -24px rgba(14, 15, 17, 0.34),
    0 12px 28px -14px rgba(14, 15, 17, 0.18);
}
.phone-screen {
  position: relative;
  background: var(--ground);
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36%; height: 17px;
  background: #0E0F11;
  border-radius: 0 0 12px 12px;
  z-index: 6;
}

/* --- In-screen app recreation (invented data — no third-party brands) -- */
.app { flex: 1; display: flex; flex-direction: column; padding-top: 20px; }
.app-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 13px 9px;
}
.app-brand { display: flex; align-items: center; gap: 5px; }
.app-brand img { width: 15px; height: 14px; }
.app-brand span {
  font-weight: 700; font-size: 11px; letter-spacing: 1.4px; color: var(--ink);
}
.app-icons { display: flex; gap: 9px; color: var(--ink-3); }
.app-icons svg { width: 14px; height: 14px; }

.app-status {
  margin: 0 13px 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 10px;
  color: var(--ink-2);
}
.app-status b { color: var(--accent); font-weight: 600; }

.app-cta {
  margin: 0 13px 11px;
  background: var(--accent);
  color: #fff;
  border-radius: 9px;
  padding: 9px;
  text-align: center;
  font-weight: 600;
  font-size: 11px;
}

.app-label {
  margin: 0 13px 6px;
  font-size: 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-3);
}

.app-card {
  margin: 0 13px 7px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px 10px;
}
.app-card.cool  { border-left: 3px solid var(--warn); }
.app-card.shelf { border-left: 3px solid var(--success); }
.app-card .ac-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 7px;
}
.app-card .ac-name { font-weight: 700; font-size: 10.5px; color: var(--ink); line-height: 1.25; }
.app-card .ac-sub { font-size: 9px; color: var(--ink-3); margin-top: 3px; }
.app-card .ac-sub b { color: var(--ink-2); font-weight: 600; }
.app-card .ac-sub .geo { color: var(--accent); }

/* status pills — the app's own vocabulary */
.pill {
  flex: none;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 2px 6px;
  border-radius: 999px;
  white-space: nowrap;
}
.pill.shelf { color: var(--success); background: var(--accent-soft); }
.pill.cool  { color: var(--warn);    background: var(--warn-bg); }
.pill.cold  { color: var(--cold);    background: var(--line-2); }

/* bottom nav */
.app-nav {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-around;
  padding: 7px 6px 11px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.app-nav .navitem {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 7.5px; color: var(--ink-3);
}
.app-nav .navitem.on { color: var(--ink); }
.app-nav .navitem svg { width: 15px; height: 15px; }
.app-nav .report {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: -13px;
  box-shadow: 0 5px 11px -3px rgba(31, 107, 74, 0.55);
}
.app-nav .report svg { width: 15px; height: 15px; }
.app-nav .topdog img { width: 15px; height: 14px; opacity: 0.5; }

/* --- Sighting example: greener, with a status pill --------------------- */
/* Two-up on desktop (copy + card), stacked on phones. Replaces a former
   inline 1fr/1fr grid that had no breakpoint and squished on mobile. */
.sighting-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 760px) {
  .sighting-split { grid-template-columns: 1fr; }
}
.sighting .proven::before { background: var(--success); }
.sighting-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 0.1rem;
}

/* --- Email capture ------------------------------------------------------ */
.notify {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 460px;
  margin: 1.5rem auto 0;
}
.notify input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.96rem;
  background: var(--surface);
  color: var(--ink);
}
.notify input::placeholder { color: var(--ink-3); }
.notify input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.notify .button { flex: 0 0 auto; }
.notify-note { font-size: var(--fs-meta); color: var(--ink-3); margin-top: 0.85rem; }

/* --- Reduced motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Print -------------------------------------------------------------- */
@media print {
  body { background: white; color: black; }
  .site-header, .site-footer, .cta { display: none; }
}
