/* Arriola's Plumbing — Oxnard, CA */

:root {
  --navy-900: #081a3d;
  --navy-800: #0e2657;
  --navy-700: #16357a;
  --blue-600: #1f5fd1;
  --blue-500: #2f6fe4;
  --blue-300: #8fb4ff;
  --blue-50:  #eef4ff;
  --red-600:  #d62828;
  --red-500:  #e63a3a;
  --ink:      #0b1630;
  --ink-soft: #46536e;
  --line:     #dbe3f1;
  --paper:    #ffffff;
  --paper-2:  #f5f8fd;

  --radius:    18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(8, 26, 61, .08);
  --shadow:    0 18px 40px -18px rgba(8, 26, 61, .35);
  --shadow-lg: 0 40px 80px -30px rgba(8, 26, 61, .5);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--navy-800); color: #fff; padding: 10px 16px; border-radius: 10px; text-decoration: none; }
.skip:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red-600);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 52px; padding: 0 26px;
  border: 0; border-radius: 999px;
  background: var(--bg); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: .01em;
  text-decoration: none; white-space: nowrap;
  overflow: hidden; isolation: isolate;
  box-shadow: 0 12px 24px -12px color-mix(in srgb, var(--bg) 80%, transparent);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.btn::before {             /* sheen that sweeps across on hover */
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 30px -12px color-mix(in srgb, var(--bg) 90%, transparent); }
.btn:hover::before { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--blue { --bg: var(--blue-600); }
.btn--ghost { --bg: transparent; color: var(--navy-800); box-shadow: inset 0 0 0 2px var(--navy-800); }
.btn--ghost-light { --bg: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 15px; }

.ripple {                  /* click ripple, added by JS */
  position: absolute; border-radius: 50%; pointer-events: none; z-index: -1;
  background: rgba(255,255,255,.45);
  transform: scale(0); animation: ripple .7s var(--ease-out) forwards;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

.phone-ring { animation: ring 2.6s ease-in-out infinite; transform-origin: 50% 60%; }
@keyframes ring {
  0%, 60%, 100% { transform: rotate(0); }
  64% { transform: rotate(-16deg); } 68% { transform: rotate(14deg); }
  72% { transform: rotate(-12deg); } 76% { transform: rotate(8deg); } 80% { transform: rotate(0); }
}

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: #cfdcf7; font-size: 14px; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--blue-300); flex: none; }
.topbar a { text-decoration: none; font-weight: 700; color: #fff; }
.topbar__live { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 0 rgba(61,220,132,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(61,220,132,0); } 100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(1.6) blur(14px); -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}
.header.is-scrolled { box-shadow: 0 10px 30px -20px rgba(8,26,61,.45); border-color: var(--line); }
.header .wrap { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 56px; width: auto; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  position: relative; padding: 8px 12px; text-decoration: none;
  font-weight: 600; font-size: 15px; color: var(--navy-800);
}
.nav a::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 3px; border-radius: 3px;
  background: var(--red-600); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.lang { display: inline-flex; padding: 3px; border-radius: 999px; background: var(--blue-50); flex: none; }
.lang button {
  border: 0; background: transparent; min-width: 40px; height: 34px; padding: 0 10px; border-radius: 999px;
  font-weight: 800; font-size: 13px; color: var(--navy-700); letter-spacing: .04em;
  transition: background .25s, color .25s;
}
.lang button[aria-pressed="true"] { background: var(--navy-800); color: #fff; }

.header__cta { flex: none; }
.burger {
  display: none; margin-left: auto; width: 46px; height: 46px; border: 0; border-radius: 12px;
  background: var(--navy-800); position: relative;
}
.burger span { position: absolute; left: 13px; right: 13px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease-out), opacity .2s; }
.burger span:nth-child(1) { top: 16px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 90; padding: calc(var(--header-h) + 64px) var(--gutter) 32px;
  background: var(--navy-900); color: #fff;
  display: flex; flex-direction: column; gap: 8px;
  clip-path: circle(0 at calc(100% - 40px) 60px);
  transition: clip-path .6s var(--ease-out);
  visibility: hidden;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 40px) 60px); visibility: visible; }
.drawer a.drawer__link {
  font-family: var(--font-display); font-weight: 800; font-size: 32px; text-decoration: none;
  padding: 6px 0; opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .5s var(--ease-out);
}
.drawer.is-open a.drawer__link { opacity: 1; transform: none; }
.drawer.is-open a.drawer__link:nth-child(2) { transition-delay: .06s; }
.drawer.is-open a.drawer__link:nth-child(3) { transition-delay: .12s; }
.drawer.is-open a.drawer__link:nth-child(4) { transition-delay: .18s; }
.drawer.is-open a.drawer__link:nth-child(5) { transition-delay: .24s; }
.drawer__foot { margin-top: auto; display: grid; gap: 14px; }
.drawer .lang { background: rgba(255,255,255,.1); justify-self: start; }
.drawer .lang button { color: #fff; }
.drawer .lang button[aria-pressed="true"] { background: #fff; color: var(--navy-900); }
body.menu-open { overflow: hidden; }
body.menu-open .header { background: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(47,111,228,.55), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(214,40,40,.25), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900) 70%);
  color: #fff;
  padding: clamp(48px, 8vw, 96px) 0 clamp(120px, 14vw, 170px);
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-size: 14px; font-weight: 600; color: #dbe6ff;
}
.hero__eyebrow .stars { color: #ffc93c; letter-spacing: 1px; }
.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(44px, 7.4vw, 88px); font-weight: 900; line-height: .98; letter-spacing: -.025em;
  text-transform: uppercase;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero h1 .line > span { display: inline-block; }
.hero h1 .accent {
  background: linear-gradient(90deg, #8fb4ff, #ffffff 45%, #8fb4ff 90%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: -200% center; } }
.hero h1 .underline { position: relative; }
.hero h1 .underline svg {
  position: absolute; left: 0; right: 0; bottom: -.12em; width: 100%; height: .28em; overflow: visible;
}
.hero h1 .underline path { stroke: var(--red-500); stroke-width: 7; fill: none; stroke-linecap: round; stroke-dasharray: 420; stroke-dashoffset: 420; }
.js .hero.is-in h1 .underline path { animation: draw 1.1s .95s var(--ease-out) forwards; }
.no-js .hero h1 .underline path { stroke-dashoffset: 0; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__lead { max-width: 540px; font-size: clamp(17px, 1.6vw, 20px); color: #c9d7f5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__actions .btn { min-height: 58px; font-size: 17px; padding: 0 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; font-size: 15px; color: #c9d7f5; list-style: none; padding: 0; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 18px; height: 18px; color: #3ddc84; }

.hero__visual { position: relative; }
.hero__photo {
  position: relative; border-radius: 28px; overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,.1);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 20%; transform: scale(1.08); transition: transform 1.6s var(--ease-out); }
.hero.is-in .hero__photo img { transform: scale(1); }
.hero__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,26,61,.55)); }

.float-card {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 16px;
  background: #fff; color: var(--ink); box-shadow: var(--shadow);
  font-size: 14px; line-height: 1.3;
  animation: bob 5s ease-in-out infinite;
}
.float-card strong { display: block; font-family: var(--font-display); font-size: 16px; }
.float-card__icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; color: #fff; }
.float-card__icon svg { width: 22px; height: 22px; }
.float-card--a { left: -28px; bottom: 9%; }
.float-card--a .float-card__icon { background: var(--red-600); }
.float-card--b { right: -20px; top: 7%; animation-delay: -2.5s; }
.float-card--b .float-card__icon { background: var(--blue-600); }
@keyframes bob { 50% { transform: translateY(-12px); } }

.hero__drop {             /* the water drop that sits behind the photo */
  position: absolute; z-index: -1; right: -8%; top: -8%; width: 70%;
  opacity: .22; filter: blur(.5px);
  animation: drop-sway 9s ease-in-out infinite;
}
@keyframes drop-sway { 50% { transform: translateY(18px) rotate(4deg); } }

.bubbles { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bubbles span {
  position: absolute; bottom: -40px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), rgba(143,180,255,.12) 60%, transparent 70%);
  border: 1px solid rgba(255,255,255,.18);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(20px, -50vh); }
  100% { transform: translate(-10px, -110vh); opacity: 0; }
}

.waves { position: absolute; left: 0; right: 0; bottom: -2px; height: clamp(70px, 10vw, 130px); z-index: 1; }
.waves svg { width: 200%; height: 100%; position: absolute; left: 0; bottom: 0; }
.waves .w1 { animation: wave 14s linear infinite; opacity: .35; }
.waves .w2 { animation: wave 9s linear infinite reverse; opacity: .55; }
.waves .w3 { animation: wave 18s linear infinite; }
@keyframes wave { to { transform: translateX(-50%); } }

/* hero entrance */
.js .hero [data-hero] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform 1s var(--ease-out); }
.js .hero h1 .line > span { transform: translateY(105%); transition: transform 1s var(--ease-out); }
.js .hero.is-in [data-hero] { opacity: 1; transform: none; }
.js .hero.is-in h1 .line > span { transform: none; }
.js .hero.is-in h1 .line:nth-child(2) > span { transition-delay: .12s; }
.js .hero.is-in h1 .line:nth-child(3) > span { transition-delay: .24s; }
.js .hero.is-in [data-hero="2"] { transition-delay: .4s; }
.js .hero.is-in [data-hero="3"] { transition-delay: .55s; }
.js .hero.is-in [data-hero="4"] { transition-delay: .7s; }
.js .hero.is-in [data-hero="5"] { transition-delay: .3s; }

/* ---------- Marquee ---------- */
.marquee-clip { overflow: hidden; margin-top: -40px; padding: 14px 0 26px; position: relative; z-index: 3; }
.marquee { background: var(--red-600); color: #fff; overflow: hidden; padding: 16px 0; transform: rotate(-1.2deg); margin: 0 -10px; box-shadow: var(--shadow); }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.marquee__group span { font-family: var(--font-display); font-weight: 800; font-size: clamp(18px, 2.2vw, 24px); text-transform: uppercase; white-space: nowrap; }
.marquee__group i { width: 10px; height: 14px; flex: none; background: #fff; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; clip-path: polygon(50% 0, 100% 60%, 90% 90%, 50% 100%, 10% 90%, 0 60%); opacity: .8; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; overflow-x: clip; }
.section--tint { background: var(--paper-2); }
.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--red-600);
}
.kicker::before { content: ''; width: 28px; height: 3px; border-radius: 3px; background: currentColor; }
.section__head--center .kicker::after { content: ''; width: 28px; height: 3px; border-radius: 3px; background: currentColor; }
.section h2 { font-size: clamp(34px, 5vw, 56px); font-weight: 900; margin: 14px 0 16px; color: var(--navy-800); }
.section__head p { font-size: 18px; color: var(--ink-soft); }

/* reveal on scroll */
.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform 1s var(--ease-out); transition-delay: calc(var(--d, 0) * 90ms); }
.js [data-reveal="left"] { transform: translateX(-40px); }
.js [data-reveal="right"] { transform: translateX(40px); }
.js [data-reveal="zoom"] { transform: scale(.92); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service {
  position: relative; overflow: hidden;
  padding: 28px 24px 26px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s;
  transform-style: preserve-3d;
}
.service::before {        /* water that fills the card from below on hover */
  content: ''; position: absolute; left: -20%; right: -20%; bottom: 0; height: 240%;
  background: linear-gradient(180deg, var(--blue-600), var(--navy-800));
  border-radius: 42%;
  transform: translateY(112%) rotate(0deg);
  transition: transform .9s var(--ease-out);
  z-index: 0;
}
.service > * { position: relative; z-index: 1; transition: color .4s; }
.service:hover { box-shadow: var(--shadow); border-color: transparent; }
.service:hover::before { transform: translateY(58%) rotate(40deg); }
.service:hover h3, .service:hover p { color: #fff; }
.service:hover .service__icon { background: #fff; color: var(--blue-600); transform: rotate(-8deg) scale(1.06); }
.service__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--blue-50); color: var(--blue-600);
  transition: transform .5s var(--ease-out), background .4s, color .4s;
}
.service__icon svg { width: 30px; height: 30px; }
.service h3 { font-size: 20px; font-weight: 800; color: var(--navy-800); margin-bottom: 8px; }
.service p { font-size: 15.5px; color: var(--ink-soft); }
.service--feature { background: var(--red-600); border-color: var(--red-600); color: #fff; display: flex; flex-direction: column; }
.service--feature::before { display: none; }
.service--feature h3 { color: #fff; font-size: 24px; }
.service--feature p { color: #ffe3e3; margin-bottom: 20px; }
.service--feature .btn { --bg: #fff; color: var(--red-600); margin-top: auto; align-self: flex-start; }
.service--feature:hover h3, .service--feature:hover p { color: #fff; }

/* ---------- Stats band ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-radius: 24px; overflow: hidden;
  background: var(--navy-800); color: #fff; box-shadow: var(--shadow-lg);
}
.stat { padding: clamp(24px, 3vw, 36px) 20px; text-align: center; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 24%; bottom: 24%; width: 1px; background: rgba(255,255,255,.14); }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(36px, 4.6vw, 54px); line-height: 1; }
.stat__num small { font-size: .5em; color: var(--blue-300); margin-left: 2px; }
.stat__label { margin-top: 8px; font-size: 15px; color: #b9c9ec; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__flyer { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(-2deg); transition: transform .8s var(--ease-out); }
.about__flyer:hover { transform: rotate(0) scale(1.02); }
.about__badge {
  position: absolute; right: -14px; bottom: -26px; width: 132px; height: 132px; border-radius: 50%;
  background: var(--red-600); color: #fff; display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow); font-family: var(--font-display); font-weight: 800; line-height: 1.05; font-size: 15px;
}
.about__badge svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 18s linear infinite; }
.about__badge text { font-size: 10.5px; letter-spacing: 3.2px; fill: #fff; font-weight: 700; text-transform: uppercase; }
.about__badge b { font-size: 34px; display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.about__copy p { color: var(--ink-soft); font-size: 17.5px; margin-bottom: 16px; }
.checks { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--navy-800); }
.checks svg { width: 24px; height: 24px; flex: none; color: #fff; background: var(--blue-600); border-radius: 50%; padding: 4px; }
.signature { display: flex; align-items: center; gap: 14px; }
.signature img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: 50% 10%; background: var(--blue-50); border: 2px solid var(--line); }
.signature strong { display: block; font-family: var(--font-display); color: var(--navy-800); }
.signature span { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Process ---------- */
.process { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.process__pipe { position: absolute; left: 16.66%; right: 16.66%; top: 44px; height: 10px; border-radius: 10px; background: var(--line); overflow: hidden; }
.process__pipe span { position: absolute; inset: 0; transform-origin: left; transform: scaleX(var(--fill, 0)); background: linear-gradient(90deg, var(--blue-600), var(--blue-500), var(--blue-300)); transition: transform .2s linear; }
.step { position: relative; text-align: center; padding: 0 8px; }
.step__num {
  position: relative; z-index: 1;
  width: 98px; height: 98px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--navy-800); border: 4px solid var(--line);
  font-family: var(--font-display); font-weight: 900; font-size: 34px;
  transition: background .5s, color .5s, border-color .5s, transform .6s var(--ease-out);
}
.step.is-lit .step__num { background: var(--blue-600); color: #fff; border-color: var(--blue-300); transform: scale(1.06); }
.step h3 { font-size: 22px; font-weight: 800; color: var(--navy-800); margin-bottom: 8px; }
.step p { color: var(--ink-soft); max-width: 300px; margin: 0 auto; }

/* ---------- Reviews ---------- */
.reviews-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 56px); }
.reviews-top .section__head { margin-bottom: 0; }
.rating-pill { display: flex; align-items: center; gap: 16px; padding: 16px 22px; border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.rating-pill__score { font-family: var(--font-display); font-weight: 900; font-size: 40px; color: var(--navy-800); line-height: 1; }
.rating-pill .stars { color: #ffb400; font-size: 18px; letter-spacing: 2px; }
.rating-pill small { display: block; color: var(--ink-soft); font-size: 14px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  position: relative; display: flex; flex-direction: column;
  padding: 30px 28px 26px; border-radius: 22px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.review:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.review__quote-mark { position: absolute; right: 22px; top: 14px; font-family: Georgia, serif; font-size: 90px; line-height: 1; color: var(--blue-50); }
.review .stars { color: #ffb400; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { margin: 0 0 22px; font-size: 18px; line-height: 1.55; color: var(--ink); font-weight: 500; position: relative; }
.review__note:empty { display: none; }
.review__note { font-size: 13px; color: var(--ink-soft); font-style: italic; margin: -12px 0 18px; }
.review__who { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px dashed var(--line); }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: var(--blue-600); flex: none; }
.review:nth-child(2) .avatar { background: var(--red-600); }
.review:nth-child(3) .avatar { background: var(--navy-700); }
.review__who strong { display: block; color: var(--navy-800); }
.review__who span span { font-size: 14px; color: var(--ink-soft); }
.source { margin-left: auto; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: var(--blue-50); color: var(--blue-600); white-space: nowrap; }

.yelp-cta {
  margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 24px 28px; border-radius: 22px;
  background: linear-gradient(120deg, #c41200, #e0271a); color: #fff;
  box-shadow: var(--shadow);
}
.yelp-cta__txt { display: flex; align-items: center; gap: 16px; }
.yelp-cta__logo { width: 52px; height: 52px; border-radius: 14px; background: #fff; display: grid; place-items: center; flex: none; }
.yelp-cta__logo svg { width: 30px; height: 30px; color: #d32323; }
.yelp-cta strong { font-family: var(--font-display); font-size: 20px; display: block; }
.yelp-cta__txt span span { color: #ffdcd6; font-size: 15px; }
.yelp-cta .btn { --bg: #fff; color: #c41200; }

/* ---------- Areas ---------- */
.areas { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.area-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.area-list li {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line); font-weight: 700; color: var(--navy-800);
  transition: transform .4s var(--ease-out), border-color .3s, box-shadow .4s;
}
.area-list li:hover { transform: translateX(6px); border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.area-list svg { width: 22px; height: 22px; color: var(--red-600); flex: none; }
.area-list li:hover svg { animation: hop .6s var(--ease-out); }
@keyframes hop { 40% { transform: translateY(-6px); } }
.map { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: var(--blue-50); border: 6px solid #fff; }
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(1.1); }

/* ---------- Contact ---------- */
.contact {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.contact .section__head h2 { color: #fff; }
.contact .section__head p { color: #c9d7f5; }
.contact .kicker { color: #ff8b8b; }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact__cards { display: grid; gap: 14px; }
.ccard {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 18px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  text-decoration: none; color: #fff;
  transition: background .3s, transform .4s var(--ease-out), border-color .3s;
}
a.ccard:hover { background: rgba(255,255,255,.12); transform: translateX(6px); border-color: rgba(255,255,255,.3); }
.ccard__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-600); flex: none; }
.ccard__icon svg { width: 24px; height: 24px; }
.ccard:first-child .ccard__icon { background: var(--red-600); }
.ccard small { display: block; color: #9fb4e0; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.ccard strong { font-family: var(--font-display); font-size: 19px; word-break: break-word; }
.hours { width: 100%; border-collapse: collapse; font-size: 15px; margin-top: 4px; }
.hours td { padding: 3px 0; color: #dbe6ff; }
.hours td:last-child { text-align: right; font-weight: 700; color: #fff; white-space: nowrap; padding-left: 10px; }
.ccard strong { overflow-wrap: anywhere; }

.form {
  padding: clamp(24px, 3.4vw, 38px); border-radius: 24px;
  background: #fff; color: var(--ink); box-shadow: var(--shadow-lg);
}
.form h3 { font-size: 26px; font-weight: 900; color: var(--navy-800); margin-bottom: 6px; }
.form > p { color: var(--ink-soft); margin-bottom: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { position: relative; margin-bottom: 14px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 22px 16px 8px; border-radius: 14px;
  border: 2px solid var(--line); background: var(--paper-2);
  font: inherit; font-size: 16px; color: var(--ink);
  transition: border-color .25s, background .25s, box-shadow .25s;
  appearance: none; -webkit-appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e2657' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 40px; }
.field label {
  position: absolute; left: 18px; top: 16px; pointer-events: none;
  color: var(--ink-soft); font-size: 16px;
  transform-origin: left top; transition: transform .25s var(--ease-out), color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(47,111,228,.15); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select + label { transform: translateY(-9px) scale(.76); color: var(--blue-600); font-weight: 700; }
.form .btn { width: 100%; min-height: 58px; font-size: 17px; }
.form__fine { margin-top: 12px; font-size: 13.5px; color: var(--ink-soft); text-align: center; }
.form__status { margin-top: 12px; font-weight: 700; color: var(--blue-600); text-align: center; min-height: 1.4em; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #b9c9ec; padding: 56px 0 110px; font-size: 15px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer__logo { background: #fff; border-radius: 16px; padding: 10px 14px; display: inline-block; margin-bottom: 16px; }
.footer__logo img { height: 64px; width: auto; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 14px; letter-spacing: .02em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a { text-decoration: none; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer__bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background .25s, transform .3s var(--ease-out); }
.social a:hover { background: var(--blue-600); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; color: #fff; }

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
  display: none; gap: 10px;
  padding: 8px; border-radius: 20px;
  background: rgba(8,26,61,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  transform: translateY(140%); transition: transform .5s var(--ease-out);
}
.callbar.is-shown { transform: none; }
.callbar .btn { flex: 1; min-height: 50px; padding: 0 12px; font-size: 15px; }

/* back-to-top progress ring */
.totop {
  position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 54px; height: 54px; border-radius: 50%;
  border: 0; background: #fff; color: var(--navy-800); box-shadow: var(--shadow);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: opacity .4s, transform .5s var(--ease-out);
}
.totop.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.totop svg.ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.totop circle { fill: none; stroke-width: 4; }
.totop .ring-bg { stroke: var(--line); }
.totop .ring-fg { stroke: var(--red-600); stroke-dasharray: 151; stroke-dashoffset: 151; stroke-linecap: round; }
.totop .arrow { width: 20px; height: 20px; }

/* ---------- Top bar live status ---------- */
.topbar__status { color: #cfdcf7 !important; font-weight: 500 !important; }
.topbar__status [data-topbar-status] { color: #fff; font-weight: 700; }
.topbar__sep { opacity: .5; }
.topbar__live.is-closed { background: #ff6b6b; animation: none; }

/* ---------- Hours ---------- */
.hours-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hours-intro__lead { color: var(--ink-soft); font-size: 18px; margin-bottom: 26px; }
.status-card {
  display: flex; align-items: center; gap: 16px; margin-bottom: 26px;
  padding: 18px 22px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.status-card__dot { width: 16px; height: 16px; border-radius: 50%; flex: none; background: #22c36b; box-shadow: 0 0 0 0 rgba(34,195,107,.55); animation: pulse-green 2s infinite; }
.status-card.is-closed .status-card__dot { background: var(--red-600); animation: none; box-shadow: 0 0 0 5px rgba(214,40,40,.15); }
.status-card.is-soon .status-card__dot { background: #f5a524; box-shadow: 0 0 0 0 rgba(245,165,36,.55); animation: pulse-amber 2s infinite; }
@keyframes pulse-green { 70% { box-shadow: 0 0 0 12px rgba(34,195,107,0); } 100% { box-shadow: 0 0 0 0 rgba(34,195,107,0); } }
@keyframes pulse-amber { 70% { box-shadow: 0 0 0 12px rgba(245,165,36,0); } 100% { box-shadow: 0 0 0 0 rgba(245,165,36,0); } }
.status-card__title { display: block; font-family: var(--font-display); font-size: 20px; color: var(--navy-800); }
.status-card__sub { display: block; color: var(--ink-soft); font-size: 15px; }

.week { background: #fff; border-radius: 24px; padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.week__head, .day { display: grid; grid-template-columns: 178px 1fr 158px; gap: 18px; align-items: center; }
.week__head { padding: 0 14px 12px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.week__head > span:last-child { text-align: right; }
.week__scale { display: flex; justify-content: space-between; letter-spacing: 0; font-weight: 700; text-transform: none; opacity: .7; }
.week__list { list-style: none; margin: 8px 0 0; padding: 0; }
.day { position: relative; padding: 13px 14px; border-radius: 14px; transition: background .3s; }
.day + .day { margin-top: 2px; }
.day__name { font-weight: 700; color: var(--navy-800); }
.day__time { text-align: right; font-weight: 700; color: var(--navy-800); font-variant-numeric: tabular-nums; white-space: nowrap; }
.day__bar { position: relative; height: 10px; border-radius: 10px; background: var(--blue-50); }
.day__bar i {   /* the open window on a 6 AM – 10 PM scale (16 hours) */
  position: absolute; top: 0; bottom: 0; border-radius: 10px;
  left: calc((var(--from) - 6) / 16 * 100%); width: calc((var(--to) - var(--from)) / 16 * 100%);
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
  transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease-out);
}
.week.is-in .day__bar i { transform: scaleX(1); }
.week.is-in .day:nth-child(2) .day__bar i { transition-delay: .07s; }
.week.is-in .day:nth-child(3) .day__bar i { transition-delay: .14s; }
.week.is-in .day:nth-child(4) .day__bar i { transition-delay: .21s; }
.week.is-in .day:nth-child(5) .day__bar i { transition-delay: .28s; }
.week.is-in .day:nth-child(6) .day__bar i { transition-delay: .35s; }
.week.is-in .day:nth-child(7) .day__bar i { transition-delay: .42s; }
.no-js .day__bar i { transform: none; }
.day__now { display: none; position: absolute; top: -6px; bottom: -6px; width: 3px; border-radius: 3px; background: var(--red-600); left: var(--now, 0%); }
.day__now::before { content: ''; position: absolute; top: -4px; left: -3px; width: 9px; height: 9px; border-radius: 50%; background: var(--red-600); }
.day.is-today { background: var(--blue-50); box-shadow: inset 4px 0 0 var(--red-600); }
.day.is-today .day__bar { background: #fff; }
.day.is-today .day__now.is-visible { display: block; }
.day.is-today .day__name::after {
  content: attr(data-today); margin-left: 8px; padding: 2px 8px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: var(--red-600); color: #fff; vertical-align: 2px;
}
.week__note { margin-top: 16px; padding: 0 14px; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Contact form additions ---------- */
a.ccard .hours td { color: #dbe6ff; }
.form-shell { position: relative; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.chips { border: 0; padding: 0; margin: 2px 0 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.chips legend { font-size: 14px; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; padding: 0; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; min-height: 42px; padding: 0 18px; border-radius: 999px;
  border: 2px solid var(--line); background: var(--paper-2); font-weight: 700; font-size: 15px; color: var(--navy-800);
  transition: background .25s, border-color .25s, color .25s, transform .3s var(--ease-out);
}
.chip:hover span { border-color: var(--blue-300); }
.chip input:checked + span { background: var(--navy-800); border-color: var(--navy-800); color: #fff; transform: scale(1.04); }
.chip input:focus-visible + span { outline: 3px solid var(--blue-500); outline-offset: 2px; }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--red-600); background: #fff6f6; }
.form__submit .spinner { display: none; width: 20px; height: 20px; border-radius: 50%; border: 3px solid rgba(255,255,255,.35); border-top-color: #fff; animation: spin .8s linear infinite; }
.form.is-sending .form__submit { pointer-events: none; opacity: .85; }
.form.is-sending .form__submit svg { display: none; }
.form.is-sending .form__submit .spinner { display: inline-block; }
.form__status.is-error { color: var(--red-600); }
.form-done {
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3.4vw, 38px); border-radius: 24px; background: #fff; color: var(--ink);
  box-shadow: var(--shadow-lg); text-align: center; animation: pop-in .7s var(--ease-out);
}
.form-done:focus { outline: none; }
.form-done h3 { font-size: 30px; font-weight: 900; color: var(--navy-800); margin: 18px 0 10px; }
.form-done p { color: var(--ink-soft); max-width: 380px; margin: 0 auto 24px; }
.form-done__check { width: 88px; height: 88px; margin: 0 auto; }
.form-done__check circle { fill: #e8f9ef; stroke: #22c36b; stroke-width: 3; stroke-dasharray: 160; stroke-dashoffset: 160; animation: dash .7s .1s var(--ease-out) forwards; }
.form-done__check path { fill: none; stroke: #22c36b; stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: dash .5s .65s var(--ease-out) forwards; }
@keyframes dash { to { stroke-dashoffset: 0; } }
@keyframes pop-in { from { opacity: 0; transform: translateY(20px) scale(.96); } }

/* ---------- Photos ---------- */
.service__media { margin: -28px -24px 0; height: 150px; overflow: hidden; position: relative; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.service:hover .service__media img { transform: scale(1.08); }
.service__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8,26,61,.25)); }
.service__media + .service__icon { position: relative; margin-top: -30px; background: #fff; box-shadow: var(--shadow-sm); }

.about__van {
  position: absolute; left: -22px; bottom: -40px; width: 46%; border-radius: 18px; overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow-lg); transform: rotate(3deg); transition: transform .8s var(--ease-out);
}
.about__van:hover { transform: rotate(0) scale(1.04); }
.about__van img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

.photo-band {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: clamp(340px, 46vw, 520px); display: grid; place-items: center; text-align: center; color: #fff;
  padding: 64px 0;
}
.photo-band__img { position: absolute; inset: -12% 0; z-index: -2; }
.photo-band__img img { width: 100%; height: 100%; object-fit: cover; transform: translateY(var(--py, 0px)) scale(1.08); will-change: transform; }
.photo-band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,26,61,.35), rgba(8,26,61,.72)); }
.photo-band h2 { font-size: clamp(34px, 5.4vw, 64px); font-weight: 900; text-shadow: 0 4px 30px rgba(0,0,0,.35); max-width: 900px; margin: 0 auto 14px; }
.photo-band p { font-size: clamp(17px, 1.8vw, 20px); color: #e4ecff; max-width: 620px; margin: 0 auto 28px; }
.photo-band__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.photo-band__chips span { padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); font-weight: 700; }

.contact__bg { position: absolute; inset: 0; z-index: -1; opacity: .09; filter: grayscale(1); }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1180px) and (min-width: 761px) {
  .week__head, .day { grid-template-columns: 170px 1fr 150px; gap: 12px; }
}
@media (max-width: 1040px) {
  .hours-wrap { grid-template-columns: 1fr; }
  .about__van { width: 40%; left: -6px; }
}
@media (max-width: 760px) {
  .week__head, .day { grid-template-columns: 1fr auto; gap: 6px 12px; }
  .week__scale, .week__head > span:nth-child(3) { display: none; }
  .day { padding: 12px 12px; }
  .day__bar { grid-column: 1 / -1; grid-row: 2; }
  .day__time { grid-column: 2; grid-row: 1; font-size: 15px; }
  .day__name { font-size: 15.5px; }
  .service__media { margin: -22px -18px 0; height: 130px; }
  .about__van { bottom: -30px; }
  .about__media { margin-bottom: 30px; }
}
@media (max-width: 480px) {
  .service__media { height: 170px; }
}

/* iOS-style app icons on the contact cards (original drawings, not Apple artwork) */
.app-icon {
  position: relative; width: 54px; height: 54px; flex: none; border-radius: 13px;
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,.55), inset 0 0 0 .5px rgba(255,255,255,.25);
  transition: transform .45s var(--ease-out);
}
.app-icon::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.22), transparent 48%); pointer-events: none; }
.app-icon svg { width: 34px; height: 34px; position: relative; }
.app-icon--phone, .app-icon--messages { background: linear-gradient(180deg, #67f27f, #0cbd2e); }
.app-icon--mail { background: linear-gradient(180deg, #4fb0ff, #1a6cf5); }
.app-icon--clock { background: #1c1c1e; }
.app-icon--clock svg { width: 44px; height: 44px; }
a.ccard:hover .app-icon { transform: scale(1.08) rotate(-4deg); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav a { padding: 8px 7px; font-size: 14px; }
  .header .wrap { gap: 14px; }
  .services { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1040px) {
  .nav, .header .lang, .header__cta { display: none; }
  .burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin: 10px auto 0; width: 100%; }
  .float-card--a { left: -8px; }
  .float-card--b { right: -8px; }
  .about, .areas, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 560px; margin: 0 auto; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  :root { --header-h: 68px; }
  .brand img { height: 46px; }
  .topbar__hide-sm { display: none; }
  .topbar .wrap { justify-content: center; }
  .services { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service { padding: 22px 18px; }
  .service__icon { width: 50px; height: 50px; margin-bottom: 14px; }
  .service h3 { font-size: 18px; }
  .service p { font-size: 14.5px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
  .process { grid-template-columns: 1fr; gap: 36px; }
  .process__pipe { left: 50%; right: auto; top: 44px; bottom: 60px; width: 10px; height: auto; transform: translateX(-50%); }
  .process__pipe span { transform-origin: top; transform: scaleY(var(--fill, 0)); }
  .step__num { background: #fff; }
  .reviews { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .callbar { display: flex; }
  .totop { bottom: 90px; right: 14px; width: 48px; height: 48px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .about__badge { width: 108px; height: 108px; right: 4px; font-size: 13px; }
  .about__badge b { font-size: 28px; }
  .yelp-cta { padding: 22px; }
  .yelp-cta .btn { width: 100%; }
}
@media (max-width: 480px) {
  .hero__actions .btn { flex: 1 1 100%; }
  .float-card { padding: 10px 12px; font-size: 13px; }
  .float-card strong { font-size: 14.5px; }
  .float-card__icon { width: 36px; height: 36px; }
  .services { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .rating-pill { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js [data-reveal], .js .hero [data-hero], .js .hero h1 .line > span { opacity: 1; transform: none; }
  .hero h1 .underline path { stroke-dashoffset: 0; }
  .bubbles { display: none; }
}
