/* ============================================
   Universal Truth School — Santos Bonacci
   Stone parchment · ancient ink · Egyptian copper
   ============================================ */

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

:root {
  /* Background — Warm Charcoal, a scholar's study at dusk */
  --bg: #2a2520;              /* warm dark brown-charcoal */
  --bg-soft: #322c26;          /* alt sections */
  --bg-card: #3a342d;          /* card surfaces */
  --bg-elevated: #45403a;      /* elevated panels */
  --bg-deep: #1c1814;          /* deepest */

  /* Type — warm cream paper */
  --ink: #f5ede0;              /* warm cream / aged paper */
  --ink-bright: #ffffff;
  --ink-soft: #ddd6c8;
  --ink-secondary: #b3aa9a;    /* readable secondary */
  --ink-muted: #8a8275;
  --ink-faint: #5a5550;

  /* Hairlines — cream over charcoal */
  --line-faint: rgba(245, 237, 224, 0.08);
  --line-soft: rgba(245, 237, 224, 0.18);
  --line-strong: rgba(245, 237, 224, 0.35);
  --line-ink: rgba(245, 237, 224, 0.55);

  /* SINGLE accent — Burnt Sienna (kept --copper var for compat) */
  --copper: #d46437;           /* burnt sienna terracotta */
  --copper-bright: #e87f50;    /* hover */
  --copper-deep: #8a3818;
  --copper-glow: rgba(212, 100, 55, 0.25);
  --gilt: #d46437;              /* aliased to same — single accent */
  --gilt-deep: #8a3818;

  /* Type families */
  --display: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --serif: 'Lora', 'Spectral', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;

  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;

  --max-w: 1200px;
  --max-w-narrow: 780px;
  --max-w-prose: 660px;

  --section-pad: clamp(80px, 12vw, 180px);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--copper); color: var(--bg); }

/* Warm charcoal background — paper grain + scattered stars + ambient glow */
.cosmos {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Sparse stars — barely-there pinpoints, just enough for atmosphere */
.cosmos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* paper grain */
    radial-gradient(circle at 1px 1px, rgba(245, 237, 224, 0.025) 1px, transparent 0),
    /* 8 sparse stars only — far apart, low opacity */
    radial-gradient(0.8px 0.8px at 14% 11%, rgba(245, 237, 224, 0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 71% 18%, rgba(245, 237, 224, 0.30) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 38% 47%, rgba(245, 237, 224, 0.22) 0%, transparent 100%),
    radial-gradient(0.8px 0.8px at 87% 53%, rgba(245, 237, 224, 0.28) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 9% 71%, rgba(245, 237, 224, 0.24) 0%, transparent 100%),
    radial-gradient(1px 1px at 56% 79%, rgba(245, 237, 224, 0.32) 0%, transparent 100%),
    radial-gradient(0.6px 0.6px at 28% 88%, rgba(245, 237, 224, 0.20) 0%, transparent 100%),
    radial-gradient(0.8px 0.8px at 91% 89%, rgba(245, 237, 224, 0.26) 0%, transparent 100%);
  background-size: 4px 4px, auto, auto, auto, auto, auto, auto, auto, auto;
}

.cosmos::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* warm sienna glow at top — like firelight from above */
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212, 100, 55, 0.10) 0%, transparent 60%),
    /* deep charcoal vignette at edges */
    radial-gradient(ellipse 130% 130% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}


/* ============================================
   Navigation
   ============================================ */
/* ============================================
   Navigation — refined
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(28, 24, 20, 0.78);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--line-faint);
  transition: background 200ms ease, border-color 200ms ease;
}

.nav.is-scrolled {
  background: rgba(28, 24, 20, 0.94);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink-bright);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 12px;
  text-transform: uppercase;
  transition: color 200ms ease;
  flex-shrink: 0;
}

.nav-brand:hover { color: var(--copper); }
.nav-brand:hover .nav-glyph { color: var(--gilt); transform: rotate(45deg); }

.nav-glyph {
  width: 26px;
  height: 26px;
  color: var(--copper);
  transition: color 220ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 220ms ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--ink-bright); }
.nav-links a:hover::before { transform: scaleX(1); }

.nav-links a.is-active {
  color: var(--copper);
}

.nav-links a.is-active::before {
  transform: scaleX(1);
  background: var(--copper);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  transition: border-color 220ms ease, background 220ms ease;
}

.nav-toggle:hover { border-color: var(--copper); background: rgba(212, 168, 87, 0.06); }

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease, background 220ms ease;
  border-radius: 1px;
}

.nav-toggle.is-open span { background: var(--copper); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    flex-direction: column;
    align-items: stretch;
    background:
      radial-gradient(ellipse 100% 60% at 50% 20%, rgba(212, 100, 55, 0.10) 0%, transparent 60%),
      rgba(28, 24, 20, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 48px clamp(24px, 6vw, 56px) 56px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.is-open { transform: translateX(0); }

  .nav-links a {
    font-size: 18px;
    letter-spacing: 0.16em;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-faint);
    color: var(--ink);
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-links a::before {
    left: 0;
    right: auto;
    bottom: 50%;
    width: 0;
    height: 1px;
    transform: none;
    transform-origin: left;
    transition: width 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links a:hover::before,
  .nav-links a.is-active::before { width: 24px; transform: translateY(8px); }
}

@media (max-width: 480px) {
  .nav-brand { font-size: 11px; letter-spacing: 0.18em; gap: 10px; }
  .nav-glyph { width: 24px; height: 24px; }
}

/* ============================================
   Typography
   ============================================ */
.overline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 18px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.02em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
  font-family: var(--serif);
  letter-spacing: -0.01em;
}

p { font-family: var(--serif); font-size: 17px; line-height: 1.75; font-weight: 400; }

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  transition:
    background 320ms cubic-bezier(0.16, 1, 0.3, 1),
    color 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  min-height: 56px;
}

.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: linear-gradient(180deg, var(--copper-bright) 0%, var(--copper) 60%, var(--copper-deep) 100%);
  color: var(--bg-deep);
  border-color: var(--copper);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 0 0 0 var(--copper-glow),
    0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--gilt) 0%, var(--copper-bright) 100%);
  border-color: var(--gilt);
  letter-spacing: 0.3em;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 0 0 6px var(--copper-glow),
    0 10px 28px rgba(212, 168, 87, 0.35);
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line-soft);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--copper);
  border-color: var(--copper);
  letter-spacing: 0.3em;
}

.btn-large { padding: 22px 44px; min-height: 64px; }
.btn-block { width: 100%; }

/* ============================================
   Section base
   ============================================ */
.section {
  padding: var(--section-pad) clamp(24px, 5vw, 60px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-narrow { max-width: var(--max-w-narrow); }

.section-head {
  text-align: center;
  margin-bottom: clamp(56px, 8vw, 100px);
  max-width: var(--max-w-narrow);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Hermetic sigil ornament before each section heading — sienna sun */
.section-head::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-20 -20 40 40'><g stroke='%23d46437' fill='none' stroke-width='1' stroke-linecap='round'><circle r='14'/><circle r='6' fill='%23d46437'/><line x1='-18' y1='0' x2='-14' y2='0'/><line x1='14' y1='0' x2='18' y2='0'/><line x1='0' y1='-18' x2='0' y2='-14'/><line x1='0' y1='14' x2='0' y2='18'/><line x1='-12.7' y1='-12.7' x2='-9.9' y2='-9.9'/><line x1='9.9' y1='-9.9' x2='12.7' y2='-12.7'/><line x1='-12.7' y1='12.7' x2='-9.9' y2='9.9'/><line x1='9.9' y1='9.9' x2='12.7' y2='12.7'/></g></svg>") center/contain no-repeat;
  opacity: 0.95;
}

.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-wrap: balance;
}

/* Decorative copper rule under section heading */
.section-head h2 + p,
.section-head h2 + .section-sub {
  margin-top: 8px;
}

.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  font-weight: 400;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 14vw, 200px) clamp(24px, 5vw, 60px);
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.hero-glyph { z-index: 0; }
.hero-content { position: relative; z-index: 2; }

.hero-tall { min-height: calc(100vh - 70px); }

.hero-glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: var(--copper);
  opacity: 0.16;
}

.hero-glyph svg {
  width: min(640px, 90vw);
  height: auto;
  animation: rotate 480s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  max-width: 920px;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 36px;
  font-weight: 600;
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  color: var(--ink);
  text-transform: uppercase;
}

.hero-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--copper);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  display: block;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 14px;
  line-height: 1.45;
}

.hero-byline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--ink-secondary);
  text-transform: uppercase;
  margin-bottom: 56px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Quote band
   ============================================ */
.quote-band {
  position: relative;
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 24px;
  border-top: 1px double var(--line-soft);
  border-bottom: 1px double var(--line-soft);
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(184, 137, 61, 0.08) 0%, transparent 70%),
    var(--bg-soft);
}

.quote-band::before, .quote-band::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper) 30%, var(--gilt) 50%, var(--copper) 70%, transparent);
}
.quote-band::before { top: -1px; }
.quote-band::after { bottom: -1px; }

.quote-text {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 400;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto 28px;
  line-height: 1.4;
  letter-spacing: 0;
  font-family: var(--serif);
}

.quote-attr {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--copper);
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   Service / Consultation cards
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line-faint);
  border: 1px solid var(--line-faint);
}

.service {
  background: var(--bg-card);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  transition: background 220ms ease;
  position: relative;
  overflow: hidden;
}

.service:hover { background: var(--bg-elevated); }

.service-price { word-break: keep-all; white-space: nowrap; }

.service-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  font-weight: 600;
}

.service h3 {
  font-family: var(--display);
  font-size: 24px;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  font-weight: 400;
}

.service-duration {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-secondary);
  margin-bottom: 18px;
}

.service-desc {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.service-price {
  font-family: var(--display);
  font-size: 38px;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  font-weight: 500;
  font-variant-numeric: oldstyle-nums proportional-nums;
  text-shadow: 1px 1px 0 var(--gilt);
}

.service-price-currency {
  font-size: 0.5em;
  color: var(--copper);
  margin-right: 4px;
  font-weight: 400;
}

/* ============================================
   Pillars (4 teaching areas)
   ============================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-faint);
  border: 1px solid var(--line-faint);
  max-width: var(--max-w);
  margin: 0 auto;
}

.pillar {
  background: var(--bg-card);
  padding: 56px 44px;
  transition: background 220ms ease;
}

.pillar:hover { background: var(--bg-elevated); }

.pillar-num {
  font-family: var(--display);
  font-style: normal;
  font-size: 28px;
  color: var(--copper);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-shadow: 0 0 12px rgba(212, 168, 87, 0.35);
}

.pillar h3 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  font-weight: 400;
  color: var(--ink);
}

.pillar p {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
}

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

/* ============================================
   Book product
   ============================================ */
.book-feature {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.book-mockup {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 5/8;
  perspective: 2400px;
  margin: 0 auto;
  position: relative;
}

.book-mockup-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(2deg);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.book-mockup:hover .book-mockup-inner {
  transform: rotateY(-12deg) rotateX(0deg);
}

.book-mockup-front {
  position: absolute;
  inset: 0;
  background: #1a0e04;
  border-radius: 1px 5px 5px 1px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(237, 228, 206, 0.10),
    inset 1px 0 6px rgba(0, 0, 0, 0.35);
}

.book-mockup-front img,
.book-mockup-front svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.book-mockup-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 32%, rgba(255, 255, 255, 0.06) 50%, transparent 68%);
  pointer-events: none;
  z-index: 3;
}

.book-mockup-spine {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 22px;
  background: linear-gradient(90deg, #050200 0%, #1a0e04 25%, #2a1f10 55%, #1a0e04 85%, #050200 100%);
  transform: rotateY(-90deg) translateX(-11px);
  transform-origin: left center;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.book-mockup-spine span {
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(237, 228, 206, 0.55);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-weight: 500;
}

.book-mockup-pages {
  position: absolute;
  top: 2px; bottom: 2px; right: 0;
  width: 22px;
  background: repeating-linear-gradient(0deg, #f0e5c8 0px, #f0e5c8 1px, #c8baa0 1px, #c8baa0 2px);
  transform: rotateY(90deg) translateX(11px);
  transform-origin: right center;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.30);
}

.book-mockup-back {
  position: absolute;
  inset: 0;
  background: #1a0e04;
  transform: translateZ(-22px);
  border-radius: 1px 5px 5px 1px;
}

.book-mockup::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: -4%; right: -4%;
  height: 28px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 0, 0, 0.45) 0%, transparent 75%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

/* contain the shadow so it doesn't bleed into next section */
.book-feature { padding-bottom: 36px; }

.book-detail-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
  font-weight: 600;
}

.book-detail h3 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.book-detail p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 56ch;
}

@media (max-width: 880px) {
  .book-feature { grid-template-columns: 1fr; text-align: center; }
  .book-detail p { margin-left: auto; margin-right: auto; }
}

/* ============================================
   Connect — social cards
   ============================================ */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line-faint);
  border: 1px solid var(--line-faint);
}

.connect-card {
  background: var(--bg-card);
  padding: 36px 32px;
  text-decoration: none;
  transition: background 220ms ease;
  display: block;
}

.connect-card:hover { background: var(--bg-elevated); }

.connect-platform {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
  font-weight: 600;
}

.connect-handle {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.connect-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.55;
}

/* ============================================
   Strip — credentials
   ============================================ */
.strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  padding: clamp(60px, 9vw, 100px) clamp(24px, 5vw, 60px);
}

.strip-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 80px);
}

.strip-cell { text-align: center; }

.strip-num {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--copper);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: 0;
  font-variant-numeric: oldstyle-nums proportional-nums;
}

.strip-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-secondary);
  font-weight: 600;
}

@media (max-width: 720px) {
  .strip-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   Bio prose
   ============================================ */
.bio-hero {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 60px) clamp(56px, 7vw, 100px);
}

.bio-hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink-bright);
}

.bio-hero h1 em { color: var(--copper); }

.bio-section {
  max-width: var(--max-w-prose);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) clamp(24px, 5vw, 60px);
  overflow: hidden;
}

.bio-section .prose { overflow: hidden; }
.bio-section .prose p { overflow: hidden; }

.bio-section h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
}

.bio-section h2 em { color: var(--copper); }

.bio-section .prose p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 26px;
}

/* Illuminated drop cap — gold, contained */
.bio-section .prose p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 4.5em;
  float: left;
  line-height: 0.85;
  margin: 0.08em 0.12em -0.05em -0.04em;
  color: var(--copper);
  font-weight: 600;
  padding-right: 6px;
}

@media (max-width: 600px) {
  .bio-section .prose p:first-of-type::first-letter {
    font-size: 3.6em;
    margin-right: 8px;
  }
}

/* Pull quote — clean, no ornament masks that break on different bg colors */
.bio-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
  color: var(--copper);
  text-align: center;
  padding: 56px 16px;
  max-width: 640px;
  margin: 56px auto;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  text-align: center;
  padding: var(--section-pad) 24px;
  max-width: 820px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
}

.final-cta h2 em { color: var(--copper); }

.final-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink-secondary);
  margin-bottom: 48px;
}

/* ============================================
   Newsletter card
   ============================================ */
.signup-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(212, 168, 87, 0.06), transparent 60%),
    var(--bg-card);
  border: 1px double var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow:
    0 0 0 1px rgba(212, 168, 87, 0.25) inset,
    0 0 0 4px var(--bg),
    0 0 0 5px rgba(212, 168, 87, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.4);
}

.signup-card h3 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.signup-card p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-secondary);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  min-width: 240px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  outline: none;
  min-height: 56px;
}

.signup-form input:focus { border-color: var(--copper); }

/* ============================================
   Footer
   ============================================ */
.footer {
  text-align: center;
  padding: 80px 24px 100px;
  border-top: 1px solid var(--line-faint);
  background: var(--bg-soft);
}

.foot-glyph {
  width: 36px;
  height: 36px;
  margin: 0 auto 24px;
  color: var(--copper);
  opacity: 0.95;
  filter: drop-shadow(0 0 10px rgba(212, 168, 87, 0.4));
}

.foot-name {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 500;
}

.foot-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-secondary);
  margin-bottom: 28px;
}

.foot-rights {
  font-size: 11px;
  color: var(--ink-muted);
  font-family: var(--sans);
}

.foot-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.foot-nav a {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 200ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-glyph svg { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
