/* ============================================
   Income Over Wealth — Stylesheet v2
   Midnight Navy + Cream + Copper
   ============================================ */

:root {
  --paper:        #F7F2E8;
  --paper-deep:   #EFE7D5;
  --paper-card:   #FBF8F1;
  --white:        #FFFFFF;
  --ink:          #0E1E2F;
  --ink-mid:      #233649;
  --ink-soft:     #4A5A6E;
  --ink-faint:    #8896A6;
  --copper:       #B8703E;
  --copper-deep:  #8B5530;
  --gold:         #D4A95C;
  --gold-soft:    #E8C98A;
  --rule:         #DCD0B8;
  --rule-soft:    #E8DFC8;
  --shadow-card:  0 24px 60px -20px rgba(14, 30, 47, 0.18), 0 2px 0 rgba(14, 30, 47, 0.04);
  --shadow-soft:  0 8px 24px -8px rgba(14, 30, 47, 0.10);

  --container:    1240px;
  --prose:        680px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 760px) {
  body { font-size: 21px; line-height: 1.62; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
a:hover { color: var(--copper); }

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

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

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

/* ===== TYPOGRAPHY TOKENS ===== */
.display {
  font-family: 'Playfair Display', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ink);
}

.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--copper);
}

.eyebrow {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

@media (min-width: 760px) {
  .eyebrow { font-size: 13px; }
}

/* ===== HEADER ===== */
.site-header {
  padding: 24px 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  max-width: var(--container);
  margin: 0 auto;
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1;
}

.wordmark em {
  font-style: italic;
  font-weight: 500;
  color: var(--copper);
}

.header-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--ink-soft);
}

.header-link:hover { color: var(--copper); }

@media (min-width: 760px) {
  .site-header { padding: 32px 56px; }
  .wordmark { font-size: 26px; }
  .header-link { font-size: 14px; }
}

/* ===== HERO (2-column split) ===== */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero { padding: 88px 56px 112px; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 72px;
  }
}

.hero-content .eyebrow { margin-bottom: 36px; }

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(42px, 7.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--ink);
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--copper);
}

.hero-content .subhead {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(22px, 3.3vw, 28px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink-mid);
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-content .description {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 540px;
}

/* ===== INCOME MAP CARD (hero visual) ===== */
.map-card {
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-card);
  position: relative;
  padding: 32px 28px;
  max-width: 500px;
  margin: 0 auto;
  transform: rotate(-0.4deg);
}

.map-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--rule);
  pointer-events: none;
}

.map-card-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--copper);
  color: var(--paper);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  white-space: nowrap;
}

.map-header {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1.5px solid var(--ink);
  position: relative;
  z-index: 1;
}

.map-eyebrow {
  display: block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  margin-bottom: 12px;
  padding-top: 10px;
}

.map-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}

.map-title em {
  font-style: italic;
  color: var(--copper);
}

.map-subtitle {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.35;
}

.map-list {
  list-style: none;
  padding: 16px 0 12px;
  position: relative;
  z-index: 1;
}

.map-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
}

.map-row:last-child { border-bottom: none; }

.map-rank {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--copper);
  letter-spacing: -0.01em;
}

.map-bar {
  height: 8px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.map-row:nth-child(1) .map-bar { width: 100%; }
.map-row:nth-child(2) .map-bar { width: 84%; background: var(--ink-mid); }
.map-row:nth-child(3) .map-bar { width: 72%; background: var(--ink-mid); }
.map-row:nth-child(4) .map-bar { width: 60%; background: var(--ink-soft); }
.map-row:nth-child(5) .map-bar { width: 50%; background: var(--ink-soft); }
.map-row:nth-child(6) .map-bar { width: 38%; background: var(--ink-faint); }
.map-row:nth-child(7) .map-bar { width: 26%; background: var(--ink-faint); }

.map-tags {
  display: flex;
  gap: 6px;
  align-items: center;
}

.map-tag {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 6px;
  border: 1px solid currentColor;
  white-space: nowrap;
}

.tag-low    { color: #2A7A4E; }
.tag-med    { color: var(--copper); }
.tag-high   { color: #B0473A; }
.tag-liquid { color: var(--ink-soft); }

.map-footer {
  border-top: 1.5px solid var(--ink);
  padding-top: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.map-cta-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--copper);
}

@media (min-width: 540px) {
  .map-card { padding: 40px 36px; }
  .map-title { font-size: 38px; }
  .map-subtitle { font-size: 15px; }
}

/* ===== SIGNUP FORM ===== */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.signup-form .input-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 540px) {
  .signup-form .input-row {
    flex-direction: row;
    gap: 0;
    border: 1.5px solid var(--ink);
    background: var(--white);
    transition: border-color 0.2s ease;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .signup-form .input-row:focus-within {
    border-color: var(--copper);
    box-shadow: 4px 4px 0 var(--copper);
  }
}

.signup-form input[type="email"] {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px;
  padding: 18px 20px;
  border: 1.5px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  outline: none;
  flex: 1;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.signup-form input[type="email"]::placeholder { color: var(--ink-faint); }
.signup-form input[type="email"]:focus { border-color: var(--copper); }

@media (min-width: 540px) {
  .signup-form input[type="email"] {
    border: none;
    border-right: 1px solid var(--rule);
    box-shadow: none;
  }
  .signup-form input[type="email"]:focus {
    background: #FFFCF6;
    border-right-color: var(--copper);
  }
}

.signup-form button {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  border-radius: 0;
  white-space: nowrap;
}

@media (min-width: 540px) {
  .signup-form button {
    border: none;
    border-left: 1.5px solid var(--ink);
  }
  .signup-form .input-row:focus-within button { border-left-color: var(--copper); }
}

.signup-form button:hover { background: var(--copper); }
.signup-form button:active { transform: translateY(1px); }

.form-meta {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Variant: copper primary button (for hero) */
.signup-form.copper button {
  background: var(--copper);
  border-color: var(--copper);
}
.signup-form.copper button:hover { background: var(--copper-deep); }
@media (min-width: 540px) {
  .signup-form.copper .input-row { box-shadow: 4px 4px 0 var(--copper); }
  .signup-form.copper button { border-left-color: var(--ink); }
}

/* ===== STRATEGIES (7-strategy grid) ===== */
.strategies {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 88px 24px;
}

.strategies-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.strategies-head {
  max-width: 760px;
  margin-bottom: 64px;
}

.strategies-head .eyebrow { margin-bottom: 24px; }

.strategies-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}

.strategies-head h2 em {
  font-style: italic;
  color: var(--copper);
}

.strategies-head p {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 620px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

@media (min-width: 560px) {
  .strategy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 920px) {
  .strategy-grid { grid-template-columns: repeat(4, 1fr); }
}

.strategy {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s ease;
  position: relative;
}

.strategy:hover { background: var(--paper-card); }

.strategy-icon {
  width: 44px;
  height: 44px;
  color: var(--copper);
  flex-shrink: 0;
}

.strategy-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--ink-faint);
}

.strategy h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.strategy p {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (min-width: 760px) {
  .strategies { padding: 128px 56px; }
  .strategy { padding: 36px 32px; }
  .strategy h3 { font-size: 24px; }
  .strategy p { font-size: 17px; }
}

/* ===== INSIDE THE COURSE (3 day cards) ===== */
.inside {
  padding: 88px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.inside-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.inside-head .eyebrow { margin-bottom: 24px; }

.inside-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.inside-head h2 em { font-style: italic; color: var(--copper); }

.day-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 760px) {
  .day-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .inside { padding: 128px 56px; }
}

.day-card {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  padding: 36px 32px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.day-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--copper);
}

.day-card .day-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--copper);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.day-card .day-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 12px;
}

.day-card .day-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}

.day-card .day-text {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (min-width: 760px) {
  .day-card .day-num { font-size: 72px; }
  .day-card .day-title { font-size: 26px; }
  .day-card .day-text { font-size: 18px; }
}

/* ===== TRUST BAND ===== */
.trust {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--gold));
}

.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 880px) {
  .trust-inner { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 80px; }
  .trust { padding: 120px 56px; }
}

.trust-photo-block {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.trust-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.trust-photo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  border: 3px solid var(--copper);
  background: var(--ink);
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.trust-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(184, 112, 62, 0.35);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.trust-photo-byline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-soft);
  margin-top: 22px;
  text-align: center;
}

.trust-content .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 24px;
}

.trust-content .eyebrow::before { background: var(--gold-soft); }

.trust-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--paper);
}

.trust-content h2 em {
  font-style: italic;
  color: var(--gold-soft);
}

.trust-content p {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.6;
  color: rgba(247, 242, 232, 0.82);
  margin-bottom: 24px;
  max-width: 580px;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 36px 0 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(247, 242, 232, 0.18);
  border-bottom: 1px solid rgba(247, 242, 232, 0.18);
}

.credential {
  text-align: left;
}

.credential .num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1;
  color: var(--copper);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.credential .num em {
  font-style: italic;
  color: var(--gold-soft);
}

.credential .label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247, 242, 232, 0.7);
  line-height: 1.3;
}

@media (min-width: 760px) {
  .credentials { gap: 24px; margin: 44px 0 40px; padding: 32px 0; }
  .credential .label { font-size: 12px; }
}

.trust-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 4px;
  display: inline-block;
}

.trust-link:hover {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

/* ===== NEWSLETTER (secondary opt-in) ===== */
.newsletter {
  padding: 88px 24px;
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--ink);
  position: relative;
  box-shadow: var(--shadow-soft);
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
}

.newsletter-card .eyebrow {
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.newsletter-card .eyebrow::before { background: var(--ink-soft); }

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--ink);
}

.newsletter h2 em {
  font-style: italic;
  color: var(--copper);
}

.newsletter .lede {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.55;
}

@media (min-width: 760px) {
  .newsletter { padding: 128px 56px; }
  .newsletter-card { padding: 52px 48px; }
  .newsletter .lede { font-size: 19px; }
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  padding: 96px 24px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.bottom-cta .eyebrow { margin-bottom: 28px; }

.bottom-cta h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 auto 24px;
  max-width: 720px;
  color: var(--ink);
}

.bottom-cta h2 em {
  font-style: italic;
  color: var(--copper);
}

.bottom-cta p {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--ink-soft);
  margin: 0 auto 40px;
  max-width: 560px;
}

.bottom-cta .signup-form {
  margin: 0 auto;
}

.bottom-cta .signup-form .input-row {
  justify-content: center;
}

@media (min-width: 760px) {
  .bottom-cta { padding: 144px 56px; }
}

/* ===== ABOUT PAGE ===== */
.about {
  padding: 56px 24px 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.about .eyebrow { margin-bottom: 28px; }

.about h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  color: var(--ink);
  max-width: 820px;
}

.about h1 em { font-style: italic; color: var(--copper); }

.about-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.about-portrait-wrap {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.about-portrait {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
  border: 1px solid var(--ink);
  position: relative;
  z-index: 1;
}

.about-portrait-wrap::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid var(--copper);
  z-index: 0;
}

.about-prose {
  font-family: 'Source Serif 4', serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: var(--prose);
}

.about-prose p { margin-bottom: 24px; }

.about-prose p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 72px;
  float: left;
  line-height: 0.9;
  margin: 8px 12px 0 -2px;
  color: var(--copper);
}

.about-prose a {
  color: var(--copper);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-prose a:hover { color: var(--copper-deep); }

@media (min-width: 760px) {
  .about { padding: 88px 56px 120px; }
  .about-grid { grid-template-columns: 320px 1fr; gap: 80px; }
  .about-portrait-wrap { margin: 0; }
  .about-prose { font-size: 21px; }
  .about-prose p:first-of-type::first-letter { font-size: 80px; }
}

.about-cta {
  margin-top: 80px;
  padding: 48px 32px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--gold));
}

.about-cta .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 16px;
}
.about-cta .eyebrow::before { background: var(--gold-soft); }

.about-cta h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--paper);
}

.about-cta h2 em { font-style: italic; color: var(--gold-soft); }

.about-cta p {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  color: rgba(247, 242, 232, 0.82);
  margin-bottom: 28px;
  line-height: 1.55;
}

.about-cta .signup-form .input-row {
  border-color: var(--paper);
  box-shadow: 4px 4px 0 var(--copper);
}

.about-cta .signup-form input[type="email"] { color: var(--ink); }

.about-cta .signup-form button {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--paper);
}

.about-cta .signup-form button:hover { background: var(--copper-deep); border-color: var(--copper-deep); }

.about-cta .form-meta { color: rgba(247, 242, 232, 0.7); }

@media (min-width: 760px) {
  .about-cta { padding: 56px 48px; }
  .about-cta p { font-size: 19px; }
}

/* ===== LEGAL / PRIVACY PAGE ===== */
.legal {
  padding: 56px 24px 80px;
  max-width: var(--prose);
  margin: 0 auto;
}

.legal .eyebrow { margin-bottom: 24px; }

.legal h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--ink);
}

.legal .last-updated {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

.legal h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--ink);
}

.legal p, .legal ul {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 18px;
}

.legal ul { padding-left: 24px; }
.legal li { margin-bottom: 6px; }

.legal a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 760px) {
  .legal { padding: 88px 48px 120px; }
  .legal p, .legal ul { font-size: 20px; }
  .legal h2 { font-size: 28px; margin-top: 60px; }
}

/* ===== THANKS PAGE ===== */
.thanks {
  padding: 88px 24px 96px;
  max-width: var(--prose);
  margin: 0 auto;
}

.thanks .eyebrow { margin-bottom: 32px; }

.thanks h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(48px, 9vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--ink);
}

.thanks h1 em { font-style: italic; color: var(--copper); }

.thanks .thanks-body {
  font-family: 'Source Serif 4', serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 24px;
}

.thanks .thanks-tip {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  padding: 24px 28px;
  border-left: 4px solid var(--copper);
  background: var(--paper-card);
  margin: 36px 0;
  border-radius: 0;
}

.thanks .thanks-back {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  display: inline-block;
  margin-top: 32px;
}

.thanks .thanks-back:hover { color: var(--copper-deep); border-bottom-color: var(--copper-deep); }

@media (min-width: 760px) {
  .thanks { padding: 120px 56px 144px; }
  .thanks .thanks-body { font-size: 22px; }
  .thanks .thanks-tip { font-size: 20px; padding: 28px 32px; }
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 56px 24px 64px;
  text-align: center;
  background: var(--paper-deep);
}

.site-footer .colophon {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.005em;
}

.site-footer .colophon em { color: var(--copper); }

.site-footer .footer-nav {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.site-footer .footer-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  margin: 0 6px;
}

.site-footer .footer-nav a:hover { color: var(--copper); }

.site-footer .footer-nav .sep { margin: 0 2px; opacity: 0.4; color: var(--copper); }

.site-footer .copyright {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

@media (min-width: 760px) {
  .site-footer { padding: 72px 56px 80px; }
  .site-footer .colophon { font-size: 16px; }
}

/* ===== ENTRANCE ANIMATION (homepage hero) ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mapEnter {
  from { opacity: 0; transform: translateY(40px) rotate(-2deg); }
  to { opacity: 1; transform: translateY(0) rotate(-0.4deg); }
}

.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.hero-content .eyebrow { animation-delay: 0.05s; }
.hero-content h1 { animation-delay: 0.2s; }
.hero-content .subhead { animation-delay: 0.35s; }
.hero-content .description { animation-delay: 0.5s; }
.hero-content .signup-form { animation-delay: 0.65s; }

.hero-visual .map-card {
  opacity: 0;
  animation: mapEnter 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content > *,
  .hero-visual .map-card {
    opacity: 1;
    animation: none;
    transform: rotate(-0.4deg);
  }
}

/* ===== LETTERS (single issue) ===== */
.letter {
  max-width: var(--prose);
  margin: 0 auto;
  padding: 48px 24px 24px;
}

@media (min-width: 760px) {
  .letter { padding: 88px 24px 32px; }
}

.letter-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.letter-back {
  color: var(--copper);
  text-decoration: none;
}

.letter-back:hover { color: var(--copper-deep); }

.letter-date { color: var(--ink-soft); }

.letter-title {
  font-family: 'Playfair Display', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}

@media (min-width: 760px) {
  .letter-title { font-size: 52px; margin-bottom: 48px; }
}

.letter-body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 19px;
  line-height: 1.68;
  color: var(--ink);
}

@media (min-width: 760px) {
  .letter-body { font-size: 21px; line-height: 1.7; }
}

.letter-body strong {
  font-weight: 700;
  color: var(--ink);
}

.letter-body a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.letter-body a:hover { color: var(--copper-deep); }

.letter-figure {
  margin: 56px auto 24px;
  text-align: center;
}

.letter-figure img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  background: var(--paper-card);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.letter-figure figcaption {
  margin-top: 14px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-style: italic;
}

/* ----- Subscribe CTA below the letter ----- */
.letter-cta {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 56px 24px;
  margin-top: 48px;
}

.letter-cta-inner {
  max-width: var(--prose);
  margin: 0 auto;
  text-align: center;
}

.letter-cta .eyebrow { margin-bottom: 18px; }

.letter-cta h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
}

.letter-cta h2 em {
  font-style: italic;
  color: var(--copper);
}

.letter-cta p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

@media (min-width: 760px) {
  .letter-cta { padding: 80px 24px; }
  .letter-cta h2 { font-size: 36px; }
}

/* ----- Author blurb ----- */
.letter-author {
  max-width: var(--prose);
  margin: 0 auto;
  padding: 56px 24px 80px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}

.letter-author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--rule);
}

.letter-author-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.letter-author-text p { margin-bottom: 8px; }

.letter-author-text strong { color: var(--ink); }

.letter-author-text a {
  color: var(--copper);
  text-decoration: none;
  font-weight: 600;
}

.letter-author-text a:hover { color: var(--copper-deep); text-decoration: underline; }

@media (min-width: 760px) {
  .letter-author {
    padding: 72px 24px 96px;
    grid-template-columns: 96px 1fr;
    gap: 32px;
  }
  .letter-author-photo { width: 96px; height: 96px; }
  .letter-author-text { font-size: 16px; }
}

/* ===== LETTERS INDEX (/letters/) ===== */
.letters-head {
  max-width: var(--prose);
  margin: 0 auto;
  padding: 56px 24px 32px;
  text-align: center;
}

.letters-head .eyebrow { margin-bottom: 24px; }

.letters-head h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

.letters-head h1 em {
  font-style: italic;
  color: var(--copper);
}

.letters-head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.letters-head p a {
  color: var(--copper);
  text-decoration: underline;
}

@media (min-width: 760px) {
  .letters-head { padding: 96px 24px 48px; }
  .letters-head h1 { font-size: 72px; }
  .letters-head p { font-size: 20px; }
}

.letters-list-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 24px 96px;
}

.letters-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}

.letter-row {
  border-bottom: 1px solid var(--rule);
}

.letter-row-link {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-areas:
    "date title"
    "date preview";
  gap: 6px 28px;
  padding: 28px 8px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease;
}

.letter-row-link:hover {
  background: var(--paper-card);
}

.letter-row-date {
  grid-area: date;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--copper);
  padding-top: 6px;
}

.letter-row-title {
  grid-area: title;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.letter-row-preview {
  grid-area: preview;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.letter-row-empty {
  padding: 48px 8px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
}

.letter-row-empty a {
  color: var(--copper);
  text-decoration: underline;
}

@media (min-width: 760px) {
  .letter-row-link {
    grid-template-columns: 160px 1fr;
    padding: 36px 8px;
    gap: 8px 36px;
  }
  .letter-row-title { font-size: 26px; }
  .letter-row-preview { font-size: 16px; }
}

@media (max-width: 540px) {
  .letter-row-link {
    grid-template-columns: 1fr;
    grid-template-areas:
      "date"
      "title"
      "preview";
    gap: 8px;
    padding: 24px 4px;
  }
  .letter-row-date { padding-top: 0; }
  .letter-row-title { font-size: 20px; }
}
