:root {
  --bg: #0b0b0c;
  --bg-soft: #121214;
  --paper: #f4f1eb;
  --text: #f7f4ef;
  --muted: #aaa5a0;
  --ink: #171719;
  --pink: #f2a0c4;
  --pink-hot: #ff4e9d;
  --line: rgba(255, 255, 255, .13);
  --line-dark: rgba(23, 23, 25, .15);
  --max: 1220px;
  --header: 78px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  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: 10px;
  left: 10px;
  z-index: 1000;
  padding: .65rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
  background: rgba(11, 11, 12, .88);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .06em;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.07em;
  text-decoration: none;
  line-height: 1;
}
.brand-dash,
.brand-skies { color: var(--pink); }

.site-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 100%;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: .7rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-cta:hover { background: var(--pink); color: var(--ink); border-color: var(--pink); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media,
.hero-shade { position: absolute; inset: 0; }
.hero-media {
  z-index: -3;
  background: url("assets/images/hero-iron-skies.webp") center 44% / cover no-repeat;
  transform: scale(1.03);
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 4, 5, .82) 0%, rgba(4, 4, 5, .42) 48%, rgba(4, 4, 5, .28) 100%),
    linear-gradient(0deg, rgba(8, 8, 9, .9) 0%, transparent 44%);
}
.hero-content {
  width: min(var(--max), calc(100% - 44px));
  padding-top: var(--header);
}
.eyebrow {
  margin: 0 0 1rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow.pink { color: var(--pink); }
.hero h1 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .02em;
  max-width: 980px;
  margin: 0;
  font-size: clamp(4.2rem, 13vw, 11rem);
  line-height: .78;
  letter-spacing: -.095em;
  text-transform: uppercase;
}
.hero h1 span,
.hero h1 strong { font-weight: 900; }
.hero h1 i { color: var(--pink); font-style: normal; font-weight: 300; }
.hero h1 strong { color: var(--pink); }
.hero-tagline {
  max-width: 720px;
  margin: 2rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-style: italic;
  line-height: 1.2;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--pink); color: var(--ink); }
.button-primary:hover { background: #ffc0dc; }
.button-ghost { border-color: rgba(255, 255, 255, .55); background: rgba(0, 0, 0, .15); color: #fff; }
.button-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.button-outline { border-color: rgba(255, 255, 255, .35); color: #fff; }
.button-outline:hover { background: #fff; color: var(--ink); }
.button-light { background: var(--ink); color: #fff; }
.button-dark { border-color: rgba(23, 23, 25, .35); color: var(--ink); }
.button-dark:hover { background: var(--ink); color: #fff; }

.scroll-cue {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue b { width: 1px; height: 42px; background: rgba(255, 255, 255, .45); }

.section {
  position: relative;
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
  padding: clamp(90px, 12vw, 160px) 0;
}
.section-index {
  position: absolute;
  top: 75px;
  right: 0;
  color: rgba(255, 255, 255, .08);
  font-size: clamp(6rem, 17vw, 14rem);
  font-weight: 900;
  line-height: 1;
}
h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.intro-copy { position: relative; z-index: 1; }
.intro .lead {
  margin-top: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
}
.intro-copy p:not(.eyebrow):not(.lead) { max-width: 690px; color: #c5c0ba; }
.intro-image { margin: 0; }
.intro-image img { aspect-ratio: 1 / 1; object-fit: cover; filter: contrast(1.02); }
.intro-image figcaption { margin-top: .85rem; color: var(--muted); font-size: .77rem; letter-spacing: .04em; }

.profiles {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
  align-items: stretch;
  background: var(--paper);
  color: var(--ink);
}
.profiles-visual { min-height: 820px; overflow: hidden; background: #ededed; }
.profiles-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.profiles-copy { padding: clamp(60px, 8vw, 120px); }
.profiles-heading { margin-bottom: 3.2rem; }
.profiles-heading .pink { color: #b54d7b; }
.profile-card { padding: 2rem 0; border-top: 1px solid var(--line-dark); }
.profile-card span { color: #8a4d68; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.profile-card h3 { margin: .35rem 0 .75rem; font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -.045em; }
.profile-card p { margin: 0; color: #4e4a47; }

.statement {
  position: relative;
  padding: clamp(90px, 11vw, 150px) 22px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(23, 23, 25, .08);
}
.statement-track {
  position: absolute;
  top: 25px;
  left: -3%;
  display: flex;
  gap: 2rem;
  width: max-content;
  color: rgba(23, 23, 25, .11);
  font-size: clamp(1rem, 2.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  white-space: nowrap;
  transform: rotate(-2deg);
}
.statement-track i { color: var(--pink-hot); font-style: normal; }
.statement blockquote {
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -.04em;
  text-align: center;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: 50px;
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 82px);
}
.section-heading > p { margin: 0 0 .6rem; color: var(--muted); }
.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 38px);
}
.release-card a {
  display: block;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
.release-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 50px);
  overflow: hidden;
  background: linear-gradient(135deg, #18181b, #0e0e0f 70%);
  border: 1px solid var(--line);
}
.release-visual::before {
  content: "";
  position: absolute;
  inset: 15% 10%;
  background: radial-gradient(circle, rgba(242, 160, 196, .13), transparent 67%);
  filter: blur(20px);
}
.release-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  transition: transform .55s var(--ease), filter .55s ease;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, .35));
}
.release-card:hover .release-visual img { transform: scale(1.045) rotate(-.5deg); filter: drop-shadow(0 34px 30px rgba(0, 0, 0, .5)); }
.release-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .15rem 1rem;
  align-items: end;
  padding: 1.25rem .2rem 0;
}
.release-meta span { grid-column: 1 / -1; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.release-meta h3 { margin: 0; font-size: clamp(1.35rem, 2.5vw, 2.1rem); letter-spacing: -.04em; }
.release-meta p { grid-column: 1 / -1; margin: .55rem 0 .45rem; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.release-meta b { color: var(--pink); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.release-card-wide { grid-column: 1 / -1; }
.release-card-wide .release-visual { min-height: 450px; }
.release-card-wide .release-visual img { width: min(920px, 90%); }
.centered { margin-top: 60px; text-align: center; }

.clips {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(520px, 1.28fr);
  background: #101012;
}
.clips-portrait { position: sticky; top: 0; align-self: start; min-height: 100vh; margin: 0; overflow: hidden; }
.clips-portrait img { width: 100%; height: 100vh; object-fit: cover; object-position: center; }
.clips-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 12, .68), transparent 42%);
  pointer-events: none;
}
.clips-portrait p {
  position: absolute;
  z-index: 1;
  left: 32px;
  bottom: 24px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  letter-spacing: .08em;
}
.clips-content { padding: clamp(80px, 9vw, 140px) clamp(28px, 6vw, 100px); }
.clips-heading { max-width: 760px; margin-bottom: 3.4rem; }
.clips-heading > p:last-child { max-width: 650px; color: var(--muted); }
.video-card { margin-top: 3rem; }
.video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; border: 1px solid var(--line); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-meta { display: flex; justify-content: space-between; gap: 20px; align-items: end; padding-top: 1rem; }
.video-meta span { color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.video-meta h3 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.4rem); letter-spacing: -.045em; }
.clips-action { margin-top: 3.2rem; }

.studio {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: auto auto;
  background: var(--paper);
  color: var(--ink);
}
.studio-photo { overflow: hidden; }
.studio-photo img { width: 100%; height: 100%; object-fit: cover; }
.studio-photo-large { min-height: 760px; grid-row: 1 / 3; }
.studio-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(55px, 8vw, 120px); }
.studio-copy h2 { font-size: clamp(2.3rem, 4.6vw, 4.8rem); }
.studio-copy p:not(.eyebrow) { color: #4d4a47; }
.studio-photo-small { min-height: 370px; }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 34px;
}
.timeline-grid article { position: relative; padding: 1.8rem 0 0; border-top: 1px solid var(--line); }
.timeline-grid article::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
}
.timeline-grid span { color: var(--pink); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.timeline-grid h3 { margin: .55rem 0 .6rem; font-size: 1.25rem; }
.timeline-grid p { margin: 0; color: var(--muted); font-size: .92rem; }

.contact {
  padding: clamp(100px, 15vw, 210px) 22px;
  background: var(--pink);
  color: var(--ink);
}
.contact-inner { width: min(1050px, 100%); margin: 0 auto; text-align: center; }
.contact h2 { font-size: clamp(3.5rem, 9vw, 8.8rem); }
.contact p { max-width: 680px; margin: 1.4rem auto; }
.contact-email {
  display: inline-block;
  margin: .7rem 0 2.2rem;
  color: var(--ink);
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .9rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 34px clamp(22px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}
.site-footer p { margin: 0; text-align: center; }
.site-footer small { color: #77736f; }
.site-footer > a:last-child { justify-self: end; text-decoration: none; }
.footer-brand { color: #fff; font-size: 1rem; }

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

:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; }

@media (max-width: 1080px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: .72rem; }
  .profiles { grid-template-columns: 1fr; }
  .profiles-visual { min-height: auto; aspect-ratio: 16 / 10; }
  .profiles-visual img { object-position: center 40%; }
  .clips { grid-template-columns: .72fr 1.28fr; }
}

@media (max-width: 980px) {
  :root { --header: 68px; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    padding: 90px 26px 40px;
    background: rgba(11, 11, 12, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { font-size: 1.2rem; }
  .intro { grid-template-columns: 1fr; }
  .intro-image { width: min(620px, 100%); margin-left: auto; }
  .clips { grid-template-columns: 1fr; }
  .clips-portrait { position: relative; min-height: auto; aspect-ratio: 4 / 3; }
  .clips-portrait img { height: 100%; object-position: center 34%; }
  .studio { grid-template-columns: 1fr; grid-template-rows: auto; }
  .studio-photo-large,
  .studio-copy,
  .studio-photo-small { grid-row: auto; min-height: auto; }
  .studio-photo-large { aspect-ratio: 4 / 3; }
  .studio-photo-small { aspect-ratio: 3 / 2; }
  .timeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer > * { justify-self: center !important; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .hero-media { background-position: 53% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(4, 4, 5, .93), rgba(4, 4, 5, .38) 75%); }
  .hero-content { align-self: end; padding-bottom: 110px; }
  .hero h1 { font-size: clamp(3.8rem, 20vw, 6.4rem); }
  .hero-tagline { max-width: 330px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .scroll-cue { display: none; }
  .section { width: min(100% - 34px, var(--max)); }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .profiles-copy { padding: 58px 22px; }
  .profiles-visual { aspect-ratio: 1 / 1; }
  .profile-card { padding: 1.7rem 0; }
  .release-grid { grid-template-columns: 1fr; }
  .release-card-wide { grid-column: auto; }
  .release-visual,
  .release-card-wide .release-visual { min-height: 280px; padding: 20px; }
  .release-card-wide .release-visual img { width: 100%; }
  .release-meta { grid-template-columns: 1fr; }
  .release-meta b { margin-top: .25rem; }
  .clips-content { padding: 68px 18px 80px; }
  .video-meta { align-items: start; flex-direction: column; gap: 2px; }
  .studio-copy { padding: 60px 24px; }
  .timeline-grid { grid-template-columns: 1fr; gap: 38px; }
  .contact-actions { flex-direction: column; align-items: center; }
  .contact-actions .button { width: min(320px, 100%); }
}

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