/* ===================================================================
   26 Inch Productions stylesheet
   Token system: ink / panel / stencil / tungsten / rust
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Work+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --ink: #0b0b0a;
  --ink-2: #131210;
  --panel: #17150f;
  --panel-2: #1f1c15;
  --stencil: #c9c3b6;
  --stencil-dim: #8f887c;
  --paper: #f3efe4;
  --tungsten: #e2a13a;
  --tungsten-dim: #a8762a;
  --rust: #8a3a26;
  --line: rgba(201, 195, 182, 0.14);
  --line-bright: rgba(226, 161, 58, 0.35);

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --edge: 220px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--stencil);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--tungsten); color: var(--ink); }

/* custom focus-ring cursor, desktop pointer only */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--tungsten);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: difference;
  opacity: 0;
  will-change: transform;
}
.cursor-dot.active { opacity: 0.85; }
.cursor-dot.hover {
  width: 50px; height: 50px;
  background: rgba(226, 161, 58, 0.14);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot { display: none; }
}

/* film-grain overlay, fixed across whole page */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tungsten);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--tungsten);
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--paper);
  margin: 0;
}

section { position: relative; }

.section-pad { padding: 120px 0; }

.hairline {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------------- Nav ---------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  background: linear-gradient(to bottom, rgba(11,11,10,0.9), transparent);
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(11,11,10,0.92);
  backdrop-filter: blur(6px);
  padding: 14px 32px;
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  color: var(--paper);
}

.nav-brand img {
  height: 30px;
  width: auto;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-brand:hover img {
  filter: drop-shadow(0 0 10px rgba(226, 161, 58, 0.55));
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 34px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--stencil-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--tungsten);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--paper);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line-bright);
  color: var(--tungsten);
  padding: 9px 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--tungsten);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--paper);
}

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  padding-top: var(--edge);
  padding-bottom: var(--edge);
}

.hero-bg {
  position: absolute;
  inset: var(--edge) 0;
  background-image: linear-gradient(180deg, rgba(11,11,10,0.55) 0%, rgba(11,11,10,0.75) 55%, var(--ink) 100%),
    url('Images/SoftwareImages/ResersStudio.png');
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(1) contrast(1.15) brightness(0.55);
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: transform;
}
body.loaded .hero-bg { opacity: 1; }

.letterbox {
  position: absolute;
  left: 0; right: 0;
  height: var(--edge);
  background: var(--ink);
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 0 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--stencil-dim);
  text-transform: uppercase;
}
.letterbox.top { top: 0; border-bottom: 1px solid var(--line); justify-content: space-between; }
.letterbox.bottom { bottom: 0; border-top: 1px solid var(--line); justify-content: space-between; }

#timecode {
  color: var(--tungsten);
  font-variant-numeric: tabular-nums;
}

.tc-wrap { display: inline-flex; align-items: center; }

.rec-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d9483a;
  display: inline-block;
  margin-right: 7px;
  animation: rec-pulse 1.6s ease-in-out infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero-inner {
  position: relative;
  z-index: 6;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-inner > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-inner > *:nth-child(1) { transition-delay: 0.15s; }
.hero-inner > *:nth-child(2) { transition-delay: 0.3s; }
.hero-inner > *:nth-child(3) { transition-delay: 0.48s; }
.hero-inner > *:nth-child(4) { transition-delay: 0.66s; }
body.loaded .hero-inner > * { opacity: 1; transform: none; }

.hero h1 {
  font-size: clamp(46px, 8vw, 108px);
  line-height: 0.98;
  max-width: 15ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--tungsten);
}

.hero-sub {
  margin: 28px 0 44px;
  max-width: 46ch;
  font-size: 18px;
  color: var(--stencil);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid var(--tungsten);
  color: var(--ink);
  background: var(--tungsten);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(226,161,58,0.5);
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.btn:hover::before, .btn:focus-visible::before { left: 130%; }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--line-bright);
  color: var(--tungsten);
  box-shadow: none;
}

.play-badge {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-block;
}

/* ---------------- Marquee ---------------- */

.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  padding: 34px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 64px, black calc(100% - 64px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 64px, black calc(100% - 64px), transparent);
}

.marquee-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stencil-dim);
  text-align: center;
  margin-bottom: 24px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 72px;
  align-items: center;
  animation: scroll-left 110s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-track img {
  height: 30px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.65) brightness(1.15);
  opacity: 0.8;
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

/* ---------------- Services ---------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}

.service-card {
  background: var(--panel);
  padding: 40px 30px;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--panel-2); }

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  filter: brightness(0) saturate(100%) invert(70%) sepia(45%) saturate(700%) hue-rotate(2deg) brightness(1.05);
  opacity: 0.92;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: 14.5px;
  color: var(--stencil-dim);
  margin: 0;
}

/* ---------------- Section heads ---------------- */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-head h2 { font-size: clamp(32px, 4vw, 52px); }

.section-head p {
  max-width: 42ch;
  color: var(--stencil-dim);
  font-size: 15px;
  margin: 0 0 6px;
}

/* ---------------- Reel / Work ---------------- */

.reel-section { background: var(--ink); }

.reel-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.reel-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
  background: var(--panel);
  border: 1px solid var(--line);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.2s ease, border-color 0.3s ease;
}
.reel-card:hover { border-color: var(--line-bright); }

.reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(226, 161, 58, 0.35), transparent 65%);
  transition: opacity 0.3s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}
.reel-card:hover::after { opacity: 1; }

.reel-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) brightness(0.65) contrast(1.1);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.reel-card:hover img, .reel-card:focus-visible img {
  filter: grayscale(0.3) brightness(0.8) contrast(1.1);
  transform: scale(1.045);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,10,0.92) 100%);
}

.reel-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tungsten);
  margin-bottom: 8px;
}

.reel-card h3 {
  font-size: 17px;
  color: var(--paper);
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}

.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(243,239,228,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(2px);
}
.reel-card:hover .reel-play, .reel-card:focus-visible .reel-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.reel-play svg { width: 16px; height: 16px; fill: var(--paper); margin-left: 3px; }

.reel-more {
  margin-top: 44px;
  text-align: center;
}

/* ---------------- Story / About ---------------- */

.story-section {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.story-copy p {
  font-size: 16.5px;
  color: var(--stencil);
  margin: 0 0 20px;
}

.story-copy p:first-of-type {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: none;
  color: var(--paper);
  line-height: 1.3;
  letter-spacing: 0;
}

.story-media {
  position: relative;
  border: 1px solid var(--line);
}

.story-media img {
  width: 100%;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}

.stat {
  background: var(--ink);
  padding: 26px 20px;
}

.stat .num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--tungsten);
  display: block;
}

.stat .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stencil-dim);
}

/* ---------------- Clients grid ---------------- */

.clients-section { background: var(--ink); }

.clients-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 86px;
  grid-auto-flow: dense;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.client-tile {
  position: relative;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  transform: scale(0.92);
  transition: background 0.25s ease, opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--i, 0) * 18ms);
}
.reveal.in-view .client-tile { opacity: 1; transform: scale(1); }
.client-tile:hover { background: var(--panel-2); }

.client-tile.featured {
  grid-column: span 2;
  grid-row: span 2;
  padding: 26px;
}

.client-tile::before {
  content: '';
  position: absolute;
  inset: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background:
    linear-gradient(var(--tungsten), var(--tungsten)) left top / 12px 2px no-repeat,
    linear-gradient(var(--tungsten), var(--tungsten)) left top / 2px 12px no-repeat,
    linear-gradient(var(--tungsten), var(--tungsten)) right top / 12px 2px no-repeat,
    linear-gradient(var(--tungsten), var(--tungsten)) right top / 2px 12px no-repeat,
    linear-gradient(var(--tungsten), var(--tungsten)) left bottom / 12px 2px no-repeat,
    linear-gradient(var(--tungsten), var(--tungsten)) left bottom / 2px 12px no-repeat,
    linear-gradient(var(--tungsten), var(--tungsten)) right bottom / 12px 2px no-repeat,
    linear-gradient(var(--tungsten), var(--tungsten)) right bottom / 2px 12px no-repeat;
}
.client-tile:hover::before { opacity: 1; }

.client-tile img {
  position: relative;
  z-index: 1;
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.50) brightness(1.15);
  opacity: 0.8;
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.client-tile.featured img { max-height: 74px; }
.client-tile:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

/* ---------------- Contact / Footer ---------------- */

.contact-section {
  background: var(--ink);
  padding-top: 140px;
  padding-bottom: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section .eyebrow { justify-content: center; }
.contact-section .eyebrow::before { display: none; }

.contact-section h2 {
  font-size: clamp(40px, 7vw, 84px);
  max-width: 16ch;
  margin: 0 auto 30px;
  line-height: 1.02;
}

.contact-section h2 em {
  font-style: normal;
  color: var(--tungsten);
}

.contact-section > .wrap > p {
  max-width: 50ch;
  margin: 0 auto 46px;
  color: var(--stencil-dim);
  font-size: 16.5px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 90px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--stencil-dim);
}

.footer-row a:hover { color: var(--tungsten); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img { height: 22px; width: 22px; opacity: 0.85; }

/* ---------------- Lightbox ---------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(6,6,5,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox-inner {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: var(--panel);
  border: 1px solid var(--line-bright);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.lightbox-inner iframe {
  width: 100%; height: 100%; border: 0;
}

.lightbox-placeholder {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stencil-dim);
  max-width: 34ch;
}
.lightbox-placeholder strong {
  display: block;
  color: var(--tungsten);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.lightbox-close {
  position: absolute;
  top: -46px; right: 0;
  background: none;
  border: 1px solid var(--line);
  color: var(--paper);
  width: 36px; height: 36px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 16px;
}
.lightbox-close:hover { border-color: var(--tungsten); color: var(--tungsten); }

/* ---------------- Reveal-on-scroll ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal > .eyebrow,
.reveal .section-head h2,
.reveal .section-head p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view > .eyebrow { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal.in-view .section-head h2 { transition-delay: 0.16s; opacity: 1; transform: none; }
.reveal.in-view .section-head p { transition-delay: 0.26s; opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */

@media (max-width: 980px) {
  :root { --edge: 90px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 74px; }
}

@media (max-width: 720px) {
  .section-pad { padding: 84px 0; }
  .wrap { padding: 0 22px; }
  .nav { padding: 18px 22px; }
  .nav-links, .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--ink-2);
    border-left: 1px solid var(--line);
    padding: 100px 32px;
    gap: 28px;
    font-size: 14px;
  }
  .nav-toggle { display: flex; z-index: 501; }
  .services-grid, .reel-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 68px; }
  .client-tile.featured img { max-height: 54px; }
  .letterbox { font-size: 9.5px; padding: 0 18px; }
  .letterbox span:last-child { display: none; }
  .hero-actions { gap: 18px; }
}
