/* ============================================================
   WILLCO UNDERGROUND — Design System v2
   Cinematic industrial · Dark · Precision utility
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --black:        #0a0b0d;
  --deep:         #0e1014;
  --surface:      #13161b;
  --panel:        #1a1e26;
  --border:       #242830;
  --muted:        #3a4050;

  --white:        #ffffff;
  --off-white:    #dde1ea;
  --text:         #8a95a8;

  --gold:         #105ab2;
  --gold-light:   #3a7fd4;
  --gold-dim:     #0a3d7a;
  --gold-glow:    rgba(16, 90, 178, 0.15);

  --blue-steel:   #2a3a5c;
  --steel:        #4a6080;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Topographic SVG Pattern ────────────────────────────────── */
.topo-bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cdefs%3E%3Cstyle%3Epath%7Bfill:none;stroke:%23105ab2;stroke-width:1%7D%3C/style%3E%3C/defs%3E%3Cpath d='M400,50 Q550,100 650,200 Q750,300 700,420 Q650,540 520,600 Q390,660 260,610 Q130,560 80,440 Q30,320 90,200 Q150,80 280,50 Q360,30 400,50Z'/%3E%3Cpath d='M400,90 Q530,135 620,225 Q710,315 665,425 Q620,535 500,590 Q380,645 265,600 Q150,555 105,445 Q60,335 115,225 Q170,115 290,90 Q355,72 400,90Z'/%3E%3Cpath d='M400,130 Q510,170 590,250 Q670,330 630,430 Q590,530 480,580 Q370,630 270,590 Q170,550 130,450 Q90,350 140,250 Q190,150 300,130 Q355,115 400,130Z'/%3E%3Cpath d='M400,170 Q490,205 560,275 Q630,345 595,435 Q560,525 460,570 Q360,615 275,580 Q190,545 155,455 Q120,365 165,275 Q210,185 310,170 Q358,157 400,170Z'/%3E%3Cpath d='M400,210 Q470,240 530,300 Q590,360 560,440 Q530,520 440,560 Q350,600 280,568 Q210,536 180,460 Q150,384 190,304 Q230,224 320,210 Q360,200 400,210Z'/%3E%3Cpath d='M400,250 Q450,275 500,325 Q550,375 525,445 Q500,515 420,550 Q340,585 285,556 Q230,527 205,465 Q180,403 215,333 Q250,263 330,250 Q365,242 400,250Z'/%3E%3Cpath d='M400,290 Q430,310 470,350 Q510,390 490,450 Q470,510 400,540 Q330,570 290,544 Q250,518 230,470 Q210,422 240,362 Q270,302 340,290 Q372,284 400,290Z'/%3E%3Cpath d='M400,330 Q420,348 445,375 Q470,402 455,452 Q440,502 390,524 Q340,546 305,522 Q270,498 258,462 Q246,426 268,388 Q290,350 348,334 Q372,327 400,330Z'/%3E%3C/svg%3E");
  background-size: 600px 600px;
  background-repeat: repeat;
  pointer-events: none;
}

/* ── Noise Overlay — visible grain at 0.05 ──────────────────── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  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='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}

/* Border traces in from left on scroll */
.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.scrolled {
  background: rgba(10, 11, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav.scrolled::after {
  transform: scaleX(1);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  /* PNG already has transparent background */
}

.footer-brand .nav-logo-img {
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  background: var(--gold) !important;
  padding: 0.6rem 1.4rem !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%) !important;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: var(--transition);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Fill from left on hover */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2rem;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--off-white);
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition), color var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.btn-ghost:hover { color: var(--gold-light); }

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Section Base ───────────────────────────────────────────── */
section {
  position: relative;
  overflow: hidden;
}

/* Services needs overflow:visible so position:sticky child works */
.services {
  overflow: visible;
}

/* Whisper labels — all-caps, wide tracking, small */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Push Barlow Condensed hard — tighter tracking at scale */
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.90;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--white);
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

/* Editorial body — smaller, more generous line-height */
.section-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 560px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* ── Hero Video Background ──────────────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 9, 0.82);
  z-index: 1;
  pointer-events: none;
}

/* Deep radial, biased to upper-right corner */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 15%, rgba(16, 90, 178, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 100% 100% at 0% 100%, rgba(0,0,0,0.85) 0%, transparent 60%),
    linear-gradient(160deg, #0c0e12 0%, var(--black) 50%, #080a0c 100%);
}

/* Vignette — dark at edges, open in center */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 110% 90% at 50% 50%, transparent 35%, rgba(0,0,0,0.65) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-vignette::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

/* Giant "TX" — compositional background element */
.hero-bg-num {
  position: absolute;
  top: 48%;
  left: -0.04em;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 50vw;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--white);
  opacity: 0.055;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Content block — aligns to bottom of flex-1 area */
.hero .container {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-top: 130px;
  padding-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.hero-content {
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow::before {
  content: '//';
  color: var(--muted);
}

/* Oversized headline — 10–14vw, stacked words */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 13vw, 14rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
}

/* Each word slides up, staggered by 0.15s */
.hero-word {
  display: block;
  opacity: 0;
  transform: translateY(20px);
}

.hero-word:nth-child(1) { animation: heroWord 0.75s 0.4s  cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-word:nth-child(2) { animation: heroWord 0.75s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-word:nth-child(3) { animation: heroWord 0.75s 0.7s  cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-word:nth-child(4) { animation: heroWord 0.75s 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

.hero-word.accent { color: var(--gold); }

/* Stroke-only word — outline treatment */
.hero-word.stroke {
  -webkit-text-stroke: 2px rgba(16, 90, 178, 0.85);
  color: transparent;
}

.hero-sub {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 1.0s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.15s forwards;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--off-white);
  transition: color var(--transition);
}

.hero-phone:hover { color: var(--gold); }

.hero-phone-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ── Hero Data Bar — full-width strip at bottom ──────────────── */
.hero-data-bar {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 80px;
  position: relative;
  z-index: 4;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s forwards;
}

.hero-data-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.5rem;
  gap: 0.15rem;
}

.hero-data-sep {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
}

.hero-data-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.hero-data-label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Ticker Bar ─────────────────────────────────────────────── */
.ticker {
  background: var(--gold);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Hero → About transition fade ───────────────────────────── */
.hero-section-fade {
  height: 80px;
  background: linear-gradient(to bottom, var(--black), var(--deep));
  margin-top: -1px;
}

/* ── About — full-bleed image, 2×2 stats grid ───────────────── */
.about {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

/* Full-width grid — image bleeds to left edge, no container */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.about-visual {
  position: relative;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.2);
  transition: transform 0.9s ease;
  display: block;
}

.about-visual:hover img {
  transform: scale(1.03);
}

/* Content — own padding, no container needed */
.about-content {
  padding: 6rem 4rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-body {
  margin-bottom: 1rem;
}

/* 2×2 large number stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 2.8rem;
}

.about-stat-item {
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.2rem;
}

.about-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.about-stat-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ── Services — horizontal scroll-jack ──────────────────────── */
.services {
  background: var(--black);
}

.services-scroll-wrapper {
  /* Height set dynamically by JS so scroll distance = card track width */
  position: relative;
}

.services-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--black);
}

/* Top bar — label, title, progress */
.services-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  border-bottom: 1px solid var(--border);
  height: 90px;
  flex-shrink: 0;
}

.services-top-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.services-top-left .section-label { margin-bottom: 0; }

.services-sticky-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1rem, 1.3vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--off-white);
  line-height: 1.1;
  white-space: nowrap;
}

.services-sticky-title em {
  color: var(--gold);
  font-style: normal;
}

/* Progress dots */
.services-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.services-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.services-dot.active {
  background: var(--gold);
  transform: scale(1.6);
}

/* Track viewport — clips overflowing cards */
.services-track-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Horizontal track — JS drives translateX */
.services-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

/* Individual full-viewport card */
.service-hcard {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background photo texture */
.shc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  filter: saturate(0) contrast(1.25);
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.service-hcard.active .shc-bg { opacity: 0.15; }

/* Inner column layout */
.shc-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 5rem 3rem;
}

/* Eyebrow tag */
.shc-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
}

/* Title area — title anchored to bottom */
.shc-mid {
  flex: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-bottom: 3rem;
}

/* Decorative background number */
.shc-num {
  position: absolute;
  top: 0;
  left: -0.06em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30vw;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: var(--white);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.7s ease;
}

.service-hcard.active .shc-num { opacity: 0.07; }

/* Massive display title */
.shc-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 7.5vw, 9.5rem);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--white);
  position: relative;
  z-index: 1;
}

/* Footer — description + CTA */
.shc-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.shc-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 460px;
}

/* Huge number in background — left-aligned, low opacity */
.sr-num {
  position: absolute;
  top: -0.12em;
  left: -0.04em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22vw;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--white);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  transform: translateY(10px);
  /* bg number fades first — 0.3s */
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s ease;
}

.service-row.visible .sr-num {
  opacity: 0.045;
  transform: none;
}

.service-row:hover .sr-num {
  opacity: 0.08;
  color: var(--gold);
}

/* Content — z-index above number, fades in 0.15s after number */
.sr-body {
  position: relative;
  z-index: 2;
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
}

.service-row.visible .sr-body {
  opacity: 1;
  transform: none;
}

/* Image — right column */
.sr-img {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}

.service-row.visible .sr-img { opacity: 1; }

.sr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45) contrast(1.2);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.service-row:hover .sr-img img {
  transform: scale(1.04);
  filter: saturate(0.8) contrast(1.1);
}

/* Service row content type labels */
.service-card-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.service-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.0;
}

.service-card-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text);
}

/* ── service-row-full reveal — services.html desktop ────────── */
.service-row-full.visible .sr-num { opacity: 0.045; transform: none; }
.service-row-full.visible .sr-body { opacity: 1; transform: none; }
.service-row-full.visible .sr-img { opacity: 1; }
.service-row-full:hover .sr-num { opacity: 0.08; color: var(--gold); }
.service-row-full:hover .sr-img img { transform: scale(1.04); filter: saturate(0.8) contrast(1.1); }

/* ── Why Choose — manifesto style ───────────────────────────── */
.why {
  padding: 6rem 0;
  background: var(--deep);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.why-sticky {
  position: sticky;
  top: 8rem;
}

.why-list {
  display: flex;
  flex-direction: column;
}

/* List item — relative for bg number, left-border on hover */
.why-item {
  position: relative;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  cursor: default;
  transition: padding-left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-item:first-child { border-top: 1px solid var(--border); }

/* Blue left-border traces down on hover */
.why-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-item:hover::before { transform: scaleY(1); }
.why-item:hover { padding-left: 1.4rem; }

/* Oversized number in background — 6–8vw */
.why-item-num {
  position: absolute;
  top: -0.06em;
  left: -0.04em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 7vw;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.why-item:hover .why-item-num { opacity: 0.055; }

.why-item-inner {
  position: relative;
  z-index: 1;
}

.why-item-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.why-item:hover .why-item-title { color: var(--gold); }

.why-item-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text);
}

/* ── CTA Band — dark industrial ─────────────────────────────── */
.cta-band {
  padding: 6rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-band .topo-bg {
  display: none;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/topo-organic.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

/* Vignette overlay — dark at edges */
.cta-band-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 300% 120% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-band-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.93;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 680px;
}

.cta-band-title em {
  font-style: normal;
  color: var(--gold);
}

.cta-band-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Legacy btn-dark — override for dark CTA context */
.btn-dark {
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2rem;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.btn-dark:hover { background: var(--gold-light); }

.btn-outline-dark {
  background: transparent;
  color: var(--off-white);
  padding: 0.95rem 1.8rem;
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact {
  padding: 6rem 0;
  background: var(--deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.contact-detail:hover { border-color: var(--gold-dim); }

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 16px; height: 16px; }

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.4;
}

.contact-detail-value a:hover { color: var(--gold); }

.contact-hours {
  padding: 1.4rem;
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
}

.contact-hours-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-hours-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

/* ── Form ────────────────────────────────────────────────────── */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
}

.form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 1.8rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-bottom: 0.45rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); }

.form-textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
  padding: 1rem;
  font-size: 0.85rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '—';
  color: var(--gold);
  font-size: 0.65rem;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.footer-legal { display: flex; gap: 2rem; }

.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--text); }

/* ── Animations ─────────────────────────────────────────────── */
/* Hero word stagger — slides up 20px */
@keyframes heroWord {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Scroll Reveal System ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Mobile Navigation ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  font-family: var(--font-display);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; min-height: auto; }
  .about-visual { height: 55vh; min-height: 420px; }
  .about-content { padding: 5rem 3rem; }

  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-sticky { position: static; }

  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }

  .services-header { grid-template-columns: 1fr; gap: 2rem; }

  .service-row { grid-template-columns: 1fr 42%; }
  .sr-body { padding: 3rem 3rem; }
}

/* ── Mobile — luxury scale + overlay layouts ─────────────────── */
@media (max-width: 768px) {

  /* Tighter to the edge — editorial confidence */
  .container { padding: 0 1.25rem; }

  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 0 1.25rem; }

  /* ── Hero ── */
  /* Headline MUST be big — override clamp minimum */
  .hero-headline {
    font-size: 20vw;
    line-height: 0.84;
    margin-bottom: 2rem;
  }

  .hero-bg-num { font-size: 78vw; opacity: 0.06; top: 38%; }

  .hero .container {
    padding-top: 100px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 3rem;
  }

  .hero-sub { font-size: 0.82rem; max-width: 100%; }

  .hero-actions { gap: 1rem; }

  /* Data bar — 2-column grid, larger numbers, no vertical rules */
  .hero-data-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .hero-data-item {
    padding: 1.5rem 1.5rem;
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }

  .hero-data-item:nth-child(even) { border-right: none; }
  .hero-data-item:last-child:nth-child(odd) { border-right: none; grid-column: span 2; }

  .hero-data-sep { display: none; }

  .hero-data-num { font-size: 2.4rem; }
  .hero-data-label { font-size: 0.54rem; letter-spacing: 0.22em; margin-top: 0.2rem; }

  /* ── Section titles ── */
  .section-title { font-size: clamp(2.8rem, 11vw, 4rem); }

  /* ── About ── */
  .about-visual { height: 58vh; min-height: 360px; }
  .about-content { padding: 3.5rem 1.25rem 4rem; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
  .about-stat-num { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  /* ── Services horizontal scroll — mobile stack ── */
  .services-scroll-wrapper { height: auto; }
  .services-sticky { position: relative; height: auto; }
  .services-track-viewport { overflow: visible; height: auto; }
  .services-track { flex-direction: column; }
  .service-hcard {
    width: 100%;
    height: auto;
    min-height: 480px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .services-top-bar { padding: 0 1.5rem; height: 75px; gap: 1rem; }
  .services-top-left { gap: 1rem; }
  .services-sticky-title { font-size: 0.9rem; white-space: normal; }
  .shc-inner { padding: 0 1.5rem 2.5rem; }
  .shc-num { font-size: 42vw; }
  .shc-title { font-size: clamp(3.2rem, 11vw, 5.5rem); }
  .shc-footer { flex-direction: column; gap: 1.5rem; align-items: flex-start; }

  /* ── Service card micro-reveal (mobile only) ── */
  .service-hcard.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .service-hcard.reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── service-row-full (services.html) — CINEMATIC OVERLAY on mobile ── */
  .service-row-full {
    display: block;
    position: relative;
    min-height: 520px;
  }

  .sr-img {
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.7s ease;
  }

  .service-row-full.visible .sr-img { opacity: 1; }

  .sr-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(10,11,13,0.98) 42%,
      rgba(10,11,13,0.72) 68%,
      rgba(10,11,13,0.15) 100%
    );
    z-index: 1;
  }

  .sr-img img { position: relative; z-index: 0; }

  .sr-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.5rem 2.5rem;
    background: transparent;
    z-index: 3;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease 0.55s, transform 0.45s ease 0.55s;
  }

  .service-row-full.visible .sr-body { opacity: 1; transform: none; }

  .sr-num {
    font-size: 42vw;
    z-index: 2;
    top: -0.08em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .service-row-full.visible .sr-num { opacity: 0.07; transform: none; }

  /* ── Why section ── */
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-sticky { position: static; }
  .why-item-num { font-size: 20vw; }
  .why-item { padding: 2rem 0; }

  /* ── CTA band ── */
  .cta-band::before { background-size: cover; background-position: center; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  .cta-band-actions { flex-direction: column; width: 100%; gap: 1rem; }
  .cta-band-actions .btn-dark,
  .cta-band-actions .btn-outline-dark {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* ── Form ── */
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem 1.5rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Small phones (iPhone SE, Galaxy A, < 480px) ───────────── */
@media (max-width: 480px) {
  .hero-headline { font-size: 21vw; }
  .hero-bg-num { font-size: 85vw; }
  .hero-data-bar { grid-template-columns: 1fr; }
  .hero-data-item {
    border-right: none;
    border-top: 1px solid var(--border);
    grid-column: span 1 !important;
  }
  .section-title { font-size: clamp(2.6rem, 12vw, 3.5rem); }
  .service-row { min-height: 480px; }
  .sr-num { font-size: 45vw; }
  .about-stat-num { font-size: clamp(2rem, 10vw, 3rem); }
}

/* ── Services Page Specific ─────────────────────────────────── */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 5rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 20%, rgba(16, 90, 178, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, var(--black) 0%, var(--deep) 100%);
}

.page-hero .hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 110% 90% at 50% 50%, transparent 30%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 140px;
}

/* Full services rows on services.html */
.services-full {
  padding: 0;
  background: var(--black);
}

.service-row-full {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 45%;
  min-height: 600px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.service-row-full:first-child { border-top: 1px solid var(--border); }

/* Override default .reveal state */
.service-row-full.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.service-row-full::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.service-row-full:hover::after { opacity: 1; }

/* Alternating layout */
.service-row-full.reverse { direction: rtl; }
.service-row-full.reverse > * { direction: ltr; }

.service-row-full .sr-num {
  font-size: 16vw;
}

.service-row-full .sr-body {
  padding: 5rem 4.5rem;
  justify-content: center;
}

.service-full-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 0.93;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.service-full-title em {
  font-style: normal;
  color: var(--gold);
}

/* Feature bullet list */
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.service-features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Utility ─────────────────────────────────────────────────── */
.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;
}

.text-gold  { color: var(--gold); }
.text-muted { color: var(--text); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Services page mobile — must come last to win cascade ─── */
@media (max-width: 768px) {
  /* Page hero headline scale */
  .page-hero { min-height: 55vh; padding: 0 0 4rem; }
  .page-hero-content { padding-top: 110px; }
  .page-hero .hero-headline { font-size: 20vw; }
  .page-hero .hero-bg-num { font-size: 78vw; }

  /* Full service rows — same cinematic overlay as homepage */
  .service-row-full {
    display: block;
    position: relative;
    min-height: 560px;
  }

  .service-row-full.reverse { direction: ltr; }

  /* Override the desktop sr-num size — must beat .service-row-full .sr-num specificity */
  .service-row-full .sr-num { font-size: 42vw; }

  .service-row-full .sr-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.5rem 3rem;
    background: transparent;
    z-index: 3;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .service-row-full { min-height: 520px; }
  .service-row-full .sr-num { font-size: 45vw; }
  .page-hero .hero-headline { font-size: 21vw; }
}
