@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=EB+Garamond:ital,wght@0,400;1,400&display=swap');

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

:root {
  --ink: #1a1410;
  --ink-light: #4a3f35;
  --ink-muted: #8a7a6a;
  --paper: #faf6f0;
  --paper-warm: #f5ede0;
  --gold: #b8862a;
  --gold-light: #d4a84b;
  --gold-pale: #f0e4c8;
  --sepia: #7a5c3a;
  --sepia-light: #c4a882;
  --border: rgba(120, 90, 50, 0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', 'Cormorant Garamond', Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 90px 48px 72px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(184,134,42,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero a { text-decoration: none; color: inherit; }

.hero-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.85;
}
.hero-ornament::before, .hero-ornament::after { content: '—'; margin: 0 12px; opacity: 0.5; }

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 6px;
}
.hero-name em { font-style: italic; color: var(--gold-light); }

.hero-dates {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,246,240,0.45);
  letter-spacing: 4px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.hero-rule {
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 300;
  color: rgba(250,246,240,0.7);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-awards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.award-badge {
  background: rgba(184,134,42,0.12);
  border: 0.5px solid rgba(184,134,42,0.45);
  border-radius: 4px;
  padding: 10px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

/* ── NAV ── */
.nav {
  background: var(--paper-warm);
  border-bottom: 0.5px solid var(--border);
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
}

.nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 17px 30px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav a:hover, .nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── COMMON ── */
.section-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 48px;
}

.pullquote {
  border-left: 2px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--gold-pale);
  border-radius: 0 4px 4px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.65;
  color: var(--sepia);
}

/* ── BIOGRAPHY ── */
.bio-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 72px 32px;
}

.bio-chapter {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 0.5px solid var(--border);
}
.bio-chapter:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.chapter-year {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.chapter-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.3;
}

.chapter-text {
  font-size: 17.5px;
  line-height: 1.9;
  color: var(--ink-light);
  font-weight: 300;
}
.chapter-text p { margin-bottom: 1.1em; }

.photo-caption {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 16px;
}

/* ── POEM BLOCK ── */
.poem-section {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 48px;
  text-align: center;
  position: relative;
}
.poem-section::before {
  content: '❝';
  position: absolute;
  top: 28px; left: 40px;
  font-size: 90px;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
}
.poem-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 36px;
}
.poem-lines {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.8vw, 24px);
  font-style: italic;
  font-weight: 400;
  line-height: 2.1;
  color: rgba(250,246,240,0.88);
  max-width: 540px;
  margin: 0 auto 36px;
}
.poem-attribution {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 2px;
}

/* ── SONGS ── */
.songs-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 32px;
}
.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.song-card {
  background: var(--paper-warm);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 24px 20px;
  transition: background 0.2s, border-color 0.2s;
}
.song-card:hover { background: var(--gold-pale); border-color: var(--gold-light); }
.song-artist {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.song-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.song-note { font-size: 13px; color: var(--ink-muted); line-height: 1.55; }

/* ── CLIPS ── */
.clips-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 32px;
}
.clips-list { display: flex; flex-direction: column; gap: 0; }
.clip-block {
  background: var(--paper-warm);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 20px 22px 22px;
  margin-bottom: 16px;
}
.clip-performer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.clip-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
}

/* ── BOOKS ── */
.books-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 32px;
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.book-card {
  background: var(--paper-warm);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.book-spine { height: 8px; background: var(--gold); }
.book-spine.unpublished { background: var(--sepia-light); }
.book-body { padding: 22px 20px; }
.book-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.book-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}
.book-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(250,246,240,0.4);
  text-align: center;
  padding: 36px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1.8;
}
.footer strong { color: var(--gold-light); font-weight: 400; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 48px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(184,134,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 8px;
}
.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}

@media (max-width: 600px) {
  .hero { padding: 60px 24px 48px; }
  .page-hero { padding: 40px 24px 36px; }
  .bio-wrap, .songs-wrap, .clips-wrap, .books-wrap { padding: 48px 20px; }
  .poem-section { padding: 56px 24px; }
  .nav a { padding: 14px 16px; font-size: 11px; letter-spacing: 2px; }
}
