/* ===================================================================
   PA Blueprint Review — global styles
   Direction A: Editorial Stack
   Tokens, base, components, page sections, responsive.
   =================================================================== */

:root {
  --navy: #1C2D3A;
  --blue: #2F87D5;
  --gold: #F2B705;
  --ink: #1a1a1a;
  --paper: #fafaf7;
  --paper-warm: #f1ede4;
  --paper-mid: #ecebe4;
  --line: #222;
  --line-soft: #ccc;
  --muted: #555;
  --muted-soft: #777;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace;
  --font-hand: "Caveat", "Comic Sans MS", cursive;

  --container: 1280px;
  --pad-x: clamp(20px, 5vw, 60px);
  --pad-y: clamp(48px, 7vw, 80px);

  --radius-sm: 4px;
  --shadow-hard: 3px 3px 0 #000;
  --shadow-card: 4px 4px 0 #000;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* --- Typography helpers --- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-blue { color: var(--blue); }

.serif { font-family: var(--font-display); }
.italic { font-style: italic; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section-label .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}
.section-label .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; }
.h-hero  { font-size: clamp(40px, 6.5vw, 72px); letter-spacing: -0.02em; }
.h-display { font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -0.01em; }
.h-section { font-size: clamp(28px, 3.5vw, 44px); }
.h-card { font-size: 18px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-hard);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #000; }
.btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 #000; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-ghost-light { background: transparent; color: #fff; border-color: #fff; box-shadow: 3px 3px 0 rgba(0,0,0,0.4); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 11px; }

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1.5px solid var(--line);
}
.site-header.dark {
  background: var(--navy);
  color: #fff;
  border-bottom: none;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}
.nav-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--ink);
}
.site-header.dark .nav-logo-text { color: #fff; }
.nav-links {
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a { padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover { border-bottom-color: var(--gold); }
.nav-links a.active { border-bottom-color: var(--gold); }
.site-header.dark .nav-links a:hover { border-bottom-color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: 20px;
  line-height: 1;
}
.site-header.dark .nav-toggle { background: var(--navy); color: #fff; border-color: #fff; }

/* --- Hero (Direction A) --- */
.hero {
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(24px, 4vw, 40px);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #444;
  flex-wrap: wrap;
}
.hero-eyebrow .stars { color: var(--gold); letter-spacing: 0; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-body {
  margin-top: 22px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  max-width: 480px;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 18px;
  font-size: 11px;
  color: #666;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.hero-visual { position: relative; }
.hero-visual img.books {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
}
.feature-pill {
  position: absolute;
  padding: 8px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 #000;
}
.feature-pill.gold { background: var(--gold); }
.feature-pill.blue { background: var(--blue); color: #fff; }
.feature-pill.tl { top: 6%; left: -4%; }
.feature-pill.mr { top: 38%; right: -4%; }
.feature-pill.bl { bottom: 10%; left: -2%; }

/* --- Mission Strip --- */
.strip {
  background: var(--navy);
  color: #fff;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}
.strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
}
.strip-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}

/* --- Section: Why Students Choose --- */
.section {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.section--warm {
  background: var(--paper-warm);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section--warm > .container {
  padding-top: var(--pad-y);
  padding-bottom: var(--pad-y);
}
.section--dark {
  background: var(--navy);
  color: #fff;
  border-top: 2px solid var(--line);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section--dark > .container {
  padding-top: var(--pad-y);
  padding-bottom: var(--pad-y);
}

.cards-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.card-why {
  border: 1.5px solid var(--line);
  padding: 20px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.card-why:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1.5px var(--gold);
}
.card-why img.icon { width: 48px; height: 48px; object-fit: contain; margin-bottom: 12px; display: block; }
.card-why h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.card-why p { font-size: 13px; color: #444; line-height: 1.5; margin: 0; }

/* --- Inside the Book carousel --- */
.inside {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.carousel {
  position: relative;
}
.carousel-stage {
  position: relative;
  height: 460px;
  border: 1.5px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img { max-width: 100%; max-height: 100%; object-fit: contain; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  box-shadow: 2px 2px 0 #000;
  z-index: 2;
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.carousel-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #555;
  text-transform: uppercase;
}
.carousel-dots { display: flex; gap: 6px; }
.carousel-dots button {
  width: 24px;
  height: 4px;
  border: none;
  padding: 0;
  background: #c9c5b9;
}
.carousel-dots button.active { background: var(--navy); }

.inside-pills {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  padding: 7px 14px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
button.pill { line-height: inherit; }
.pill:hover,
.pill:focus-visible,
.pill.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  outline: none;
}

/* --- Who It's For --- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card-audience {
  padding: 28px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.card-audience.dark { background: var(--navy); color: #fff; }
.card-audience:hover { background: var(--navy); color: #fff; }
.card-audience.dark:hover { background: #fff; color: var(--ink); }
.card-audience .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.6;
}
.card-audience h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin: 6px 0 8px;
}
.card-audience p { font-size: 14px; margin: 0; opacity: 0.9; }

/* --- Testimonial --- */
.testimonial {
  padding: clamp(48px, 7vw, 80px) var(--pad-x);
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial cite {
  display: block;
  font-style: normal;
  margin-top: 18px;
  font-size: 12px;
  opacity: 0.75;
}

/* --- Big CTA --- */
.cta-big {
  padding: clamp(56px, 8vw, 90px) var(--pad-x);
  text-align: center;
  background: var(--paper-warm);
}
.cta-big h2 { font-size: clamp(36px, 5vw, 60px); }
.cta-big .actions {
  margin-top: 26px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: clamp(40px, 5vw, 64px) var(--pad-x);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  font-size: 13px;
  line-height: 1.8;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand .tagline { font-family: var(--font-display); font-size: 20px; margin: 0; }
.footer-brand img {
  width: 240px;
  height: auto;
  display: block;
  margin: -20px 0;
}
.footer-brand .blurb { margin: 0; opacity: 0.7; font-size: 13px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.footer-col a { display: block; opacity: 0.85; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-copy { margin-top: 16px; opacity: 0.55; font-size: 10px; }

/* --- Forms --- */
.form-field {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: var(--radius-sm);
}
.form-field:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
textarea.form-field { min-height: 160px; resize: vertical; }
.form-stack > * + * { margin-top: 12px; }
.form-card {
  border: 1.5px solid var(--line);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.form-status {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  min-height: 1em;
}
.form-status.pending { color: var(--muted); }
.form-status.ok { color: #117a3a; }
.form-status.err { color: #b00020; }

/* --- FAQ accordion --- */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  border-bottom: 1.5px solid var(--line);
  padding: 20px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.faq-q .q-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
}
.faq-q .q-mark {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 12px 0 4px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}
.faq-item.open .q-mark::before { content: '−'; }
.faq-item:not(.open) .q-mark::before { content: '+'; }

/* --- Page hero (inner pages) --- */
.page-hero {
  padding: clamp(48px, 7vw, 80px) var(--pad-x) clamp(28px, 4vw, 40px);
  max-width: var(--container);
  margin: 0 auto;
  border-bottom: 1.5px solid var(--line);
}
.page-hero h1 { margin-top: 12px; }
.page-hero .lede {
  margin-top: 14px;
  font-size: 15px;
  color: #444;
  max-width: 640px;
  line-height: 1.6;
}

/* --- Book page --- */
.book-hero {
  padding: clamp(40px, 5vw, 60px) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.book-hero .image-frame {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  box-shadow: var(--shadow-card);
}
.book-hero .image-frame img { width: 100%; height: auto; max-height: 760px; object-fit: contain; }
.book-prose {
  margin-top: 22px;
}
.book-prose p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 14px;
}
.book-prose p:last-child { margin-bottom: 0; }
.book-prose p:first-child {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
}

.book-feature-list {
  margin-top: 20px;
  border: 1.5px solid var(--line);
  padding: 20px;
  background: #fff;
}
.book-feature-list .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.book-feature-list .row {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
}
.book-feature-list .row .check { color: var(--gold); font-weight: 700; }

.volume-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.volume-card {
  border: 1.5px solid var(--line);
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.volume-card .cover {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-mid);
  margin-bottom: 14px;
  border: 1px solid #ddd;
  padding: 8px;
}
.volume-card .cover img { max-height: 100%; max-width: 100%; object-fit: contain; }
.volume-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 0; }
.volume-card .topics { font-size: 12px; color: #555; margin: 4px 0 14px; flex: 1; }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Quick Hits announcement — stacked: full-width image on top, text below */
.quick-hits {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 24px;
}
.quick-hits .image-frame {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.quick-hits .image-frame img { width: 100%; height: auto; max-height: 760px; object-fit: contain; }
.preview-grid .frame {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 12px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.preview-grid .frame img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* --- About page --- */
.about-belief {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-belief .image-frame {
  border: 1.5px solid var(--line);
  background: #fff;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.about-belief .image-frame img { max-height: 100%; max-width: 100%; object-fit: contain; }
.mission-card {
  background: var(--navy);
  color: #fff;
  padding: clamp(40px, 6vw, 60px) clamp(24px, 4vw, 48px);
  text-align: center;
  border: 2px solid var(--line);
  box-shadow: var(--shadow-card);
}
.mission-card .label { color: var(--gold); }
.mission-card h2 { margin-top: 14px; font-size: clamp(26px, 3.4vw, 40px); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-block {
  border-top: 2px solid var(--line);
  padding-top: 18px;
}
.value-block h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 0 0 6px; }
.value-block p { font-size: 14px; color: #444; margin: 0; }

/* --- Resources page --- */
/* --- Article page (resources/*) --- */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--pad-x) clamp(56px, 8vw, 80px);
}
.article-back {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  border-bottom: 1px solid transparent;
}
.article-back:hover { color: var(--navy); border-bottom-color: var(--gold); }
.article-meta { margin-bottom: 12px; }
.article-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.article-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--blue);
  line-height: 1.4;
  margin: 14px 0 0;
}
.article-body {
  margin-top: clamp(32px, 5vw, 48px);
  padding-top: clamp(24px, 4vw, 32px);
  border-top: 1.5px solid var(--line);
  font-size: 17px;
  line-height: 1.75;
  color: #222;
}
.article-body p { margin: 0 0 1.25em; }
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  margin: 1.8em 0 0.6em;
  color: var(--ink);
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.25;
  margin: 1.5em 0 0.4em;
}
.article-body ul, .article-body ol {
  margin: 0 0 1.25em 1.4em;
  padding: 0;
}
.article-body li { margin: 0 0 0.5em; }
.article-body strong { color: var(--ink); }
.article-body em { color: #333; }
.article-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1.5px solid var(--line);
}

.tag-row { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.tag {
  padding: 7px 16px;
  border: 1.5px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #fff;
}
.tag.active { background: var(--navy); color: #fff; }

.feature-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--line);
  background: var(--paper-warm);
  box-shadow: var(--shadow-card);
}
.feature-article .image-frame {
  background: #fff;
  border-right: 1.5px solid var(--line);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.feature-article .image-frame img { max-height: 280px; max-width: 100%; object-fit: contain; }
.feature-article .body { padding: clamp(20px, 3vw, 32px); }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article-card {
  border: 1.5px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
a.article-card { text-decoration: none; }
a.article-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #000;
  border-color: var(--navy);
}
a.article-card:hover .read { color: var(--gold); }
.article-card .thumb {
  height: 180px;
  background: var(--paper-mid);
  border-bottom: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.article-card .thumb img { max-height: 100%; max-width: 100%; object-fit: contain; }
.article-card .body { padding: 18px; }
.article-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 8px 0 0; line-height: 1.3; }
.article-card .read { margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; }

.newsletter-band {
  background: var(--paper);
  color: var(--ink);
  border-top: 1.5px solid var(--line);
}
.newsletter-band .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 60px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.newsletter-band h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 700; line-height: 1.1; margin: 0; }
.newsletter-band p { font-size: 14px; margin: 8px 0 0; opacity: 0.85; }
.newsletter-form { display: flex; gap: 0; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 14px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.newsletter-form button {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-left: -2px;
}
.newsletter-kit { width: 100%; }
.newsletter-kit .formkit-form,
.newsletter-kit iframe { width: 100% !important; max-width: 100% !important; }
.newsletter-kit .formkit-form { background: transparent !important; box-shadow: none !important; }

/* --- Email signup / lead magnet page --- */
.lead-magnet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 660px;
  padding: clamp(48px, 6vw, 80px) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.lead-magnet .image-frame {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 24px;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.lead-magnet .image-frame img { max-height: 520px; max-width: 100%; object-fit: contain; }
.checks li {
  list-style: none;
  padding: 6px 0;
  font-size: 14px;
}
.checks { padding: 0; margin: 16px 0 0; }
.checks .c { color: var(--gold); font-weight: 700; margin-right: 8px; }
.fineprint { margin-top: 12px; font-size: 11px; color: #888; font-family: var(--font-mono); }

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  padding: clamp(40px, 5vw, 60px) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.contact-meta .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted-soft);
  text-transform: uppercase;
  margin-top: 28px;
}
.contact-meta .label:first-child { margin-top: 0; }
.contact-meta .value-display {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
}

/* --- FAQ page --- */
.faq-cta {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--paper-warm);
  border: 1.5px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}
.faq-cta h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0; }
.faq-cta p { font-size: 14px; color: #444; margin: 4px 0 0; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta .btn { display: none; }
  .nav-cta .btn.always { display: inline-flex; }

  .site-header .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1.5px solid var(--line);
    border-bottom: 1.5px solid var(--line);
    padding: 16px var(--pad-x);
    gap: 14px;
    z-index: 60;
  }
  .site-header.dark .nav-links.open { background: var(--navy); }

  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  .hero-visual img.books { max-height: 360px; }
  .feature-pill.tl { top: 4%; left: 0; }
  .feature-pill.mr { top: 36%; right: 0; }
  .feature-pill.bl { bottom: 6%; left: 0; }

  .strip-inner { justify-content: flex-start; }

  .cards-5 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .inside { grid-template-columns: 1fr; }
  .book-hero { grid-template-columns: 1fr; }
  .volume-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid { grid-template-columns: 1fr; }
  .about-belief { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .feature-article { grid-template-columns: 1fr; }
  .feature-article .image-frame { border-right: none; border-bottom: 1.5px solid var(--line); }
  .article-grid { grid-template-columns: 1fr; }
  .newsletter-band .inner { grid-template-columns: 1fr; }
  .lead-magnet { grid-template-columns: 1fr; min-height: auto; }
  .lead-magnet .image-frame { min-height: 400px; }
  .lead-magnet .image-frame img { max-height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .carousel-stage { height: 360px; }
}

@media (max-width: 768px) {
  .nav-logo-text { display: none; }
}

@media (max-width: 540px) {
  .cards-5 { grid-template-columns: 1fr; }
  .volume-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-logo img { width: 54px; height: 54px; }
  .carousel-stage { height: 280px; }
}
