/* ============================================
   Arielle Murphy — styles.css
   ============================================ */

/* --- Design tokens --- */
:root {
  --bg:              #0a0908;
  --text:            #ece4d7;
  --text-muted:      rgba(236, 228, 215, 0.72);
  --text-faint:      rgba(236, 228, 215, 0.45);
  --hairline:        rgba(236, 228, 215, 0.1);
  --hairline-faint:  rgba(236, 228, 215, 0.06);

  --accent:          #8a2733;  /* curtain red — theatrical accent, echoes her hair */
  --accent-deep:     #6b1d27;
  --accent-warm:     #c9945a;  /* warm amber / lamp glow */

  --serif:           'Cormorant Garamond', 'Didot', Georgia, serif;
  --sans:            'Inter', system-ui, -apple-system, sans-serif;

  --section-pad-y:   clamp(56px, 9vh, 96px);
  --section-pad-x:   clamp(24px, 5vw, 48px);
  --max-w:           1100px;

  --ease:            cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --- Per-section stage-light glows ---
   Each section gets a soft radial wash in a distinct warm tone — think
   spotlights hitting different parts of a dark stage. Kept at low alpha
   (3-8%) so it reads as atmosphere, not color. --- */
.about {
  background:
    radial-gradient(ellipse 80% 65% at 50% 40%, rgba(236, 228, 215, 0.055) 0%, transparent 65%),
    var(--bg);
}
.press {
  background:
    radial-gradient(ellipse 95% 65% at 50% 5%, rgba(138, 39, 51, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 70% 85% at 50% 100%, rgba(138, 39, 51, 0.09) 0%, transparent 60%),
    var(--bg);
}
.awards {
  background:
    radial-gradient(ellipse 100% 70% at 50% 25%, rgba(218, 200, 168, 0.1) 0%, transparent 70%),
    var(--bg);
}
.books {
  background:
    radial-gradient(ellipse 65% 95% at 82% 50%, rgba(201, 148, 82, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 18% 45%, rgba(138, 39, 51, 0.09) 0%, transparent 65%),
    var(--bg);
}
.contact {
  background:
    radial-gradient(ellipse 70% 90% at 50% 25%, rgba(138, 39, 51, 0.13) 0%, transparent 60%),
    var(--bg);
}

/* --- Font faces --- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/CormorantGaramond-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/CormorantGaramond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/Inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/Inter-500.woff2') format('woff2');
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
/* Global film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.93  0 0 0 0 0.89  0 0 0 0 0.84  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img, video, svg, picture { display: block; max-width: 100%; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 400; }

/* --- Editorial section head (shared) --- */
.section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: clamp(32px, 4.5vw, 56px);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--section-pad-x);
}
.section-head__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(42px, 5.4vw, 66px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.panel--cream .section-head__num { color: var(--accent-deep); }
.section-head__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-faint);
  flex-shrink: 0;
  position: relative;
  top: -0.2em;
}
.section-head__rule {
  flex: 1 1 auto;
  height: 1px;
  background: var(--hairline);
  align-self: end;
  margin-bottom: 0.15em;
  min-width: 40px;
}
.section-head--light .section-head__num { color: var(--text); }

/* Shared small uppercase label */
.label,
.reel__meta,
.about__label,
.credits__label,
.music__label,
.books__label,
.contact__label,
.contact__sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --- 1. Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero picture,
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero__img {
  object-fit: cover;
  object-position: 50% 25%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.6) 100%);
}
.hero__content {
  position: absolute;
  bottom: 10%;
  left: 0; right: 0;
  text-align: center;
  padding: 0 24px;
}
.hero__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 5vw, 64px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}
.hero__scroll {
  position: absolute;
  bottom: 3.5%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-faint);
  padding: 12px;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  animation: hero-scroll-hint 2.4s var(--ease) infinite;
}
.hero__scroll:hover {
  color: var(--text);
  transform: translateX(-50%) translateY(2px);
}
@keyframes hero-scroll-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 640px) {
  .hero { min-height: 520px; }
  .hero__name { letter-spacing: 0.26em; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll { animation: none; }
}

/* --- 2. Reel --- */
.reel {
  padding: calc(var(--section-pad-y) * 0.5) var(--section-pad-x) calc(var(--section-pad-y) * 0.35);
}

/* --- 2b. Rep line (FSE banner — contractual) --- */
.rep-line {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-pad-x) calc(var(--section-pad-y) * 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.rep-line__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.rep-line__banner {
  display: block;
  max-width: 680px;
  width: 100%;
  opacity: 0.82;
  transition: opacity 0.3s var(--ease);
}
.rep-line__banner:hover { opacity: 1; }
.rep-line__banner img {
  width: 100%;
  height: auto;
}
/* --- 2. Media (video tiles) --- */
.media {
  padding: calc(var(--section-pad-y) * 0.6) var(--section-pad-x) calc(var(--section-pad-y) * 0.5);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.media__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  width: 100%;
}
.media__tile {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #161311;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.media__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.3s var(--ease), transform 0.5s var(--ease);
}
.media__tile:hover .media__thumb {
  opacity: 0.9;
  transform: scale(1.03);
}
.media__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(236, 228, 215, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 2;
}
.media__play svg { margin-left: 2px; }
.media__tile:hover .media__play {
  border-color: var(--text);
  transform: translate(-50%, -50%) scale(1.1);
}
.media__label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.media__label--dark {
  color: #1a1512;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: 2px;
}
.media__tile--pending {
  border: 1px dashed var(--hairline);
  opacity: 0.5;
  cursor: default;
}
.media__access {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--hairline);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.media__access:hover {
  color: var(--text);
  border-color: var(--text);
}
@media (max-width: 640px) {
  .media__grid { grid-template-columns: 1fr; }
  .media__play { width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .media__tile:hover .media__thumb { transform: none; }
}

/* --- 3. About (editorial) --- */
.about {
  padding: calc(var(--section-pad-y) * 0.6) 0 var(--section-pad-y);
  border-top: 1px solid var(--hairline-faint);
  border-bottom: 1px solid var(--hairline-faint);
}
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  text-align: center;
}
.about__body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.6;
  color: var(--text);
  text-wrap: balance;
}
.about__body em {
  font-style: italic;
}
.about__credentials {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.8;
}
.about__coke-link {
  font-size: inherit;
  letter-spacing: inherit;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 1px;
  margin-left: 6px;
  transition: border-color 0.3s var(--ease);
}
.about__coke-link:hover { border-color: var(--text); }

/* --- 4. Selected Credits --- */
.credits {
  padding: var(--section-pad-y) var(--section-pad-x);
  max-width: 820px;
  margin: 0 auto;
}
.credits__label { margin-bottom: 28px; }
.credits__row {
  display: grid;
  grid-template-columns: 1.2fr auto 1.8fr;
  gap: 22px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px);
  letter-spacing: 0.04em;
}
.credits__row:last-of-type {
  border-bottom: 1px solid var(--hairline);
}
.credits__proj { color: var(--text); }
.credits__award {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-left: 10px;
  white-space: nowrap;
}
.credits__year {
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.2em;
}
.credits__dir {
  color: var(--text-muted);
  font-style: italic;
}
.credits__imdb {
  margin-top: 22px;
  text-align: right;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-faint);
}
.credits__imdb a {
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.credits__imdb a:hover {
  color: var(--text);
  border-color: var(--text);
}

@media (max-width: 640px) {
  .credits__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }
  .credits__year, .credits__dir { font-size: 11px; }
  .credits__award { display: block; margin-left: 0; margin-top: 4px; }
}

/* --- 3b. Marquee credit strip --- */
.marquee {
  display: grid;
  grid-template-columns: clamp(100px, 14vw, 180px) 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(18px, 2.5vw, 28px) var(--section-pad-x);
  border-top: 1px solid var(--hairline-faint);
  border-bottom: 1px solid var(--hairline-faint);
  transition: background 0.3s var(--ease);
}
.marquee:hover {
  background: rgba(236, 228, 215, 0.03);
}
.marquee__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
}
.marquee__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.marquee:hover .marquee__thumb img { opacity: 1; }
.marquee__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.marquee__credit {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.marquee__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text);
  line-height: 1.3;
}
.marquee__year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
}
.marquee__watch {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.marquee:hover .marquee__watch { color: var(--text); }
@media (max-width: 640px) {
  .marquee {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .marquee__thumb { max-width: 220px; margin: 0 auto; }
  .marquee__watch { margin: 0 auto; }
}

/* --- 5. Press (centered pull-quotes) --- */
.press {
  padding: var(--section-pad-y) 0;
}
.press__quotes {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 88px);
  text-align: center;
}
.press__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.press__quote {
  position: relative;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.5;
  color: var(--text);
  text-wrap: balance;
}
.press__mark {
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.8em;
  line-height: 0;
  color: var(--accent-deep);
  margin-right: 0.12em;
  vertical-align: -0.25em;
}
.press__attr {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.press__attr em {
  font-style: italic;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
}

/* --- 5b. Awards — films --- */
.awards {
  padding: var(--section-pad-y) 0;
  border-top: 1px solid var(--hairline-faint);
}
.films {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.film {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}
.film__poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: #161311;
  aspect-ratio: 2 / 3;
}
.film__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
  transition: transform 0.5s var(--ease);
}
.film__poster:hover img { transform: scale(1.03); }
.film__poster-hint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(236, 228, 215, 0.7);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.film__poster:hover .film__poster-hint,
.film__poster:focus-visible .film__poster-hint { opacity: 1; }
.film__poster-hint svg { margin-left: 2px; }

.film__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.film__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
}
.film__title .film__year {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.8em;
  margin-left: 4px;
}
.film__laurels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  justify-items: center;
}
.film__laurels picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.film__laurels img {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.92;
  filter: saturate(1.05);
}
/* Center orphan laurels in last row */
.film__laurels picture:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
}
.film__laurels--solo {
  grid-template-columns: 1fr;
}
.film__laurels--solo img {
  height: auto;
  width: 60%;
  margin: 0 auto;
}
.film__laurels--duo {
  grid-template-columns: 1fr 1fr;
}
.film__laurels--duo img {
  height: auto;
  width: 100%;
}
.film__poster--static img { transition: none; }
.film__poster--static:hover img { transform: none; }
.film__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 280px;
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  .film__poster:hover img { transform: none; }
}
@media (max-width: 860px) {
  .films { grid-template-columns: 1fr; gap: clamp(40px, 7vw, 56px); }
  .film { max-width: 360px; margin: 0 auto; }
}

/* Best Actress nominee band */
.nominee {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) var(--section-pad-x) 0;
  border-top: 1px solid var(--hairline-faint);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.nominee__laurels img {
  height: clamp(100px, 14vw, 160px);
  width: auto;
  opacity: 0.92;
}
.nominee__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* --- 6. Listen & Stream (liner notes) --- */
.listen {
  padding: var(--section-pad-y) 0;
  border-top: 1px solid var(--hairline-faint);
  border-bottom: 1px solid var(--hairline-faint);
  background:
    radial-gradient(ellipse 55% 80% at 22% 50%, rgba(138, 39, 51, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 75% 55% at 78% 60%, rgba(236, 228, 215, 0.08) 0%, transparent 55%),
    var(--bg);
}
.listen__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.listen__cover {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #161311;
  box-shadow: 0 20px 60px rgba(0,0,0,0.65);
  outline: 1px solid rgba(236, 228, 215, 0.08);
  outline-offset: -1px;
}
.listen__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.35);
  pointer-events: none;
}
.listen__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.listen__cover:hover img { transform: scale(1.03); }

.listen__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4px;
}
.listen__intro {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.listen__intro::before {
  content: 'Releases';
  position: absolute;
  bottom: -7px;
  left: 0;
  padding-right: 14px;
  background: var(--bg);
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.listen__tracks {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  counter-reset: track;
}
.listen__tracks li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline-faint);
  transition: padding 0.25s var(--ease);
}
.listen__tracks li:hover { padding-left: 6px; }
.listen__tracknum {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-faint);
  font-feature-settings: 'onum';
  letter-spacing: 0.04em;
}
.listen__trackname {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.3;
  color: var(--text);
}
.listen__trackname em {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.85em;
  margin-left: 6px;
}
.listen__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(236, 228, 215, 0.4);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.listen__cta:hover {
  background: #1DB954;
  color: #0a0908;
  border-color: #1DB954;
}

@media (max-width: 760px) {
  .listen__inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .listen__cover { max-width: 340px; width: 100%; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .listen__cover:hover img { transform: none; }
  .listen__tracks li:hover { padding-left: 0; }
}

/* --- 7. Books --- */
.books {
  padding: var(--section-pad-y) 0;
}
.books__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.books__cover {
  width: clamp(180px, 22vw, 260px);
  height: auto;
  display: block;
  box-shadow: 0 12px 36px rgba(0,0,0,0.6);
}
.books__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.books__label { margin-bottom: 16px; }
@media (max-width: 640px) {
  .books__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .books__text { align-items: center; }
}
.books__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 38px);
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.books__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  margin-bottom: 26px;
  text-wrap: balance;
}
.books__links {
  display: inline-flex;
  gap: 28px;
}
.books__links a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--hairline);
  transition: border-color 0.3s var(--ease);
}
.books__links a:hover {
  border-color: var(--text);
}

/* --- 8. Photo strip --- */
.photos {
  padding: var(--section-pad-y) 0;
  border-top: 1px solid var(--hairline-faint);
  border-bottom: 1px solid var(--hairline-faint);
  overflow: hidden;
}
.photos__strip {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 0 var(--section-pad-x);
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--hairline) transparent;
  -webkit-overflow-scrolling: touch;
}
.photos__strip::-webkit-scrollbar { height: 4px; }
.photos__strip::-webkit-scrollbar-thumb { background: var(--hairline); }
.photos__tile {
  flex-shrink: 0;
  height: clamp(320px, 40vh, 420px);
  background: #1a1410;
  overflow: hidden;
  scroll-snap-align: start;
}
.photos__tile--34 { aspect-ratio: 3 / 4; }
.photos__tile--23 { aspect-ratio: 2 / 3; }
.photos__tile--45 { aspect-ratio: 4 / 5; }
.photos__tile--11 { aspect-ratio: 1 / 1; }
.photos__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.photos__tile:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .photos__tile { height: clamp(280px, 46vh, 360px); }
  .photos__strip { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .photos__tile:hover img { transform: none; }
}

/* --- 9. Contact --- */
.contact {
  padding: var(--section-pad-y) 0 calc(var(--section-pad-y) * 0.6);
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact .section-head { margin-bottom: clamp(32px, 4.5vw, 56px); }
.contact__block {
  padding: 0 var(--section-pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}
.contact__block:last-child { margin-bottom: 0; }
.contact__sub {
  margin-bottom: 14px;
  color: var(--text-faint);
}
.contact__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
}
.contact__socials span { color: var(--text-faint); }
.contact__socials a {
  color: var(--text);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease);
}
.contact__socials a:hover { border-color: var(--text); }
.contact__email {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--hairline);
  display: inline-block;
  transition: border-color 0.3s var(--ease);
}
.contact__email:hover {
  border-color: var(--text);
}
.contact__rep {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
.contact__rep strong {
  font-weight: 400;
  color: var(--text);
}

/* --- Social bar (inline, under hero) --- */
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 22px var(--section-pad-x);
}
.socials .footer__icon { color: var(--text-muted); }

/* --- Footer (socials) --- */
.footer {
  padding: 36px var(--section-pad-x) 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline-faint);
}
.footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer__icon svg {
  display: block;
}
.footer__icon:hover {
  transform: translateY(-1px);
}
.footer__icon--instagram:hover { color: #E1306C; }
.footer__icon--tiktok:hover    { color: #FF0050; }
.footer__icon--imdb:hover      { color: #F5C518; }
.footer__icon--youtube:hover   { color: #FF0000; }
.footer__icon--spotify:hover   { color: #1DB954; }

@media (prefers-reduced-motion: reduce) {
  .footer__icon:hover { transform: none; }
}

@media (max-width: 640px) {
  .footer { gap: 22px; }
}
