﻿@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cormorant+Garamond:wght@500;600&family=Gentium+Book+Plus:ital,wght@0,400;0,700;1,400&family=Parisienne&family=Playfair+Display:wght@400;500;600&display=swap");

:root {
  --color-ink: #2f2924;
  --color-cocoa: #6b5c4e;
  --color-rose: #c83850;
  --color-rose-soft: #e2839d;
  --color-sage: #42645a;
  --color-ivory: #fffaf7;
  --color-paper: #ffffff;
  --color-black: #1a1a1a;
  --color-line: rgba(107, 92, 78, 0.18);
  --color-muted: rgba(47, 41, 36, 0.68);
  --shadow-soft: 0 16px 44px rgba(47, 41, 36, 0.1);
  --shadow-lift: 0 22px 54px rgba(47, 41, 36, 0.14);
  --radius: 8px;
  --container: 1160px;
  --content: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: "Gentium Book Plus", Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--color-cocoa);
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Abril Fatface", Georgia, serif;
  font-weight: 400;
}

h3,
h4,
.site-nav,
.button,
.meta,
.eyebrow {
  font-family: "Playfair Display", Georgia, serif;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: var(--content);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 8px 24px rgba(47, 41, 36, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
}

.brand-name {
  display: block;
  color: var(--color-cocoa);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.76rem;
  font-weight: 600;
  line-height: 1.1;
}

.brand-role {
  display: block;
  color: var(--color-sage);
  font-size: 0.9rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.site-nav a {
  color: rgba(107, 92, 78, 0.84);
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-rose);
  background: rgba(200, 56, 80, 0.08);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--color-rose);
  box-shadow: 0 10px 24px rgba(200, 56, 80, 0.18);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: #a92f42;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-cocoa);
  background: #fff;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::before {
  opacity: 0;
}

.nav-open .nav-toggle span::after {
  transform: translateY(-2px) rotate(90deg);
}

.hero {
  min-height: 74vh;
  display: flex;
  align-items: end;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(47, 41, 36, 0.72), rgba(47, 41, 36, 0.18)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.home-hero {
  min-height: 76vh;
  background-image:
    linear-gradient(90deg, rgba(47, 41, 36, 0.36), rgba(47, 41, 36, 0.34)),
    url("P8310405_slim.jpg");
  background-position: center center;
  background-size: cover;
}

.hero-content {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 80px;
}

.home-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: left;
}

.home-hero .script-title,
.home-hero h1 {
  width: min(560px, 100%);
}

.home-hero .hero-actions {
  max-width: 560px;
  width: min(560px, 100%);
  justify-content: flex-start;
}

.hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: 5.4rem;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.script-title {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Parisienne", cursive;
  font-size: 3.55rem;
  font-weight: 400;
  line-height: 1;
}

.hero p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-hero {
  height: 320px;
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(47, 41, 36, 0.64), rgba(47, 41, 36, 0.2)),
    var(--hero-image);
  background-position: center top;
  background-size: cover;
}

.page-hero h1 {
  color: #fff;
  font-family: "Parisienne", cursive;
  font-size: 5.15rem;
  font-weight: 400;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.page-hero-slim {
  background-image:
    linear-gradient(90deg, rgba(47, 41, 36, 0.64), rgba(47, 41, 36, 0.2)),
    url("P8310405_slim.jpg");
  background-position: center center;
}

.page-hero-notes {
  background-image:
    linear-gradient(90deg, rgba(47, 41, 36, 0.66), rgba(47, 41, 36, 0.18)),
    url("notes-background-1.jpg");
  background-position: center center;
  background-size: cover;
}

.spotify-hero,
.editorial-hero {
  min-height: 340px;
  height: auto;
  padding: 58px 0;
  text-align: left;
  background-image:
    linear-gradient(90deg, rgba(255, 250, 247, 0.95), rgba(255, 250, 247, 0.82)),
    url("notes-background-1.jpg");
  background-position: center center;
}

.spotify-hero-inner,
.editorial-hero-inner {
  display: grid;
  gap: 34px;
  align-items: center;
}

.spotify-hero-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.editorial-hero-inner {
  grid-template-columns: minmax(0, 760px);
}

.spotify-hero h1,
.editorial-hero h1 {
  color: var(--color-cocoa);
  text-shadow: none;
}

.spotify-hero .eyebrow,
.editorial-hero .eyebrow {
  margin: 0 0 6px;
  color: var(--color-rose);
}

.spotify-hero p:not(.eyebrow),
.editorial-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.spotify-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  padding: 16px 18px;
  border-radius: var(--radius);
  color: #fff;
  background: #1db954;
  box-shadow: 0 18px 36px rgba(29, 185, 84, 0.24);
}

.spotify-profile-link:hover {
  color: #fff;
  background: #149846;
  transform: translateY(-1px);
}

.spotify-profile-link svg {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.spotify-profile-link strong,
.spotify-profile-link small {
  display: block;
}

.spotify-profile-link strong {
  font-size: 1rem;
}

.spotify-profile-link small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: var(--color-rose);
  box-shadow: 0 10px 24px rgba(200, 56, 80, 0.18);
  font-size: 1rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #a92f42;
  box-shadow: 0 14px 30px rgba(200, 56, 80, 0.24);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.button.quiet {
  color: var(--color-cocoa);
  border-color: var(--color-line);
  background: #fff;
  box-shadow: none;
}

.section {
  padding: 92px 0;
}

.section.tint {
  background: var(--color-ivory);
}

.section.dark {
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-black);
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head.center {
  display: block;
  text-align: center;
}

.section-head p {
  max-width: 500px;
  margin: 0;
  color: var(--color-muted);
}

.section.dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-rose);
  font-size: 0.92rem;
  font-weight: 500;
}

.section-title {
  font-size: 3rem;
}

.lead {
  color: var(--color-muted);
  font-size: 1.18rem;
  line-height: 1.72;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
}

.portrait,
.landscape {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.landscape {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.fact {
  min-height: 106px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.fact strong {
  display: block;
  color: var(--color-rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
}

.fact span {
  display: block;
  color: var(--color-muted);
  font-size: 0.95rem;
}

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

.album-card,
.article-card,
.quote-card,
.contact-card,
.track-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(47, 41, 36, 0.08);
}

.album-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.album-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.album-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.album-body {
  display: flex;
  min-height: 190px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.album-card h3 {
  color: var(--color-ink);
  font-size: 1.25rem;
}

.album-card .meta,
.article-card .meta {
  color: var(--color-rose);
  font-size: 0.88rem;
}

.featured-album {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.featured-album img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.article-list {
  display: grid;
  gap: 24px;
}

.article-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.article-body {
  padding: 30px;
}

.article-body h2,
.article-body h3 {
  margin-bottom: 14px;
  color: var(--color-ink);
  font-size: 1.65rem;
}

.article-body p {
  color: var(--color-muted);
}

.interview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.interview-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

.interview-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.interview-body h2 {
  color: var(--color-ink);
  font-size: 1.72rem;
}

.interview-body p {
  color: var(--color-muted);
}

.interview-body .button {
  align-self: flex-start;
  margin-top: auto;
}

.article-detail-hero {
  min-height: 520px;
  display: flex;
  align-items: end;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(47, 41, 36, 0.72), rgba(47, 41, 36, 0.2)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.article-hero-extreme {
  background-image:
    linear-gradient(90deg, rgba(47, 41, 36, 0.72), rgba(47, 41, 36, 0.2)),
    url("https://magdalenabajuszova.com/wp-content/uploads/2023/05/P8310383.jpg");
  background-position: center 18%;
}

.article-hero-klaviristka {
  background-image:
    linear-gradient(90deg, rgba(47, 41, 36, 0.72), rgba(47, 41, 36, 0.2)),
    url("https://magdalenabajuszova.com/wp-content/uploads/2023/06/P8310257.jpg");
  background-position: center center;
}

.article-detail-hero .hero-content {
  padding: 110px 0 64px;
}

.article-detail-hero h1 {
  max-width: 900px;
  color: #fff;
  font-size: 4.2rem;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Playfair Display", Georgia, serif;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 48px;
  align-items: start;
}

.article-main {
  max-width: 780px;
}

.article-main .lead {
  margin-bottom: 30px;
  color: var(--color-ink);
}

.article-main h2 {
  margin: 42px 0 16px;
  color: var(--color-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.article-main p {
  color: var(--color-muted);
}

.article-question {
  margin: 34px 0 12px;
  color: var(--color-cocoa);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.pullquote {
  margin: 36px 0;
  padding: 26px 0 26px 28px;
  border-left: 4px solid var(--color-rose);
  color: var(--color-cocoa);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.45;
}

.article-aside {
  position: sticky;
  top: 118px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-ivory);
}

.article-aside h2 {
  margin-bottom: 14px;
  color: var(--color-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.article-aside a {
  color: var(--color-rose);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.quote-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.quote-mark {
  color: var(--color-rose);
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 3.4rem;
  line-height: 0.8;
}

.quote-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--color-muted);
  font-style: italic;
}

.quote-person {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
}

.quote-person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-person strong {
  display: block;
  color: var(--color-ink);
  font-family: "Playfair Display", Georgia, serif;
}

.quote-person span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.bio-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.bio-columns p {
  color: var(--color-muted);
}

.biography-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: 52px;
  align-items: start;
}

.biography-title {
  position: sticky;
  top: 118px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-ivory);
  box-shadow: var(--shadow-soft);
}

.biography-photo {
  width: 100%;
  margin-top: 22px;
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.biography-text {
  column-count: 2;
  column-gap: 42px;
  color: var(--color-muted);
}

.biography-text p {
  break-inside: avoid;
}

.biography-text a {
  color: var(--color-rose);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--color-line);
}

.timeline-year {
  color: var(--color-rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.audio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.audio-intro-simple {
  grid-template-columns: minmax(0, 850px);
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.track-card {
  overflow: hidden;
}

.track-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px 2px;
  color: var(--color-ink);
  font-family: "Playfair Display", Georgia, serif;
}

.track-label span {
  color: var(--color-rose);
}

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

.track-copy strong {
  font-weight: 600;
  line-height: 1.25;
}

.track-copy small {
  color: var(--color-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.track-card iframe {
  display: block;
  width: 100%;
  height: 152px;
  border: 0;
}

.note {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
}

.contact-card {
  padding: 30px;
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 12px;
}

.contact-link {
  display: inline-block;
  color: var(--color-rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-ivory) 100%);
}

.quotes-section {
  background-image:
    linear-gradient(90deg, rgba(255, 250, 247, 0.9), rgba(255, 250, 247, 0.78)),
    url("notes-background-1.jpg");
  background-position: center;
  background-size: cover;
}

.quotes-section .section-title {
  color: var(--color-cocoa);
}

.quotes-section .quote-grid {
  margin-top: 6px;
}

.contact-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-portrait {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.04);
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.contact-content .lead {
  max-width: 560px;
}

.contact-methods {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--color-line);
}

.contact-method {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-line);
}

.contact-method span {
  color: var(--color-muted);
  font-family: "Playfair Display", Georgia, serif;
}

.contact-method a {
  color: var(--color-rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  overflow-wrap: anywhere;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.image-mosaic img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-mosaic img:first-child {
  aspect-ratio: 3 / 4;
}

.image-mosaic img:last-child {
  aspect-ratio: 4 / 3;
  align-self: end;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-black);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 44px 0;
}

.footer-title {
  margin-bottom: 6px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: end;
  font-family: "Playfair Display", Georgia, serif;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--color-line);
    background: #fff;
    box-shadow: 0 18px 40px rgba(47, 41, 36, 0.14);
  }

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

  .site-nav a {
    padding: 14px 12px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .site-nav .nav-cta {
    margin-top: 14px;
    border-radius: 999px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 640px;
  }

  .home-hero {
    position: relative;
    display: block;
    min-height: 0;
    color: var(--color-ink);
    background: var(--color-ivory);
    background-image: none;
    overflow: hidden;
  }

  .home-hero::before {
    content: "";
    display: block;
    height: clamp(370px, 58vh, 520px);
    background-image:
      linear-gradient(180deg, rgba(255, 250, 247, 0.04), rgba(47, 41, 36, 0.08)),
      url("P8310405_slim.jpg");
    background-position: 45% center;
    background-size: cover;
  }

  .home-hero .hero-content {
    align-items: flex-start;
    padding: 34px 0 52px;
  }

  .home-hero .script-title {
    color: var(--color-rose);
    text-shadow: none;
  }

  .home-hero h1 {
    color: var(--color-ink);
    text-shadow: none;
  }

  .home-hero .button.secondary {
    color: var(--color-cocoa);
    border-color: var(--color-line);
    background: rgba(255, 255, 255, 0.72);
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .script-title {
    font-size: 3rem;
  }

  .spotify-hero-inner,
  .editorial-hero-inner {
    grid-template-columns: 1fr;
  }

  .spotify-profile-link {
    width: fit-content;
  }

  .split,
  .split.reverse,
  .featured-album,
  .article-card,
  .article-shell,
  .bio-columns,
  .biography-panel,
  .audio-intro,
  .contact-grid,
  .contact-showcase {
    grid-template-columns: 1fr;
  }

  .contact-portrait {
    min-height: 360px;
  }

  .biography-title {
    position: static;
  }

  .biography-text {
    column-count: 1;
  }

  .album-grid,
  .audio-grid,
  .quote-grid,
  .interview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split.reverse > img {
    order: -1;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 66px 0;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .brand-role {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 600px;
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero .hero-content {
    align-items: flex-start;
  }

  .hero-content {
    padding: 90px 0 54px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .script-title {
    font-size: 2.45rem;
  }

  .page-hero h1 {
    font-size: 4.2rem;
  }

  .spotify-hero,
  .editorial-hero {
    padding: 48px 0;
  }

  .spotify-profile-link {
    width: 100%;
    min-width: 0;
  }

  .section-head {
    display: block;
  }

  .section-title {
    font-size: 2.35rem;
  }

  .album-grid,
  .audio-grid,
  .quote-grid,
  .interview-grid,
  .fact-list {
    grid-template-columns: 1fr;
  }

  .article-detail-hero h1 {
    font-size: 3rem;
  }

  .article-aside {
    position: static;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-content {
    padding: 32px 24px;
  }

  .contact-method {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: start;
  }
}
