/* =====================================================================
   A1 Cleaning LLC — Design System
   Palette: jet black, crew red, white, graphite, light gray + yellow
   ===================================================================== */

:root {
  --ink: #0d0d0d;
  --graphite: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e7e7e7;
  --gray: #f2f2f2;
  --gray-2: #fafaf8;
  --white: #ffffff;
  --red: #c8261d;
  --red-deep: #9e1b14;
  --red-tint: #fbeceb;
  --yellow: #ffc400;
  --yellow-deep: #e6ac00;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 14px rgba(13, 13, 13, 0.06);
  --shadow: 0 18px 45px rgba(13, 13, 13, 0.10);
  --shadow-lg: 0 30px 70px rgba(13, 13, 13, 0.16);
  --ring: 0 0 0 3px rgba(200, 38, 29, 0.30);

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

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.em { color: var(--red); font-style: italic; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section--gray { background: var(--gray); }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.h-xl { font-size: clamp(2.6rem, 6.5vw, 4.5rem); }
.h-lg { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--graphite); margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  border-radius: var(--radius-pill);
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s ease;
  box-shadow: 0 10px 24px rgba(200, 38, 29, 0.28);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(200, 38, 29, 0.38); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(-1px); }

.btn--yellow {
  --bg: var(--yellow); --fg: var(--ink);
  box-shadow: 0 10px 24px rgba(255, 196, 0, 0.38);
}
.btn--yellow:hover { background: var(--yellow-deep); box-shadow: 0 16px 34px rgba(255, 196, 0, 0.5); }

.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border: 1.5px solid var(--line); box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--shadow); }

.btn--light {
  --bg: #fff; --fg: var(--ink); box-shadow: var(--shadow);
}
.btn--outline-light {
  --bg: transparent; --fg: #fff; border: 1.5px solid rgba(255,255,255,0.4); box-shadow: none;
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-3px); }
.btn--block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height 0.35s var(--ease), box-shadow 0.35s ease;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav.scrolled {
  height: 68px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 46px; width: auto; transition: height 0.35s var(--ease); }
.nav.scrolled .nav__logo img { height: 38px; }

.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__link {
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; color: rgba(255, 255, 255, 0.85);
  position: relative; padding: 0.3rem 0; transition: color 0.25s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); border-radius: 2px; transition: width 0.3s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link.active { color: #fff; }

.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta .btn { padding: 0.7rem 1.25rem; font-size: 0.9rem; }
/* phone button reads on the dark bar */
.nav .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.nav .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--red); position: relative; z-index: 120; flex: 0 0 auto;
}
.nav__toggle span {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: #fff;
  border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.2s ease;
}
.nav__toggle span:nth-child(1) { transform: translate(-50%, -7px); }
.nav__toggle span:nth-child(3) { transform: translate(-50%, 5px); }
body.menu-open .nav__toggle span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__link {
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: clamp(2rem, 9vw, 3rem); letter-spacing: -0.02em;
  padding: 0.4rem 0; opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.25s ease;
}
.mobile-menu__link:hover { color: var(--red); }
body.menu-open .mobile-menu__link { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu__link:nth-child(1) { transition-delay: 0.15s; }
body.menu-open .mobile-menu__link:nth-child(2) { transition-delay: 0.22s; }
body.menu-open .mobile-menu__link:nth-child(3) { transition-delay: 0.29s; }
body.menu-open .mobile-menu__link:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu__foot {
  margin-top: 2.5rem; color: rgba(255,255,255,0.6); display: flex; flex-direction: column; gap: 0.5rem;
  opacity: 0; transition: opacity 0.5s ease 0.45s;
}
body.menu-open .mobile-menu__foot { opacity: 1; }
.mobile-menu__foot a { color: #fff; font-weight: 600; }
.mobile-menu__foot .btn { margin-top: 1rem; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--red-tint); color: var(--red-deep);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 0.5rem 1rem; border-radius: var(--radius-pill); margin-bottom: 1.5rem;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 46ch; margin: 1.4rem 0 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero__meta { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero__meta .num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--ink); }
.hero__meta .lbl { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.03em; }

.hero__media { position: relative; }
.hero__media .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5;
}
.hero__media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__swoosh {
  position: absolute; right: -8%; bottom: -6%; width: 60%; z-index: -1;
  aspect-ratio: 1; background:
    radial-gradient(circle at 30% 30%, rgba(200,38,29,0.18), transparent 60%);
  filter: blur(6px);
}
.hero__chip {
  position: absolute; left: -6%; bottom: 8%;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.85rem;
  max-width: 250px;
}
.hero__chip .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--red-tint); color: var(--red);
  display: grid; place-items: center; flex: 0 0 auto;
}
.hero__chip .ic svg { width: 22px; height: 22px; }
.hero__chip strong { font-family: var(--font-display); color: var(--ink); display: block; font-size: 0.98rem; }
.hero__chip span { font-size: 0.82rem; color: var(--muted); }

/* ---------- BBB accreditation badge (white pill, works on any background) ---------- */
.bbb-badge {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0.55rem 1.1rem 0.55rem 0.6rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.bbb-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bbb-badge img { width: 44px; height: 44px; flex: 0 0 auto; }
.bbb-badge .bbb-txt { display: flex; flex-direction: column; line-height: 1.15; }
.bbb-badge strong { font-family: var(--font-display); color: var(--ink); font-size: 0.95rem; }
.bbb-badge small { color: var(--muted); font-size: 0.76rem; letter-spacing: 0.01em; }
.bbb-badge .bbb-txt strong .rate { color: var(--red); }
.footer__logo .bbb-badge { margin-top: 1.6rem; }

/* ---------- Hero (white, text left, framed image right + decorative rings) ---------- */
.hero-v2 { position: relative; background: var(--white); overflow: hidden; padding-top: var(--nav-h); }
.hero-v2__grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 5vw, 4rem);
  min-height: min(84vh, 760px);
}
.hero-v2__content { position: relative; z-index: 2; }
.hero-v2 h1 { font-size: clamp(2.5rem, 5vw, 4.3rem); line-height: 1.1; margin-top: 1.1rem; }
.hero-v2 .hl {
  color: var(--red); text-decoration: underline; text-decoration-thickness: 5px;
  text-underline-offset: 6px; text-decoration-skip-ink: none;
}
.hero-v2__sub { color: var(--graphite); font-size: clamp(1.05rem, 1.4vw, 1.2rem); max-width: 48ch; margin: 1.4rem 0 2.2rem; }
.hero-v2__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-v2__proof { display: flex; align-items: center; gap: 0.9rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-v2__stars { display: flex; gap: 2px; color: var(--yellow); }
.hero-v2__stars svg { width: 20px; height: 20px; }
.hero-v2__proof .ptext { font-size: 0.9rem; color: var(--muted); }
.hero-v2__proof .ptext strong { color: var(--ink); font-family: var(--font-display); }

.hero-v2__media { position: relative; }
/* light-red decorative rings, kept inside the image column so they never sit behind the text */
.hero-v2__rings {
  position: absolute; z-index: 0; top: 50%; left: 10%; width: 116%; aspect-ratio: 1;
  transform: translateY(-50%); pointer-events: none;
  animation: heroSpin 90s linear infinite;
}
@keyframes heroSpin { to { transform: translateY(-50%) rotate(360deg); } }
.hero-v2__square { position: absolute; z-index: 3; right: -8px; top: 30%; width: 30px; height: 66px; background: var(--yellow); border-radius: 7px 0 0 7px; box-shadow: var(--shadow-sm); }
.hero-v2__frame {
  position: relative; z-index: 2; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; max-width: 460px; margin-left: auto;
}
.hero-v2__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-v2__chip {
  position: absolute; z-index: 4; left: 4%; bottom: 7%;
  display: flex; align-items: center; gap: 0.8rem;
  background: #fff; color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 0.85rem 1.1rem; max-width: 240px;
}
.hero-v2__chip .ic { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 11px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; }
.hero-v2__chip .ic svg { width: 22px; height: 22px; }
.hero-v2__chip strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.hero-v2__chip span { font-size: 0.8rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero-v2__grid { grid-template-columns: 1fr; min-height: auto; gap: 2.8rem; }
  .hero-v2__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-v2__frame { margin: 0 auto; }
  .hero-v2 h1 { line-height: 1.2; }
  .hero-v2 .hl { text-decoration-thickness: 4px; text-underline-offset: 5px; }
}
@media (max-width: 480px) {
  .hero-v2__chip { left: 0.8rem; bottom: 0.8rem; max-width: 200px; padding: 0.7rem 0.9rem; }
  .hero-v2__square { display: none; }
}

/* ---------- Logo / trust strip ---------- */
.trust { background: var(--ink); color: #fff; }
.trust .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-top: 1.5rem; padding-bottom: 1.5rem;
}
.trust__item { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; font-size: 0.95rem; }
.trust__item svg { width: 22px; height: 22px; color: var(--yellow); flex: 0 0 auto; }
.trust__item span.small { color: rgba(255,255,255,0.6); font-weight: 400; display: block; font-size: 0.78rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; gap: 1.5rem; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s ease;
}
.svc::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 0;
  background: var(--red); transition: width 0.45s var(--ease);
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::after { width: 100%; }
.svc__ic {
  width: 56px; height: 56px; border-radius: 16px; background: var(--red-tint); color: var(--red);
  display: grid; place-items: center; margin-bottom: 1.4rem;
  transition: transform 0.45s var(--ease), background 0.3s ease;
}
.svc:hover .svc__ic { transform: rotate(-6deg) scale(1.05); }
.svc__ic svg { width: 28px; height: 28px; }
.svc h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.svc p { color: var(--muted); font-size: 0.97rem; }
.svc__link {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.2rem;
  font-family: var(--font-display); font-weight: 700; color: var(--red); font-size: 0.92rem;
}
.svc__link svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.svc:hover .svc__link svg { transform: translateX(5px); }
/* CTA button on the Additional Services cards — flex column keeps buttons bottom-aligned */
#additional .svc { display: flex; flex-direction: column; }
.svc__cta { margin-top: 1.7rem; align-self: flex-start; }

/* Compact link card: whole card is a link, icon + name only */
a.svc { text-decoration: none; color: inherit; }
.svc--compact { display: flex; align-items: center; gap: 1.15rem; padding: 1.4rem 1.6rem; }
.svc--compact .svc__ic { width: 48px; height: 48px; margin-bottom: 0; flex: none; }
.svc--compact .svc__ic svg { width: 24px; height: 24px; }
.svc--compact h3 { margin-bottom: 0; font-size: 1.2rem; }
.svc__go { width: 20px; height: 20px; margin-left: auto; flex: none; color: var(--red); transition: transform 0.35s var(--ease); }
.svc--compact:hover .svc__go { transform: translateX(5px); }

/* Featured red card */
.svc--feature {
  background: linear-gradient(150deg, var(--red), var(--red-deep)); color: #fff; border: none;
}
.svc--feature h3, .svc--feature p { color: #fff; }
.svc--feature p { color: rgba(255,255,255,0.85); }
.svc--feature .svc__ic { background: rgba(255,255,255,0.16); color: #fff; }
.svc--feature::after { background: var(--yellow); }
.svc--feature .svc__link { color: var(--yellow); }

/* Media card (image inside card) */
.svc--media { padding: 0; display: flex; flex-direction: column; }
.svc--media .img { aspect-ratio: 16/11; overflow: hidden; }
.svc--media .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.svc--media:hover .img img { transform: scale(1.06); }
.svc--media .body { padding: 1.6rem 2rem 2rem; }

/* ---------- Flip service cards (hover / tap to reveal scope) ---------- */
.flip-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.flip { perspective: 1800px; cursor: pointer; }
.flip__inner {
  position: relative; width: 100%; min-height: 500px;
  transition: transform 0.8s var(--ease); transform-style: preserve-3d;
}
.flip.is-flipped .flip__inner { transform: rotateY(180deg); }
/* hover-to-flip only on real pointer devices — on touch it sticks after a tap
   and stops the card flipping back, so touch uses the tap toggle (is-flipped) alone */
@media (hover: hover) {
  .flip:hover .flip__inner { transform: rotateY(180deg); }
}
.flip:focus-visible { outline: none; }
.flip:focus-visible .flip__face { box-shadow: 0 0 0 3px var(--red); }
.flip__face {
  position: absolute; inset: 0; border-radius: var(--radius-lg); overflow: hidden;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  border: 1px solid var(--line);
}
.flip__front {
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
  color: #fff; background-color: var(--ink); background-size: cover; background-position: center;
}
.flip__front::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.15) 15%, rgba(13,13,13,0.92));
}
.flip__front > * { position: relative; z-index: 1; }
.flip__ic {
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: auto;
  background: rgba(255,255,255,0.16); display: grid; place-items: center; color: #fff;
}
.flip__ic svg { width: 27px; height: 27px; }
.flip__front h3 { color: #fff; font-size: clamp(1.32rem, 2.2vw, 1.72rem); font-weight: 700; margin-top: 1.2rem; line-height: 1.12; display: flex; align-items: center; gap: 0.7rem; }
.flip__front h3 svg { width: 25px; height: 25px; flex: 0 0 auto; color: var(--yellow); }
.flip__front p { color: rgba(255,255,255,0.85); font-size: 0.98rem; margin-top: 0.55rem; }
.flip__hint {
  display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.3rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--yellow);
}
.flip__hint svg { width: 16px; height: 16px; }
.flip__back {
  transform: rotateY(180deg); background: linear-gradient(155deg, var(--red), var(--red-deep));
  color: #fff; padding: 1.9rem 2rem 2.1rem; display: flex; flex-direction: column; overflow-y: auto;
}
.flip__back h3 { color: #fff; font-size: 1.25rem; margin-bottom: 1.1rem; }
.flip__list { display: grid; gap: 0.65rem; margin-bottom: 1.5rem; }
.flip__list li {
  position: relative; list-style: none; padding-left: 1.6rem;
  font-size: 0.95rem; line-height: 1.38; color: rgba(255,255,255,0.95);
}
.flip__list li::before {
  content: ""; position: absolute; left: 0; top: 0.34em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--yellow);
}
/* service names on the front — each stated separately as its own line */
.flip__services { display: grid; gap: 0.6rem; margin-top: 1.15rem; }
.flip__services li {
  display: flex; align-items: center; gap: 0.7rem; list-style: none;
  font-family: var(--font-display); font-weight: 700; line-height: 1.12;
  font-size: clamp(1.32rem, 2.2vw, 1.72rem); color: #fff;
}
.flip__services svg {
  width: 25px; height: 25px; flex: 0 0 auto; color: var(--yellow);
}
/* call-to-action pinned to the bottom of the flipped (back) face */
.flip__cta { margin-top: auto; align-self: flex-start; }

/* ---------- Carousel (before / after gallery) ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 0.4rem; scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 clamp(280px, 78%, 620px); scroll-snap-align: center; position: relative;
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; background: var(--gray);
}
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; }
/* portrait / collage before-after images: show the whole frame instead of cropping */
.carousel__slide--full img { object-fit: contain; background: var(--ink); }
.carousel__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1.6rem 1.15rem; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(13,13,13,0.85));
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
}
.carousel__btns { display: flex; gap: 0.7rem; justify-content: center; margin-top: 1.5rem; }
.carousel__btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink); display: grid; place-items: center; cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.carousel__btn:hover { background: var(--red); color: #fff; border-color: transparent; transform: translateY(-2px); }
.carousel__btn svg { width: 22px; height: 22px; }

@media (max-width: 820px) {
  .flip-cards { grid-template-columns: 1fr; }
  /* Mobile: no 3D flip. iOS Safari ignores backface-visibility when a face also
     has overflow (our faces do), so the front bled through the back MIRRORED.
     On touch there's no hover anyway, so just swap the two faces with display —
     no rotateY, no backface, and the card grows to fit its content naturally. */
  .flip { perspective: none; }
  .flip__inner { min-height: 0; transform: none !important; transform-style: flat; }
  .flip__face { position: relative; inset: auto; transform: none; }
  .flip__back { display: none; }
  .flip.is-flipped .flip__front { display: none; }
  .flip.is-flipped .flip__back { display: flex; }
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.split__media .frame img { width: 100%; height: 100%; object-fit: cover; }
.split__media .badge {
  position: absolute; bottom: 1.2rem; right: 1.2rem; background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; padding: 0.9rem 1.2rem; border-radius: 14px;
  box-shadow: var(--shadow); line-height: 1.1;
}
.split__media .badge span { display: block; font-weight: 600; font-size: 0.75rem; font-family: var(--font-body); }
.ticks { margin-top: 1.6rem; display: grid; gap: 0.85rem; }
.tick { display: flex; gap: 0.75rem; align-items: flex-start; }
.tick svg { width: 22px; height: 22px; color: var(--red); flex: 0 0 auto; margin-top: 2px; }
.tick strong { font-family: var(--font-display); color: var(--ink); }

/* ---------- Stats band ---------- */
.stats { background: var(--ink); border-radius: var(--radius-lg); color: #fff; padding: clamp(2.5rem, 5vw, 3.5rem); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--yellow); line-height: 1; }
.stat .num .suffix { color: #fff; }
.stat .lbl { margin-top: 0.6rem; color: rgba(255,255,255,0.7); font-size: 0.88rem; letter-spacing: 0.04em; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step__n {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--red);
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--red-tint);
  display: grid; place-items: center; background: var(--red-tint); margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 0; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--red), var(--red-tint));
}
.tl-item { position: relative; padding: 0 0 2.5rem 75px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .dot {
  position: absolute; left: 16px; top: 2px; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 3px solid var(--red); display: grid; place-items: center;
}
.tl-item .dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.tl-item .yr { font-family: var(--font-display); font-weight: 800; color: var(--red); font-size: 1.4rem; }
.tl-item h3 { font-size: 1.25rem; margin: 0.2rem 0 0.5rem; }
.tl-item p { color: var(--muted); }

/* ---------- Values ---------- */
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value__ic { width: 50px; height: 50px; border-radius: 14px; background: var(--ink); color: var(--yellow); display: grid; place-items: center; margin-bottom: 1.1rem; }
.value__ic svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.value p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Projects / vertical videos ---------- */
.reels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.reel {
  position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #1a1a1a, #0d0d0d); border: 1px solid #222;
  display: grid; place-items: center; cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.reel:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); }
.reel video, .reel img, .reel iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.reel__poster { z-index: 0; transition: transform 0.7s var(--ease); }
.reel:hover .reel__poster { transform: scale(1.05); }
/* readability scrim: darkens top & bottom, keeps the preview clear in the middle */
.reel::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,13,13,0.45) 0%, rgba(13,13,13,0) 28%, rgba(13,13,13,0) 52%, rgba(13,13,13,0.78) 100%);
  transition: opacity 0.3s ease;
}
.reel iframe, .reel video { z-index: 4; }
.reel.playing { cursor: default; }
.reel.playing:hover { transform: none; }
.reel.playing:hover .reel__poster { transform: none; }
.reel.playing::after { opacity: 0; }
.reel.playing .reel__play, .reel.playing .reel__hint, .reel.playing .reel__tag { opacity: 0; visibility: hidden; }
.reel__play {
  position: relative; z-index: 2; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(13,13,13,0.45); backdrop-filter: blur(4px); border: 1.5px solid rgba(255,255,255,0.85);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.reel:hover .reel__play { transform: scale(1.1); background: var(--red); border-color: var(--red); }
.reel__play svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }
.reel__tag {
  position: absolute; z-index: 2; left: 14px; bottom: 14px; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.reel__hint {
  position: absolute; z-index: 2; top: 14px; left: 14px; right: 14px;
  font-size: 0.72rem; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.12em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* "Yours could be the next" CTA card (replaces a 4th video) */
.reel--cta {
  background: linear-gradient(160deg, var(--red), var(--red-deep));
  border: none; text-decoration: none; padding: 1.4rem; text-align: center;
}
.reel--cta::after { content: none; }
.reel--cta:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); }
.reel-cta__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.85rem; color: #fff; }
.reel-cta__icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.16); display: grid; place-items: center; transition: transform 0.45s var(--ease); }
.reel-cta__icon svg { width: 28px; height: 28px; color: var(--yellow); }
.reel--cta:hover .reel-cta__icon { transform: rotate(-8deg) scale(1.06); }
.reel-cta__inner strong { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; line-height: 1.15; color: #fff; }
.reel-cta__sub { font-size: 0.88rem; color: rgba(255,255,255,0.85); max-width: 22ch; }
.reel-cta__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.3rem; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--yellow); }
.reel-cta__link svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.reel--cta:hover .reel-cta__link svg { transform: translateX(5px); }

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; position: relative; }

/* Google reviews */
.greviews__grid { grid-template-columns: repeat(4, 1fr); }
.greviews__badge {
  display: inline-flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.4rem; padding: 0.55rem 1.2rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.greviews__num { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 1.15rem; }
.greviews__stars { display: inline-flex; gap: 1px; color: var(--yellow); }
.greviews__stars svg { width: 18px; height: 18px; }
.greviews__label { color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.tcard__g { position: absolute; top: 1.7rem; right: 1.6rem; width: 24px; height: 24px; }
.tcard blockquote { padding-right: 1.5rem; }
.greviews__cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

@media (max-width: 1080px) { .greviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .greviews__grid { grid-template-columns: 1fr; } }
.tcard .stars { display: flex; gap: 3px; color: var(--yellow); margin-bottom: 1rem; }
.tcard .stars svg { width: 18px; height: 18px; }
.tcard blockquote { font-size: 1.08rem; color: var(--ink); line-height: 1.6; }
.tcard .who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.4rem; }
.tcard .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--red-tint); color: var(--red); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.tcard .who strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 0.98rem; }
.tcard .who span { font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(200,38,29,0.35), transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(255,196,0,0.12), transparent 40%);
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 50ch; margin: 1.1rem auto 2rem; }
.cta-band .actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2rem; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.5rem); box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-of-type { border-bottom: none; }
.info-row .ic { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 14px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row .lbl { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.info-row .val { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.08rem; }
.info-row .val a:hover { color: var(--red); }
.socials { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.socials a { width: 44px; height: 44px; border-radius: 12px; background: var(--gray); color: var(--ink); display: grid; place-items: center; transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease; }
.socials a:hover { background: var(--red); color: #fff; transform: translateY(-4px); }
.socials svg { width: 20px; height: 20px; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--gray-2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #aaa; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(200,38,29,0.10); outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 1rem; }
.form-success {
  display: none; background: var(--red-tint); border: 1px solid rgba(200,38,29,0.25); color: var(--red-deep);
  padding: 1rem 1.2rem; border-radius: 14px; margin-bottom: 1.2rem; font-weight: 600;
}
.form-success.show { display: block; animation: pop 0.5s var(--ease); }
.form-error {
  display: none; background: var(--graphite); border: 1px solid rgba(255,255,255,0.12); color: #fff;
  padding: 1rem 1.2rem; border-radius: 14px; margin-bottom: 1.2rem; font-weight: 600;
}
.form-error.show { display: block; animation: pop 0.5s var(--ease); }
.btn.is-sending { opacity: 0.65; pointer-events: none; }

.map-card { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); position: relative; box-shadow: var(--shadow-sm); }
.map-card iframe { display: block; width: 100%; aspect-ratio: 16 / 10; border: 0; }

.hours { margin-top: 1.5rem; }
.hours li { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.hours li:last-child { border-bottom: none; }
.hours .day { color: var(--graphite); font-weight: 600; }
.hours .time { color: var(--muted); }
.hours .closed { color: var(--red); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden;
}
.page-hero--gray { background: var(--gray); }
.page-hero__inner { max-width: 760px; }
.page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
.page-hero .lead { max-width: 56ch; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

/* image hero variant — background image + overlay set inline on the element
   so the URL resolves relative to the HTML and sits behind content naturally */
.page-hero--media {
  color: #fff; padding-bottom: clamp(4rem, 8vw, 7rem);
  background-color: var(--ink);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero--media .wrap { position: relative; z-index: 2; }
.page-hero--media h1, .page-hero--media .lead { color: #fff; }

/* looping background video (Vimeo background mode) */
.page-hero--video .hero-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero--video .hero-video iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  /* oversize so a 16:9 video covers the banner with no letterboxing */
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  border: 0; pointer-events: none;
}
.page-hero--video.has-video::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.5), rgba(13, 13, 13, 0.8));
}
.page-hero--media .lead { color: rgba(255,255,255,0.85); }
.page-hero--media .eyebrow { color: var(--yellow); }
.page-hero--media .eyebrow::before { background: var(--yellow); }

/* ---------- Footer ---------- */
.footer { background: var(--gray); padding: clamp(3.5rem, 6vw, 5rem) 0 0; border-top: 4px solid var(--red); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__logo img { height: 56px; width: auto; margin-bottom: 1.1rem; }
.footer__about { color: var(--muted); font-size: 0.95rem; max-width: 32ch; }
.footer__col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink); margin-bottom: 1.1rem; }
.footer__col a, .footer__col li { display: block; color: var(--graphite); font-size: 0.95rem; padding: 0.35rem 0; transition: color 0.25s ease, transform 0.25s ease; }
.footer__col a:hover { color: var(--red); transform: translateX(4px); }
.footer__contact a { display: flex; align-items: center; gap: 0.6rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--red); flex: 0 0 auto; }
.footer__bottom {
  border-top: 1px solid var(--line); padding: 1.5rem 0; display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between; color: var(--muted); font-size: 0.85rem;
}
.footer__socials { display: flex; gap: 0.6rem; }
.footer__socials a { width: 38px; height: 38px; border-radius: 10px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; }
.footer__socials a:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-3px); }
.footer__socials svg { width: 18px; height: 18px; }

/* =====================================================================
   Animations
   ===================================================================== */
@keyframes pop { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* Squeegee wipe reveal for images */
.wipe { position: relative; clip-path: inset(0 100% 0 0); transition: clip-path 1s var(--ease); }
.wipe.in { clip-path: inset(0 0 0 0); }

/* Load-in for hero */
.load-up { opacity: 0; transform: translateY(28px); animation: loadUp 0.9s var(--ease) forwards; }
.load-up.d1 { animation-delay: 0.1s; }
.load-up.d2 { animation-delay: 0.22s; }
.load-up.d3 { animation-delay: 0.34s; }
.load-up.d4 { animation-delay: 0.46s; }
.load-up.d5 { animation-delay: 0.58s; }
@keyframes loadUp { to { opacity: 1; transform: none; } }

.float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__logo { grid-column: 1 / -1; }
}
@media (max-width: 940px) {
  :root { --nav-h: 72px; }
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin: 0 auto; }
  .hero__media .frame { aspect-ratio: 16/12; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: -1; }
  .cards--3, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; }
  .reels { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 1rem; }
  .cards--3, .cards--2, .steps, .tcards, .reels { grid-template-columns: 1fr; }
  .reels { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__chip { left: 0; right: 0; margin: 0 auto; }
  .hero__meta { gap: 1.4rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .load-up { opacity: 1 !important; transform: none !important; }
  .wipe { clip-path: none !important; }
}
