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

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

:root {
  --red: #d74749;
  --dark: #1a1a1a;
  --nav-bg: #272727;
  --text: #222;
  --text-light: #555;
  --bg: #fff;
  --bg-alt: #f6f6f6;
  --border: #ddd;
  --sans: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'EB Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

/* ── NAV ── */
.site-header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s;
}

.site-header.scrolled {
  background: var(--nav-bg);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-logo {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-logo img {
  height: 40px;
  display: block;
}

.site-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active { color: #fff; }

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 700px) {
  .mobile-nav-toggle { display: block; }
  .site-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    padding: 0.5rem 0 1rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.7rem 1.5rem; width: 100%; box-sizing: border-box; }
  .site-nav a.active { color: #fff; border-left: 3px solid var(--red); padding-left: calc(1.5rem - 3px); }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--dark) center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: #fff;
}

.hero-content h1 {
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-content p {
  font-family: var(--serif);
  font-size: 1.25rem;
  max-width: 620px;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s forwards;
}

/* ── PAGE HEADER (non-hero pages) ── */
.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  background: var(--dark) center/cover no-repeat;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
}

.page-header-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.page-header h1 {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  animation: fadeUp 0.7s 0.15s forwards;
}

/* ── CONTENT ── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

h2 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin: 2.5rem 0 0.75rem;
}

h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 2rem 0 0.5rem;
}

p { margin-bottom: 1.25rem; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── AUDIO PLAYER ── */
.audio-block {
  background: var(--dark);
  border-left: 4px solid var(--red);
  padding: 1.5rem;
  margin: 2rem 0;
}

.audio-title {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.25rem;
}

.audio-artist {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

audio {
  width: 100%;
  height: 32px;
  display: block;
}

.audio-caption {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
  font-style: italic;
  line-height: 1.5;
}

/* ── HOME QUOTE ── */
.home-quote {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  text-align: center;
}

.home-quote-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--red);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.home-quote-body {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--bg-alt);
  padding: 4rem 1.5rem;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.cta-section h2 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover { background: #b83a3c; text-decoration: none; }

.cta-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto 1.5rem;
}

/* ── RESOURCES ── */
.resources-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.resources-section h2 {
  margin-top: 0;
}

.pdf-list {
  list-style: none;
  padding: 0;
}

.pdf-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.pdf-list li:last-child { border-bottom: none; }

.pdf-list--plain li { border-bottom: none; padding: 0.25rem 0; }

.pdf-list a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
}

.pdf-list .pdf-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 2px 6px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.soundcloud-embed {
  margin: 1rem 0;
}

.soundcloud-embed iframe {
  width: 100%;
  height: 166px;
  border: none;
}

.yt-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 1rem 0;
}

.yt-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── NEWS ── */
.news-item {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.news-item:first-child { padding-top: 0; }

.news-date {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.news-item h2 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.news-item p { margin-bottom: 0.5rem; color: var(--text-light); font-size: 1rem; }

.news-source {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── BIO IMAGES ── */
.bio-image {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 2rem auto 0;
}

.container ol, .container-wide ol {
  margin: 0 0 1.25rem 1.5rem;
  line-height: 1.9;
}

.container ol li p, .container-wide ol li p { margin-bottom: 0; }

figure {
  margin: 2rem 0;
}

figure .bio-image {
  margin-bottom: 0;
}

figcaption {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--nav-bg);
  color: rgba(255,255,255,0.7);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-nav a:hover { color: #fff; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.7);
  font-family: var(--sans);
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-social a:hover { color: #fff; }

.footer-email {
  font-family: var(--sans);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-email a { color: rgba(255,255,255,0.7); }
.footer-email a:hover { color: #fff; }

.footer-copy {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.7s forwards;
}
