/* =========================================================
   JohnBaldoni.com — Editorial / Poetry & Leadership
   Palette: warm paper, deep ink, oxblood accent
   Type: Fraunces (display serif) + Inter (body sans)
   ========================================================= */

:root {
  /* Palette */
  --paper: #f4efe6;
  --paper-2: #ebe4d6;
  --paper-3: #e2d9c6;
  --ink: #1a1d22;
  --ink-2: #2b2f36;
  --ink-3: #4b5159;
  --muted: #7a7268;
  --rule: #cdc3ae;
  --accent: #8a2a2a;       /* oxblood */
  --accent-2: #b04a3d;
  --gold: #b08434;
  --cream: #fbf8f1;
  --shadow: 0 1px 2px rgba(26,29,34,.06), 0 6px 24px rgba(26,29,34,.08);
  --shadow-lg: 0 10px 40px rgba(26,29,34,.18);

  /* Type */
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Scale */
  --container: 1200px;
  --container-narrow: 920px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --radius: 6px;
  --radius-lg: 14px;
}

/* =====================  Reset / Base  ===================== */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Typographic helpers */
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 500; }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 var(--space-4);
}
.eyebrow.accent { color: var(--accent); }
.eyebrow-light { color: rgba(255,255,255,0.7); }

.lede {
  font-family: var(--sans);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
}

.section-head {
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
  max-width: 64ch;
}
.section-head--center { text-align: center; margin-inline: auto; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.section-title--light { color: var(--cream); }

/* =====================  Header  ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-color: var(--rule);
  background: rgba(244, 239, 230, 0.94);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-8);
  min-height: 80px;
  padding-block: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.brand-mark { color: var(--ink); display: inline-flex; }
.brand-mark text { dominant-baseline: alphabetic; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-name em { font-style: italic; color: var(--accent); font-weight: 500; }
.brand-tagline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 32px);
  margin: 0;
  padding: 0;
}
.primary-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.primary-nav a:hover { color: var(--accent); border-color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-icon {
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--ink-2);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.social-icon:hover { color: var(--cream); background: var(--ink); border-color: var(--ink); }

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}
.menu-button:hover { background: var(--accent); }
.menu-bars { display: inline-flex; flex-direction: column; gap: 3px; }
.menu-bars span { width: 14px; height: 1.6px; background: currentColor; display: block; }

/* Overlay menu */
.overlay-menu {
  position: fixed;
  inset: 80px 0 0 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  z-index: 40;
  overflow-y: auto;
  animation: overlay-in .3s ease;
}
.overlay-menu[hidden] { display: none; }
@keyframes overlay-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.overlay-inner { padding-block: var(--space-12) var(--space-16); }
.overlay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
}
.overlay-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-4);
}
.overlay-list { list-style: none; padding: 0; margin: 0; }
.overlay-list li + li { margin-top: 8px; }
.overlay-list a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  display: inline-block;
  padding-bottom: 2px;
}
.overlay-list a:hover { color: var(--accent); border-color: var(--accent); }

/* =====================  Buttons  ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font: 600 14px/1 var(--sans);
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--accent); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding-left: 4px;
  padding-right: 4px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.btn-large { padding: 16px 28px; font-size: 15px; }

.link-arrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
  display: inline-block;
}
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }

/* =====================  Hero  ===================== */
.hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 96px) 0;
  overflow: hidden;
}
.hero::before {
  /* soft paper texture */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(176,72,61,0.08), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(176,132,52,0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 32ch; }
.hero-copy .lede { margin-top: var(--space-6); }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.hero-title .serif-italic { color: var(--accent); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: var(--space-12) 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  border-top: 1px solid var(--rule);
  padding-top: var(--space-6);
}
.hero-meta li {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-3);
}
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Hero card / book cover */
.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}
.book-cover {
  width: min(340px, 78%);
  background: transparent;
  border-radius: 4px;
  filter: drop-shadow(26px 28px 28px rgba(35, 28, 18, 0.22));
  position: relative;
  transform: perspective(900px) rotateY(-8deg) rotateZ(-1.2deg);
  transform-style: preserve-3d;
  transition: transform .4s ease, filter .4s ease;
}
.book-cover:hover {
  transform: perspective(900px) rotateY(-3deg) rotateZ(0deg) translateY(-4px);
  filter: drop-shadow(24px 32px 30px rgba(35, 28, 18, 0.25));
}
.book-cover::before {
  content: "";
  position: absolute;
  inset: 2.5% -5% 2.5% auto;
  width: 10%;
  border-radius: 0 6px 6px 0;
  background:
    linear-gradient(90deg, rgba(72, 58, 36, 0.26), rgba(255, 250, 238, 0.88) 36%, rgba(187, 160, 104, 0.35)),
    repeating-linear-gradient(0deg, rgba(70, 52, 27, 0.16) 0 1px, transparent 1px 5px);
  transform: translateZ(-20px) skewY(1deg);
  transform-origin: left center;
  z-index: 0;
}
.book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  background: linear-gradient(105deg, rgba(255,255,255,0.34), transparent 18%, transparent 72%, rgba(69, 47, 22, 0.16));
  pointer-events: none;
  z-index: 2;
}
.book-cover img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow:
    inset 0 0 0 1px rgba(26,29,34,0.08),
    -5px 0 8px rgba(28, 20, 10, 0.16);
}
.cover-frame {
  position: absolute;
  inset: 22px 22px 22px 28px;
  border: 1px solid rgba(26,29,34,0.4);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.cover-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.cover-title {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.cover-title .amp { font-style: italic; color: var(--accent); }
.cover-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  margin-top: 6px;
  color: var(--ink-2);
}
.cover-rule {
  width: 36px;
  height: 1px;
  background: var(--ink);
  margin: 18px 0 14px;
}
.cover-author {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
}
.hero-card-foot { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
}
.pill-muted { background: transparent; color: var(--ink-3); border: 1px solid var(--rule); }

/* Marquee */
.hero-marquee {
  margin-top: clamp(48px, 7vw, 96px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--paper-2);
}
.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  padding-block: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-2);
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-track span:not([aria-hidden]) { padding-inline: 4px; }
.marquee-track span[aria-hidden] { color: var(--accent); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =====================  Book section  ===================== */
.book {
  padding-block: clamp(80px, 10vw, 144px);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.book-head { grid-column: 1 / -1; max-width: 820px; }
.book-pull {
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.012em;
  border-left: 2px solid var(--accent);
  padding-left: clamp(18px, 2vw, 28px);
}
.book-pull p { margin: 0; }
.book-pull cite {
  display: block;
  margin-top: var(--space-4);
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
}
.book-body .lede { max-width: 58ch; }

.book-sections {
  list-style: none;
  margin: var(--space-10) 0 var(--space-10);
  padding: 0;
  display: grid;
  gap: var(--space-6);
}
.book-sections li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-4);
  align-items: baseline;
  padding-block: var(--space-4);
  border-top: 1px solid var(--rule);
}
.book-sections li:last-child { border-bottom: 1px solid var(--rule); }
.book-sections .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--accent);
  font-weight: 500;
}
.book-sections h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.book-sections p { margin: 0; color: var(--ink-3); font-size: 15px; max-width: 56ch; }

.book-buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-6);
}

/* =====================  Praise  ===================== */
.praise {
  padding-block: clamp(80px, 10vw, 128px);
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.praise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}
.quote-card {
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: -12px; left: 22px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  font-weight: 500;
}
.quote-card blockquote { margin: 0; }
.quote-card blockquote p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0;
}
.quote-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.quote-card figcaption strong {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.quote-card figcaption span { color: var(--ink-3); }

/* =====================  Services  ===================== */
.services {
  padding-block: clamp(80px, 10vw, 128px);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--ink-3);
}
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  font-weight: 500;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.service-card p {
  margin: 0;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.55;
  flex-grow: 1;
}

/* =====================  About  ===================== */
.about {
  padding-block: clamp(80px, 10vw, 128px);
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.about-portrait { position: sticky; top: 110px; }
.portrait-frame {
  aspect-ratio: 726 / 793;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.portrait-cap {
  margin-top: var(--space-4);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.about-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: var(--space-4) 0;
  max-width: 64ch;
}
.about-meta {
  list-style: none;
  padding: 0;
  margin: var(--space-8) 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.about-meta li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}
.about-meta .ka { font-family: var(--serif); font-weight: 500; font-size: 17px; }
.about-meta .va { color: var(--ink-3); }

/* =====================  Recognition  ===================== */
.recognition {
  padding-block: clamp(80px, 10vw, 128px);
}
.badge-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.badge {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--paper);
  transition: background .2s ease;
}
.badge:hover { background: var(--cream); }
.badge-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent);
  line-height: 1;
}
.badge-line {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* =====================  Testimonial Band  ===================== */
.testimonial-band {
  padding-block: clamp(80px, 9vw, 128px);
  background: var(--ink);
  color: var(--cream);
}
.big-quote {
  margin: 0;
  max-width: 920px;
  text-align: left;
}
.big-quote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  margin: 0;
}
.big-quote .serif-italic { color: var(--accent-2); }
.big-quote cite {
  display: block;
  margin-top: var(--space-8);
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251,248,241,0.7);
}
.big-quote cite span { font-weight: 400; color: rgba(251,248,241,0.55); margin-left: 8px; }

/* =====================  Press / Reading  ===================== */
.press { padding-block: clamp(80px, 10vw, 128px); }
.press-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.press-list li { border-bottom: 1px solid var(--rule); }
.press-list a {
  display: grid;
  grid-template-columns: 220px 1fr 30px;
  align-items: baseline;
  gap: var(--space-6);
  padding-block: var(--space-6);
  transition: background .2s ease, padding-inline .2s ease;
}
.press-list a:hover {
  background: var(--cream);
  padding-inline: var(--space-3);
}
.press-list a:hover .press-arrow { transform: translateX(4px); color: var(--accent); }
.press-source {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.press-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--ink);
}
.press-arrow {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink-3);
  transition: transform .2s ease, color .2s ease;
}

/* =====================  Publications  ===================== */
.publications {
  padding-block: clamp(80px, 10vw, 128px);
  background: var(--ink);
  color: var(--cream);
}
.pub-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}
.pub {
  border: 1px solid rgba(251,248,241,0.18);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: var(--space-8);
  transition: border-color .2s ease, background .2s ease;
}
.pub:hover { border-color: var(--accent-2); background: rgba(176,74,61,0.08); }
.pub-mark {
  font-family: var(--serif);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1;
}
.pub-forbes .pub-mark { font-size: clamp(36px, 4vw, 56px); color: #4a90c8; }
.pub-hbr .pub-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: #e25058;
  line-height: 1.05;
  font-weight: 500;
}
.pub-sb .pub-mark {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--cream);
}
.pub-sb .pub-mark span { color: #2bb673; }

/* =====================  Contact  ===================== */
.contact {
  padding-block: clamp(80px, 10vw, 128px);
  background:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper-3) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.contact .lede { margin-top: var(--space-4); }
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}
.contact-actions .btn { width: 100%; max-width: 320px; }
.contact-note {
  margin-top: var(--space-4);
  font-size: 14px;
  color: var(--ink-3);
}
.contact-note a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

/* =====================  Footer  ===================== */
.site-footer {
  background: var(--ink);
  color: rgba(251,248,241,0.78);
  padding-block: clamp(48px, 6vw, 80px) 24px;
}
.site-footer .brand-mark { color: var(--cream); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(251,248,241,0.15);
}
.footer-brand { display: flex; gap: var(--space-4); align-items: flex-start; }
.footer-tag {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(251,248,241,0.82);
}
.footer-tag strong { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--cream); display: block; margin-bottom: 4px; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.footer-nav h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,248,241,0.5);
  margin: 0 0 var(--space-4);
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li + li { margin-top: 8px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(251,248,241,0.82);
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.footer-nav a:hover { color: var(--accent-2); border-color: var(--accent-2); }

.footer-base {
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(251,248,241,0.55);
}
.footer-quiet {
  font-family: var(--serif);
  font-style: italic;
  margin: 0;
}

/* =====================  Responsive  ===================== */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .header-row { grid-template-columns: auto 1fr auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; max-width: 360px; margin-inline: auto; }
  .hero-copy { max-width: 100%; }
  .book-grid { grid-template-columns: 1fr; }
  .praise-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 320px; }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
  .pub-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .overlay-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-grid { grid-template-columns: 1fr; }
  .press-list a { grid-template-columns: 140px 1fr 24px; gap: var(--space-4); }
}

@media (max-width: 640px) {
  .brand-tagline { display: none; }
  .brand-name { font-size: 20px; }
  .social-icon { display: none; }
  .header-row { gap: var(--space-3); min-height: 68px; }
  .overlay-menu { inset: 68px 0 0 0; }
  .hero { padding-top: 32px; }
  .hero-meta { grid-template-columns: 1fr; gap: var(--space-3); }
  .service-grid { grid-template-columns: 1fr; }
  .badge-grid { grid-template-columns: 1fr; }
  .badge { padding: var(--space-4); }
  .press-list a { grid-template-columns: 1fr; gap: 4px; padding-block: var(--space-4); }
  .press-arrow { display: none; }
  .about-meta li { grid-template-columns: 1fr; gap: 2px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .book-sections li { grid-template-columns: 40px 1fr; }
  .contact-actions .btn { max-width: 100%; }
  .menu-label { display: none; }
  .menu-button { padding: 10px 12px; }
}

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