:root {
  --ink: #0e0d0c;
  --surface: #181614;
  --surface-2: #20191b;
  --border: #2d2825;
  --border-strong: #4a3a26;
  --text: #f3ebd9;
  --text-muted: #a89b85;
  --text-soft: #847a68;
  --accent: #e8b765;
  --accent-strong: #f0c47a;
  --rust: #c9504a;
  --rust-soft: #e36b62;
  --shadow-lift: 0 24px 48px -24px rgba(0, 0, 0, 0.7);
  --radius: 4px;
  --maxw-narrow: 680px;
  --maxw: 1000px;
  --header-h: 72px;
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { background: var(--ink); color: var(--text); min-height: 100vh; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 13, 12, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand:hover { color: var(--accent-strong); }
.brand__logo {
  display: block;
  width: 48px;
  height: auto;
  flex-shrink: 0;
}
.brand .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--rust);
  border-radius: 50%;
  transform: translateY(-4px);
}

.nav-details { position: static; }
.nav-details > summary {
  list-style: none;
  display: none;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-details > summary::-webkit-details-marker { display: none; }
.nav-details > summary:hover { color: var(--text); border-color: var(--border-strong); }
.nav-details[open] > summary { color: var(--accent); border-color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.site-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.site-nav a.active { color: var(--accent); }

@media (max-width: 760px) {
  .nav-details > summary { display: inline-flex; align-items: center; }
  .nav-details > .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    gap: 0;
    z-index: 49;
  }
  .nav-details > .site-nav a { padding: 14px 12px; }
  .nav-details:not([open]) > .site-nav { display: none; }
}

/* ---------- Layout ---------- */
main {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 56px 24px 80px;
}
main.wide { max-width: var(--maxw); }

/* ---------- Typography ---------- */
.display-1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--accent);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-soft);
}
h1.page-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-soft);
  margin-bottom: 44px;
  max-width: 64ch;
}
.prose p {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  margin-bottom: 22px;
  color: var(--text);
}
.prose p em, .prose strong { color: var(--accent); font-weight: 500; font-style: italic; }
.prose a {
  color: var(--accent);
  border-bottom: 1px solid rgba(232, 183, 101, 0.3);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.prose a:hover { color: var(--accent-strong); border-bottom-color: var(--accent-strong); }
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--accent);
  border-left: 2px solid var(--border-strong);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  line-height: 1.5;
}

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  gap: 36px;
  text-align: center;
}
.hero__frame {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
  max-width: 540px;
  width: 100%;
}
.hero__frame img { display: block; width: 100%; height: auto; }
.hero__caption {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.01em;
  color: var(--accent);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 2px;
  border: 1px solid var(--border-strong);
  color: var(--accent);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover, .btn:focus {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  outline: none;
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.btn-rust { color: var(--rust-soft); border-color: rgba(201, 80, 74, 0.4); }
.btn-rust:hover { background: var(--rust); color: var(--text); border-color: var(--rust); }

/* ---------- Episodes list ---------- */
.episodes { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ep-link {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: baseline;
  gap: 18px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.ep-link:hover, .ep-link:focus {
  background: var(--surface-2);
  border-color: var(--border-strong);
  transform: translateX(2px);
  outline: none;
}
.ep-link .no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}
.ep-link .title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.ep-link:hover .title, .ep-link:focus .title { color: var(--accent); }
.ep-link .date {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  white-space: nowrap;
}
.ep-link .play {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust-soft);
  border: 1px solid rgba(201, 80, 74, 0.4);
  padding: 4px 10px;
  border-radius: 2px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.ep-link:hover .play { background: var(--rust); color: var(--text); border-color: var(--rust); }
.ep-link .note {
  grid-column: 2 / -1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--text-soft);
}
@media (max-width: 640px) {
  .ep-link { grid-template-columns: 40px 1fr auto; }
  .ep-link .date { grid-column: 2; font-size: 11px; }
  .ep-link .play { grid-column: 3; grid-row: 1; }
  .ep-link .note { padding-left: 4px; }
}

/* ---------- Cards (drink + quote) ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 28px;
  margin-bottom: 20px;
  transition: border-color 0.25s var(--ease);
}
.card:hover { border-color: var(--border-strong); }
.card h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--accent);
  margin-bottom: 4px;
}
.card .ref {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.card .ref a {
  color: var(--rust-soft);
  border-bottom: 1px solid rgba(227, 107, 98, 0.3);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card .ref a:hover { color: var(--rust); border-bottom-color: var(--rust); }
.card p {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.6;
  margin-bottom: 12px;
}
.card p:last-child { margin-bottom: 0; }
.card em { color: var(--accent); font-style: italic; }

.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border-strong);
  padding: 22px 26px;
  margin-bottom: 16px;
  transition: border-color 0.25s var(--ease), border-left-color 0.25s var(--ease);
}
.quote:hover { border-color: var(--border-strong); border-left-color: var(--rust); }
.quote .body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  margin-bottom: 14px;
}
.quote .meta {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.quote .meta .author { color: var(--accent); font-weight: 600; }
.quote .meta a {
  color: var(--rust-soft);
  border-bottom: 1px solid rgba(227, 107, 98, 0.3);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.quote .meta a:hover { color: var(--rust); border-bottom-color: var(--rust); }

/* ---------- Embed page ---------- */
.embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 28px 0;
}
.embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-soft);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.embed-meta .date { letter-spacing: 0.06em; }
.embed-meta a { color: var(--accent); }
.embed-meta a:hover { color: var(--accent-strong); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 96px;
  padding: 36px 24px;
  background: var(--ink);
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-footer__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.site-footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}
.site-footer__meta {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-soft);
  text-align: right;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-footer__meta a { color: var(--text-muted); transition: color 0.2s var(--ease); }
.site-footer__meta a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .site-footer__inner { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .site-footer__meta { text-align: center; }
}

/* ---------- Entrance animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  animation: reveal 0.55s var(--ease) forwards;
}
.reveal[data-delay="1"] { animation-delay: 0.05s; }
.reveal[data-delay="2"] { animation-delay: 0.10s; }
.reveal[data-delay="3"] { animation-delay: 0.18s; }
.reveal[data-delay="4"] { animation-delay: 0.26s; }
.reveal[data-delay="5"] { animation-delay: 0.34s; }
@keyframes reveal {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Landing hero v2 ---------- */
.hero-v2 {
  padding: 80px 24px 64px;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: left;
}
.hero-v2 .eyebrow { margin-bottom: 16px; }
.hero-v2 .display-1 {
  font-size: clamp(56px, 12vw, 156px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  margin-bottom: 24px;
}
.hero-v2 .display-1 .rust { color: var(--rust); font-style: italic; }
.hero-v2 .lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.45;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 32px;
}
.hero-v2 .lead::first-letter {
  font-size: 1.6em;
  color: var(--accent);
  font-weight: 500;
}
.hero-v2 .actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Stat strip ---------- */
.stat-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 24px 0;
  margin: 24px 0 56px;
}
.stat-strip__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--border-strong);
  padding-left: 14px;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.3;
}
@media (max-width: 760px) {
  .stat-strip__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Page section header ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto 72px;
  padding: 0 24px;
}
.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 540px) {
  .section__head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .section__link { font-size: 11px; }
}
.section__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--text);
  letter-spacing: -0.005em;
}
.section__title em { color: var(--accent); font-style: italic; }
.section__link {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust-soft);
  border-bottom: 1px solid rgba(227, 107, 98, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.section__link:hover { color: var(--rust); border-bottom-color: var(--rust); }

/* ---------- Featured episode ---------- */
.featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  transition: border-color 0.25s var(--ease);
}
.featured:hover { border-color: var(--border-strong); }
.featured__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--ink);
  position: relative;
  border: 1px solid var(--border);
  text-decoration: none;
  overflow: hidden;
}
.featured__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(14,13,12,0.55) 100%);
  pointer-events: none;
}
.featured__thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 56px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.6);
  opacity: 0.85;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.featured__thumb:hover::after { transform: scale(1.08); opacity: 1; }
.featured__body { display: flex; flex-direction: column; gap: 14px; }
.featured__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.featured__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rust); display: inline-block;
}
.featured__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  color: var(--accent);
}
.featured__date {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.featured__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
@media (max-width: 760px) {
  .featured { grid-template-columns: 1fr; padding: 20px; }
}

/* ---------- Pillar cards ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillar {
  display: block;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.pillar:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--rust-soft);
  line-height: 1;
  margin-bottom: 10px;
}
.pillar__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--accent);
  margin-bottom: 10px;
}
.pillar__teaser {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}
@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ---------- About + Timeline ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-grid .prose p { font-size: clamp(17px, 1.9vw, 19px); }
.about-grid .prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.2em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--accent);
}
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
}

.timeline {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 22px 24px;
}
.timeline__title {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.timeline__row {
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.timeline__year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
}
.timeline__bar {
  position: relative;
  height: 10px;
  background: var(--ink);
  border: 1px solid var(--border);
}
.timeline__bar-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent) 0%, var(--rust) 100%);
  transform-origin: left;
}
.timeline__count {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: right;
}

/* ---------- Pull quotes (large) ---------- */
.pullquotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pq {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--rust);
  transition: border-color 0.25s var(--ease);
}
.pq:hover { border-color: var(--border-strong); border-top-color: var(--rust-soft); }
.pq__body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 16px;
}
.pq__author {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2px;
}
.pq__ep {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  text-transform: uppercase;
}
.pq__ep a {
  color: var(--rust-soft);
  border-bottom: 1px solid rgba(227, 107, 98, 0.3);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.pq__ep a:hover { color: var(--rust); border-bottom-color: var(--rust); }
@media (max-width: 760px) {
  .pullquotes { grid-template-columns: 1fr; }
}

/* ---------- Big CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--rust);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.cta-strip__copy h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--accent);
  margin-bottom: 6px;
}
.cta-strip__copy p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .cta-strip { grid-template-columns: 1fr; padding: 24px; }
}

/* Footnote / small print */
.footnote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--text-soft);
  text-align: center;
  margin-top: 36px;
  line-height: 1.55;
}
