/* strongpapa — landing styles
   Palette drawn from the founder's reference: mustard/ochre, sage-olive,
   warm walnut, soft grey. Earthy, handmade, mature. The opposite of
   surveillance-tech. No third-party fonts, no analytics, no scripts —
   the page keeps the promise it makes. */

:root {
  /* paper & ink — never pure white, never pure black (warmth + 50+ eyes) */
  --paper:        #F4EFE5;
  --paper-soft:   #EBE3D4;
  --ink:          #2E2823;
  --ink-soft:     #574F46;

  /* the one loud color — earth-gold, marks Begin and the price */
  --ochre:        #C2912E;
  --ochre-deep:   #9C7322;

  /* the grounding color — calm, "at the wheel" */
  --olive:        #6E7457;
  --olive-deep:   #545B41;

  /* quiet neutral — the privacy line, the footer */
  --grey:         #8C857A;
  --rule:         rgba(46, 40, 35, 0.12);

  --serif: Georgia, "Hoefler Text", "Times New Roman", "Liberation Serif", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
          Arial, sans-serif;

  --measure: 36rem;       /* comfortable reading width */
  --step:    1.5rem;
}

* { box-sizing: border-box; }

html {
  font-size: 18px;        /* generous base for older eyes */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ---- layout ---- */

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.masthead {
  padding: 2.25rem 0 0;
  text-align: center;
}

.wordmark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}

main { padding: 1rem 0 0; }

section { padding: 2.5rem 0; }

/* ---- hero ---- */

.hero { padding-top: 3.5rem; text-align: center; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 7vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 1.4rem;
  color: var(--ink);
}

.hero .lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 30rem;
}

/* ---- the two doors ---- */

.doors-intro {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0 0 1.25rem;
}

.doors {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.door {
  flex: 1 1 12rem;
  max-width: 16rem;
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  padding: 1.15rem 1.5rem;
  border-radius: 3px;
  color: var(--paper);
  transition: background-color 120ms ease, transform 120ms ease;
}

.door--begin      { background: var(--ochre); }
.door--begin:hover{ background: var(--ochre-deep); }
.door--phil       { background: var(--olive); }
.door--phil:hover { background: var(--olive-deep); }
.door--soon       { background: var(--grey); cursor: default; }
.door--soon:active{ transform: none; }
.door:active      { transform: translateY(1px); }
.door:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

/* ---- the price / audition panel ---- */

.audition {
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.price {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 2.6rem);
  color: var(--ochre-deep);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.price span { color: var(--ink-soft); font-size: 1.1rem; font-family: var(--sans); }

.audition p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 32rem;
  margin: 0 auto;
}

/* ---- the privacy line ---- */

.privacy {
  text-align: center;
  color: var(--grey);
  font-size: 0.95rem;
  max-width: 34rem;
  margin: 0 auto;
}
.privacy strong { color: var(--ink-soft); font-weight: 600; }

/* ---- footer ---- */

.foot {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0 3.5rem;
  text-align: center;
  color: var(--grey);
  font-size: 0.92rem;
}
.foot .motto {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
}
.foot a { color: var(--olive-deep); text-decoration: none; }
.foot a:hover { text-decoration: underline; }
.foot .links { margin: 0 0 0.75rem; }
.foot .links a { margin: 0 0.5rem; }
.foot .legal { color: var(--grey); }

/* ---- long-form (philosophy, privacy) ---- */

.prose { padding-top: 1.5rem; }
.prose h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 0.4rem;
}
.prose .kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin: 0 0 1.5rem;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 2.75rem 0 0.6rem;
  color: var(--ink);
}
.prose p {
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 1.1rem;
}
.prose p.soft { color: var(--ink-soft); }
.prose hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}
.prose .back {
  display: inline-block;
  margin-top: 2rem;
  color: var(--olive-deep);
  text-decoration: none;
  font-weight: 600;
}
.prose .back:hover { text-decoration: underline; }

.center-cta { text-align: center; margin-top: 2.5rem; }

/* ---- the proof chart (inline SVG, no JS) ---- */

.chart { margin: 2.25rem 0 0.5rem; }
.chart svg { width: 100%; height: auto; display: block; }
.chart svg rect { fill: var(--ochre); }
.chart svg line { stroke: var(--rule); stroke-width: 1; }
.chart figcaption {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--grey);
  text-align: center;
}

/* ---- recall: the emotional door ---- */

.recall { padding-top: 4rem; text-align: center; }

.recall-q {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 4.6vw, 2.2rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 30rem;
  margin: 0 auto 2.25rem;
}
.recall-q em { font-style: italic; }
.recall-q .tail {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.62em;
  font-style: italic;
  color: var(--ink-soft);
}

/* the toggle: visually hidden, but kept focusable for keyboard users */
.reveal-toggle {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  opacity: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.recall-yes { display: inline-block; cursor: pointer; min-width: 14rem; }

.recall-more {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 450ms ease, opacity 450ms ease;
}
.reveal-toggle:checked ~ .recall .recall-yes { display: none; }
.reveal-toggle:checked ~ .recall .recall-more {
  max-height: 24rem;
  opacity: 1;
}
.reveal-toggle:focus-visible ~ .recall .recall-yes {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.recall-line {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4.2vw, 2rem);
  color: var(--ink);
  margin: 0 0 1.75rem;
}

.about-link {
  display: inline-block;
  margin-top: 3rem;
  color: var(--grey);
  font-size: 0.9rem;
  text-decoration: none;
}
.about-link:hover { color: var(--olive-deep); text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
