/* ============================================================
   Centrix Drone Cleaning LLC — main.css
   Multi-page · cinematic motion · ice & charcoal.
   Accent: glacier light blue + graphite blacks.
   Legacy class names (btn--gold, etc.) map to accent tokens.
   ============================================================ */

:root {
  --bg: #030406;
  --bg-2: #070a0f;
  --bg-3: #0b1018;
  --surface: #0f141d;
  --surface-2: #131a26;
  --ink: #f1f5f9;
  --ink-dim: #94a3b8;
  --ink-dim-2: #64748b;
  --border: rgba(255, 255, 255, 0.07);
  --border-2: rgba(255, 255, 255, 0.13);

  --accent: #7dd3fc;
  --accent-2: #38bdf8;
  --accent-deep: #0369a1;
  --accent-glow: rgba(125, 211, 252, 0.42);
  --silver: #cbd5e1;
  --silver-muted: #64748b;

  /* Aliased for existing component class names */
  --gold: var(--accent);
  --gold-2: var(--accent-2);
  --gold-deep: var(--accent-deep);
  --gold-glow: var(--accent-glow);

  --blue: #38bdf8;
  --blue-deep: #0c4a6e;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --container: 1240px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;

  /* iOS / notched devices — use with env() where padding is applied */
  --sat: env(safe-area-inset-top, 0px);
  --sar: env(safe-area-inset-right, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --sal: env(safe-area-inset-left, 0px);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}
body.is-ready {
  opacity: 1;
}
img,
video,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
::selection {
  background: var(--accent);
  color: #020617;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 max(28px, var(--sar)) 0 max(28px, var(--sal));
}
@media (max-width: 640px) {
  .container {
    padding: 0 max(14px, var(--sar)) 0 max(14px, var(--sal));
  }
}

.section {
  padding: 140px 0;
  position: relative;
}
@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }
}

/* Desktop vs mobile copy (full text stays in HTML for SEO) */
.copy--short {
  display: none;
}

.section__head {
  max-width: 860px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .section__head {
    margin-bottom: 48px;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
}
.eyebrow--light {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  overflow-wrap: anywhere;
}
.section__title em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ink-dim);
  max-width: 680px;
  line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s,
    box-shadow 0.3s;
  white-space: nowrap;
  user-select: none;
}
.btn--lg {
  padding: 18px 28px;
  font-size: 15px;
}
.btn--gold {
  background: linear-gradient(135deg, #bae6fd 0%, var(--accent-2) 55%, var(--accent-deep) 100%);
  color: #020617;
  box-shadow: 0 10px 36px -12px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px -12px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-color: var(--border-2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}
.play-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #020617;
  font-size: 10px;
  padding-left: 2px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 520px) {
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-row .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: calc(18px + var(--sat)) 0 18px;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, padding 0.4s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 9, 13, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: calc(12px + var(--sat)) 0 12px;
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__logo {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 4px 14px var(--accent-glow));
}
.nav__wordmark {
  line-height: 1;
}
.nav__word-gold {
  background: linear-gradient(135deg, #e0f2fe, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__word-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  font-weight: 600;
  margin-top: 3px;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 34px;
  margin-left: auto;
  font-size: 14px;
  color: var(--ink-dim);
}
.nav__links a {
  position: relative;
  transition: color 0.25s;
}
/* Home hero: video behind nav — extra contrast until bar scrolls solid */
body[data-page="index"] .nav:not(.is-scrolled) .nav__links {
  font-weight: 500;
  color: rgba(241, 245, 249, 0.94);
}
body[data-page="index"] .nav:not(.is-scrolled) .nav__links a {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.78), 0 0 1px rgba(0, 0, 0, 0.9);
}
body[data-page="index"] .nav.is-scrolled .nav__links {
  color: var(--ink-dim);
}
body[data-page="index"] .nav.is-scrolled .nav__links a {
  text-shadow: none;
}
.nav__links a:hover {
  color: var(--ink);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}
.nav__links a.is-active {
  color: var(--ink);
}
.nav__cta {
  margin-left: 4px;
}
.nav__cta.is-active {
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.55), 0 10px 36px -12px var(--accent-glow);
}
.nav__burger {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 10px;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav.is-open .nav__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav.is-open .nav__burger span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px max(28px, var(--sar)) calc(32px + var(--sab)) max(28px, var(--sal));
  background: rgba(7, 9, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  font-size: 18px;
  max-height: calc(100dvh - 72px - var(--sat));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav__mobile a:not(.btn) {
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.nav__mobile .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}
.nav.is-open .nav__mobile {
  display: flex;
}
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

@media (max-width: 1100px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Native MP4 path — keep neutral so detail stays crisp (NY-style clarity) */
  filter: none;
  transform: scale(1.005);
  z-index: 0;
}
.hero__poster {
  opacity: 1;
  transition: opacity 180ms ease;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(56, 189, 248, 0.1) 0%, transparent 72%),
    linear-gradient(180deg, rgba(2, 6, 12, 0.94) 0%, rgba(2, 6, 12, 0.82) 100%);
}
.hero__video-wrap.is-video-ready .hero__poster {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .hero.hero--immersive .hero__content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.65s var(--ease-out), visibility 0.65s, transform 0.65s var(--ease-out);
  }

  .hero.hero--immersive .hero__slogan {
    opacity: 0;
    visibility: hidden;
  }

  .hero.hero--immersive .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(2, 6, 12, 0.2) 0%,
      transparent 38%,
      transparent 62%,
      rgba(2, 6, 12, 0.25) 100%
    );
  }
}
.hero__yt-crop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
}
.hero__yt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 130%;
  height: 56.25vw;
  min-height: 130%;
  transform: translate(-50%, -50%) scale(1.5);
  transform-origin: center;
  border: 0;
  pointer-events: none !important;
  opacity: 1;
  transition: opacity 220ms ease;
}
.hero__yt-guard {
  position: absolute;
  inset: -2px;
  z-index: 3;
  pointer-events: auto;
  cursor: default;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  background: transparent;
}
@media (max-width: 720px) {
  .hero__yt {
    transform: translate(-50%, -50%) scale(1.65);
  }
}
/* Readability: left + top weight for headline/nav; bottom band for stats/CTAs */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2, 6, 12, 0.82) 0%, rgba(2, 6, 12, 0.42) 46%, transparent 74%),
    linear-gradient(
      180deg,
      rgba(2, 6, 12, 0.55) 0%,
      rgba(2, 6, 12, 0.1) 32%,
      rgba(2, 6, 12, 0.14) 58%,
      rgba(2, 6, 12, 0.68) 100%
    ),
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(56, 189, 248, 0.06) 0%, transparent 52%),
    radial-gradient(ellipse 80% 50% at 100% 28%, rgba(3, 4, 6, 0.12) 0%, transparent 45%);
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 22%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 22%, transparent 72%);
  opacity: 0.14;
}
.hero__content {
  position: relative;
  z-index: 4;
  padding-top: calc(120px + var(--sat));
  padding-bottom: max(100px, calc(80px + var(--sab)));
  max-width: 1040px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.92);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(2, 6, 12, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}
.pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--gold-glow);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.55);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(56, 189, 248, 0);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.15rem, 9vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: -0.038em;
  margin: 0 0 30px;
  text-shadow: none;
  overflow-wrap: anywhere;
}
.hero__title .line:first-child > span {
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.35);
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line em {
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
}
/* Solid fill + text-shadow only: gradient + filter on clipped text breaks WebKit (black smear). */
.hero__title .line--gold {
  font-style: italic;
}
.hero__title .line--gold > span {
  color: #ecfeff;
  -webkit-text-fill-color: #ecfeff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 2px 20px rgba(0, 0, 0, 0.65), 0 0 36px rgba(56, 189, 248, 0.35);
}
.hero__slogan {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #7dd3fc;
  margin: 0 0 18px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.88), 0 0 28px rgba(56, 189, 248, 0.25);
}
.hero__sub strong {
  color: rgba(241, 245, 249, 0.98);
  font-weight: 600;
}

/* Brand + SEO intro (homepage) */
.brand-intro {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(15, 23, 42, 0.55) 100%);
}
.brand-intro__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.brand-intro__text {
  max-width: 720px;
  margin: 0;
  color: var(--ink-dim);
  font-size: 1rem;
  line-height: 1.65;
}
.brand-intro__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.brand-intro__text a:hover {
  color: var(--ink);
}
.brand-intro__text strong {
  color: var(--ink);
  font-weight: 600;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 500;
  color: rgba(248, 250, 252, 0.98);
  max-width: 560px;
  margin: 0 0 44px;
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 2px 20px rgba(0, 0, 0, 0.75), 0 0 32px rgba(0, 0, 0, 0.45);
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 80px;
}
.hero__cta-row .btn--ghost {
  background: rgba(2, 6, 12, 0.55);
  border-color: rgba(255, 255, 255, 0.32);
  color: #f8fafc;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero__cta-row .btn--ghost:hover {
  background: rgba(2, 6, 12, 0.72);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
  justify-content: start;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 720px;
}
@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
  }
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85), 0 0 24px rgba(0, 0, 0, 0.45);
}
.hero__stat span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.94);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.88), 0 2px 14px rgba(0, 0, 0, 0.65);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink-dim);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 50%, transparent 100%);
  background-size: 100% 200%;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    background-position: 0 -100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@media (max-width: 640px) {
  .hero__scroll {
    display: none;
  }
}

/* Title reveal */
.hero__title .line {
  position: relative;
}
.hero__title .line > * {
  display: inline-block;
  animation: riseIn 1s var(--ease-out) both;
}
.hero__title .line:nth-child(1) > * {
  animation-delay: 0.15s;
}
.hero__title .line:nth-child(2) > * {
  animation-delay: 0.3s;
}
.hero__eyebrow,
.hero__slogan,
.hero__sub,
.hero__cta-row,
.hero__stats {
  animation: riseIn 1s var(--ease-out) both;
}
.hero__eyebrow {
  animation-delay: 0.05s;
}
.hero__slogan {
  animation-delay: 0.35s;
}
.hero__sub {
  animation-delay: 0.45s;
}
.hero__cta-row {
  animation-delay: 0.55s;
}
.hero__stats {
  animation-delay: 0.7s;
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg-2);
}
.marquee__track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}
.marquee__track span:nth-child(even) {
  color: var(--gold);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--bg);
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -20%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.4;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s;
  will-change: transform;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 0%),
    rgba(56, 189, 248, 0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-deep);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18) 0%, rgba(56, 189, 248, 0.05) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.service-card p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 22px;
}
.service-card__tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  display: inline-block;
  background: rgba(56, 189, 248, 0.06);
}

/* ---------- SHOWCASE ---------- */
.showcase {
  position: relative;
  min-height: min(90vh, 900px);
  min-height: min(90dvh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0;
}
@media (max-width: 640px) {
  .showcase {
    min-height: unset;
    padding: 52px 0 max(48px, var(--sab));
  }
}
.showcase__video-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.showcase__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) brightness(1.03) contrast(1.02);
}
.showcase__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Darken behind left copy + stats so large numbers stay legible on bright skyline */
  background: linear-gradient(
      90deg,
      rgba(2, 6, 12, 0.76) 0%,
      rgba(2, 6, 12, 0.36) 50%,
      rgba(2, 6, 12, 0.12) 100%
    ),
    linear-gradient(180deg, rgba(2, 6, 12, 0.18) 0%, rgba(2, 6, 12, 0.45) 100%);
}
.showcase__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.showcase__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.85);
}
.showcase__title em {
  font-style: italic;
  background: linear-gradient(135deg, #e0f2fe 0%, var(--gold) 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.showcase__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.96);
  line-height: 1.7;
  margin-bottom: 56px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.82), 0 2px 18px rgba(0, 0, 0, 0.55);
}
.showcase__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid var(--border-2);
}
@media (max-width: 800px) {
  .showcase__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (max-width: 480px) {
  .showcase__stats {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .showcase__title {
    font-size: clamp(1.85rem, 9vw, 5rem);
  }
}
.showcase__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.82), 0 2px 22px rgba(0, 0, 0, 0.5);
}
.showcase__stat span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.94);
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 2px 12px rgba(0, 0, 0, 0.55);
}

/* ---------- PROCESS ---------- */
.process {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.process__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 1000px) {
  .process__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .process__list {
    grid-template-columns: 1fr;
  }
}
.process__step {
  padding: 42px 34px 38px;
  background: var(--surface);
  position: relative;
  transition: background 0.4s;
}
.process__step:hover {
  background: var(--surface-2);
}
.process__num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 26px;
  display: block;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.process__step p {
  color: var(--ink-dim);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- GALLERY / BEFORE AFTER ---------- */
.gallery {
  background: var(--bg-2);
}

.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: ew-resize;
  user-select: none;
  margin-bottom: 30px;
  border: 1px solid var(--border-2);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  touch-action: none;
}
.ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__clip {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  will-change: width;
}
.ba__clip .ba__img {
  /* 200% of clip when clip ≈50% → full .ba width; avoids 100vw horizontal bleed on phones */
  width: 200%;
  max-width: none;
  min-width: 100%;
  height: 100%;
}
.ba__img--before {
  /* Real moss reference photo — light grade only so both sides feel cohesive */
  filter: contrast(1.04) saturate(1.05);
}
.ba__handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 4px;
  pointer-events: none;
}
.ba__handle-bar {
  position: absolute;
  inset: 0;
  background: var(--gold);
  box-shadow: 0 0 30px var(--gold-glow);
}
.ba__handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0e14;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ba__label {
  position: absolute;
  top: 22px;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ba__label--before {
  left: 22px;
  background: rgba(7, 9, 13, 0.6);
  color: var(--ink);
  border: 1px solid var(--border-2);
}
.ba__label--after {
  right: 22px;
  background: var(--gold);
  color: #0a0e14;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}
.gallery__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}
.gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery__card:hover img {
  transform: scale(1.06);
}
.gallery__card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 9, 13, 0.85) 80%);
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}
.gallery__card--slot .gallery__slot-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gallery__card--slot .gallery__slot-inner span {
  padding: 1rem;
  border: 1px dashed var(--border-2);
  border-radius: var(--radius-sm);
}
.portfolio-note {
  margin-top: 40px;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.65;
}
.portfolio-note code {
  font-size: 0.88em;
  color: var(--accent-2);
}

/* ---------- QUOTES ---------- */
.quotes {
  background: var(--bg);
}
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .quotes__grid {
    grid-template-columns: 1fr;
  }
}
.quote-card {
  margin: 0;
  padding: 34px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
}
.quote-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 22px;
  color: var(--ink);
}
.quote-card footer {
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}
.quote-card__stars {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--accent-2);
  opacity: 0.85;
}
.quotes__grid--rich {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 22px;
}
@media (min-width: 1100px) {
  .quotes__grid--rich {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- CONTACT ---------- */
.contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--ink);
}
.contact__list a:hover {
  color: var(--gold);
}
.contact__list-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--gold);
  font-size: 15px;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (max-width: 560px) {
  .contact__form {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  resize: vertical;
}
.field textarea {
  min-height: 120px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4 6l4 4 4-4' stroke='%2338bdf8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.contact__success {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  padding: 14px;
  border: 1px dashed var(--gold-deep);
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.08);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer__brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.footer__brand p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
}
.footer__brand strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 640px) {
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__cols h4 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer__cols a,
.footer__cols span {
  display: block;
  color: var(--ink-dim);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.25s;
}
.footer__cols a:hover {
  color: var(--ink);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px max(28px, var(--sar)) calc(24px + var(--sab)) max(28px, var(--sal));
  border-top: 1px solid var(--border);
  color: var(--ink-dim-2);
  font-size: 12px;
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Staggered children ---------- */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
[data-stagger].is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
[data-stagger].is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}
[data-stagger].is-visible > *:nth-child(3) {
  transition-delay: 0.19s;
}
[data-stagger].is-visible > *:nth-child(4) {
  transition-delay: 0.26s;
}
[data-stagger].is-visible > *:nth-child(5) {
  transition-delay: 0.33s;
}
[data-stagger].is-visible > *:nth-child(6) {
  transition-delay: 0.4s;
}
[data-stagger].is-visible > *:nth-child(7) {
  transition-delay: 0.47s;
}
[data-stagger].is-visible > *:nth-child(8) {
  transition-delay: 0.54s;
}
[data-stagger].is-visible > *:nth-child(9) {
  transition-delay: 0.61s;
}

/* ---------- Inner pages ---------- */
.inner-page .page-main {
  padding-top: calc(88px + var(--sat));
}
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 640px) {
  .page-hero {
    min-height: unset;
    padding: 72px 0 36px;
  }
  .page-hero__title {
    font-size: clamp(1.5rem, 6.2vw, 1.95rem);
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(56, 189, 248, 0.15), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  z-index: 0;
}
.page-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.page-hero__inner {
  position: relative;
  z-index: 2;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 16px;
}
.page-hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, #e0f2fe, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero__lead {
  max-width: 640px;
  color: var(--ink-dim);
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim-2);
  margin-bottom: 22px;
}
.breadcrumb a {
  color: var(--ink-dim);
  transition: color 0.25s;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb span {
  color: var(--accent-2);
}

/* ---------- Prose / split layouts ---------- */
.prose-block {
  max-width: 720px;
}
.prose-block p {
  color: var(--ink-dim);
  line-height: 1.75;
  margin: 0 0 1.1em;
}
.split-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .split-hero {
    grid-template-columns: 1fr;
  }
}
.split-hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.65);
  aspect-ratio: 16/10;
  background: var(--surface);
}
.split-hero__media iframe,
.split-hero__media video,
.split-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

/* ---------- Stat ribbon ---------- */
.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
@media (max-width: 800px) {
  .stat-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-ribbon__cell {
  background: var(--surface);
  padding: 28px 22px;
  text-align: center;
  transition: background 0.35s;
}
.stat-ribbon__cell:hover {
  background: var(--surface-2);
}
.stat-ribbon__cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-ribbon__cell span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.45;
}

/* ---------- Feature rows ---------- */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.4s var(--ease-out);
}
.feature-row:last-child {
  border-bottom: 0;
}
.feature-row:hover {
  background: var(--surface-2);
}
@media (max-width: 800px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
}
.feature-row__label {
  padding: 36px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 800px) {
  .feature-row__label {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}
.feature-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.feature-row__body {
  padding: 36px 32px;
  color: var(--ink-dim);
  line-height: 1.7;
  font-size: 0.98rem;
}
.feature-row__body ul {
  margin: 0;
  padding-left: 1.2em;
}
.feature-row__body li {
  margin-bottom: 0.5em;
}

/* ---------- Locations ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }
}
.loc-card {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--surface) 0%, rgba(15, 20, 29, 0.6) 100%);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.45s;
}
.loc-card::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.loc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 28px 70px -24px rgba(0, 0, 0, 0.55);
}
.loc-card:hover::after {
  opacity: 1;
}
.loc-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.loc-card p {
  color: var(--ink-dim);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}
.loc-card__tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

/* ---------- Partner (Gold Coast) ---------- */
.partner-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.partner-hero__bg {
  position: absolute;
  inset: 0;
  /* Gold Coast hero — commercial floor care (local asset) */
  background: linear-gradient(
      125deg,
      rgba(3, 6, 12, 0.78) 0%,
      rgba(3, 6, 12, 0.42) 45%,
      rgba(3, 6, 12, 0.22) 100%
    ),
    url("../assets/gold-coast-hero.png") 42% center / cover no-repeat;
  background-color: var(--bg-2);
  z-index: 0;
}
.partner-hero__content {
  position: relative;
  z-index: 1;
  padding: 140px 0 100px;
}
@media (max-width: 640px) {
  .partner-hero {
    min-height: unset;
  }
  .partner-hero__content {
    padding: calc(100px + var(--sat)) 0 max(72px, var(--sab));
  }
  .partner-hero h1 {
    font-size: clamp(1.75rem, 7.5vw, 5.2rem);
  }
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(56, 189, 248, 0.08);
}
.partner-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 900px;
  color: var(--ink);
  text-shadow: 0 2px 36px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.35);
}
.partner-hero h1 span {
  color: var(--accent);
}
.partner-hero__lead {
  font-size: 1.2rem;
  color: rgba(226, 232, 240, 0.94);
  max-width: 560px;
  line-height: 1.65;
  margin: 0 0 36px;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.45);
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}
.partner-tile {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.partner-tile:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-4px);
}
.partner-tile h4 {
  font-family: var(--font-display);
  margin: 0 0 12px;
  font-size: 1.15rem;
}
.partner-tile p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ---------- CTA band ---------- */
.cta-band {
  margin-top: 80px;
  padding: 56px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12) 0%, var(--surface) 45%, var(--bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) {
  .cta-band {
    margin-top: 36px;
    padding: 26px 16px;
  }
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 12px;
  position: relative;
}
.cta-band p {
  color: var(--ink-dim);
  margin: 0 0 28px;
  position: relative;
}
.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative;
}

/* ---------- FAQ ---------- */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.3s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-weight: 400;
  color: var(--accent);
  font-size: 1.4rem;
  transition: transform 0.35s var(--ease-out);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  background: var(--surface-2);
}
.faq-item__body {
  padding: 0 26px 24px;
  color: var(--ink-dim);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* ---------- Contact page extras ---------- */
.mailto-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 520px) {
  .mailto-hero {
    flex-direction: column;
    align-items: stretch;
  }
  .mailto-hero .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}
.contact-card {
  padding: 28px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}
.contact-card a {
  color: var(--accent);
  font-weight: 600;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* ---------- Legal / attribution ---------- */
.attribution {
  font-size: 13px;
  color: var(--ink-dim-2);
  line-height: 1.65;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-2);
  background: rgba(15, 20, 29, 0.5);
  margin-top: 40px;
  overflow-wrap: anywhere;
}
.attribution a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Logo grid ---------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.2);
}

/* ---------- Mobile & tablet (iPhone / iPad) ---------- */
.section--after-hero {
  padding-top: 72px;
}
@media (max-width: 900px) {
  .section--after-hero {
    padding-top: 56px;
  }
}

.btn {
  min-height: 44px;
}

@media (max-width: 1024px) {
  .page-hero {
    padding: 104px 0 56px;
  }
  .page-hero__lead {
    font-size: 1.05rem;
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mailto-hero,
  .cta-band .btn-row,
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .mailto-hero .btn,
  .cta-band .btn-row .btn,
  .btn-row .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

/* Phone: tighter type, spacing, and components */
@media (max-width: 640px) {
  body {
    font-size: 15px;
    line-height: 1.55;
  }

  .container {
    padding: 0 max(14px, var(--sar)) 0 max(14px, var(--sal));
  }

  .section {
    padding: 52px 0;
  }

  .section--after-hero {
    padding-top: 36px;
  }

  .section__head {
    margin-bottom: 28px;
  }

  .section__title {
    font-size: clamp(1.5rem, 6.5vw, 1.95rem);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .section__lead {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
    padding: 5px 10px;
    margin-bottom: 12px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 13px;
    min-height: 42px;
  }

  .btn--lg {
    padding: 12px 18px;
    font-size: 14px;
  }

  .nav {
    padding: calc(10px + var(--sat)) 0 10px;
  }

  .nav.is-scrolled {
    padding: calc(8px + var(--sat)) 0 8px;
  }

  .nav__mobile {
    font-size: 16px;
    gap: 12px;
    padding: 16px max(14px, var(--sar)) calc(20px + var(--sab)) max(14px, var(--sal));
  }

  /* Stacked hero: video on top, copy on solid panel below */
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    padding-top: calc(52px + var(--sat));
  }

  .hero__video-wrap {
    position: relative;
    inset: auto;
    z-index: 0;
    flex: 0 0 auto;
    width: 100%;
    height: min(50svh, 380px);
    min-height: 220px;
  }

  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(2, 6, 12, 0.12) 0%,
      transparent 42%,
      rgba(2, 6, 12, 0.45) 100%
    );
  }

  .hero__yt-crop {
    position: absolute;
    inset: 0;
  }

  .hero__yt {
    transform: translate(-50%, -48%) scale(1.78);
  }

  .hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    padding: 18px max(14px, var(--sar)) max(24px, calc(20px + var(--sab))) max(14px, var(--sal));
    background: var(--bg);
  }

  .hero__eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
    padding: 0;
    margin-bottom: 10px;
    gap: 0;
    background: transparent;
    border: none;
    color: var(--gold);
  }

  .hero__eyebrow .pulse {
    display: none;
  }

  .hero__title {
    font-size: clamp(1.45rem, 6.8vw, 2rem);
    margin-bottom: 8px;
    line-height: 1;
  }

  .hero__title .line--gold > span {
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
    text-shadow: none;
  }

  .hero__slogan {
    margin: 0 0 12px;
    font-size: 1rem;
    color: var(--gold);
    text-shadow: none;
  }

  .hero__sub {
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.5;
    color: var(--ink-dim);
    text-shadow: none;
  }

  .hero__sub strong {
    color: var(--ink-dim);
  }

  .hero__cta-row {
    margin-bottom: 18px;
    gap: 10px;
  }

  .hero__cta-row .btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-2);
    color: var(--ink);
    text-shadow: none;
    box-shadow: none;
  }

  .hero__stats {
    gap: 8px 10px;
    padding-top: 14px;
    border-top-color: var(--border);
  }

  .hero__stat strong {
    font-size: 1.2rem;
    margin-bottom: 2px;
    text-shadow: none;
  }

  .hero__stat span {
    font-size: 8px;
    letter-spacing: 0.06em;
    line-height: 1.3;
    color: var(--ink-dim);
    text-shadow: none;
  }

  .brand-intro {
    padding: 22px 0;
  }

  .brand-intro__text {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .marquee {
    padding: 14px 0;
  }

  .marquee__track {
    font-size: 11px;
    gap: 22px;
    letter-spacing: 0.14em;
  }

  .services__grid {
    gap: 10px;
  }

  .showcase {
    min-height: unset;
    padding: 52px 0 max(48px, var(--sab));
  }

  .showcase__title {
    font-size: clamp(1.55rem, 6.8vw, 2.2rem);
    margin: 10px 0 14px;
  }

  .showcase__lead {
    font-size: 0.92rem;
    margin-bottom: 24px;
    line-height: 1.55;
  }

  .showcase__stats {
    gap: 18px 14px;
    padding-top: 22px;
  }

  .showcase__stat strong {
    font-size: 1.35rem;
  }

  .showcase__stat span {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .process__step {
    padding: 20px 16px;
  }

  .process__step h3 {
    font-size: 1.05rem;
  }

  .process__step p {
    font-size: 0.88rem;
  }

  .quote-card {
    padding: 22px 18px;
  }

  .quote-card p {
    font-size: 0.92rem;
  }

  .inner-page .page-main {
    padding-top: calc(64px + var(--sat));
  }

  .page-hero {
    min-height: unset;
    padding: 72px 0 36px;
  }

  .page-hero__title {
    font-size: clamp(1.5rem, 6.2vw, 1.95rem);
    margin-bottom: 10px;
  }

  .page-hero__lead {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .breadcrumb {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    gap: 6px 8px;
  }

  .partner-hero__content {
    padding: calc(84px + var(--sat)) 0 44px;
  }

  .partner-hero h1 {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
  }

  .partner-hero__lead {
    font-size: 0.92rem;
  }

  .partner-tile {
    padding: 22px 18px;
  }

  .partner-tile h4 {
    font-size: 1.05rem;
  }

  .partner-tile p {
    font-size: 0.88rem;
  }

  .split-hero {
    gap: 24px;
  }

  .prose-block p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .stat-ribbon {
    margin-top: 28px;
  }

  .stat-ribbon__cell {
    padding: 16px 12px;
  }

  .stat-ribbon__cell strong {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .stat-ribbon__cell span {
    font-size: 9px;
    letter-spacing: 0.1em;
    line-height: 1.35;
  }

  .feature-row__label,
  .feature-row__body {
    padding: 16px 14px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .feature-row__label {
    font-size: 1rem;
  }

  .feature-row__icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .cta-band {
    margin-top: 36px;
    padding: 26px 16px;
  }

  .cta-band h2 {
    font-size: clamp(1.25rem, 5vw, 1.65rem);
  }

  .cta-band p {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .contact__form {
    padding: 18px;
    gap: 14px;
  }

  .field label {
    font-size: 10px;
  }

  .gallery__grid {
    gap: 10px;
    margin-top: 24px;
  }

  .footer {
    padding-top: 44px;
  }

  .footer__inner {
    gap: 24px;
    padding-bottom: 36px;
  }

  .footer__brand strong {
    font-size: 16px;
  }

  .footer__brand p {
    font-size: 13px;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    padding-top: 16px;
    padding-bottom: calc(16px + var(--sab));
    font-size: 11px;
  }

  .faq-item summary {
    padding: 14px 14px;
    font-size: 0.95rem;
  }

  .faq-item__body {
    padding: 0 14px 16px;
    font-size: 0.88rem;
  }

  .loc-card {
    padding: 24px 18px 20px;
  }

  .loc-card h3 {
    font-size: 1.25rem;
  }

  .loc-card p {
    font-size: 0.88rem;
  }

  /* Concise mobile copy — full text remains in DOM for desktop & SEO */
  .copy--full {
    display: none !important;
  }

  .copy--short {
    display: block;
  }

  .hero__eyebrow .copy--short,
  .hero__title .line--tagline .copy--short,
  .hero__stat .copy--short,
  .showcase__stat .copy--short,
  .eyebrow .copy--short,
  .btn .copy--short {
    display: inline;
  }

  .section__title > .copy--short {
    display: block;
  }

  .marquee,
  .brand-intro {
    display: none;
  }

  .service-card p,
  .process__step p,
  .gallery__card figcaption {
    display: none;
  }

  .quote-card footer {
    display: none;
  }

  .quote-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
  }

  .prose-block p ~ p {
    display: none;
  }

  .prose-block p:first-of-type {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .contact__list li:last-child {
    display: none;
  }

  /* Calmer phone: less visual noise, tighter rhythm */
  .hero__grid-overlay {
    display: none;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-intro {
    padding: 22px 0;
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }

  .brand-intro__title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .brand-intro__text {
    color: var(--ink-dim-2);
  }

  .brand-intro__text strong {
    font-weight: 500;
    color: var(--ink-dim);
  }

  .marquee {
    padding: 10px 0;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.06);
  }

  .marquee__track {
    animation-duration: 55s;
    opacity: 0.65;
    font-weight: 600;
  }

  .marquee__track span:nth-child(even) {
    display: none;
  }

  .eyebrow {
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 8px;
  }

  .section {
    padding: 44px 0;
  }

  .section__lead {
    color: var(--ink-dim-2);
  }

  .services::before {
    display: none;
  }

  .service-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 10px;
    row-gap: 4px;
    padding: 14px 12px;
    background: var(--surface);
    align-items: center;
    border-radius: var(--radius-md);
  }

  .service-card::before {
    display: none;
  }

  .service-card__icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    border-radius: 10px;
    align-self: center;
  }

  .service-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-bottom: 0;
    font-size: 1rem;
  }

  .service-card__tag {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-top: 2px;
    background: transparent;
    border-color: rgba(56, 189, 248, 0.2);
    padding: 2px 7px;
  }

  .showcase__stat strong,
  .showcase__stat span {
    text-shadow: none;
  }

  .process__list {
    border-radius: var(--radius-md);
  }

  .process__num {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .process__step h3 {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .process__step {
    padding: 16px 14px;
  }

  .quote-card {
    padding: 18px 16px;
  }

  .quote-card::before {
    font-size: 52px;
    top: 6px;
    right: 12px;
    opacity: 0.1;
  }

  .quote-card__stars {
    margin-bottom: 8px;
    letter-spacing: 0.22em;
    opacity: 0.7;
  }

  .quote-card footer {
    font-size: 12px;
  }

  .contact__grid {
    gap: 28px;
  }

  .contact__list {
    gap: 12px;
  }

  .contact__form {
    border-radius: var(--radius-md);
  }

  .stat-ribbon__cell {
    background: var(--surface);
  }

  .partner-tile,
  .loc-card {
    background: var(--surface);
  }

  .cta-band {
    border-radius: var(--radius-md);
  }

  .faq-list {
    border-radius: var(--radius-md);
  }

  .page-hero__noise {
    opacity: 0.35;
  }

  /* Inner pages: concise heroes, nav, and sections */
  .page-hero__title .copy--short {
    display: block;
  }

  .page-hero__lead:not(:has(.copy--short)) {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .breadcrumb {
    margin-bottom: 10px;
  }

  .feature-row__body,
  .partner-tile p,
  .loc-card p,
  .contact-card .section__lead,
  .stat-ribbon__cell span,
  .portfolio-note,
  .attribution {
    display: none;
  }

  .feature-row__label {
    border-bottom: none;
  }

  .feature-row {
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .mailto-hero {
    margin-top: 16px;
    gap: 10px;
  }

  .nav__mobile {
    font-size: 15px;
    gap: 10px;
    padding-top: 12px;
  }

  .nav__mobile a:not(.btn) {
    padding: 4px 0;
  }

  .nav__mobile .btn {
    margin-top: 6px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .faq-item__body {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .faq-item summary {
    padding: 12px 12px;
    font-size: 0.9rem;
  }

  .split-hero .prose-block p:first-of-type {
    -webkit-line-clamp: 5;
  }

  .cta-band p {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .quote-card footer,
  .contact__grid .quote-card footer {
    display: none;
  }

  .contact__grid .quote-card p {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.88rem;
  }

  .partner-hero h1 .copy--short,
  .partner-hero__lead .copy--short {
    display: block;
  }

  .partner-hero .mailto-hero .btn:nth-child(n + 3) {
    display: none;
  }

  .partner-hero__content {
    padding-bottom: 40px;
  }

  .partner-hero h1 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .partner-hero__lead {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}

@media (max-width: 390px) {
  .hero__title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .section__title,
  .page-hero__title {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }

  .hero__stats {
    gap: 6px 8px;
  }

  .stat-ribbon {
    grid-template-columns: 1fr 1fr;
  }
}

@media (hover: none) {
  .service-card:hover,
  .loc-card:hover,
  .partner-tile:hover {
    transform: none;
  }
}

/* ---------- Nav density (desktop only) ---------- */
@media (min-width: 1101px) and (max-width: 1280px) {
  .nav__links {
    gap: 22px;
    font-size: 13px;
  }
}
@media (max-width: 420px) {
  .nav__brand {
    font-size: 16px;
    gap: 10px;
  }
  .nav__logo {
    width: 30px;
    height: 30px;
  }
  .nav__word-sub {
    font-size: 9px;
    letter-spacing: 0.22em;
  }
}

/* ---------- Phone: full-width CTAs, no clipped labels ---------- */
@media (max-width: 520px) {
  .hero__cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta-row .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .ba__label {
    top: 12px;
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .ba__label--before {
    left: 12px;
  }
  .ba__label--after {
    right: 12px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  body {
    opacity: 1 !important;
    transition: none !important;
  }
  .hero__yt {
    opacity: 1 !important;
  }
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
