/* =========================================================
   WIRESTREAM MEDIA — REDESIGN
   Design system: type, color, layout, video bg, radical nav
   ========================================================= */

:root{
  --bg: #07070a;
  --bg-soft: #0e0e13;
  --fg: #f4f3ee;
  --fg-dim: #a3a3ac;
  --fg-muted: #8b8b93;
  --accent: #ff3d1a;      /* signal red-orange */
  --accent-2: #c9ff3d;    /* live-tally lime */
  --line: rgba(244,243,238,0.14);
  --line-strong: rgba(244,243,238,0.28);
  --overlay-dark: rgba(4,4,7,0.62);

  --f-display: "Space Grotesk", "Inter", sans-serif;
  --f-body: "Inter", sans-serif;

  --ease: cubic-bezier(.16,.84,.32,1);
  --nav-w: 64px;
}

*{ box-sizing: border-box; }

/* IMPORTANT: background lives on <html> only (it's what shows through as
   the page canvas / fallback color). If <body> ALSO carries an opaque
   background-color, browsers paint body's own background as a normal
   in-flow layer that sits ABOVE any negative z-index descendants —
   which silently hides the fixed, z-index:-2 video stage behind it.
   Keep body transparent so the video stage in b ehind it is visible. */
html{ background: var(--bg); scroll-behavior: smooth; }
body{
  margin: 0;
  background: transparent;
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

::selection{ background: var(--accent); color: #0a0a0a; }

a{ color: inherit; text-decoration: none; }

h1,h2,h3,h4{
  font-family: var(--f-display);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

img, video{ max-width: 100%; display:block; }

.wrap{
  padding-left: max(28px, env(safe-area-inset-left));
  padding-right: max(28px, env(safe-area-inset-right));
}
@media(min-width: 900px){
  .wrap{ padding-left: 56px; padding-right: 56px; }
}

/* ---------------- video background ---------------- */
.bg-video-stage{
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--bg);
}
.bg-video-stage video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(.25) contrast(1.08) brightness(.62);
  transition: opacity 1.6s var(--ease);
  will-change: opacity;
}
.bg-video-stage video.is-active{ opacity: 1; }
.bg-scrim{
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,4,7,.78) 0%, rgba(4,4,7,.32) 28%, rgba(4,4,7,.42) 62%, rgba(4,4,7,.92) 100%),
    linear-gradient(90deg, rgba(4,4,7,.55) 0%, rgba(4,4,7,0) 30%, rgba(4,4,7,0) 70%, rgba(4,4,7,.55) 100%);
  pointer-events: none;
}
.grain{
  position: fixed; inset:0; z-index: 0; pointer-events:none; opacity:.05; mix-blend-mode: overlay;
  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='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------- top bar ---------------- */
.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
}
@media(min-width: 900px){ .topbar{ padding: 30px 56px; } }

/* Scroll scrim: sits just under the topbar (z-index 60) but above the
   page content (z-index 1) and video/scrim layers (-1/-2). 80% black
   once scrolling begins — nearly solid, but not quite, so content stays
   just barely, faintly visible underneath. Off entirely at the very top
   of the page so the video reads clean there. */
.topbar-scrim{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 96px;
  z-index: 59;
  background: rgba(0,0,0,.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s linear;
}
body.scrolled .topbar-scrim{ opacity: 1; }
@media(min-width: 900px){ .topbar-scrim{ height: 132px; } }

/* Logo lives in its own true colour (no blend-mode inversion, no chip/box)
   so the orange mark always reads correctly and displays plainly, at
   roughly the same size as the current live site. The menu button keeps
   the difference-blend trick since it's plain type, not a fixed brand colour. */
.wordmark{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.wordmark .logo-img{
  height: 44px;
  width: auto;
  max-width: none;
  display: block;
}
.wordmark .logo-fallback{
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: .04em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--fg);
}
/* "Media Production" subtitle — hidden for now, kept in markup/CSS in
   case it's wanted again later. Remove `display:none` to bring it back. */
.wordmark small{
  display: none;
  font-family: var(--f-body); font-weight:400; font-size:9px; letter-spacing:.14em;
  color: var(--fg-muted); text-transform: uppercase;
}
@media(min-width: 900px){
  .wordmark .logo-img{ height: 60px; }
}

.menu-trigger{
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 0;
  mix-blend-mode: difference;
}
/* "Menu" label text is hidden on mobile — just the hamburger lines show
   there — and appears alongside the icon from tablet width up. */
.menu-trigger .count{ display: none; font-variant-numeric: tabular-nums; color: var(--fg-muted); font-size: 11px; }
@media(min-width: 900px){ .menu-trigger .count{ display: inline; } }
.menu-trigger .lines{ width: 26px; height: 16px; position: relative; }
.menu-trigger .lines span{
  position: absolute; left:0; right:0; height: 1.5px; background: var(--fg);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.menu-trigger .lines span:nth-child(1){ top: 2px; }
.menu-trigger .lines span:nth-child(2){ top: 8px; }
.menu-trigger .lines span:nth-child(3){ top: 14px; }
body.nav-open .menu-trigger .lines span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.nav-open .menu-trigger .lines span:nth-child(2){ opacity: 0; }
body.nav-open .menu-trigger .lines span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ---------------- edge index rail (concise nav) ---------------- */
.rail{
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: var(--nav-w);
  z-index: 55;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-left: 1px solid var(--line);
  background: rgba(7,7,10,.25);
  backdrop-filter: blur(2px);
}
@media(min-width: 900px){ .rail{ display: flex; } }
.rail a{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--fg-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color .25s var(--ease);
}
.rail a .dot{
  writing-mode: horizontal-tb;
  transform: none;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--fg-muted);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.rail a:hover, .rail a.active{ color: var(--fg); }
.rail a.active .dot{ background: var(--accent); transform: scale(1.6); }

/* ---------------- fullscreen nav overlay (radical nav) ---------------- */
.nav-overlay{
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(5,5,8,.94);
  backdrop-filter: blur(18px);
  display: flex;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity .5s var(--ease), visibility 0s linear .5s;
}
body.nav-open .nav-overlay{
  opacity: 1;
  visibility: visible;
  transition: opacity .5s var(--ease), visibility 0s;
}
.nav-overlay-inner{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  /* Top padding always clears the fixed topbar (z-index 60 sits above this
     overlay so the close/X trigger stays reachable) — never let the first
     nav item render underneath it, on any breakpoint or orientation. */
  padding: 110px 28px 60px;
  margin: auto 0;
}
@media(min-width: 900px){
  .nav-overlay-inner{ grid-template-columns: 1fr 340px; padding: 140px 90px 60px; }
}
/* Short/landscape viewports (e.g. a phone rotated sideways) don't have
   room to vertically center a full-size nav list below the topbar —
   tighten it up and let the overlay scroll instead of clipping items. */
@media(max-height: 520px){
  .nav-overlay-inner{ align-content: start; padding-top: 96px; }
  .nav-list a{ padding: 8px 0; font-size: clamp(1.8rem, 6vw, 3.2rem); }
  .nav-side{ padding-left: 24px; gap: 14px; }
}

.nav-list{ list-style:none; margin:0; padding:0; }
.nav-list li{
  border-top: 1px solid var(--line);
}
.nav-list li:last-child{ border-bottom: 1px solid var(--line); }
.nav-list a{
  display:flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 8vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg-dim);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
  position: relative;
}
.nav-list a .idx{
  font-size: .28em;
  color: var(--fg-muted);
  font-family: var(--f-body);
  letter-spacing: .1em;
}
.nav-list a:hover, .nav-list a:focus-visible, .nav-list a.current{
  color: var(--fg);
  padding-left: 18px;
}
.nav-list a:hover .idx, .nav-list a.current .idx{ color: var(--accent); }
.nav-list a::after{
  content:"";
  position:absolute; left:-28px; top:50%; width:10px; height:10px; border-radius:50%;
  background: var(--accent);
  transform: translateY(-50%) scale(0);
  transition: transform .3s var(--ease);
}
.nav-list a:hover::after{ transform: translateY(-50%) scale(1); }

.nav-side{
  display:none;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-left: 1px solid var(--line);
  padding-left: 40px;
}
@media(min-width: 900px){ .nav-side{ display:flex; } }
.nav-side .preview{
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.nav-side .preview video{ width:100%; height:100%; object-fit: cover; opacity:.85; }
.nav-side .preview .tag{
  position:absolute; left:12px; bottom:12px;
  font-family: var(--f-display); font-size: 11px; letter-spacing:.1em; text-transform: uppercase;
  background: rgba(5,5,8,.6); padding: 4px 8px; border-radius: 2px;
}
.nav-side .hint{ font-size: 12px; color: var(--fg-muted); line-height: 1.6; }
.nav-side .hint kbd{
  display:inline-block; border:1px solid var(--line-strong); border-radius:3px; padding:1px 6px; margin: 0 3px;
  font-family: var(--f-body); font-size: 11px;
}
.nav-side .contact-mini{ font-size: 13px; }
.nav-side .contact-mini a{ color: var(--fg); border-bottom: 1px solid var(--line-strong); }

/* ---------------- layout blocks ---------------- */
.page{ position: relative; z-index: 1; min-height: 100vh; }
@media(min-width: 900px){ .page{ padding-right: var(--nav-w); } }

.hero{
  min-height: 100svh;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 140px;
  padding-bottom: 70px;
}
.eyebrow{
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  display:flex; align-items:center; gap:10px;
}
.eyebrow .pulse{
  width:7px; height:7px; border-radius:50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,61,26,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,61,26,.55); }
  70%{ box-shadow: 0 0 0 14px rgba(255,61,26,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,61,26,0); }
}

.h-huge{
  font-size: clamp(2.6rem, 9.2vw, 7.6rem);
  line-height: .96;
  max-width: 20ch;
}
.h-huge .thin{ color: var(--fg-muted); }

/* Rotating hero tagline: every .rotator-slide stacks in the same grid
   cell (grid-area 1/1), so the tallest slide sets the box height and
   nothing jumps as slides swap. JS just toggles .is-active; the fade
   itself is pure CSS.

   The outgoing slide starts dissolving immediately; the incoming slide
   waits (transition-delay below) until the outgoing one is mostly gone
   before it starts appearing. That sequencing — rather than both fading
   at once — avoids the muddy double-exposure look of two overlapping
   phrases, and reads as a single smooth dissolve instead of a hard cut.
   A slight upward drift on the incoming slide adds a touch of motion. */
.rotator.h-huge{ display: grid; }
.rotator-slide{
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.3s ease, transform 1.3s ease;
  pointer-events: none;
}
.rotator-slide.is-active{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .55s, .55s;
}

.lede{
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--fg-dim);
  margin-top: 26px;
}

.cta-row{ display:flex; flex-wrap:wrap; gap: 16px; margin-top: 40px; }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 14px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover{ background: var(--fg); color: #0a0a0a; border-color: var(--fg); }
.btn.solid{ background: var(--accent); border-color: var(--accent); color: var(--fg); }
.btn.solid:hover{ background: var(--fg); border-color: var(--fg); }

.section{ padding: 90px 0; border-top: 1px solid var(--line); }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap: 20px; margin-bottom: 46px; flex-wrap: wrap; }
.section-num{ font-family: var(--f-display); font-size: 12px; color: var(--fg-muted); letter-spacing: .1em; }
.section-title{ font-size: clamp(1.8rem, 4.4vw, 3.2rem); line-height: 1.02; }

/* index-style lists (Work / Services) */
.index-list{ list-style:none; margin:0; padding:0; }
.index-row{
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 26px 0;
  transition: padding-left .35s var(--ease);
}
/* Bottom border belongs on the whole last <li> (header + panel together),
   not on the header row itself — otherwise it renders between the header
   and the expanded panel content instead of at the very end of the list. */
.index-list li:last-child{ border-bottom: 1px solid var(--line); }
.index-row .n{ font-family: var(--f-display); font-size: 13px; color: var(--fg-muted); }
.index-row .t{
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 4.2vw, 3rem);
  line-height: 1.05;
  transition: color .3s var(--ease);
}
.index-row .meta{ font-size: 12px; color: var(--fg-muted); text-align:right; max-width: 14em; }
.index-row:hover{ padding-left: 14px; }
.index-row:hover .t{ color: var(--accent-2); }
a.index-link{ display:block; }

/* ---------------- Work page accordion ---------------- */
.accordion-header{
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.accordion-header:focus-visible{ outline: 2px solid var(--accent); outline-offset: 6px; }
.accordion-item.is-open .index-row .t{ color: var(--accent-2); }

/* Widen the first column just enough for the icon + number to sit
   side by side, instead of the icon competing for space on the far
   right (where it could wrap onto its own line on narrow screens). */
/* Accordion rows use flex (not grid) so a long title and a long tag
   never fight for the same line — if they don't both fit, the tag
   wraps cleanly onto its own full line below, right-aligned, instead
   of an ambiguous partial wrap that looks like a stray line. */
.index-row.has-toggle{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 18px;
  row-gap: 6px;
}
.index-row.has-toggle .t{ flex: 1 1 240px; }
.index-row.has-toggle .meta{ flex: 0 0 auto; margin-left: auto; }
.n-toggle{ display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }

/* plus/minus icon, same morph language as the hamburger menu icon */
.accordion-icon{
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.accordion-icon span{
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: var(--fg-muted);
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.accordion-icon span:last-child{ transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.is-open .accordion-icon span{ background: var(--accent-2); }
.accordion-item.is-open .accordion-icon span:last-child{ transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

/* Smooth height reveal: max-height is set to an explicit pixel value by
   JS (see initAccordion), animated via this transition. Deliberately not
   using the CSS-only "grid-template-rows: 0fr" trick — some browsers
   (Safari included) don't reliably collapse that to a true 0px, which
   left a stray sliver of the panel visible even while closed. */
.accordion-panel-wrap{
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease);
}
.accordion-panel-inner{ overflow: hidden; }

.accordion-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 6px 0 40px;
}
@media(min-width: 800px){
  .accordion-grid{ grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
}

.accordion-video{
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.accordion-video video{ width: 100%; aspect-ratio: 16/9; display: block; object-fit: cover; }
.accordion-video iframe{ width: 100%; aspect-ratio: 16/9; display: block; border: 0; background: #000; }
.accordion-video [data-jw-playlist]{ width: 100%; aspect-ratio: 16/9; background: #000; }

.accordion-copy p{
  color: var(--fg-dim);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 52ch;
}
.accordion-copy p:last-child{ margin-bottom: 0; }

.two-col{ display:grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width: 900px){ .two-col{ grid-template-columns: 1fr 1fr; gap: 70px; } }

.pillar{ padding: 26px 0; border-top: 1px solid var(--line); }
.pillar h3{ font-size: 1.1rem; margin-bottom: 10px; }
.pillar p{ color: var(--fg-dim); font-size: .95rem; max-width: 48ch; }

footer.site-footer{
  border-top: 1px solid var(--line);
  padding: 50px 0 40px;
  display:flex; flex-wrap:wrap; gap: 24px; justify-content: space-between; align-items:flex-end;
  font-size: 13px; color: var(--fg-muted);
}
footer.site-footer a{ color: var(--fg-dim); }
footer.site-footer .social{ display:flex; gap:16px; }
footer.site-footer .social a{ transition: color .3s var(--ease); }
footer.site-footer .social a:hover{ color: var(--accent-2); }
footer.site-footer .footer-link{ transition: color .3s var(--ease); }
footer.site-footer .footer-link:hover{ color: var(--accent-2); }
footer.site-footer .flag-icon{
  display: inline-block;
  width: 16px;
  height: auto;
  margin: 0 6px -2px 0;
  border-radius: 2px;
  vertical-align: baseline;
}

.tag-cloud{ display:flex; flex-wrap:wrap; gap: 10px; }
.tag{
  display: inline-block; white-space: nowrap;
  border:1px solid var(--line-strong); border-radius: 100px; padding: 8px 16px; font-size: 12px;
  color: var(--fg-dim); font-family: var(--f-display); letter-spacing:.04em; text-transform: uppercase;
}

.loc-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 28px 40px; }
@media(min-width: 600px){ .loc-grid{ grid-template-columns: repeat(3,1fr); } }
.loc{ border-top:1px solid var(--line); padding-top:14px; }
.loc .flag{
  display: block;
  width: 24px;
  height: auto;
  border-radius: 3px;
  margin-bottom: 10px;
}
.loc .name{ font-family: var(--f-display); text-transform: uppercase; font-size: 13px; margin-top:6px; }
.loc .role{ color: var(--fg-muted); font-size: 12px; }

.contact-grid{ display:grid; grid-template-columns: 1fr; gap: 50px; }
@media(min-width: 900px){ .contact-grid{ grid-template-columns: 1.1fr .9fr; } }
.big-link{
  font-family: var(--f-display);
  font-size: clamp(1.45rem, 4.7vw, 3rem);
  display:block; padding: 18px 0; border-top: 1px solid var(--line);
  transition: color .3s var(--ease);
}
.big-link:hover{ color: var(--accent-2); }
.contact-label{ display:block; text-transform:uppercase; }
.contact-label + .big-link{ border-top:none; padding-top: 14px; }
.social-link{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 16px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.social-link:hover{ color: var(--accent-2); }
.social-icon{ width: 16px; height: 16px; flex-shrink: 0; }
.contact-grid .big-link:last-of-type{ border-bottom: 1px solid var(--line); }
.field{ margin-bottom: 22px; }
.field label{ display:block; font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--fg-muted); margin-bottom: 8px; }
.field input, .field textarea{
  width:100%; background: transparent; border:none; border-bottom: 1px solid var(--line-strong);
  color: var(--fg); font-family: var(--f-body); font-size: 16px; padding: 10px 0; resize: vertical;
}
.field input:focus, .field textarea:focus{ outline:none; border-color: var(--accent); }
.cf-honeypot{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.contact-form-actions{ display:flex; align-items:center; flex-wrap:wrap; gap:18px; }
.form-status{
  font-family: var(--f-display); font-size: 13px; letter-spacing:.03em;
  color: var(--accent-2); opacity:0; transition: opacity .3s var(--ease);
}
.form-status.is-visible{ opacity:1; }
.form-status.is-error{ color: var(--accent); }

.services-grid{ display:grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media(min-width: 700px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
.service-card{ background: var(--bg); padding: 34px; }
.service-card .num{ font-family: var(--f-display); font-size: 12px; color: var(--accent); }
.service-card h3{ font-size: clamp(1.2rem, 2.4vw, 1.7rem); margin: 14px 0 10px; }
.service-card .one-liner{ color: var(--fg-dim); font-size: .93rem; line-height: 1.6; margin: 0 0 18px; }
.service-tags{ display:flex; flex-wrap:wrap; gap: 8px; }
.service-tags .tag{ font-size: 11px; padding: 6px 12px; }

.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--accent); color:#0a0a0a; padding:10px 16px; z-index:100;
}
.skip-link:focus{ left: 16px; top: 16px; }

@media (prefers-reduced-motion: reduce){
  .bg-video-stage video, .nav-overlay, .nav-list a, .eyebrow .pulse{ transition:none; animation:none; }
}
