/* Generated by Frontend Wireframe Engine — Phase 4 (revision 2)
   DNA Hash: 0f751d78baa7 (revised palette)
   Client: Robert C. Smith, MD
   Direction: bold-color-blocking using existing brand palette
   (cyan / coral / tan / black) — confident typographic blocks, not template. */

:root {
  /* Brand palette — HIS colors */
  --cyan:       #0092B9;
  --cyan-deep:  #0A6E89;
  --cyan-ink:   #0B3845;     /* book-cover dark */
  --coral:      #E96656;
  --coral-deep: #C04A3C;
  --tan:        #D3B683;
  --tan-soft:   #E7D5B0;
  --tan-pale:   #F3EAD3;
  --ink:        #171717;
  --ink-soft:   #2A2A2A;
  --paper:      #FAF6EC;
  --white:      #FFFFFF;
  --rule-dark:  rgba(255,255,255,0.18);
  --rule-light: rgba(23,23,23,0.12);

  /* Typography */
  --font-display: "Archivo Narrow", "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-accent:  "Fraunces", Georgia, "Times New Roman", serif;

  /* Spacing */
  --gutter: clamp(20px, 4vw, 56px);

  /* Animation */
  --t-fast: 200ms;
  --t-med:  360ms;
  --ease:   cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Type ---------- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 0.92;
  text-transform: none;
  margin: 0;
}

h1 { font-size: clamp(56px, 10.5vw, 168px); }
h2 { font-size: clamp(40px, 6.4vw, 96px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.05; }
h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; text-transform: uppercase; margin: 0; }

p { margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.serif {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}

a { color: inherit; }

/* ---------- Layout shells ---------- */
.wrap        { max-width: 1320px; margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width:  840px; margin: 0 auto; padding-inline: var(--gutter); }

section { padding-block: clamp(72px, 9vw, 144px); position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border: 0;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btn::after { content: "→"; font-family: var(--font-body); transition: transform var(--t-fast) var(--ease); }
.btn:hover::after { transform: translateX(4px); }

.btn-coral   { background: var(--coral); color: var(--white); }
.btn-coral:hover   { background: var(--coral-deep); }

.btn-ink     { background: var(--ink); color: var(--white); }
.btn-ink:hover     { background: var(--cyan-ink); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline-ink:hover { background: var(--ink); color: var(--white); }

/* ---------- Masthead ---------- */
.masthead {
  background: var(--ink);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--rule-dark);
}
.masthead-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--white);
}
.brand .mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--white);
  white-space: nowrap;
}
.brand .mark em { font-family: var(--font-accent); font-style: italic; font-weight: 400; color: var(--cyan); margin: 0 1px; }
.brand .credential {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.masthead-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.masthead-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}
.masthead-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--coral);
  transition: right var(--t-med) var(--ease-out);
}
.masthead-nav a:hover { color: var(--white); }
.masthead-nav a:hover::after { right: 0; }

.masthead-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--coral);
  padding: 12px 18px;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.masthead-cta:hover { background: var(--white); color: var(--ink); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule-dark);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
}
.menu-toggle svg { width: 20px; height: 20px; }

@media (max-width: 920px) {
  .masthead-nav, .masthead-cta { display: none; }
  .masthead-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-flex; }
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 100;
  display: none;
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
  overflow-y: auto;
  padding: 32px 24px;
  padding-top: max(24px, env(safe-area-inset-top));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}
.mobile-menu.is-open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--rule-dark);
  cursor: pointer;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
}
.mobile-menu-list a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-dark);
}
.mobile-menu-list a:last-child { border-bottom: 0; }
.mobile-menu-list a:hover { color: var(--coral); }

/* ============================================================
   HERO — full-bleed cyan
   ============================================================ */
.hero {
  background: var(--cyan);
  color: var(--white);
  overflow: hidden;
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--tan-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ""; width: 36px; height: 2px; background: var(--coral); }

.hero h1 {
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.022em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}
.hero h1 .qmark {
  color: var(--coral);
  display: inline-block;
  transform: translateY(0.04em) rotate(8deg);
  margin-left: 0.04em;
}
.hero h1 .alt {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--tan);
  letter-spacing: -0.01em;
}

.hero-sub {
  margin-top: 22px;
  max-width: 52ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.hero-sub em { color: var(--tan); font-style: italic; font-family: var(--font-accent); }

.hero-cta-row {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero retailer row — primary above-fold buy CTA */
.retailer-row {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.22);
  display: grid;
  gap: 12px;
}
.retailer-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tan);
}
.retailer-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.retailer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  padding: 16px 14px;
  height: 64px;
  border: 2px solid var(--white);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  position: relative;
  overflow: hidden;
}
.retailer:hover { transform: translateY(-2px); box-shadow: 0 6px 0 -1px rgba(11, 56, 69, 0.4); }
.rt-logo { display: inline-flex; align-items: baseline; line-height: 1; }

/* --- Bookshop.org — wordmark in their brand orange --- */
.rt-bookshop .rt-bookshop-word {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: #1F1F1F;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.rt-bookshop .rt-bookshop-org {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: #FF6F22;
}

/* --- Amazon — wordmark + smile --- */
.rt-amazon-stack { flex-direction: column; align-items: center; gap: 1px; }
.rt-amazon .rt-amazon-word {
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #131A22;
  line-height: 0.95;
}
.rt-amazon-smile { width: 64px; height: 11px; margin-top: 1px; }

/* --- Barnes & Noble — serif wordmark, two stacked lines --- */
.rt-bn-stack { flex-direction: column; align-items: center; gap: 0; }
.rt-bn .rt-bn-top, .rt-bn .rt-bn-bot {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #1F1F1F;
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
}
.rt-bn .rt-bn-bot { color: #2D7E5C; /* their brand green accent */ }
.rt-bn .rt-bn-amp { font-style: italic; font-weight: 400; }

/* --- Books-A-Million — bold red BAM! --- */
.rt-bam .rt-bam-word {
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #DA1F26;
  font-style: italic;
  line-height: 0.9;
}
.rt-bam .rt-bam-bang { color: #1F1F1F; margin-left: 1px; }

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

.hero-meta {
  margin-top: 22px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.hero-meta strong { color: var(--white); font-weight: 700; }

/* Hero book — anchored bottom-right of grid */
.hero-book-wrap {
  position: relative;
  align-self: end;
}
.hero-book-wrap::before {
  /* Tan dot/circle behind the book — graphic anchor */
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: var(--tan);
  border-radius: 50%;
  top: -24px;
  right: -10%;
  z-index: 0;
}
.hero-book {
  position: relative;
  z-index: 1;
  aspect-ratio: 2 / 3;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  background: linear-gradient(168deg, var(--cyan-ink) 0%, #061f28 60%);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--tan-soft);
  outline: 6px solid rgba(11, 56, 69, 0.25);
  outline-offset: 0;
}
.hero-book::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(231, 213, 176, 0.22);
}
.hero-book .label {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(231, 213, 176, 0.7);
}
.hero-book .title {
  position: relative;
  z-index: 1;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
  color: var(--white);
  margin-top: 24px;
  letter-spacing: -0.01em;
}
.hero-book .byline {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(231, 213, 176, 0.3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan-soft);
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; align-items: start; }
  .hero-book-wrap::before { width: 220px; height: 220px; top: -16px; right: 8%; }
  .hero-book { max-width: 240px; margin-left: 0; }
}

/* ============================================================
   THE NUMBERS — large stat block, paper bg
   ============================================================ */
.numbers {
  background: var(--paper);
  border-bottom: 1px solid var(--rule-light);
}
.numbers-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 72px;
}
.numbers-head h2 { font-size: clamp(32px, 5vw, 72px); line-height: 0.94; max-width: 12ch; }
.numbers-head .lead { font-size: 17px; line-height: 1.55; color: var(--ink-soft); max-width: 52ch; }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
}
.stat {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--rule-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat:last-child { border-right: 0; padding-right: 0; }
.stat .figure {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 9vw, 144px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat .figure .accent { color: var(--coral); }
.stat .figure .small {
  font-size: 0.42em;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 4px;
  color: var(--cyan-deep);
}
.stat h4 { color: var(--cyan-deep); font-size: 13px; }
.stat p { font-size: 15px; line-height: 1.5; color: var(--ink-soft); max-width: 32ch; }

@media (max-width: 900px) {
  .numbers-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--rule-light); padding: 32px 0; }
  .stat:last-child { border-bottom: 0; }
}

/* ============================================================
   ABOUT — tan section, two columns
   ============================================================ */
.about {
  background: var(--tan-pale);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 38%, rgba(11, 56, 69, 0.28), transparent 55%),
    linear-gradient(180deg, var(--tan) 0%, var(--cyan-deep) 130%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 22px;
}
.about-portrait .label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.about-portrait::after {
  /* coral corner accent */
  content: "";
  position: absolute;
  bottom: -16px; right: -16px;
  width: 96px; height: 96px;
  background: var(--coral);
  z-index: 0;
}
.about-body h2 { color: var(--ink); margin-bottom: 28px; font-size: clamp(36px, 5vw, 80px); line-height: 0.94; }
.about-body h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 400; color: var(--cyan-deep); text-transform: none; letter-spacing: -0.015em; }
.about-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 16px;
}
.about-credentials {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}
.about-credentials .dot { width: 6px; height: 6px; background: var(--coral); border-radius: 50%; align-self: center; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait { max-width: 360px; }
}

/* ============================================================
   PRAISE — cyan section, white reverse
   ============================================================ */
.praise {
  background: var(--cyan);
  color: var(--white);
}
.praise-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.praise-head h2 { color: var(--white); font-size: clamp(40px, 5.5vw, 80px); }
.praise-head .lead { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.85); max-width: 50ch; }

.praise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.praise-card {
  background: var(--cyan-deep);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.praise-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--coral);
  line-height: 1;
}
.praise-card blockquote {
  margin: 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.4;
  color: var(--white);
}
.praise-card cite {
  font-style: normal;
  display: block;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.praise-card cite .name { display: block; font-weight: 600; font-size: 14px; color: var(--white); }
.praise-card cite .role { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--tan); margin-top: 4px; }

@media (max-width: 900px) {
  .praise-head { grid-template-columns: 1fr; gap: 24px; }
  .praise-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   TAKE ACTION — coral section, white reverse
   ============================================================ */
.action {
  background: var(--coral);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.action::before {
  content: "ACT";
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(280px, 36vw, 600px);
  color: rgba(255,255,255,0.06);
  bottom: -10%;
  right: -3%;
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 0.8;
  text-transform: uppercase;
}
.action .wrap { position: relative; }
.action .eyebrow { color: var(--tan-soft); }
.action h2 { color: var(--white); margin-top: 18px; max-width: 16ch; }
.action h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 300; color: var(--cyan-ink); text-transform: none; letter-spacing: -0.015em; }

.action-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: end;
  margin-top: 56px;
}
.action-grid p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 52ch;
}

.action-steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--white);
}
.action-step {
  padding: 32px 28px 32px 0;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.action-step:last-child { border-right: 0; padding-right: 0; }
.action-step .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--cyan-ink);
  display: block;
  margin-bottom: 14px;
}
.action-step h4 { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.05; text-transform: none; letter-spacing: -0.01em; margin-bottom: 10px; }
.action-step p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.85); margin: 0; }

@media (max-width: 800px) {
  .action-grid { grid-template-columns: 1fr; gap: 28px; }
  .action-steps { grid-template-columns: 1fr; }
  .action-step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.25); padding: 24px 0; }
  .action-step:last-child { border-bottom: 0; }
}

/* ============================================================
   PATHWAYS — paper section with three colored cards
   ============================================================ */
.pathways {
  background: var(--paper);
}
.pathways-head { max-width: 60ch; margin-bottom: 64px; }
.pathways-head h2 { font-size: clamp(36px, 5.4vw, 80px); margin-top: 18px; }
.pathways-head h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 300; color: var(--coral); text-transform: none; letter-spacing: -0.01em; }

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pathway {
  padding: 40px 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 6px solid var(--cyan);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
  position: relative;
}
.pathway:nth-child(2) { border-top-color: var(--coral); }
.pathway:nth-child(3) { border-top-color: var(--tan); }
.pathway:hover { transform: translateY(-4px); }

.pathway .label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pathway h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 14ch;
}
.pathway h3 em { font-family: var(--font-accent); font-style: italic; font-weight: 400; color: var(--cyan-deep); }
.pathway p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); max-width: 32ch; }
.pathway ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-light);
}
.pathway ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.pathway ul li a::after { content: "→"; color: var(--cyan-deep); transition: transform var(--t-fast) var(--ease), color var(--t-fast) var(--ease); }
.pathway ul li a:hover { color: var(--coral); }
.pathway ul li a:hover::after { transform: translateX(4px); color: var(--coral); }

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

/* ============================================================
   PRESS — black section
   ============================================================ */
.press {
  background: var(--ink);
  color: var(--white);
}
.press-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 56px;
}
.press-head h2 { color: var(--white); font-size: clamp(36px, 5.4vw, 80px); }
.press-head h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 300; color: var(--cyan); text-transform: none; }
.press-head .all-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 6px;
}

.press-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  border-top: 1px solid var(--rule-dark);
}
.press-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-dark);
  text-decoration: none;
  color: var(--white);
  transition: padding-left var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.press-item:hover { padding-left: 8px; color: var(--coral); }
.press-item .date {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.press-item .outlet {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.press-item .outlet em { font-family: var(--font-accent); font-style: italic; font-weight: 400; color: var(--tan); }
.press-item .arrow { color: var(--cyan); transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.press-item:hover .arrow { color: var(--coral); transform: translateX(4px); }

@media (max-width: 720px) {
  .press-list { grid-template-columns: 1fr; gap: 0; }
  .press-item { grid-template-columns: 80px 1fr auto; gap: 12px; padding: 18px 0; }
}

/* ============================================================
   SIGNUP — tan section
   ============================================================ */
.signup {
  background: var(--tan-soft);
}
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.signup-grid h2 { color: var(--ink); font-size: clamp(36px, 5vw, 72px); margin-bottom: 24px; }
.signup-grid h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 300; color: var(--coral); text-transform: none; letter-spacing: -0.015em; }
.signup-grid p { font-size: 17px; line-height: 1.55; color: var(--ink-soft); max-width: 44ch; margin-bottom: 16px; }
.signup-grid ul { list-style: none; padding: 0; margin: 28px 0 0 0; display: grid; gap: 12px; }
.signup-grid ul li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.signup-grid ul li::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--coral);
  margin-top: 11px;
}

.signup form { display: grid; gap: 16px; background: var(--white); padding: clamp(24px, 4vw, 40px); border: 2px solid var(--ink); }
.signup .field { display: grid; gap: 6px; }
.signup label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cyan-deep); }
.signup input, .signup select {
  font-family: var(--font-body);
  font-size: 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  color: var(--ink);
  outline: none;
}
.signup input:focus, .signup select:focus { border-bottom-color: var(--coral); }
.signup .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.signup .actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; align-items: stretch; }
.signup button[type=submit] { background: var(--coral); color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; padding: 16px 24px; border: 0; cursor: pointer; transition: background var(--t-fast) var(--ease); }
.signup button[type=submit]:hover { background: var(--ink); }
.signup .privacy { font-size: 12px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .signup-grid { grid-template-columns: 1fr; gap: 48px; }
  .signup .field-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ink);
  color: var(--white);
  padding-block: 80px 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  border-bottom: 1px solid var(--rule-dark);
  padding-bottom: 48px;
}
.foot-top .brand-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
  color: var(--white);
}
.foot-top .brand-line em { font-family: var(--font-accent); font-style: italic; font-weight: 400; color: var(--cyan); margin: 0 1px; }
.foot-top p { color: rgba(255,255,255,0.7); max-width: 38ch; line-height: 1.5; font-size: 15px; }
.foot-top h4 { color: var(--cyan); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 18px; }
.foot-top ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-top a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; transition: color var(--t-fast) var(--ease); }
.foot-top a:hover { color: var(--coral); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}
.foot-bottom .accent { color: var(--coral); }

@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .foot-top { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   STICKY BUY BAR — persistent CTA after hero
   ============================================================ */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--ink);
  color: var(--white);
  border-top: 3px solid var(--coral);
  transform: translateY(100%);
  transition: transform var(--t-med) var(--ease-out);
  padding-bottom: env(safe-area-inset-bottom);
}
.buybar[data-hidden="false"] { transform: translateY(0); }

.buybar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: 28px;
  padding-block: 14px;
}

.buybar-title {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.buybar-mini-cover {
  flex: none;
  width: 44px;
  height: 56px;
  background: linear-gradient(168deg, var(--cyan-ink) 0%, #061f28 70%);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: var(--tan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  border: 1px solid rgba(231, 213, 176, 0.25);
}
.buybar-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.buybar-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.buybar-text .muted {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.buybar-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.buybar-link {
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 44px;
  padding: 6px 12px;
  border: 2px solid var(--white);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.buybar-link:hover { transform: translateY(-1px); box-shadow: 0 3px 0 -1px var(--coral); }

.bb-bookshop .bb-bookshop-word {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: #1F1F1F;
}
.bb-bookshop .bb-bookshop-org {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: #FF6F22;
}

.bb-amazon { flex-direction: column; gap: 0; padding: 4px 12px; }
.bb-amazon .bb-amazon-word {
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #131A22;
  line-height: 1;
}
.bb-amazon-smile { width: 50px; height: 9px; margin-top: 1px; }

.bb-bn .bb-bn-word {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #1F1F1F;
}
.bb-bn .bb-bn-amp { font-style: italic; font-weight: 400; color: #2D7E5C; }

.bb-bam .bb-bam-word {
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #DA1F26;
  font-style: italic;
  line-height: 0.9;
}
.bb-bam .bb-bam-bang { color: #1F1F1F; margin-left: 1px; }

.buybar-close {
  flex: none;
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.buybar-close:hover { color: var(--white); border-color: var(--white); }

@media (max-width: 920px) {
  .buybar-inner { grid-template-columns: 1fr auto; gap: 14px; padding-block: 12px; }
  .buybar-title { grid-column: 1 / 2; }
  .buybar-mini-cover { width: 36px; height: 46px; font-size: 11px; }
  .buybar-text strong { font-size: 14px; }
  .buybar-text .muted { display: none; }
  .buybar-close { grid-column: 2; }
  .buybar-list { grid-column: 1 / -1; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .buybar-link { padding: 10px 4px; font-size: 11px; letter-spacing: 0; }
}

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