/* Grupo INAC | cinema
   Dark, because the scene is a hall with the house lights down. Not the incumbent's
   dark: no neon, no glow, no gradient text. The footage carries every colour; the only
   authored accent is broadcast tally red, and it only ever means live. */

:root {
  --black: #0a0a0b;
  --black-2: #101013;
  --cream: #f2ede3;
  --cream-dim: #a39d92;
  --tally: #e8261a;

  --display: "Archivo", system-ui, sans-serif;
  --doc: "Courier Prime", "Courier New", ui-monospace, monospace;

  --pad: clamp(1.25rem, 4.5vw, 5rem);
  --ease: cubic-bezier(.16, 1.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1rem.95rem + .25vw, 1.125rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* height:auto is load-bearing, the markup carries intrinsic width/height attributes
   for layout stability, and without this the height attribute wins over the CSS width */
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

:focus-visible { outline: 3px solid var(--tally); outline-offset: 3px; }

.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 {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--cream); color: var(--black);
  padding: .75rem 1.25rem; font-family: var(--doc);
}
.skip:focus { left: 0; }

/* ── masthead ─────────────────────────────────────────────────────────── */

.masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: 1rem var(--pad);
  background: linear-gradient(to bottom, rgba(10,10,11,.92), rgba(10,10,11,0));
}
.brand img { width: 128px; }

/* The nav is a plain <nav>, always in the markup and always visible by default.
   The mobile collapse is opt-in through .has-js, so a scriptless client keeps a
   wrapped but complete nav instead of losing the site's primary navigation. */
.menu-toggle {
  display: none;
  margin-left: auto;
  font-family: var(--doc);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  background: none;
  padding: .55em .9em;
  border: 1px solid rgba(242,237,227,.4);
  cursor: pointer;
}
.menu-toggle[aria-expanded="true"] { border-color: var(--tally); }

.masthead-nav {
  display: flex;
  margin-left: auto;
  gap: clamp(.9rem, 2.5vw, 2rem);
  font-family: var(--doc);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.masthead-nav a {
  text-decoration: none; color: var(--cream-dim);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.masthead-nav a:hover { color: var(--cream); border-bottom-color: var(--tally); }

/* ── serviços submenu ─────────────────────────────────────────────────────
   Opens on hover and on :focus-within, no JavaScript, so it works before
   app.js loads and for keyboard users. "Serviços" is itself a real link to the
   index, never a dead toggle: if the panel never opens, the destination stands. */

.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop > a::after { content: "▾"; margin-left: .35em; font-size: .85em; opacity: .7; }

/* the gap between trigger and panel would drop the hover halfway; bridge it */
.nav-drop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -.75rem;
  right: -.75rem;
  height: 1.1rem;
}

.nav-drop > ul {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  z-index: 20;
  min-width: 13rem;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #0d0c10;
  border: 1px solid rgba(242,237,227,.22);
  box-shadow: 0 14px 34px rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-.35rem);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}
.nav-drop:hover > ul, .nav-drop:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-drop > ul a {
  display: block;
  padding: .7rem 1rem;
  border-bottom: 1px solid rgba(242,237,227,.1);
  white-space: nowrap;
}
.nav-drop > ul li:last-child a { border-bottom: 0; }
.nav-drop > ul a[aria-current="page"] { color: var(--cream); }
.nav-drop > ul a[aria-current="page"]::before { content: "▸ "; color: var(--tally); }

/* ── buttons ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--doc);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9em 1.6em;
  border: 2px solid currentColor;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              transform .2s var(--ease), border-color .2s var(--ease);
}
.btn-tally { color: var(--cream); border-color: rgba(242,237,227,.45); padding: .6em 1.1em; font-size: .75rem; }
.btn-tally:hover { border-color: var(--tally); background: var(--tally); }

.btn-primary { background: var(--tally); border-color: var(--tally); color: #fff; }
.btn-primary:hover { background: #ff3527; border-color: #ff3527; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(1px); }

.btn-ghost { color: var(--cream); border-color: rgba(242,237,227,.5); }
.btn-ghost:hover { background: var(--cream); color: var(--black); border-color: var(--cream); }

.btn-big { font-size: 1rem; padding: 1.05em 2.2em; }

/* ── beats ────────────────────────────────────────────────────────────── */

.beat {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: 8rem var(--pad) clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(242,237,227,.12);
}

.beat-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%; /* overrides the global height:auto, the frame must fill the beat */
  object-fit: cover;
  /* the source frames are soft (752px on the hero); a hair of scale plus the grade
     keeps the softness from reading as a broken asset */
  transform: scale(1.06);
}

/* the grade: a real film grade, not a decorative scrim. Reads bottom-left,
   where the type sits, and lets the top-right of the frame stay bright. */
.beat-grade {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Light enough that the subject stays identifiable in every beat. Contrast for the
     type is bought locally, behind the copy, not by dimming the whole frame. */
  background:
    /* top band: the masthead and the slate sit here and the frame behind them can be
       anything from a blown-out LED wall to a black truss */
    linear-gradient(to bottom, rgba(10,10,11,.78) 0%, rgba(10,10,11,.42) 9%, transparent 20%),
    linear-gradient(to top, rgba(10,10,11,.85) 0%, rgba(10,10,11,.55) 26%, rgba(10,10,11,.12) 58%, transparent 100%);
}

/* grain: the grade is a grade, not a scrim, and it doubles as cover for the
   hero source being 752px wide under a full-bleed frame */
.beat-media ~ .beat-grade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* the local bed the type actually needs */
.beat-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: calc(var(--pad) * -1);
  right: -16rem;
  bottom: calc(var(--pad) * -1);
  height: 150%;
  background: linear-gradient(to top, rgba(10,10,11,.92), rgba(10,10,11,.72) 42%, transparent 100%);
  /* without the horizontal fade the bed ends on a hard vertical seam at the
     copy box's max-width, which reads as a compositing error across the frame */
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 58%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 58%, transparent 100%);
  pointer-events: none;
}
.beat-copy { position: relative; }

.beat-hero { justify-content: flex-end; min-height: 100svh; }
/* the source's dominant object is an LED wall carrying a grid of talking heads;
   at 752px wide that reads as a video call, not a hall. Frame down onto the crowd
   and the stage light instead. */
.beat-hero .beat-media { object-position: 50% 76%; transform: scale(1.14); }
@media (prefers-reduced-motion: no-preference) {
  .beat-hero[data-live] .beat-media { transform: scale(1.06); }
}

/* ── slate ────────────────────────────────────────────────────────────── */

.slate {
  position: absolute;
  top: clamp(5rem, 9vh, 7rem);
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--doc);
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
}
.slate-static { position: static; margin-bottom: 1.5rem; }

.slate-rec {
  width: .6rem; height: .6rem; border-radius: 50%;
  background: var(--tally);
  box-shadow: 0 0 0 4px rgba(232,38,26,.22);
  animation: rec 2s steps(1, end) infinite;
}
@keyframes rec { 0%, 60% { opacity: 1; } 61%, 100% { opacity: .25; } }

.slate-mark {
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: .04em;
  color: var(--cream);
  padding-right: .85rem;
  border-right: 1px solid rgba(242,237,227,.3);
}
.slate-tag { color: var(--cream-dim); }
.slate-tc { color: var(--cream-dim); font-variant-numeric: tabular-nums; margin-left: auto; }

.beat-critical .slate-mark, .beat-critical .slate-tag { color: var(--tally); }
.beat-critical .slate-mark { border-right-color: rgba(232,38,26,.5); }

/* ── beat copy ────────────────────────────────────────────────────────── */

.beat-copy { max-width: 62rem; }
.beat-copy-wide { max-width: 68rem; }

.beat h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(3rem, 1.2rem + 8vw, 9rem);
  font-variation-settings: "wdth" 106, "wght" 880;
  line-height: .88;
  letter-spacing: -.045em;
  text-wrap: balance;
}
/* three tiers, so scale carries emphasis and the reel has cutting rhythm
   instead of eight identically-weighted frames */
.beat h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 1rem + 3.2vw, 3.5rem);
  font-variation-settings: "wdth" 104, "wght" 800;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.beat-lift h3 { font-size: clamp(2rem, 1rem + 4.4vw, 5rem); font-variation-settings: "wdth" 104, "wght" 830; line-height: .95; }
/* H±0 is the climax of the reel, the gates opening is the thing being sold */
.beat-critical h3 { font-size: clamp(2.75rem, 1.1rem + 6.4vw, 7.5rem); font-variation-settings: "wdth" 106, "wght" 880; line-height: .88; letter-spacing: -.045em; }
.beat-critical .beat-grade { background: linear-gradient(to top, rgba(10,10,11,.8) 0%, rgba(10,10,11,.45) 30%, rgba(10,10,11,.06) 62%, rgba(10,10,11,.2) 100%); }

/* one beat cuts to the opposite side of the frame, one cuts to cream, the page
   is allowed to change shot, not only subject */
/* the slate labels the block, so it travels with it, a slate left behind on the
   opposite edge reads as a stray element, not as a constant */
.beat-right { align-items: flex-end; text-align: right; }
.beat-right .slate { left: auto; right: var(--pad); }
.beat-right .beat-copy::before {
  left: -16rem;
  right: calc(var(--pad) * -1);
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 58%, transparent 100%);
  mask-image: linear-gradient(to left, #000 0%, #000 58%, transparent 100%);
}
.beat-right .beat-copy p, .beat-right .beat-mark { margin-left: auto; }
.beat-right .beat-mark { display: flex; justify-content: flex-end; }
.beat h1 em, .beat h3 em { font-style: normal; color: var(--tally); }

.beat-copy p {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  font-size: clamp(1rem.95rem + .35vw, 1.1875rem);
  line-height: 1.6;
  color: #ded8cd;
}
.beat-copy strong { color: var(--cream); font-weight: 700; }
.beat-lede { max-width: 46ch !important; }

.beat-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.beat-mark { margin: 0 !important; }
.beat-mark img { height: 2rem; width: auto; opacity: .95; }

/* the one authored moment: the frame settles as its beat takes the screen -
   a slow push-out, the way a shot lands after the cut. Content never depends on it. */
@media (prefers-reduced-motion: no-preference) {
  .beat-media { transition: transform 1.6s var(--ease), filter 1.6s var(--ease); }
  .beat[data-live] .beat-media { transform: scale(1); filter: saturate(1.05); }
}

/* The one frame with no footage. Rather than hide the absence behind a dark panel,
   it is authored as the reel's only hard cut to cream, the eye reads it as an
   intentional title card, not as a missing asset. */
.beat-type {
  justify-content: center;
  min-height: 74svh;
  background: var(--cream);
  color: var(--black);
}
.beat-type h3 { font-size: clamp(2.25rem, 1rem + 5.4vw, 6rem); font-variation-settings: "wdth" 106, "wght" 880; line-height: .9; letter-spacing: -.045em; }
.beat-type .beat-copy::before { display: none; }
.beat-type .beat-copy p { color: #3d382f; }
.beat-type .slate { color: var(--black); }
.beat-type .slate-mark { color: var(--black); border-right-color: rgba(10,10,11,.28); }
.beat-type .slate-tag { color: #5d564a; }
.beat-type .beat-mark img { filter: invert(1); opacity: .85; }

/* split beat: the vertical source is used as a vertical frame instead of being
   cropped into a landscape it was never shot for */
.beat-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  padding: 0;
  gap: 0;
}
.split-media { position: relative; isolation: isolate; overflow: hidden; min-height: 100svh; }
.split-media .beat-media { position: absolute; inset: 0; }
.split-media .beat-grade {
  background: linear-gradient(to right, rgba(10,10,11,.25), rgba(10,10,11,.85));
}
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--pad) 4rem;
  background: var(--black-2);
}
.split-copy h3 { margin: 0 0 1.25rem; font-size: clamp(2rem, 1rem + 3.4vw, 4rem); }
.split-copy p { margin: 0 0 1.5rem; max-width: 46ch; color: #ded8cd; }

/* ── hero client band ─────────────────────────────────────────────────── */

/* the reason to buy, compressed to one line, before the buyer has scrolled once */
.hero-chain {
  position: relative;
  margin: clamp(1.5rem, 4vh, 2.5rem) 0 0;
  max-width: 64ch;
  font-family: var(--doc);
  font-size: clamp(.8125rem.78rem + .2vw.9375rem);
  line-height: 1.65;
  color: #cfc9bd;
}
.hero-chain b { color: var(--cream); font-weight: 700; }

.hero-clients {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 4vh, 2.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(242,237,227,.18);
}
.hero-clients > span {
  flex: none;
  font-family: var(--doc);
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  max-width: 7rem;
  line-height: 1.35;
}
.hero-clients ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin: 0; padding: 0; list-style: none;
}
/* One white plate for every mark. Checked file by file rather than by luminance:
   unimed.svg's `#fff` is a full-canvas background rect, not the mark (the mark is
   `#5a7e67`), and rede-globo.png is the full-colour globe. Both read on white; it
   was the dark plate that was hiding them. */
.hero-clients li {
  display: flex; align-items: center; justify-content: center;
  width: 6rem; height: 2.4rem;
  padding: .35rem .55rem;
  background: #fbf7ee;
}
.hero-clients img { max-height: 15px; max-width: 100%; width: auto; object-fit: contain; }
/* Itaú, Globo, EDP and Unimed are drawn dense and small inside their own canvas;
   at a shared cap-height they read as smudges, so they get more of the plate */
.hero-clients li:nth-child(2) img, .hero-clients li:nth-child(3) img, .hero-clients li:nth-child(5) img, .hero-clients li:nth-child(6) img { max-height: 26px; }

/* ── because ──────────────────────────────────────────────────────────── */

.because { padding: clamp(4rem, 10vw, 7.5rem) var(--pad); background: var(--black-2); }
.because h2 {
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  font-size: clamp(2rem, 1rem + 4vw, 4.5rem);
  font-variation-settings: "wdth" 104, "wght" 830;
  line-height: .96;
  letter-spacing: -.04em;
}
.chain { margin: 0; padding: 0; list-style: none; counter-reset: c; border-top: 1px solid rgba(242,237,227,.16); }
.chain li {
  position: relative;
  counter-increment: c;
  padding: 1.6rem 0 1.6rem 3.5rem;
  max-width: 74ch;
  color: #cdc7bc;
  border-bottom: 1px solid rgba(242,237,227,.12);
}
/* the sequence is the argument, each step only holds because of the one above it */
.chain li::before {
  content: counter(c);
  position: absolute; left: 0; top: 1.75rem;
  font-family: var(--doc); font-size: .8125rem;
  color: var(--tally);
}
.chain b {
  display: block;
  margin-bottom: .35rem;
  font-variation-settings: "wdth" 104, "wght" 780;
  font-size: clamp(1.125rem, 1rem + .5vw, 1.4375rem);
  letter-spacing: -.02em;
  color: var(--cream);
}

/* ── reach ────────────────────────────────────────────────────────────── */

.reach {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
}
.reach h2 {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-size: clamp(2rem, 1rem + 3.6vw, 4rem);
  font-variation-settings: "wdth" 104, "wght" 830;
  line-height: .98;
  letter-spacing: -.04em;
}
.reach p { margin: 0; max-width: 54ch; color: #cdc7bc; }
.reach-note {
  margin-top: 1.25rem !important;
  font-family: var(--doc); font-size: .8125rem; line-height: 1.5;
  color: var(--cream-dim);
}
/* The map was a transparent PNG that dissolved into the page; the footage that replaced
   it is a rectangle on its own near-black, which reads as a pasted box against film
   black. The edges are masked back out so the frame ends the way the PNG did. */
.reach-map {
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  /* two gradients intersected rather than one radial: a radial wide enough to keep the
     map intact never reaches transparent at the left and right edges, so those stay
     as hard lines */
  -webkit-mask-image:
    linear-gradient(to right, transparent, #000 16%, #000 84%, transparent),
    linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
  mask-image:
    linear-gradient(to right, transparent, #000 16%, #000 84%, transparent),
    linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* ── close ────────────────────────────────────────────────────────────── */

/* the close anchors the page; it must read as an ending, not as leftover room */
.close {
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad) clamp(3rem, 5vw, 4rem);
  border-top: 2px solid var(--tally);
  background: var(--black);
}
.close h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.75rem, 1.2rem + 6.5vw, 7rem);
  font-variation-settings: "wdth" 106, "wght" 880;
  line-height: .9;
  letter-spacing: -.045em;
}
.close > p { margin: 0 0 2.25rem; max-width: 48ch; color: #cdc7bc; }
.close-alt, .close-more {
  margin: 1.75rem 0 0;
  font-family: var(--doc); font-size: .8125rem; color: var(--cream-dim);
}
.close-more { margin-top: .6rem; }

/* ── footer ───────────────────────────────────────────────────────────── */

.foot { background: #060608; color: var(--cream-dim); padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2rem; }
.foot-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
.foot h2 {
  margin: 0 0 1rem;
  font-family: var(--doc); font-size: .6875rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--cream);
}
.foot ul { margin: 0; padding: 0; list-style: none; }
.foot li { margin-bottom: .5rem; }
.foot a {
  font-size: .9375rem; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.foot a:hover { color: var(--cream); border-bottom-color: var(--tally); }
.foot-legal {
  margin: 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(242,237,227,.12);
  font-family: var(--doc); font-size: .75rem;
}

/* ── responsive ───────────────────────────────────────────────────────── */

@media (max-width: 62rem) {
  .beat-split { grid-template-columns: minmax(0, 1fr); }
  .split-media { min-height: 52svh; }
  .split-copy { padding: 3rem var(--pad); }
  .reach { grid-template-columns: minmax(0, 1fr); }
  .reach-map { max-width: 26rem; margin-inline: 0; }
}

@media (max-width: 44rem) {
  /* one 56px row over the footage, not two stacked bars */
  .masthead { flex-wrap: nowrap; gap: .6rem; padding: .7rem var(--pad); }
  .brand img { width: 96px; }
  .masthead { position: relative; }
  .has-js .menu-toggle { display: block; }
  /* only collapse once the toggle exists to reopen it */
  .has-js .masthead-nav { display: none; }
  .has-js .masthead-nav[data-open] {
    display: flex;
    position: absolute;
    top: calc(100% + .2rem);
    right: var(--pad);
    z-index: 5;
    flex-direction: column;
    gap: 0;
    min-width: 11rem;
    background: #0d0c10;
    border: 1px solid rgba(242,237,227,.22);
  }
  .has-js .masthead-nav[data-open] a {
    padding: .85rem 1.1rem;
    border-bottom: 1px solid rgba(242,237,227,.12);
  }
  .has-js .masthead-nav[data-open] a:last-child { border-bottom: 0; }
  .btn-tally { font-size: .7rem; padding: .55em .8em; }

  /* no hover on touch: the submenu flattens into the panel as an indented list,
     so all ten services are reachable without a second interaction */
  .nav-drop { display: block; }
  .nav-drop::after { display: none; }
  .nav-drop > a { display: block; padding: .85rem 1.1rem; border-bottom: 1px solid rgba(242,237,227,.12); }
  .nav-drop > a::after { display: none; }
  .nav-drop > ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    background: #08070a;
  }
  .nav-drop > ul a { padding-left: 2rem; font-size: .8125rem; }

  .beat { padding-top: 9.5rem; min-height: 92svh; }
  .slate { top: 8.25rem; right: var(--pad); }
  .slate-tc { display: none; }

  .hero-clients { flex-direction: column; align-items: flex-start; gap: .9rem; }
  .hero-clients > span { max-width: none; }
  .hero-clients ul { gap: .5rem; }
  .hero-clients li { min-width: 0; flex: 1 1 5.5rem; height: 2.6rem; padding: .4rem .6rem; }
  .hero-clients img { max-height: 16px; }

  .beat-actions .btn { flex: 1 1 100%; text-align: center; }
  .chain li { padding-left: 2.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .beat-media { transform: scale(1); }
  /* must match .beat-hero .beat-media's specificity or the hero stays held at its
     most-upscaled crop; nothing here is about motion, only about which frame rests */
  .beat-hero .beat-media { transform: scale(1); }
  .slate-rec { animation: none; }
}
