/* ============================================================
   STYLE BY DESIGN — v4
   One product: critique. One designer: Ann.
   The page is calm. The type does the work.
   ============================================================ */

:root {
  --paper:        #F5EFE3;   /* warm cream */
  --paper-2:      #ECE4D2;   /* slightly deeper, for cards/sections */
  --ink:          #1B1916;   /* primary text */
  --ink-2:        #4A453F;   /* secondary text, body prose */
  --ink-3:        #7A736B;   /* tertiary, captions, fine print */
  --hair:         rgba(27,25,22,0.14);
  --hair-2:       rgba(27,25,22,0.28);
  --accent:       #B83A2C;   /* the one red. used sparingly. */
  --accent-2:     #8E2C20;   /* hover/pressed */

  --serif:        "Fraunces", "Iowan Old Style", "Georgia", serif;
  --mono:         "JetBrains Mono", ui-monospace, "SF Mono", "Menlo", monospace;

  --gutter:       clamp(20px, 4vw, 56px);
  --max:          1200px;
  --measure:      62ch;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  font-variation-settings: "opsz" 14;
}

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

::selection { background: var(--accent); color: var(--paper); }
a { color: inherit; text-decoration: none; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
img, svg { max-width: 100%; display: block; }

.skip-link {
  position: absolute; top: -100px; left: 8px;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; z-index: 100;
  font-family: var(--mono); font-size: 12px;
  border-radius: 4px;
}
.skip-link:focus { top: 8px; }

/* ----------------------------------------------------------------
   HEADER — small, clean, gets out of the way
   ---------------------------------------------------------------- */
.site-header {
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--hair);
}
.brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-variation-settings: "opsz" 30;
  line-height: 1;
}
.brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-3);
}
.brand-mark {
  display: inline-flex; align-items: baseline; gap: 0;
}
.brand-dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  margin-left: 8px;
  transform: translateY(-2px);
}

.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-2);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a[aria-current="page"] { color: var(--accent); }

.nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 9px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background 0.15s ease;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--accent); color: var(--paper); }

/* ----------------------------------------------------------------
   HERO — answers "what is this site" in 3 seconds
   ---------------------------------------------------------------- */
.hero {
  padding: 72px var(--gutter) 48px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy { max-width: 520px; }
.hero-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 4px 10px;
  background: rgba(184,58,44,0.08);
  border-radius: 4px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.hero-lede strong {
  color: var(--ink);
  font-weight: 500;
}

.hero-cta-row {
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.1s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent); border-color: var(--accent); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hair-2); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-arrow::after { content: "→"; font-family: var(--serif); font-size: 18px; }

.hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 13px;
  color: var(--ink-3);
  padding: 16px 0 20px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin-bottom: 24px;
}
.hero-meta strong { color: var(--ink); font-weight: 600; }
.hero-meta span { white-space: nowrap; }

/* The critique card — the proof, sitting next to the hero copy */
.proof-card {
  background: #FBF7EE;
  border-radius: 8px;
  border: 1px solid var(--hair);
  padding: 0;
  position: relative;
  box-shadow:
    0 1px 0 0 rgba(27,25,22,0.04),
    0 8px 24px -10px rgba(27,25,22,0.12),
    0 32px 64px -24px rgba(27,25,22,0.16);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.18,.7,.3,1);
}
.proof-card:hover { transform: translateY(-3px); }
.proof-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 20px 28px 14px;
  border-bottom: 1px solid var(--hair);
}
.proof-num {
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
}
.proof-num em { font-style: italic; color: var(--accent); }
.proof-meta-line {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3);
  text-align: right;
  line-height: 1.5;
}
.proof-body { padding: 24px 28px 8px; }
.proof-thumb {
  background: var(--paper-2);
  border-radius: 4px;
  border: 1px solid var(--hair);
  margin-bottom: 20px;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.proof-thumb svg { width: 100%; height: 100%; display: block; }
.proof-text p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 12px;
}
.proof-text p:last-child { margin-bottom: 0; }
.proof-text em { color: var(--accent); font-style: italic; }
.proof-mark {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  padding: 8px 12px;
  background: rgba(184,58,44,0.06);
  border-radius: 4px;
  margin: 14px 0;
  display: flex; gap: 8px; align-items: baseline;
}
.proof-mark::before { content: "↳"; }
.proof-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 28px 22px;
  border-top: 1px solid var(--hair);
  margin-top: 8px;
}
.proof-sig {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--ink);
}
.proof-stamp {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
}

/* ----------------------------------------------------------------
   HOW IT WORKS — three steps, calm
   ---------------------------------------------------------------- */
.how {
  padding: 80px var(--gutter);
  background: var(--paper-2);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.how-inner { max-width: var(--max); margin: 0 auto; }
.how-eyebrow {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}
.how h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.016em;
  margin-bottom: 48px;
  max-width: 22ch;
  font-variation-settings: "opsz" 80;
}
.how h2 em { font-style: italic; color: var(--accent); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-step {
  padding: 0;
}
.how-step-num {
  font-family: var(--serif); font-style: italic;
  font-size: 56px; font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144;
}
.how-step h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.how-step p {
  color: var(--ink-2);
  line-height: 1.55;
  font-size: 16px;
}

/* ----------------------------------------------------------------
   PRICING — two tiers, simple
   ---------------------------------------------------------------- */
.pricing {
  padding: 80px var(--gutter);
}
.pricing-inner { max-width: 920px; margin: 0 auto; }
.pricing-head { text-align: center; margin-bottom: 48px; }
.pricing-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.016em;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 80;
}
.pricing-head h2 em { font-style: italic; color: var(--accent); }
.pricing-head p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 50ch;
  margin: 0 auto;
}
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tier {
  background: #FBF7EE;
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.tier:hover { border-color: var(--hair-2); }
.tier-name {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tier-name em { font-style: italic; color: var(--accent); }
.tier-tag {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.tier-price {
  font-family: var(--serif); font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.024em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 6px;
}
.tier-price small { font-size: 16px; color: var(--ink-3); font-weight: 400; }
.tier-desc {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.tier-list {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.tier-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink-2);
  display: flex; gap: 10px; align-items: baseline;
}
.tier-list li::before {
  content: "—";
  color: var(--accent);
  flex-shrink: 0;
}
.tier .btn { width: 100%; justify-content: center; }
.tier-recommended {
  border-color: var(--accent);
  background: linear-gradient(180deg, #FFF8EE 0%, #FBF7EE 100%);
}
.tier-recommended::before {
  content: "Best value";
  position: absolute; top: -10px; left: 24px;
  background: var(--accent); color: var(--paper);
  font-family: var(--mono); font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ----------------------------------------------------------------
   ABOUT-ANN strip — a short piece on the home page
   ---------------------------------------------------------------- */
.about-strip {
  padding: 80px var(--gutter);
  background: var(--paper-2);
  border-top: 1px solid var(--hair);
}
.about-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(27,25,22,0.16);
}
.about-portrait-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px; text-align: center;
  background: linear-gradient(135deg, #ECE4D2 0%, #F5EFE3 100%);
}
.about-portrait-placeholder .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.about-portrait-placeholder .yrs {
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.about-portrait-placeholder .yrs em {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--accent);
  font-weight: 400;
  display: block; margin-top: 4px;
  letter-spacing: -0.01em;
}
.about-strip-text {
  max-width: 56ch;
}
.about-strip-eyebrow {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.about-strip-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.016em;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 80;
}
.about-strip-text h2 em { font-style: italic; color: var(--accent); }
.about-strip-text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.about-strip-text p:last-of-type { margin-bottom: 24px; }
.about-strip-text strong { color: var(--ink); font-weight: 500; }

/* ----------------------------------------------------------------
   FAQ TEASER — 4 most asked, with link to full FAQ
   ---------------------------------------------------------------- */
.faq-teaser {
  padding: 80px var(--gutter);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-eyebrow {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}
.faq-teaser h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.016em;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 80;
}
.faq-teaser h2 em { font-style: italic; color: var(--accent); }

.qa { padding: 22px 0; border-bottom: 1px solid var(--hair); }
.qa summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif); font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.005em;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  font-family: var(--serif); font-weight: 300;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.qa[open] summary::after { content: "−"; }
.qa-body {
  padding-top: 14px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 60ch;
}
.qa-body em { color: var(--accent); font-style: italic; }
.qa-body strong { color: var(--ink); font-weight: 500; }

.faq-more {
  margin-top: 32px;
  text-align: center;
}

/* ----------------------------------------------------------------
   FINAL CTA strip
   ---------------------------------------------------------------- */
.final-cta {
  padding: 96px var(--gutter);
  background: var(--ink); color: var(--paper);
  text-align: center;
}
.final-cta h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  max-width: 18ch;
  margin: 0 auto 24px;
  font-variation-settings: "opsz" 144;
}
.final-cta h2 em { font-style: italic; color: #E89A92; }
.final-cta p {
  font-size: 19px;
  color: rgba(245,239,227,0.72);
  max-width: 50ch;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.final-cta .btn-primary {
  background: var(--accent); border-color: var(--accent); color: var(--paper);
}
.final-cta .btn-primary:hover, .final-cta .btn-primary:focus-visible {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}

/* ----------------------------------------------------------------
   FOOTER — small, calm
   ---------------------------------------------------------------- */
.site-footer {
  padding: 56px var(--gutter) 40px;
  border-top: 1px solid var(--hair);
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-brand {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.012em;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 30;
}
.foot-brand em { font-style: italic; font-weight: 400; color: var(--ink-3); }
.foot-tag {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  max-width: 32ch;
  margin-bottom: 20px;
}
.foot-email {
  font-family: var(--mono); font-size: 13px;
  color: var(--ink-3);
}
.foot-email a:hover { color: var(--accent); }
.foot-section h3 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.foot-section ul { list-style: none; }
.foot-section li {
  padding: 5px 0;
  font-size: 15px;
}
.foot-section a { color: var(--ink-2); }
.foot-section a:hover { color: var(--accent); }
.foot-base {
  border-top: 1px solid var(--hair);
  padding-top: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-3);
}

/* ----------------------------------------------------------------
   INNER PAGES — generic prose layout
   ---------------------------------------------------------------- */
.page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--gutter) 80px;
}
.page-eyebrow {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.page-h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.page-h1 em { font-style: italic; color: var(--accent); }
.page-lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 50ch;
}
.page-prose {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
}
.page-prose p { margin-bottom: 1.1em; }
.page-prose p strong { color: var(--ink); font-weight: 500; }
.page-prose p em { font-style: italic; color: var(--ink); }
.page-prose h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  margin: 1.6em 0 0.5em;
  letter-spacing: -0.014em;
}
.page-prose h2 em { font-style: italic; color: var(--accent); }
.page-prose h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  margin: 1.2em 0 0.4em;
}
.page-prose ul, .page-prose ol { margin: 0.8em 0 1.2em 1.4em; }
.page-prose li { margin-bottom: 0.4em; }
.page-prose a { color: var(--accent); border-bottom: 1px solid currentColor; }
.page-prose a:hover { color: var(--accent-2); }
.page-prose hr { border: 0; border-top: 1px solid var(--hair); margin: 2em 0; }
.page-prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 1.2em 0;
  font-style: italic;
  color: var(--ink);
}

/* ----------------------------------------------------------------
   CRITIQUE FORM page
   ---------------------------------------------------------------- */
.form-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px var(--gutter) 80px;
}
.form-section {
  background: #FBF7EE;
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 28px 28px 24px;
  margin-bottom: 20px;
}
.form-section legend {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 0;
  display: block;
}
.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.field label {
  display: block;
  font-family: var(--serif); font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
}
.field label .req { color: var(--accent); margin-left: 2px; }
.field input[type="email"],
.field input[type="text"],
.field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--hair-2);
  border-radius: 6px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  padding: 12px 14px;
  line-height: 1.4;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--paper);
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--ink-3); font-style: italic;
}
.field textarea { min-height: 110px; resize: vertical; }
.field-help {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 6px;
  font-style: italic;
}
.char-count {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3);
  text-align: right;
  margin-top: 4px;
}

.upload-zone {
  border: 1.5px dashed var(--hair-2);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
  position: relative;
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--accent);
  background: rgba(184,58,44,0.03);
}
.upload-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-icon { font-size: 28px; color: var(--ink-3); margin-bottom: 6px; }
.upload-text { font-family: var(--serif); font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.upload-text em { font-style: italic; color: var(--accent); }
.upload-hint { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.upload-preview {
  display: none; padding: 14px; background: var(--paper);
  border: 1px solid var(--hair); border-radius: 6px;
  margin-top: 12px; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px;
}
.upload-preview.shown { display: flex; }
.upload-preview img { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; border: 1px solid var(--hair); }
.upload-preview .meta { flex: 1; }
.upload-preview .name { color: var(--ink); }
.upload-preview .size { color: var(--ink-3); margin-top: 2px; }
.upload-preview button {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--hair-2);
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.tier-radios { display: grid; gap: 10px; }
.tier-radio {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--hair);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  align-items: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tier-radio:hover { border-color: var(--hair-2); }
.tier-radio input[type="radio"] { accent-color: var(--accent); }
.tier-radio:has(input:checked) { border-color: var(--accent); background: rgba(184,58,44,0.04); }
.tier-radio-name { font-family: var(--serif); font-weight: 500; font-size: 17px; }
.tier-radio-name em { display: block; font-style: italic; font-weight: 400; font-size: 14px; color: var(--ink-3); margin-top: 2px; }
.tier-radio-price { font-family: var(--serif); font-size: 19px; color: var(--ink); white-space: nowrap; font-weight: 500; }
.tier-radio-price small { font-size: 13px; color: var(--ink-3); font-weight: 400; }

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--accent); }
.consent a { color: var(--accent); border-bottom: 1px solid currentColor; }

.submit-btn {
  width: 100%;
  background: var(--ink); color: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 16px 24px;
  border-radius: 999px;
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  margin-top: 12px;
}
.submit-btn:hover, .submit-btn:focus-visible { background: var(--accent); border-color: var(--accent); }
.submit-btn[disabled] { background: var(--ink-3); border-color: var(--ink-3); cursor: not-allowed; }
.submit-btn .arrow { margin-left: 8px; }

.form-status {
  margin-top: 16px;
  font-style: italic;
  color: var(--accent);
  min-height: 1.4em;
  font-size: 16px;
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px var(--gutter) 40px; }
  .hero-copy { max-width: none; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .tiers { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 320px; margin: 0 auto; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .site-header { padding: 16px var(--gutter); }
  .site-nav { gap: 18px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .nav-cta { font-size: 13px; padding: 8px 14px; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-lede { font-size: 18px; }
  .hero-meta { font-size: 12px; gap: 18px; }
  .how, .pricing, .about-strip, .faq-teaser { padding: 56px var(--gutter); }
  .final-cta { padding: 64px var(--gutter); }
  .proof-head, .proof-body, .proof-foot { padding-left: 20px; padding-right: 20px; }
  .tier { padding: 24px 22px; }
  .tier-price { font-size: 40px; }
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .foot-base { font-size: 11px; }
}

@media (forced-colors: active) {
  .btn, .tier, .proof-card, .form-section, .upload-zone, .tier-radio { border-color: CanvasText; }
}


/* ============ AUDIT v4.1 ADDITIONS ============ */

/* Proof card now has a label above it: "An example of what arrives in your inbox" */
.proof-wrap { display: flex; flex-direction: column; gap: 12px; }
.proof-label {
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.proof-label-arrow {
  color: var(--accent);
  font-size: 14px;
  display: inline-block;
  transform: translateY(-1px);
}

/* Differentiate the about-portrait visually from the proof-card */
/* Portrait is a softer, more sculptural placeholder; the proof-card is paper-white */
.about-portrait {
  background: linear-gradient(160deg, #ECE4D2 0%, #DCD0B3 100%);
  border: 1px solid var(--hair-2);
  box-shadow:
    0 1px 0 0 rgba(27,25,22,0.04),
    0 18px 40px -16px rgba(27,25,22,0.20);
}
.about-portrait-placeholder {
  background: transparent;
}

/* Tone the kicker pill down so the page has less competing red */
.hero-kicker {
  background: rgba(27,25,22,0.05);
  color: var(--ink-2);
  border: 1px solid rgba(27,25,22,0.08);
}


/* ============ MOBILE NAV — disclosure menu ============ */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--hair-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: var(--accent); color: var(--accent); }

@media (max-width: 600px) {
  /* Show toggle, hide regular nav links by default */
  .nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .site-nav a:not(.nav-cta) { display: none; }

  /* When toggle is checked (via :has on the parent), reveal nav as a column */
  .site-header:has(.nav-toggle[aria-expanded="true"]) {
    flex-wrap: wrap;
    gap: 12px;
  }
  .site-header:has(.nav-toggle[aria-expanded="true"]) .site-nav {
    order: 99;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--hair);
  }
  .site-header:has(.nav-toggle[aria-expanded="true"]) .site-nav a:not(.nav-cta) {
    display: block;
    padding: 10px 4px;
    font-size: 17px;
    border-bottom: 1px solid var(--hair);
  }
  .site-header:has(.nav-toggle[aria-expanded="true"]) .site-nav a:not(.nav-cta):last-of-type {
    border-bottom: none;
  }
  .site-header:has(.nav-toggle[aria-expanded="true"]) .nav-cta {
    margin-top: 6px;
    text-align: center;
    justify-content: center;
  }
}

/* ============ MOBILE: shrink the proof card so it doesn't dominate ============ */
@media (max-width: 600px) {
  .proof-card { transform: scale(0.94); transform-origin: top center; }
  .proof-thumb { aspect-ratio: 16 / 8; } /* slightly shallower on mobile */
  .proof-text p { font-size: 14.5px; line-height: 1.5; }
  .proof-mark { font-size: 10px; padding: 6px 10px; }
  .proof-head { padding: 16px 22px 12px; }
  .proof-body { padding: 18px 22px 4px; }
  .proof-foot { padding: 12px 22px 18px; }
  .proof-num { font-size: 16px; }
  .proof-meta-line { font-size: 10px; }

  /* Bigger touch target for primary CTA on mobile */
  .hero .hero-cta-row .btn-primary { padding: 16px 28px; font-size: 17px; }

  /* Hero meta line cleaner stacking on mobile */
  .hero-meta { gap: 12px; padding-top: 16px; }
  .hero-meta span { width: 100%; }
}

/* ============ MOBILE: bigger radio touch targets ============ */
@media (max-width: 600px) {
  .tier-radio input[type="radio"] { transform: scale(1.3); margin-right: 4px; }
  .consent input[type="checkbox"] { transform: scale(1.2); margin-top: 2px; }
}

/* Better visible legend on form sections */
.form-section legend {
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-transform: uppercase;
}

/* Step numbers — connect them to their content visually */
.how-step {
  position: relative;
  padding-left: 0;
}
.how-step h3 {
  border-top: 1px solid var(--hair);
  padding-top: 14px;
  margin-top: 4px;
}

/* Fix the FAQ summary button collision with toggle on long questions */
.qa summary {
  gap: 16px;
  padding-right: 4px;
}
.qa summary > span:first-child { flex: 1; }
