/* ============================================================
   MONOLOGUE DIGITAL — "THE DOSSIER"
   css/styles.css
   Palette:
     --ink        #0a0a0b   page black
     --panel      #131315   raised black
     --blood      #d02324   brand red
     --bone       #f2efe9   warm white
     --smoke      #8d8d94   muted gray
   Type:
     Anton          — movie-poster display
     Archivo        — body
     Courier Prime  — dossier / classified utility
   ============================================================ */
:root {
  --ink: #0a0a0b;
  --panel: #131315;
  --blood: #d02324;
  --bone: #f2efe9;
  --smoke: #8d8d94;
  --hairline: rgba(242, 239, 233, .14);
  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;
  --font-mono: 'Courier Prime', 'Courier New', monospace;
  --gutter: clamp(20px, 4vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { background: var(--ink); color: var(--bone); }

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blood); color: var(--bone); }

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blood);
  outline-offset: 3px;
}

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: -100%;
  z-index: 60;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .05;
  animation: grain 7s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); }
  60% { transform: translate(-3%, -2%); }
  80% { transform: translate(4%, 4%); }
}

/* ---------- intro overlay ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}

.intro__stamp {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--smoke);
  min-height: 1.4em;
}

.intro__seal {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 26px);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blood);
  border: 2px solid var(--blood);
  padding: .5em 1.1em .45em 1.4em;
  rotate: -4deg;
  opacity: 0;
}

.intro__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--blood);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  transition: background .4s ease, backdrop-filter .4s ease;
}

.nav.is-scrolled {
  background: rgba(10, 10, 11, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.nav__logo { display: block; line-height: 0; }
.nav__logo img { width: clamp(120px, 12vw, 164px); height: auto; }

.nav__links {
  display: flex;
  gap: clamp(16px, 2.5vw, 40px);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--smoke);
  transition: color .25s ease;
  position: relative;
  padding: 6px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--blood);
  transition: width .3s ease;
}

.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone);
  border: 1px solid var(--blood);
  padding: 10px 18px;
  transition: background .25s ease;
}

.nav__cta:hover { background: var(--blood); }

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ---------- generic section chrome ---------- */
.section {
  position: relative;
  padding: clamp(90px, 12vh, 160px) var(--gutter);
}

.sec-head {
  margin-bottom: clamp(40px, 6vh, 80px);
  max-width: 1500px;
  margin-inline: auto;
}

.sec-head__file {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blood);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  min-height: 1.4em;
}

.sec-head__file::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

.sec-head__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 7.5vw, 118px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .01em;
}

[data-split] .line { display: block; overflow: hidden; }
[data-split] .line > span { display: inline-block; will-change: transform; }

.redact { position: relative; display: inline-block; }

.sec-body { max-width: 1500px; margin-inline: auto; }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter);
  position: relative;
  overflow: hidden;
}

.hero__bars { position: absolute; inset: 0; pointer-events: none; }

.hero__bars::before,
.hero__bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: clamp(28px, 6vh, 64px);
  background: #000;
  z-index: 3;
}

.hero__bars::before { top: 0; }
.hero__bars::after { bottom: 0; }

.hero__meta {
  position: absolute;
  top: clamp(40px, 9vh, 90px);
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--smoke);
  z-index: 4;
}

.hero__meta span b { color: var(--blood); font-weight: 700; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 11.5vw, 200px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: .005em;
  margin-bottom: clamp(24px, 4vh, 48px);
  position: relative;
  z-index: 2;
}

.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
  margin-bottom: -.06em;
}

.hero__title .line > span {
  display: inline-block;
  position: relative;
  will-change: transform;
}

.hero__title .line--accent > span { color: var(--blood); }

.hero__title .bar {
  position: absolute;
  inset: 8% 0;
  background: var(--bone);
  z-index: 3;
  transform-origin: right center;
}

.hero__title .line--accent .bar { background: var(--blood); }

.hero__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: clamp(48px, 9vh, 96px);
  position: relative;
  z-index: 2;
}

.hero__tag {
  max-width: 52ch;
  color: var(--smoke);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.6;
}

.hero__tag strong { color: var(--bone); font-weight: 600; }

.hero__scroll {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 52px;
  background: var(--hairline);
  position: relative;
  overflow: hidden;
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--blood);
  animation: drip 2s ease-in-out infinite;
}

@keyframes drip {
  0% { top: -100%; }
  55%, 100% { top: 100%; }
}

.hero__crosshair {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: clamp(300px, 42vw, 720px);
  aspect-ratio: 1;
  right: calc(-1 * clamp(60px, 8vw, 160px));
  top: 50%;
  translate: 0 -58%;
  opacity: .14;
}

.hero__crosshair svg { width: 100%; height: 100%; }

/* ---------- client ticker ---------- */
.ticker {
  border-block: 1px solid var(--hairline);
  overflow: hidden;
  padding: 16px 0;
  background: var(--ink);
  position: relative;
  z-index: 4;
}

.ticker__track { display: flex; width: max-content; will-change: transform; }

.ticker__item {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 0 34px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 34px;
}

.ticker__item::after { content: "✕"; color: var(--blood); font-size: .8em; }

/* ---------- philosophy ---------- */
.philo { background: var(--ink); }

.philo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
  max-width: 1500px;
  margin-inline: auto;
}

.philo__lede {
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: -.005em;
}

.philo__lede strong { font-weight: 600; color: var(--bone); }
.philo__lede .hl { color: var(--blood); font-weight: 600; }

.philo__side {
  display: flex;
  flex-direction: column;
  gap: 26px;
  color: var(--smoke);
}

.philo__side p strong { color: var(--bone); font-weight: 600; }

.philo__stamp {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blood);
  border: 1.5px solid var(--blood);
  padding: .6em 1em .5em 1.3em;
  rotate: -3deg;
}

@media (max-width: 900px) {
  .philo__grid { grid-template-columns: 1fr; }
}

/* ---------- format ---------- */
.format {
  background: var(--panel);
  border-block: 1px solid var(--hairline);
}

.format__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  max-width: 1500px;
  margin-inline: auto;
}

.step {
  background: var(--panel);
  padding: clamp(26px, 3vw, 44px);
  min-height: clamp(260px, 34vh, 380px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--blood);
}

.step__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: .02em;
}

.step__body p {
  color: var(--smoke);
  font-size: clamp(13.5px, 1vw, 15.5px);
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .format__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .format__steps { grid-template-columns: 1fr; }
  .step { min-height: 0; }
}

/* ---------- trailers (9:16 vertical) ---------- */
.trailers { background: var(--ink); }

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
  max-width: 1500px;
  margin-inline: auto;
  margin-bottom: clamp(56px, 9vh, 110px);
}

.feature__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 18px;
}

.feature__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(34px, 4.5vw, 72px);
  line-height: .96;
  margin-bottom: 20px;
}

.feature__text {
  color: var(--smoke);
  max-width: 40ch;
  font-size: clamp(15px, 1.15vw, 18px);
}

.feature__text strong { color: var(--bone); }

.feature__frame {
  width: min(46vh, 400px, 78vw);
  aspect-ratio: 9 / 16;
  position: relative;
  background: #000;
  border: 1px solid var(--hairline);
  overflow: hidden;
}

.feature__frame .vcard__frame { aspect-ratio: auto; height: 100%; }

@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .feature__text { margin-inline: auto; }
}

/* vertical trailer grid */
.vgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 26px);
  max-width: 1500px;
  margin-inline: auto;
}

@media (max-width: 1100px) { .vgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .vgrid { grid-template-columns: repeat(2, 1fr); } }

.vcard { position: relative; }

.vcard__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--hairline);
  cursor: pointer;
  width: 100%;
  display: block;
  padding: 0;
}

/* blurred 16:9 fallback layer — fills the frame while the true
   vertical thumbnail loads (or if oEmbed is unavailable) */
.vcard__blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(22px) saturate(1.1) brightness(.55);
  scale: 1.2;
  z-index: 0;
}

/* main still: starts as the full 16:9 frame (contain), switches to a
   perfect edge-to-edge fill once the real 9:16 thumbnail arrives */
.vcard__still {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(.35) contrast(1.05);
  transition: filter .5s ease, opacity .4s ease;
}

.vcard__still.is-vertical { object-fit: cover; }

.vcard__frame:hover .vcard__still { filter: grayscale(0) contrast(1.05); }

.vcard__still.is-broken,
.vcard__blur.is-broken { opacity: 0; }

.vcard__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.vcard__play span {
  width: clamp(48px, 4.2vw, 64px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 239, 233, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 11, .35);
  backdrop-filter: blur(4px);
  transition: scale .35s cubic-bezier(.16, 1, .3, 1), background .3s ease, border-color .3s ease;
}

.vcard__play svg { width: 36%; margin-left: 6%; fill: var(--bone); }

.vcard__frame:hover .vcard__play span {
  scale: 1.12;
  background: var(--blood);
  border-color: var(--blood);
}

.vcard__tag {
  position: absolute;
  top: 10px; left: 10px;
  right: 10px;
  width: fit-content;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(10, 10, 11, .72);
  padding: 5px 9px 4px;
  border-left: 2px solid var(--blood);
}

.vcard iframe,
.feature__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.trailers__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 5vh, 56px);
}

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid var(--hairline);
  padding: 16px 30px;
  transition: border-color .3s ease, background .3s ease;
}

.btn-ghost:hover {
  border-color: var(--blood);
  background: rgba(208, 35, 36, .08);
}

.vcard.is-hidden { display: none; }

/* ---------- testimonials ---------- */
.debrief {
  background: var(--panel);
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}

.debrief__viewport { position: relative; }

.debrief__track {
  display: flex;
  gap: clamp(18px, 2vw, 32px);
  will-change: transform;
  padding-bottom: 8px;
}

.quote {
  flex: 0 0 clamp(320px, 38vw, 560px);
  background: var(--ink);
  border: 1px solid var(--hairline);
  padding: clamp(26px, 2.8vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.quote::before {
  content: "\201C";
  font-family: var(--font-display);
  color: var(--blood);
  font-size: clamp(54px, 5vw, 84px);
  line-height: .6;
  display: block;
  margin-bottom: 8px;
}

.quote__text {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--bone);
  font-weight: 300;
}

.quote__text strong { font-weight: 600; }

.quote__who {
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}

.quote__who b {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--blood);
}

.quote__who span { font-size: 13px; color: var(--smoke); }

.quote--tall .quote__text { font-size: clamp(14px, 1.02vw, 16.5px); }

.debrief__hint {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 12px;
}

.debrief__hint::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--blood);
}

@media (max-width: 900px) {
  .debrief__track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .quote { scroll-snap-align: start; flex-basis: min(84vw, 480px); }
}

/* ---------- roster ---------- */
.roster { background: var(--ink); }

.roster__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(40px, 6vw, 110px);
  max-width: 1500px;
  margin-inline: auto;
}

.roster h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 26px;
}

.roster__names {
  list-style: none;
  columns: 2;
  column-gap: clamp(24px, 3vw, 60px);
}

.roster__names li,
.roster__pubs li {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 300;
  padding: 9px 0;
  border-bottom: 1px solid var(--hairline);
  break-inside: avoid;
  color: var(--bone);
  transition: color .25s ease, padding-left .25s ease;
}

.roster__names li:hover,
.roster__pubs li:hover { color: var(--blood); padding-left: 8px; }

.roster__pubs { list-style: none; }
.roster__pubs li { font-size: clamp(14px, 1.1vw, 17px); color: var(--smoke); }

@media (max-width: 900px) {
  .roster__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .roster__names { columns: 1; }
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--panel);
  border-top: 1px solid var(--hairline);
}

.faq__list {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--hairline);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(20px, 2.6vh, 30px) 0;
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 500;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  transition: color .25s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--blood);
  font-size: 1.2em;
  line-height: 1;
  transition: rotate .3s ease;
  flex: none;
}

.faq__item[open] summary { color: var(--blood); }
.faq__item[open] summary::after { rotate: 45deg; }

.faq__item p {
  padding: 0 0 clamp(20px, 2.6vh, 30px);
  color: var(--smoke);
  max-width: 72ch;
}

.faq__item p strong { color: var(--bone); }
.faq__item a { color: var(--blood); }

/* ---------- CTA ---------- */
.cta {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(90px, 12vh, 160px) var(--gutter);
}

.cta__scope {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(78vmin, 780px);
  aspect-ratio: 1;
  opacity: .1;
  pointer-events: none;
}

.cta__scope svg { width: 100%; height: 100%; }

.cta__eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 22px;
  min-height: 1.4em;
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(46px, 9vw, 150px);
  line-height: .94;
  margin-bottom: 34px;
}

.cta__title .line { display: block; overflow: hidden; }
.cta__title .line > span { display: inline-block; }
.cta__accent { color: var(--blood); }

.cta__copy {
  max-width: 56ch;
  margin: 0 auto 44px;
  color: var(--smoke);
  font-size: clamp(15px, 1.2vw, 18px);
}

.cta__copy strong { color: var(--bone); }

.btn-blood {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(12px, 1.05vw, 14px);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  background: var(--blood);
  padding: 20px 44px;
  position: relative;
  overflow: hidden;
  align-self: center;
  transition: translate .3s cubic-bezier(.16, 1, .3, 1);
}

.btn-blood::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  translate: 0 101%;
  transition: translate .35s cubic-bezier(.16, 1, .3, 1);
}

.btn-blood span { position: relative; z-index: 1; transition: color .3s ease; }
.btn-blood:hover { translate: 0 -2px; }
.btn-blood:hover::after { translate: 0 0; }
.btn-blood:hover span { color: var(--ink); }

/* ---------- footer ---------- */
.footer {
  padding: 44px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--smoke);
}

.footer__logo { line-height: 0; }
.footer__logo img { width: 130px; height: auto; }

.footer__social { display: flex; gap: 26px; list-style: none; }
.footer__social a { text-decoration: none; transition: color .25s ease; }
.footer__social a:hover { color: var(--blood); }

/* ---------- js-created animation helpers ---------- */
.redact__bar {
  position: absolute;
  inset: 6% -2%;
  background: var(--blood);
  transform-origin: right center;
  display: block;
}

.step__underline {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--blood);
  transform-origin: left center;
  transform: scaleX(0);
  display: block;
}

.step--done { border-bottom: 3px solid var(--blood); }

.vcard__frame--playing { cursor: default; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain,
  .hero__scroll i::after { animation: none; }
}


/* ============================================================
   INQUIRIES PAGE — mission brief
   ============================================================ */
.brief-hero {
  min-height: 62svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(140px, 20vh, 220px) var(--gutter) clamp(50px, 7vh, 90px);
  position: relative;
  overflow: hidden;
}

.brief-hero .sec-head { margin-bottom: 0; width: 100%; }

.brief-hero__tag {
  max-width: 58ch;
  color: var(--smoke);
  margin-top: 26px;
  font-size: clamp(15px, 1.25vw, 19px);
}

.brief-hero__tag strong { color: var(--bone); }
.brief-hero__tag a { color: var(--blood); }

.approach { background: var(--ink); }

.approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
  max-width: 1500px;
  margin-inline: auto;
}

.approach__lede {
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.4;
  font-weight: 300;
}

.approach__lede strong { font-weight: 600; }
.approach__lede .hl { color: var(--blood); font-weight: 600; }

.approach__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--smoke);
}

.approach__side strong { color: var(--bone); }
.approach__side a { color: var(--blood); }

@media (max-width: 900px) {
  .approach__grid { grid-template-columns: 1fr; }
}

/* platform chips */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.platforms li {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid var(--hairline);
  padding: 10px 16px;
  transition: border-color .25s ease, color .25s ease;
}

.platforms li:hover { border-color: var(--blood); color: var(--blood); }

/* published authors band */
.published {
  background: var(--panel);
  border-block: 1px solid var(--hairline);
}

.published__inner {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.published__inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 4.5vw, 64px);
  line-height: 1;
  margin-bottom: 22px;
}

.published__inner h2 em { font-style: normal; color: var(--blood); }

.published__inner p {
  color: var(--smoke);
  max-width: 64ch;
  margin-inline: auto;
  font-size: clamp(15px, 1.2vw, 18px);
}

.published__inner p strong { color: var(--bone); }

/* process steps */
.process { background: var(--ink); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  max-width: 1500px;
  margin-inline: auto;
  counter-reset: phase;
}

@media (max-width: 860px) { .process__steps { grid-template-columns: 1fr; } }

/* contact rail */
.contact-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.contact-rail__or {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--smoke);
}

.btn-ghost--link { text-decoration: none; display: inline-block; }
