@import url("https://fonts.cdnfonts.com/css/brittany-signature");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  color-scheme: light dark;
  --ink: #101010;
  --paper: #f0eee8;
  --paper-bright: #fbfaf6;
  --muted: #6f6c65;
  --line: rgba(16, 16, 16, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #c9ff3b;
  --accent-dark: #9cc71c;
  --display: "Manrope", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --signature: "Brittany Signature", "Brush Script MT", cursive;
  --shell: min(calc(100% - 48px), 1240px);
  --header-height: 84px;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(16, 16, 16, 0.78);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--paper-bright);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: var(--line-light);
  background: rgba(16, 16, 16, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--shell);
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.wordmark::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--accent);
}

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

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active { color: #fff; }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

.menu-toggle {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle::before { transform: translateY(-4px); }
.menu-toggle::after { transform: translateY(4px); }
.menu-open .menu-toggle::before { transform: rotate(45deg); }
.menu-open .menu-toggle::after { transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #deddd8;
}

.hero-media,
.hero-media::after { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(240, 238, 232, 0.1) 42%, rgba(16, 16, 16, 0.04)),
    linear-gradient(180deg, rgba(16, 16, 16, 0.16), transparent 24%, transparent 74%, rgba(16, 16, 16, 0.24));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 64px;
  display: flex;
  align-items: center;
}

.hero-copy { width: min(48%, 610px); padding: 28px 0; }

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-kicker::before,
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }

.hero-title,
.signature-title {
  margin: 0;
  font-family: var(--signature);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-title {
  margin-top: 46px;
  max-width: 100%;
  font-size: clamp(4.5rem, 7vw, 6.75rem);
  line-height: 0.82;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.hero-subtitle {
  max-width: 470px;
  margin: 34px 0 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions,
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 22px;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: #2c2c2c; }
.button-light { border-color: var(--line-light); background: var(--paper-bright); color: var(--ink); }
.button-outline-light { border-color: var(--line-light); color: #fff; }

.play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-index::before { content: ""; width: 58px; height: 1px; background: currentColor; }

.marquee { overflow: hidden; border-block: 1px solid var(--line-light); background: var(--accent); color: var(--ink); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 26px; padding: 15px 0; animation: marquee 24s linear infinite; }
.marquee-track span { font-family: var(--display); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.marquee-track i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { position: relative; padding: 112px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-paper { background: var(--paper); }
.section-bright { background: var(--paper-bright); }
.shell { width: var(--shell); margin: 0 auto; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(280px, 1.35fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading .eyebrow { align-self: start; padding-top: 16px; }
.signature-title { max-width: 100%; font-size: clamp(3.4rem, 5vw, 5.25rem); line-height: 0.92; }
.section-intro { max-width: 560px; margin: 20px 0 0; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-intro { color: rgba(255, 255, 255, 0.6); }

.release-feature { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 60px; align-items: center; }
.release-art { position: relative; min-height: 560px; overflow: hidden; border-radius: 2px; background: #dad9d4; }
.release-art img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: 72% center; filter: contrast(1.05); transform: scale(1.12); }

.release-art::after {
  content: "Latest";
  position: absolute;
  top: 24px;
  left: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  padding: 9px 14px;
  font-family: var(--display);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.release-meta { display: flex; gap: 12px; color: rgba(255, 255, 255, 0.52); font-family: var(--display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.release-title { margin: 18px 0 0; font-family: var(--display); font-size: clamp(3.3rem, 8vw, 7.5rem); font-weight: 800; letter-spacing: -0.07em; line-height: 0.82; text-transform: uppercase; }
.release-copy { max-width: 570px; margin: 28px 0 0; color: rgba(255, 255, 255, 0.68); font-size: 1rem; }
.spotify-frame { margin-top: 32px; overflow: hidden; border-radius: 12px; background: #202020; }
.spotify-frame iframe { display: block; width: 100%; height: 152px; border: 0; }

.about-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 7vw; align-items: center; }
.about-image { position: relative; min-height: 650px; overflow: hidden; background: #d9d8d2; }
.about-image img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; object-position: 72% center; transform: scale(1.25); }

.about-image::after {
  content: "01 — About";
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-copy .signature-title { margin-top: 34px; }
.about-copy > p:not(.eyebrow) { margin: 28px 0 0; color: #44423d; font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.75; }
.facts { margin: 38px 0 0; border-top: 1px solid var(--line); }
.fact { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.fact dt, .fact dd { margin: 0; }
.fact dt { color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.fact dd { font-family: var(--display); font-size: 0.96rem; font-weight: 700; }

.statement { overflow: hidden; padding: 120px 0; background: var(--accent); color: var(--ink); }
.statement p { max-width: 1080px; margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 6vw, 6rem); font-weight: 800; letter-spacing: -0.055em; line-height: 1.02; }
.statement em { font-family: var(--signature); font-size: 1.25em; font-style: normal; font-weight: 400; }

.contact-band { position: relative; overflow: hidden; padding: 140px 0; background: var(--ink); color: #fff; text-align: center; }
.contact-band::before { content: "S"; position: absolute; top: 50%; left: 50%; color: rgba(255, 255, 255, 0.035); font-family: var(--signature); font-size: min(80vw, 820px); line-height: 0.7; transform: translate(-50%, -50%) rotate(-8deg); }
.contact-band .shell { position: relative; z-index: 1; }
.contact-band .eyebrow { justify-content: center; }
.contact-band .signature-title { max-width: 900px; margin: 46px auto 0; }
.contact-band p:not(.eyebrow) { max-width: 610px; margin: 28px auto 0; color: rgba(255, 255, 255, 0.62); }
.contact-band .button-row { justify-content: center; }

.site-footer { padding: 54px 0 30px; border-top: 1px solid var(--line-light); background: var(--ink); color: #fff; }
.footer-main { display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr; gap: 50px; padding-bottom: 44px; }
.footer-wordmark { margin: 0; font-family: var(--signature); font-size: 4rem; font-weight: 400; line-height: 0.9; }
.footer-copy { max-width: 350px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.55); font-size: 0.88rem; }
.footer-heading { margin: 0 0 18px; color: rgba(255, 255, 255, 0.42); font-family: var(--display); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { width: fit-content; color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; transition: color 180ms ease; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line-light); color: rgba(255, 255, 255, 0.42); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: #fff;
}

.page-hero-media,
.page-hero-media::after {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  opacity: 0.62;
  filter: contrast(1.08);
}

.page-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.92), rgba(16, 16, 16, 0.26) 68%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.2), transparent 36%, #101010 108%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
  padding: calc(var(--header-height) + 90px) 0 78px;
}

.page-hero-copy {
  width: min(100%, 760px);
  min-width: 0;
}

.page-hero h1 {
  margin: 56px 0 0;
  max-width: 100%;
  font-family: var(--signature);
  font-size: clamp(4rem, 6.5vw, 6.25rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.84;
}

.hero-copy,
.release-content,
.about-copy,
.section-heading > *,
.story-layout > *,
.contact-page-grid > *,
.player-panel > * {
  min-width: 0;
}

.page-hero-lede {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 8vw;
  align-items: start;
}

.story-label {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.story-label .signature-title {
  margin-top: 38px;
}

.story-copy {
  border-top: 1px solid var(--line);
}

.story-copy p {
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  color: #403e39;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.8;
}

.story-copy .lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

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

.craft-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.035);
}

.craft-number {
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.craft-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.craft-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.release-list {
  border-top: 1px solid var(--line-light);
}

.track-row {
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.55fr) minmax(0, 1.45fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.track-number {
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.track-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.track-details {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.track-details strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--display);
}

.round-play {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  transition: transform 180ms ease, background 180ms ease;
}

.round-play:hover {
  background: #fff;
  transform: scale(1.06);
}

.player-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 60px;
  align-items: center;
}

.player-panel .release-art,
.player-panel .release-art img {
  min-height: 480px;
}

.contact-page-section {
  min-height: 70svh;
  padding: 112px 0;
  background: var(--paper-bright);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 8vw;
  align-items: start;
}

.contact-direct {
  padding-top: 10px;
}

.contact-direct .signature-title {
  margin-top: 38px;
}

.contact-direct > p:not(.eyebrow) {
  max-width: 440px;
  margin: 28px 0 0;
  color: var(--muted);
}

.direct-link {
  display: block;
  width: fit-content;
  margin-top: 30px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.direct-link + .direct-link {
  margin-top: 14px;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.profile-link {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.profile-link:hover {
  background: var(--ink);
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 16, 0.3);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  padding: 11px 0;
  transition: border-color 180ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

@media (max-width: 920px) {
  :root { --shell: min(calc(100% - 36px), 760px); }
  .release-feature, .about-feature { grid-template-columns: 1fr; gap: 48px; }
  .release-art, .release-art img, .about-image, .about-image img { min-height: 520px; }
  .release-content { max-width: 680px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
  .story-layout,
  .contact-page-grid,
  .player-panel { grid-template-columns: 1fr; gap: 50px; }
  .story-label { position: static; }
  .craft-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --shell: min(calc(100% - 32px), 620px); --header-height: 72px; }
  .menu-toggle { display: flex; }

  .site-header.menu-active {
    height: 100dvh;
    min-height: 100svh;
    border-color: transparent;
    background: var(--ink);
    backdrop-filter: none;
  }

  .site-header.menu-active .header-inner { height: var(--header-height); }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100vw;
    height: 100dvh;
    padding:
      calc(var(--header-height) + 44px)
      max(24px, env(safe-area-inset-right))
      max(40px, env(safe-area-inset-bottom))
      max(24px, env(safe-area-inset-left));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 7px 0; font-family: var(--display); font-size: clamp(2rem, 11vw, 3.25rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1.05; text-transform: none; }
  .site-nav a::after { display: none; }
  .hero { min-height: 760px; background: var(--ink); color: #fff; }
  .hero-media img { object-position: 73% center; }
  .hero-media::after { background: linear-gradient(180deg, rgba(16, 16, 16, 0.22), transparent 34%, rgba(16, 16, 16, 0.88) 83%, #101010), linear-gradient(90deg, transparent, rgba(16, 16, 16, 0.08)); }
  .hero-inner { min-height: 760px; padding-top: 120px; padding-bottom: 48px; align-items: flex-end; }
  .hero-copy { width: 100%; padding: 0 0 16px; }
  .hero-title { margin-top: 42px; font-size: clamp(4.1rem, 20vw, 5.5rem); transform: rotate(-1deg); }
  .hero-subtitle { max-width: 330px; margin-top: 24px; font-size: 1.05rem; }
  .hero-index { display: none; }
  .hero-actions .button { border-color: var(--line-light); }
  .hero-actions .button-dark { background: var(--paper-bright); color: var(--ink); }
  .section { padding: 78px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 38px; }
  .section-heading .eyebrow { padding-top: 0; }
  .signature-title { font-size: clamp(3.1rem, 14vw, 4.25rem); }
  .release-art, .release-art img, .about-image, .about-image img { min-height: 430px; }
  .about-image img { transform: scale(1.4); }
  .release-title { font-size: clamp(3.4rem, 20vw, 5.2rem); }
  .statement { padding: 88px 0; }
  .contact-band { padding: 100px 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-main > :first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { min-height: 660px; }
  .page-hero-media img { object-position: 70% center; }
  .page-hero-media::after { background: linear-gradient(180deg, rgba(16, 16, 16, 0.2), rgba(16, 16, 16, 0.2) 42%, #101010 100%); }
  .page-hero-inner { padding-top: 160px; padding-bottom: 60px; }
  .page-hero h1 { font-size: clamp(3.8rem, 18vw, 5rem); }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-card { min-height: 240px; }
  .track-row { grid-template-columns: 42px 1fr auto; gap: 14px; }
  .track-details { grid-column: 2 / -1; }
  .round-play { width: 50px; height: 50px; }
  .contact-page-section { padding: 78px 0; }
  .contact-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .hero-actions, .button-row { display: grid; }
  .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > :first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
