/* ---------- Tokens ---------- */
:root {
  --ink: #17100D;
  --raised: #241612;
  --img-fallback: #2A1A12;
  --photo-fallback: #3A241A;
  --deep: #0E0907;
  --cream: #F7EFE4;
  --white: #FFFFFF;
  --orange: #E8843C;
  --pink: #F2A8B8;
  --warm-1: #FFD6A0;
  --warm-2: #FFC98A;

  --serif: 'Bodoni Moda', serif;
  --script: 'Yellowtail', cursive;
  --sans: 'Jost', system-ui, sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 150px);
}

/* ---------- Global ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 60px; /* clear the fixed header on nav jumps */ }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans); /* the video dialog sits outside .page */
  -webkit-font-smoothing: antialiased;
}
a { color: var(--pink); text-decoration: none; }
a:hover { color: var(--white); }
::selection { background: var(--orange); color: var(--ink); }
img { display: block; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }

.page {
  background: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

.section { position: relative; padding: var(--section-y) var(--gutter); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--orange);
}

.lede {
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.7;
  text-wrap: pretty;
}

.script-heading {
  font-family: var(--script);
  font-weight: 400;
  color: var(--white);
}

/* Image layers that fill their box like a CSS cover background */
.hero__img img,
.road__img img,
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.icon-play { width: .8em; height: .95em; fill: currentColor; flex: none; }
.btn .icon-play { margin-right: 12px; }

.btn--primary {
  gap: 12px;
  padding: 17px 38px;
  background: var(--cream);
  color: var(--ink);
  letter-spacing: 0.3em;
  font-weight: 500;
}
.btn--primary:hover { background: var(--pink); color: var(--ink); }

.btn--feature { background: var(--orange); color: var(--ink); font-weight: 500; }
.btn--feature:hover { background: var(--pink); color: var(--ink); }

.btn--outline { border: 1px solid rgba(247,239,228,.45); color: var(--cream); }
.btn--outline:hover { border-color: var(--cream); background: rgba(247,239,228,.08); color: var(--white); }

.btn--ghost { border: 1px solid rgba(247,239,228,.4); color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--ink); }

.btn--small { padding: 14px 28px; font-size: 11px; border-color: rgba(247,239,228,.35); }

.btn--solid { background: var(--cream); color: var(--ink); font-weight: 500; white-space: nowrap; }
.btn--solid:hover { background: var(--pink); color: var(--ink); }

/* ---------- 1. Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px var(--gutter);
  background: linear-gradient(180deg, rgba(23,16,13,.45), rgba(23,16,13,0));
}
/* Past the hero the bar turns solid so the nav stays legible over any section */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(23,16,13,.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .3s ease;
}
.site-header.is-solid::before { opacity: 1; }
.wordmark {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream);
}
.site-nav { display: flex; gap: clamp(16px, 2.4vw, 34px); align-items: center; }
.site-nav a {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .85;
}
.site-nav a:hover { color: var(--white); opacity: 1; }

/* Phones: tighten tracking so the wordmark and all four links fit on one line */
@media (max-width: 560px) {
  .site-header { gap: 12px; }
  .wordmark { font-size: 13px; letter-spacing: .28em; white-space: nowrap; }
  .site-nav { gap: 10px; }
  .site-nav a { font-size: 10px; letter-spacing: .14em; }
}
@media (max-width: 360px) {
  .wordmark { letter-spacing: .18em; }
  .site-nav { gap: 9px; }
  .site-nav a { letter-spacing: .1em; }
}

/* ---------- 2. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--img-fallback);
}
.hero__img {
  position: absolute;
  inset: -4% -4% -20%; /* phones: sit her lower so the sky holds the type */
  will-change: transform;
}
.hero__img img { object-position: 52% 58%; }
.hero__glow {
  position: absolute;
  left: 50%;
  top: 26%;
  width: min(120vw, 1400px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,214,150,.34) 0%, rgba(232,132,60,.16) 34%, rgba(232,132,60,0) 62%);
  pointer-events: none;
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,16,13,.66) 0%, rgba(23,16,13,.4) 24%, rgba(23,16,13,.12) 46%, rgba(23,16,13,.3) 68%, rgba(23,16,13,.9) 100%);
}
/* Type sits in the sky above Siena and in the grass beside her, never across her.
   Phones and portrait tablets stack everything in the sky; wide screens split into
   a name across the sunset and a foot row flanking her. */
.hero__type {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(84px, 12svh, 120px) 24px 32px;
  will-change: transform, opacity;
}
.hero__head { display: flex; flex-direction: column; align-items: center; }
.hero__place {
  font-family: var(--script);
  font-size: clamp(26px, 4vw, 46px);
  color: var(--pink);
  line-height: 1;
  margin-bottom: -6px;
  text-shadow: 0 2px 18px rgba(23,16,13,.7);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(60px, 18vw, 150px);
  line-height: .92;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 12px 0 0;
  color: var(--white);
  text-shadow: 0 2px 36px rgba(23,16,13,.55);
}
.hero__title span { display: block; }
.hero__foot, .hero__intro, .hero__action {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__genres {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(23,16,13,.6);
}
.hero__genres .diamond { color: var(--orange); }
.hero__tagline {
  max-width: 34ch;
  margin: 14px 0 0;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(247,239,228,.95);
  text-wrap: pretty;
  text-shadow: 0 1px 14px rgba(23,16,13,.6);
}
.hero__cta { margin-top: 24px; box-shadow: 0 12px 40px rgba(23,16,13,.35); }
.hero__release {
  margin-top: 14px;
  font-family: var(--script);
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--warm-1);
  text-shadow: 0 1px 14px rgba(23,16,13,.6);
}
.hero__when {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247,239,228,.8);
  text-shadow: 0 1px 12px rgba(23,16,13,.7);
}

@media (min-width: 900px) and (min-aspect-ratio: 5/4) {
  .hero__img { inset: -12% -4%; }
  .hero__type {
    justify-content: space-between;
    padding: clamp(88px, 13svh, 128px) var(--gutter) clamp(12px, 3svh, 32px);
  }
  .hero__title {
    font-size: clamp(64px, min(8.4vw, 17svh), 150px);
    white-space: nowrap;
  }
  .hero__title span { display: inline; }
  .hero__foot {
    width: 100%;
    max-width: 1180px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }
  .hero__intro { align-items: flex-start; text-align: left; }
  .hero__intro .hero__genres { margin-top: 0; }
  .hero__action { align-items: flex-end; text-align: right; }
  .hero__action .hero__cta { margin-top: 0; }
}

.hero__scroll {
  position: relative;
  flex: none;
  padding-bottom: 26px;
  text-align: center;
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: rgba(247,239,228,.6);
}

/* ---------- 3. Music ---------- */
.music { background: linear-gradient(180deg, var(--ink) 0%, var(--raised) 100%); }
.music__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.music__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 116px);
  line-height: .94;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 16px 0 0;
  color: var(--white);
}
.music__lede { max-width: 40ch; margin: 24px 0 0; color: rgba(247,239,228,.88); }
.music__avail {
  margin: 10px 0 0;
  font-family: var(--script);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--pink);
}
.music__buttons { margin-top: 34px; }
.music__platforms {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247,239,228,.55);
}
.music__media { position: relative; }
.music__media-glow {
  position: absolute;
  inset: -18px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 20%, rgba(232,132,60,.35), rgba(242,168,184,.12) 55%, transparent 75%);
  filter: blur(12px);
}
.music__embed { position: relative; }
.music__embed iframe {
  position: relative;
  display: block;
  border: 0;
  border-radius: 14px;
}

/* Countdown: Bodoni numerals in the same voice as the title */
.countdown {
  display: flex;
  gap: clamp(22px, 3vw, 36px);
  margin-top: 26px;
}
.countdown__unit { display: flex; flex-direction: column; }
.countdown__num {
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: lining-nums tabular-nums;
}
.countdown__label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247,239,228,.7);
}

/* Behind-the-scenes thumbnail that opens the video popup */
.video-tile {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: var(--deep);
  color: var(--cream);
  isolation: isolate;
}
.video-tile picture, .video-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-tile img {
  object-fit: cover;
  object-position: 34% 50%;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}
.video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,16,13,.05) 30%, rgba(23,16,13,.8) 100%);
}
.video-tile__play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 44%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(247,239,228,.92);
  color: var(--ink);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 40px rgba(23,16,13,.45);
  transition: background-color .2s ease, transform .3s cubic-bezier(.2, .7, .2, 1);
}
.video-tile__play .icon-play { width: 20px; height: 24px; margin-left: 4px; }
.video-tile__caption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-tile__kicker {
  font-family: var(--script);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  color: var(--warm-1);
}
.video-tile__meta {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247,239,228,.8);
}
@media (min-width: 800px) {
  .video-tile { aspect-ratio: 4 / 5; }
}
.video-tile:hover { color: var(--cream); }
.video-tile:hover img { transform: scale(1.03); }
.video-tile:hover .video-tile__play { background: var(--pink); transform: translate(-50%, -50%) scale(1.06); }

/* ---------- 4. About ---------- */
.about { background: var(--raised); }
.about__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--photo-fallback);
}
.about__photo picture { position: absolute; inset: 0; }
.about__photo img { object-position: 56% 42%; }
.about__photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(232,132,60,.18), rgba(23,16,13,.35));
}
.about__title { font-size: clamp(46px, 7vw, 92px); line-height: 1; margin: 14px 0 0; }
.about__text {
  max-width: 46ch;
  margin: 18px 0 0;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.75;
  color: rgba(247,239,228,.9);
  text-wrap: pretty;
}
.about__title + .about__text { margin-top: 28px; }

/* ---------- 5. Road statement band ---------- */
.road {
  position: relative;
  min-height: min(86vh, 780px);
  min-height: min(86svh, 780px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 12vw, 150px) var(--gutter);
  background: var(--img-fallback);
  overflow: hidden;
}
.road__img {
  position: absolute;
  inset: -14% 0;
  will-change: transform;
}
.road__img img { object-position: 62% 50%; }
.road__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,16,13,.82) 0%, rgba(23,16,13,.62) 38%, rgba(23,16,13,.18) 66%, rgba(23,16,13,.05) 100%);
}
.road__inner { position: relative; width: 100%; max-width: 1180px; margin: 0 auto; }
.road__statement {
  max-width: 14ch;
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6.4vw, 92px);
  line-height: 1.04;
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(23,16,13,.6);
}
.road__statement em {
  display: block;
  margin-top: 10px;
  font-family: var(--script);
  font-style: normal;
  color: var(--warm-2);
}

/* ---------- 6. Listen ---------- */
/* The copy sits in the photo's open wall: the photo is pulled up under the text by
   30% of its own width, which stays inside the empty space above her head (~35%). */
.listen {
  --photo-w: min(100%, 1040px);
  position: relative;
  padding-top: clamp(64px, 9vw, 120px);
  background: var(--ink);
  text-align: center;
  overflow: hidden;
}
.listen__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.listen__title {
  font-size: clamp(42px, 6.5vw, 86px);
  line-height: 1.05;
  margin: 16px 0 0;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(23,16,13,.6);
}
.listen__lede { margin: 22px 0 0; color: rgba(247,239,228,.9); text-shadow: 0 1px 16px rgba(23,16,13,.7); }
.listen__buttons { margin-top: 38px; }
.listen__buttons .btn { background: rgba(23,16,13,.35); }
.listen__buttons .btn:hover { background: var(--cream); }
.listen__photo {
  display: block;
  width: var(--photo-w);
  margin: calc(var(--photo-w) * -0.3) auto 0;
}
.listen__photo img {
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 20%, #000 36%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 20%, #000 36%, #000 84%, transparent 100%);
}
/* Wider than the photo: dissolve its side edges into the page too */
@media (min-width: 1041px) {
  .listen__photo img {
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 20%, #000 36%, #000 84%, transparent 100%),
      linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 20%, #000 36%, #000 84%, transparent 100%),
      linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-composite: intersect;
  }
}

/* ---------- 8. Watch ---------- */
.watch { background: linear-gradient(180deg, var(--ink) 0%, var(--raised) 100%); }
.watch__inner { max-width: 1180px; margin: 0 auto; }
.watch__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.watch__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
  margin: 14px 0 0;
  color: var(--white);
  max-width: 16ch;
  text-wrap: balance;
}
.watch__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--deep);
}
.watch__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- 9. Follow ---------- */
.follow {
  padding-top: clamp(72px, 11vw, 140px);
  padding-bottom: clamp(72px, 11vw, 140px);
  background: var(--raised);
  text-align: center;
}
.follow__inner { max-width: 760px; margin: 0 auto; }
.follow__title { font-size: clamp(38px, 5.5vw, 72px); line-height: 1.1; margin: 16px 0 0; }
.follow__lede { margin: 20px 0 0; color: rgba(247,239,228,.85); }
.follow__buttons { gap: 12px; margin-top: 34px; }

/* ---------- 10. Contact ---------- */
/* The one light section: dark ink type on white, deepened accents for contrast,
   text on the left and the walking photo filling the right half. */
.contact {
  --contact-bg: #FFFFFF;
  --contact-orange: #B4561B; /* 4.9:1 on white */
  --contact-rose: #A8445E;   /* 5.75:1 on white */
  display: grid;
  grid-template-columns: 1fr;
  background: var(--contact-bg);
  color: var(--ink);
}
.contact :focus-visible { outline-color: var(--ink); }
.contact__text {
  padding: clamp(56px, 10vw, 120px) var(--gutter);
  text-align: left;
}
.contact .eyebrow { color: var(--contact-orange); }
.contact__title {
  max-width: 15ch;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 1.05;
  margin: 16px 0 0;
  color: var(--ink);
  text-wrap: balance;
}
.contact__email {
  display: inline-block;
  margin-top: 26px;
  font-family: var(--script);
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--contact-rose);
}
.contact__email:hover { color: var(--ink); }
.contact__cta {
  margin-top: 30px;
  padding: 17px 40px;
  background: var(--ink);
  color: var(--cream);
  letter-spacing: .3em;
  font-weight: 500;
}
.contact__cta:hover { background: var(--orange); color: var(--ink); }
.contact__photo { order: -1; display: block; aspect-ratio: 4 / 5; max-height: 72svh; }
.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 58%;
}

@media (min-width: 860px) {
  .contact {
    grid-template-columns: 1fr 1fr;
    min-height: clamp(560px, 82svh, 860px);
  }
  .contact__text {
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 620px;
    padding-right: clamp(32px, 5vw, 80px);
  }
  .contact__photo { order: 0; aspect-ratio: auto; max-height: none; }
}

/* ---------- 11. Footer ---------- */
.site-footer {
  padding: 56px var(--gutter) 48px;
  background: var(--deep);
  text-align: center;
}
.site-footer__wordmark {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--cream);
}
.site-footer__place {
  margin-top: 10px;
  font-family: var(--script);
  font-size: 22px;
  color: var(--orange);
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.site-footer__links a { color: rgba(247,239,228,.7); }
.site-footer__links a:hover { color: var(--white); }
.site-footer__copy {
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(247,239,228,.35);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ---------- Behind-the-scenes video popup ---------- */
.video-modal {
  width: min(100% - 32px, 1040px);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.video-modal::backdrop {
  background: rgba(14,9,7,.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.video-modal[open] { animation: modal-in .25s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px); } }
.video-modal__frame { position: relative; }
.video-modal video {
  display: block;
  width: 100%;
  max-height: calc(100svh - 120px);
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: var(--deep);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(247,239,228,.4);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font: 14px/1 var(--sans);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.video-modal__close:hover { background: var(--cream); color: var(--ink); }
.video-modal__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 12px;
  background: rgba(14,9,7,.95);
  text-align: center;
  animation: modal-in .3s ease;
}
.video-modal__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.video-modal__line {
  margin: 10px 0 0;
  font-family: var(--script);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--pink);
}
[data-video-error] .video-modal__line {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
}
.video-modal__card .btn-row { margin-top: clamp(16px, 3vw, 28px); }
.video-modal__card button.btn { font: inherit; font-size: 12px; cursor: pointer; background: transparent; }
.video-modal__card button.btn--ghost:hover { background: var(--cream); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .video-modal[open], .video-modal__card { animation: none; }
  .video-tile img, .video-tile__play { transition: none; }
  .site-header::before { transition: none; }
}
