:root {
  --bg: #f4f0e8;
  --paper: #fffdf7;
  --ink: #151515;
  --muted: #675f55;
  --line: rgba(21, 21, 21, 0.1);
  --accent: #a73c1b;
  --accent-soft: rgba(167, 60, 27, 0.12);
  --forest: #0e1618;
  --gold: #d8b46a;
  --shadow: 0 20px 60px rgba(14, 22, 24, 0.12);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, #f7f2ea 0%, #f2ece1 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 24px));
  padding: 12px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(14, 22, 24, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff7e8;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 247, 232, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0e1618;
}

.hero-cover {
  width: auto;
  max-width: min(92vw, 692px);
  height: auto;
  max-height: calc(100svh - 48px);
  object-position: center;
  margin: 24px auto;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  padding: 120px 0 48px;
  text-align: center;
  color: #fff8ec;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.95;
}

.hero-text {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: 1.05rem;
  color: rgba(255, 248, 236, 0.88);
}

.hero-actions,
.section-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff6ef;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: inherit;
}

.section {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-accent,
.section-dark {
  position: relative;
  width: 100%;
  padding-left: max(14px, calc((100vw - 1120px) / 2 + 14px));
  padding-right: max(14px, calc((100vw - 1120px) / 2 + 14px));
}

.section-accent {
  background: linear-gradient(180deg, #efe5d8 0%, #eadcca 100%);
}

.section-dark {
  background: linear-gradient(180deg, #11191b 0%, #182225 100%);
  color: #f7efe1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading .section-kicker {
  margin-bottom: 14px;
  border-color: rgba(167, 60, 27, 0.18);
  background: var(--accent-soft);
  color: var(--accent);
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-heading p {
  color: rgba(247, 239, 225, 0.72);
}

@media (max-width: 760px) {
  .hero-copy {
    padding-top: 150px;
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }
}

.article-grid,
.credits-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-article,
.credit-panel,
.note-card,
.photo-card,
.son-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: var(--shadow);
}

.feature-article,
.credit-panel {
  padding: 28px;
}

.article-meta {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-article h3,
.credit-panel h3 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.feature-article p,
.credit-panel p,
.note-card p,
.credit-list li {
  color: var(--muted);
}

.credit-list {
  margin: 0;
  padding-left: 18px;
}

.credit-list li + li {
  margin-top: 10px;
}

.note-card {
  margin-top: 22px;
  padding: 22px 24px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-card {
  overflow: hidden;
}

.photo-card-centered {
  grid-column: 2;
}

.photo-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 18px 18px 20px;
  color: var(--muted);
  font-size: 0.93rem;
}

.sones-list {
  display: grid;
  gap: 14px;
}

.volume-group + .volume-group {
  margin-top: 34px;
}

.volume-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 10px 18px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.volume-heading-copy {
  display: grid;
  gap: 4px;
}

.volume-label {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.volume-heading p {
  margin: 0;
  color: rgba(247, 239, 225, 0.72);
  font-size: 0.96rem;
}

.volume-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 239, 225, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.volume-pdf-link:hover,
.volume-pdf-link:focus-visible {
  color: #fff5df;
  outline: none;
}

.volume-pdf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 239, 225, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.volume-player {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.volume-player-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.volume-player-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.volume-player p {
  margin: 0;
  color: rgba(247, 239, 225, 0.8);
}

.volume-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.2);
}

.volume-player-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 239, 225, 0.78);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.volume-player-close:hover,
.volume-player-close:focus-visible {
  border-color: rgba(216, 180, 106, 0.45);
  background: rgba(216, 180, 106, 0.08);
  color: #fff5df;
  outline: none;
}

.son-summary-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  min-width: 0;
}

.son-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.son-card summary {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.son-card summary::-webkit-details-marker {
  display: none;
}

.son-index {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(216, 180, 106, 0.14);
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
}

.son-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.listen-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 239, 225, 0.88);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.listen-trigger:hover,
.listen-trigger:focus-visible {
  border-color: rgba(216, 180, 106, 0.45);
  background: rgba(216, 180, 106, 0.1);
  color: #fff5df;
  outline: none;
}

.listen-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--gold);
}

.listen-icon svg {
  width: 18px;
  height: 18px;
}

.son-body {
  padding: 0 20px 22px 94px;
  color: rgba(247, 239, 225, 0.82);
}

.son-body p {
  margin-top: 0;
}

.son-body blockquote {
  margin: 14px 0 0;
  padding-left: 18px;
  border-left: 2px solid rgba(216, 180, 106, 0.4);
  color: #fff4dc;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

@media (max-width: 960px) {
  .article-grid,
  .credits-layout,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-card-centered {
    grid-column: 1 / -1;
    max-width: 360px;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(14, 22, 24, 0.92);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .section {
    width: min(1120px, calc(100% - 20px));
    padding: 72px 0;
  }

  .article-grid,
  .credits-layout,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card-centered {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .feature-article,
  .credit-panel,
  .note-card {
    padding: 22px;
  }

  .feature-article h3,
  .credit-panel h3,
  .son-title {
    font-size: 1.8rem;
  }

  .son-summary-main {
    align-items: start;
  }

  .volume-heading {
    align-items: start;
  }

  .volume-pdf-link {
    font-size: 0.88rem;
  }

  .volume-player-head {
    flex-direction: column;
    align-items: stretch;
  }

  .volume-player-close {
    align-self: flex-start;
  }

  .volume-label {
    font-size: 1.1rem;
  }

  .son-card summary {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .son-index {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .son-body {
    padding: 0 16px 18px 16px;
  }

  .listen-trigger {
    padding: 6px 10px;
    font-size: 0.76rem;
  }

  .son-body blockquote {
    font-size: 1.2rem;
  }
}
