:root {
  --ink: #080b10;
  --ink-soft: #0e131b;
  --panel: #141a23;
  --cream: #f3eee5;
  --muted: #aaa9a5;
  --amber: #d79a52;
  --amber-light: #f2c184;
  --line: rgba(243, 238, 229, .14);
  --shell: min(1240px, calc(100% - 48px));
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell, .container { width: var(--shell); margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 0; left: 16px; z-index: 1000; transform: translateY(-120%);
  padding: 12px 18px; background: var(--amber); color: var(--ink); font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--amber-light); outline-offset: 4px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding: 22px 0; transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 14px 0; background: rgba(8, 11, 16, .86);
  backdrop-filter: blur(18px); border-color: var(--line);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.brand {
  display: inline-flex; flex-direction: column; text-decoration: none;
  text-transform: uppercase; letter-spacing: .12em; line-height: 1.05; font-size: .72rem;
}
.brand strong { color: var(--amber-light); font-size: 1.06rem; letter-spacing: .23em; }
.brand > span:last-child:not(:first-child) { color: var(--amber-light); }
.nav { display: flex; gap: 34px; }
.nav a {
  color: var(--cream); text-decoration: none; text-transform: uppercase;
  letter-spacing: .15em; font-size: .7rem; font-weight: 700;
}
.nav a::after {
  content: ""; display: block; width: 0; height: 1px; margin-top: 5px;
  background: var(--amber); transition: width .2s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); padding: 12px; }
.nav-toggle i { display: block; width: 26px; height: 1px; background: currentColor; margin: 6px; transition: transform .25s; }

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; background: #10161f;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(1.08) contrast(1.03); }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4, 7, 12, .94) 0%, rgba(4, 7, 12, .67) 38%, rgba(4, 7, 12, .08) 72%),
              linear-gradient(0deg, rgba(8, 11, 16, .85), transparent 35%);
}
.hero-content { position: relative; z-index: 2; padding: 150px 0 100px; }
.kicker, .section-number {
  margin: 0 0 28px; color: var(--amber-light); text-transform: uppercase;
  font-size: .7rem; font-weight: 700; letter-spacing: .22em;
}
.hero h1, .manifesto blockquote, .story h2, .contact h2 {
  font-family: var(--serif); font-weight: 400; letter-spacing: -.045em;
}
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(4.2rem, 9vw, 8rem); line-height: .82; }
.hero h1 em, .contact h2 em { color: var(--amber-light); font-weight: 400; }
.hero-intro { max-width: 510px; margin: 36px 0 0; color: #d2d0ca; font-size: clamp(1rem, 1.6vw, 1.22rem); }
.hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; margin-top: 42px; }
.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 15px 20px; text-decoration: none; text-transform: uppercase;
  font-size: .7rem; font-weight: 800; letter-spacing: .13em; border: 1px solid var(--line);
  transition: background .2s, color .2s, transform .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.button-primary:hover { background: var(--amber-light); }
.text-link {
  display: inline-flex; gap: 12px; color: var(--cream); text-decoration: none;
  text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; font-weight: 700;
  border-bottom: 1px solid var(--line); padding-bottom: 7px;
}
.text-link:hover { border-color: var(--amber); color: var(--amber-light); }
.hero-note {
  position: absolute; z-index: 2; right: 24px; bottom: 40px; margin: 0;
  color: rgba(255,255,255,.55); font-size: .64rem; letter-spacing: .2em;
  text-transform: uppercase; writing-mode: vertical-rl;
}

.manifesto { padding: clamp(100px, 14vw, 190px) 0; border-bottom: 1px solid var(--line); }
.manifesto .shell { display: grid; grid-template-columns: 1fr 2.2fr; gap: 60px; }
.manifesto blockquote {
  grid-column: 2; margin: 0; font-size: clamp(3.5rem, 8vw, 7rem); line-height: .9;
}
.manifesto blockquote span { color: var(--amber-light); font-style: italic; }
.manifesto-copy { grid-column: 2; max-width: 620px; margin: 20px 0 0; color: var(--muted); font-size: 1.1rem; }

.featured, .story, .visuals, .in-motion { padding: clamp(90px, 12vw, 160px) 0; border-bottom: 1px solid var(--line); }
.section-heading {
  display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 58px;
}
.section-heading h2, .visuals h2 {
  margin: 0; font: 400 clamp(3rem, 6vw, 5.6rem)/.95 var(--serif); letter-spacing: -.04em;
}
.section-heading p:not(.section-number) { color: var(--muted); max-width: 300px; }
.spotlight {
  display: grid; grid-template-columns: minmax(300px, 1fr) 1.15fr;
  min-height: 560px; background: var(--panel);
}
.spotlight-art {
  position: relative; display: grid; place-items: center; overflow: hidden;
  min-height: 480px; background:
    radial-gradient(circle at 70% 30%, rgba(215,154,82,.38), transparent 26%),
    linear-gradient(145deg, #293341, #0a0e14 70%);
}
.spotlight-art::after {
  content: ""; position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.13);
  transform: rotate(-4deg);
}
.vinyl-ring {
  position: absolute; width: 68%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%; box-shadow: 0 0 0 50px rgba(0,0,0,.08), 0 0 0 100px rgba(0,0,0,.06);
}
.art-title {
  position: relative; z-index: 2; font: italic 700 clamp(3.6rem, 7vw, 7rem)/.72 var(--serif);
  letter-spacing: -.07em; color: var(--cream); mix-blend-mode: screen;
}
.spotlight-copy { align-self: center; padding: clamp(42px, 7vw, 90px); }
.spotlight-copy h3 { margin: 0 0 25px; font: 400 clamp(3rem, 6vw, 5.8rem)/.9 var(--serif); letter-spacing: -.05em; }
.spotlight-copy > p:not(.kicker) { max-width: 520px; color: var(--muted); margin: 0 0 36px; font-size: 1.05rem; }
.spotlight-services { display: flex; flex-wrap: wrap; gap: 12px; }
.spotlight-cover { width: 100%; height: 100%; object-fit: cover; }
.track-list { margin-top: 30px; border-top: 1px solid var(--line); }
.track-row {
  display: grid; grid-template-columns: 58px 34px minmax(150px, 1.25fr) minmax(130px, 1fr) 80px minmax(130px, auto); gap: 18px;
  align-items: center; padding: 24px 4px; border-bottom: 1px solid var(--line);
  text-decoration: none; transition: padding .2s, background .2s;
}
.track-row:hover { padding-inline: 16px; background: rgba(255,255,255,.025); }
.track-cover { display: grid; place-items: center; width: 56px; aspect-ratio: 1; overflow: hidden; background: #17202b; color: var(--amber-light); font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
.track-cover img { width: 100%; height: 100%; object-fit: cover; }
.track-index, .track-emotion, .track-bpm { color: var(--muted); font-size: .76rem; }
.track-row strong { font: 400 1.5rem var(--serif); }
.track-services { display: flex; justify-content: flex-end; gap: 8px; }
.track-services a { padding: 7px 9px; border: 1px solid var(--line); color: var(--muted); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.track-services a:hover { border-color: var(--amber-light); color: var(--amber-light); }
.platform-links {
  display: grid; grid-template-columns: 1.3fr repeat(6, auto); gap: 26px;
  align-items: center; margin-top: 70px; padding: 24px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.platform-links p {
  margin: 0; color: var(--muted); text-transform: uppercase;
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
}
.platform-links a {
  display: flex; gap: 8px; text-decoration: none; text-transform: uppercase;
  font-size: .66rem; font-weight: 700; letter-spacing: .12em;
}
.platform-links a span { color: var(--amber-light); }
.platform-links a:hover { color: var(--amber-light); }

.story { background: var(--cream); color: var(--ink); }
.story-grid { display: grid; grid-template-columns: minmax(300px, .9fr) 1.1fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.story-image-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.story-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.story-image-wrap span {
  position: absolute; right: -28px; bottom: 28px; padding: 12px 16px;
  background: var(--ink); color: var(--cream); text-transform: uppercase;
  font-size: .65rem; letter-spacing: .18em;
}
.story .section-number { color: #8b5f2f; }
.story h2 { margin: 0 0 35px; font-size: clamp(3.5rem, 7vw, 7rem); line-height: .84; }
.story-copy .lead { font: 400 1.35rem/1.55 var(--serif); }
.story-copy > p:not(.section-number):not(.lead) { color: #5f5e5a; max-width: 610px; }
.style-notes { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 36px 0 0; list-style: none; }
.style-notes li {
  padding: 8px 13px; border: 1px solid rgba(8,11,16,.2); border-radius: 100px;
  text-transform: uppercase; font-size: .64rem; letter-spacing: .13em;
}

.photo-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 330px 430px;
  gap: 16px;
}
.photo-grid figure { margin: 0; overflow: hidden; background: var(--panel); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.photo-tall { grid-row: 1 / 3; }
.photo-tall img { object-position: center; }
.photo-wide img { object-position: center 38%; }
.photo-dark img { object-position: center; }

.in-motion { background: var(--cream); color: var(--ink); }
.motion-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; margin-bottom: 65px; }
.motion-heading .section-number { color: #8b5f2f; }
.motion-heading h2 { margin: 0; font: 400 clamp(3.5rem, 7vw, 7rem)/.86 var(--serif); letter-spacing: -.05em; }
.motion-heading h2 em { color: #9a6631; font-weight: 400; }
.motion-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: end; }
.motion-grid figure { position: relative; margin: 0; overflow: hidden; background: #d8d2c8; }
.motion-grid img { width: 100%; height: 100%; object-fit: cover; }
.motion-main { height: 690px; }
.motion-side { height: 510px; }
.motion-grid figcaption {
  position: absolute; right: 18px; bottom: 18px; padding: 9px 12px;
  background: rgba(8,11,16,.9); color: var(--cream); text-transform: uppercase;
  letter-spacing: .16em; font-size: .62rem;
}

.contact { padding: clamp(110px, 14vw, 190px) 0; background: linear-gradient(135deg, #111821, #080b10 70%); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact h2 { margin: 0; font-size: clamp(4rem, 10vw, 9rem); line-height: .82; }
.contact-copy > p:not(.section-number) { max-width: 480px; color: var(--muted); margin: 40px 0 30px; }
.contact-email {
  color: var(--cream); text-decoration: none; font-size: clamp(1rem, 2.2vw, 1.5rem);
  border-bottom: 1px solid var(--amber); padding: 10px 4px;
}
.contact-email:hover { color: var(--amber-light); }
.contact-form { padding: clamp(28px, 5vw, 58px); background: rgba(255,255,255,.035); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block; margin-bottom: 8px; color: var(--muted); text-transform: uppercase;
  letter-spacing: .16em; font-size: .64rem; font-weight: 700;
}
.form-field input, .form-field textarea {
  display: block; width: 100%; border: 0; border-bottom: 1px solid rgba(243,238,229,.3);
  border-radius: 0; background: transparent; color: var(--cream); padding: 11px 0;
  font: inherit; transition: border-color .2s;
}
.form-field textarea { min-height: 135px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { outline: 0; border-color: var(--amber-light); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.captcha-consent { padding: 20px; margin: 5px 0 22px; border: 1px dashed rgba(243,238,229,.25); }
.captcha-consent p { margin: 0 0 15px; color: var(--muted); font-size: .82rem; }
.button-outline { border-color: var(--line); background: transparent; color: var(--cream); }
.button-outline:hover { border-color: var(--amber); color: var(--amber-light); }
.h-captcha { margin: 5px 0 22px; min-height: 78px; }
.form-consent { display: flex; align-items: flex-start; gap: 11px; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.form-consent input { margin-top: 4px; accent-color: var(--amber); }
.form-consent a { color: var(--amber-light); }
.form-submit { width: 100%; margin-top: 25px; }

.result-page { min-height: 100svh; display: grid; place-items: center; padding: 40px 0; }
.result-container { max-width: 680px; }
.result-card { padding: clamp(35px, 8vw, 80px); border: 1px solid var(--line); background: var(--panel); }
.result-card h1 { margin: 0 0 20px; font: 400 clamp(3rem, 7vw, 5rem)/.9 var(--serif); }
.result-card p { color: var(--muted); margin-bottom: 30px; }
.result-success { border-top: 3px solid #77b990; }
.result-error { border-top: 3px solid #db776b; }

.site-footer { padding: 56px 0 30px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: end; }
.footer-inner p { justify-self: end; color: var(--muted); margin: 0; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-inner nav a, .footer-inner p a { color: var(--muted); font-size: .76rem; }
.footer-meta { justify-self: end; text-align: right; }
.footer-socials { display: flex; justify-content: flex-end; gap: 18px; margin-bottom: 10px; }
.footer-socials a { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-socials a:hover { color: var(--amber-light); }
.footer-inner small { color: #6f7276; }

.legal-page { max-width: 920px; padding: 150px 0 100px; }
.legal-page h1 { margin: 0 0 10px; font: 400 clamp(3.3rem, 8vw, 6.5rem)/.9 var(--serif); letter-spacing: -.05em; }
.legal-page .updated { margin: 0 0 55px; color: var(--muted); font-size: .8rem; }
.legal-page h2 { margin: 48px 0 14px; font: 400 1.65rem var(--serif); }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page li + li { margin-top: 8px; }
.legal-page table { width: 100%; margin: 24px 0; border-collapse: collapse; font-size: .86rem; }
.legal-page th, .legal-page td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; color: var(--muted); }
.legal-page th { color: var(--cream); }
.legal-page .placeholder { color: #ff8b7e; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 1240px); }
  .site-header { padding: 16px 0; }
  .nav-toggle { display: block; position: relative; z-index: 2; cursor: pointer; }
  .nav {
    position: fixed; inset: 0; background: rgba(8,11,16,.98); display: flex;
    flex-direction: column; justify-content: center; align-items: center; gap: 30px;
    opacity: 0; visibility: hidden; transition: opacity .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a { font: 400 2.6rem var(--serif); text-transform: none; letter-spacing: -.03em; }
  .nav-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: 900px; align-items: end; }
  .hero-image { object-position: 68% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,7,12,.96) 4%, rgba(4,7,12,.62) 45%, rgba(4,7,12,.08) 78%); }
  .hero-content { padding-bottom: 80px; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 6rem); }
  .hero-note { display: none; }
  .manifesto .shell, .spotlight, .story-grid { grid-template-columns: 1fr; }
  .manifesto blockquote, .manifesto-copy { grid-column: 1; }
  .section-heading { align-items: start; flex-direction: column; }
  .spotlight-copy { padding: 42px 26px 50px; }
  .track-row { grid-template-columns: 56px 1fr auto; gap: 12px 16px; }
  .track-cover { grid-row: 1 / 3; }
  .track-index, .track-bpm { display: none; }
  .track-emotion { grid-column: 2 / 4; }
  .track-services { justify-content: flex-end; }
  .platform-links { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .platform-links p { grid-column: 1 / -1; padding-bottom: 18px; }
  .platform-links a { padding: 16px 0; border-top: 1px solid var(--line); }
  .story-image-wrap { max-width: 580px; }
  .story-image-wrap span { right: 15px; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 390px); }
  .photo-tall { grid-row: auto; }
  .motion-heading, .motion-grid, .contact-layout { grid-template-columns: 1fr; }
  .motion-main, .motion-side { height: 520px; }
  .contact-copy { position: static; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-inner p, .footer-meta { justify-self: start; text-align: left; }
  .footer-socials { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .manifesto blockquote { font-size: 3.8rem; }
  .spotlight-art { min-height: 400px; }
  .track-row { grid-template-columns: 50px 1fr; }
  .track-cover { width: 50px; }
  .track-emotion { grid-column: 2; }
  .track-services { grid-column: 2; justify-content: flex-start; }
  .photo-grid { grid-template-rows: repeat(3, 330px); }
  .motion-main, .motion-side { height: 420px; }
}

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