/* ══════════════════════════════════════════
   BRAND TOKENS
══════════════════════════════════════════ */
:root {
  --red:        #A4060C;
  --red-dark:   #8B0509;
  --red-light:  #C20F16;
  --charcoal:   #333333;
  --near-black: #1A1A1A;
  --surface:    #242424;
  --surface-2:  #2E2E2E;
  --off-white:  #F5F5F5;
  --light-gray: #E0E0E0;
  --mid-gray:   #999999;
  --dim-gray:   rgba(255,255,255,0.35);
  --border:     rgba(255,255,255,0.08);
  --white:      #FFFFFF;

  /* Dark theme defaults */
  --bg:         var(--near-black);
  --text:       var(--off-white);
  --text-muted: var(--mid-gray);

  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --max-width: 1200px;
  --section-pad: 96px 24px;
  --radius: 4px;
  --transition: 0.2s ease;

  /* Easing tokens */
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ══════════════════════════════════════════
   TYPOGRAPHY SCALE
══════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}
h1 { font-size: clamp(56px, 8vw, 104px); line-height: 0.93; }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 18px; letter-spacing: 0; }

.tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
}

/* ══════════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad); }
.section--light {
  background: var(--off-white);
  color: var(--charcoal);
}
.section--light h2,
.section--light h3,
.section--light h4 { color: var(--near-black); }
.section--light .section__header p,
.section--light .service-body p,
.section--light .testimonial__quote { color: #555; }
.section--light .tagline { color: var(--red); }
.section--light .services-list { border-top-color: rgba(0,0,0,0.1); }
.section--light .service-row { border-bottom-color: rgba(0,0,0,0.1); }
.section--light .service-body h3 { color: var(--near-black); }
.section--light .service-row:hover .service-body h3 { color: var(--near-black); }
.section--light .service-num { color: var(--red); }
.section--light .service-link { color: #999; }
.section--light .service-row:hover .service-link { color: var(--red); }
.section--dark { background: var(--near-black); color: var(--off-white); }
.section--red  { background: var(--red); color: var(--white); }

.section__header {
  margin-bottom: 56px;
  max-width: 640px;
}
.section__header .tagline { margin-bottom: 12px; }
.section__header h2 { margin-bottom: 16px; }
.section__header p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}
.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Red underline accent */
.underline-red {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.underline-red::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--red);
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(164,6,12,0.28);
}
.btn--red:active { transform: translateY(0); box-shadow: none; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--ghost-white:hover { background: var(--white); color: var(--charcoal); }

.link-arrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.link-arrow:hover { color: var(--red); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav.scrolled {
  background: rgba(26,26,26,0.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.4);
  border-bottom-color: transparent;
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 32px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links .nav__cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__links .nav__cta:hover { background: var(--red-dark); color: var(--white); }

.nav__toggle { display: none; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--near-black);
  color: var(--off-white);
  padding: 64px 24px 32px;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo img { height: 36px; margin-bottom: 16px; }
.footer__desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.6;
  max-width: 260px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 14px;
  color: var(--off-white);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--red); }
.footer__bottom {
  max-width: var(--max-width);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mid-gray);
}

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--mid-gray); line-height: 1.6; margin-bottom: 20px; }

/* ══════════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════════ */
.page-header {
  padding: 120px 24px 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { color: var(--white); }
.page-header .tagline { color: var(--red); }
.page-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-header .tagline { margin-bottom: 12px; }
.page-header h1 { max-width: 600px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  .nav__links { display: none; }
  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--off-white);
  }
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26,26,26,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 16px;
    align-items: flex-start;
  }
  .nav--open .nav__links .nav__cta {
    margin-top: 8px;
  }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

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

/* ══════════════════════════════════════════
   MOTION SYSTEM  (Jakub Krehel + Jhey Tompkins)
══════════════════════════════════════════ */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(8px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);   filter: blur(0); }
}

/* Base reveal state — JS adds .is-visible via IntersectionObserver */
.reveal { opacity: 0; }
.reveal.is-visible {
  animation: reveal-up 0.6s var(--ease-out-expo) both;
}

/* Stagger: wrap a grid/list in .stagger and each direct .reveal child delays 80ms */
.stagger .reveal:nth-child(1) { animation-delay:   0ms; }
.stagger .reveal:nth-child(2) { animation-delay:  80ms; }
.stagger .reveal:nth-child(3) { animation-delay: 160ms; }
.stagger .reveal:nth-child(4) { animation-delay: 240ms; }
.stagger .reveal:nth-child(5) { animation-delay: 320ms; }
.stagger .reveal:nth-child(6) { animation-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1; animation: none; filter: none; transform: none;
  }
}

/* ══════════════════════════════════════════
   ENHANCED HOVER (Jakub multi-layer shadow)
══════════════════════════════════════════ */
.card {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow:
    0 2px 4px  rgba(0,0,0,0.2),
    0 8px 16px rgba(0,0,0,0.3),
    0 24px 48px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

/* ══════════════════════════════════════════
   NAV SCROLL — backdrop blur (dark)
══════════════════════════════════════════ */
/* already handled in .nav.scrolled above */

/* ══════════════════════════════════════════
   HERO — FULL SCREEN CENTERED with logo
══════════════════════════════════════════ */
.hero--full {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Background image + dark overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--near-black);
  z-index: 0;
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: grayscale(40%);
  z-index: 0;
}
/* Dark vignette over image */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(26,26,26,0.7) 100%),
    linear-gradient(180deg, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.6) 100%);
  z-index: 1;
}
/* Film grain */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grain 8s steps(10) infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-5%,-10%); }
  20% { transform: translate(-15%,5%); }
  30% { transform: translate(7%,-25%); }
  40% { transform: translate(-5%,25%); }
  50% { transform: translate(-15%,10%); }
  60% { transform: translate(15%,0%); }
  70% { transform: translate(0%,15%); }
  80% { transform: translate(3%,35%); }
  90% { transform: translate(-10%,10%); }
}

/* Animated orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(164,6,12,0.2) 0%, transparent 70%);
  top: -20%; left: -10%;
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(194,15,22,0.1) 0%, transparent 70%);
  bottom: -10%; right: -5%;
  animation: orbFloat2 18s ease-in-out infinite;
}
.hero__orb--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(164,6,12,0.08) 0%, transparent 70%);
  top: 30%; left: 50%;
  animation: orbFloat3 22s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-40px,30px) scale(1.08); }
  66% { transform: translate(20px,-20px) scale(0.92); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,40px) scale(1.1); }
}

/* Hero content — centered column */
.hero--full .hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  max-width: 800px;
}

/* Logo */
.hero__logo {
  height: 140px;
  width: auto;
  margin-bottom: 40px;
  animation: heroFadeIn 1.2s var(--ease-out-expo) both;
  filter: drop-shadow(0 0 40px rgba(164,6,12,0.25));
}

/* Headline */
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

/* Tagline */
.hero__tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

.hero__ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  animation: heroFadeIn 1.5s 1.4s var(--ease-out-expo) both;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   PRODUCTION VISUAL BAND
══════════════════════════════════════════ */
.visual-band {
  position: relative;
  height: 420px;
  background: var(--near-black);
  overflow: hidden;
}
.visual-band img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.72;
}
.visual-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 40px 48px;
}
.visual-band__caption {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
/* Gradient fallback when image absent */
.visual-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #2d1a1a 100%);
  z-index: 0;
}
.visual-band img, .visual-band__overlay { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .hero__logo { height: 100px; margin-bottom: 28px; }
  .hero__title { font-size: clamp(40px, 10vw, 64px); }
  .visual-band { height: 240px; }
  .visual-band__overlay { padding: 24px; }
}

/* ══════════════════════════════════════════
   HERO RED BAND ACCENT (brand motif)
══════════════════════════════════════════ */
.hero__band {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════
   ANIMATED TICKER (client logos)
══════════════════════════════════════════ */
.ticker-outer {
  overflow: hidden;
  padding: 18px 0 22px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.ticker {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
}
.ticker:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0 40px;
  white-space: nowrap;
  transition: color 0.2s ease;
  cursor: default;
}
.ticker__item:hover { color: var(--near-black); }
.ticker__sep {
  color: var(--red);
  font-size: 8px;
  opacity: 0.4;
  flex-shrink: 0;
}
/* ticker on dark bg override */
.section--dark .ticker__item,
.stats-section .ticker__item { color: var(--light-gray); }
.section--dark .ticker__item:hover { color: var(--mid-gray); }

/* ══════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════ */
.stats-section {
  padding: 72px 24px;
  background: var(--near-black);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
}
.stat {
  padding: 24px 40px;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.stat__suffix { color: var(--red); }
.stat__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════
   EDITORIAL SERVICES LIST
══════════════════════════════════════════ */
.services-list { border-top: 1px solid var(--border); }
.service-row {
  display: grid;
  grid-template-columns: 72px 1fr auto 200px;
  align-items: center;
  padding: 44px 0;
  gap: 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: padding-left 0.3s var(--ease-out-expo);
  cursor: default;
}
.service-photo {
  width: 200px;
  height: 120px;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.96) translateX(8px);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.service-row:hover .service-photo {
  opacity: 1;
  transform: scale(1) translateX(0);
}
.service-row:hover .service-photo img { transform: scale(1.04); }
/* Expanding red underline on hover — not a side-stripe, a bottom line */
.service-row::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--red);
  transition: width 0.45s var(--ease-out-expo);
}
.service-row:hover::after { width: 100%; }
.service-row:hover { padding-left: 16px; }
.service-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--red);
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.service-row:hover .service-num { opacity: 1; }
.service-body h3 {
  font-size: clamp(22px, 2.8vw, 38px);
  margin-bottom: 6px;
  transition: color 0.2s ease;
}
.service-row:hover .service-body h3 { color: var(--white); }
.service-body p {
  font-size: 15px;
  color: var(--mid-gray);
  max-width: 540px;
  line-height: 1.6;
}
.service-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color 0.2s ease, gap 0.25s var(--ease-out-expo);
}
.service-row:hover .service-link { color: var(--red); gap: 16px; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat + .stat::before { display: none; }
  .service-row { grid-template-columns: 48px 1fr; gap: 20px; padding: 32px 0; }
  .service-link { display: none; }
  .service-photo { display: none; }
  .service-row:hover { padding-left: 8px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}
