/* ==========================================================================
   JET PRO — Design System
   Built from STYLE-GUIDE.md. Navy authority + orange action + cyan fresh.
   ========================================================================== */

:root {
  /* Core palette */
  --navy: #00293F;
  --navy-700: #063B57;
  --navy-900: #001A29;
  --orange: #FF4F0F;
  --orange-600: #E03F05;
  --orange-ink: #C2390A; /* AA-compliant (5.4:1 on white) for small orange TEXT on light bg */
  --cyan: #2BDBFA;
  --lime: #8DC63F;

  /* Neutrals */
  --white: #FFFFFF;
  --mist: #F4F8FB;
  --silver: #D5D5D5;
  --slate: #5B6B78;
  --ink: #0E1A22;

  /* Semantic */
  --success: #2FA84F;
  --warning: #F6A609;
  --danger: #D23B2E;

  /* Type */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --container: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px -12px rgba(0, 41, 63, 0.25);
  --shadow-lg: 0 24px 60px -20px rgba(0, 41, 63, 0.35);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-hover: 200ms var(--ease);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }

/* Visible keyboard focus indicator (WCAG 2.4.7) */
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 2px; }
.section--navy :focus-visible, .hero :focus-visible, .cta-band :focus-visible { outline-color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 900; text-transform: uppercase; letter-spacing: 0.005em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1.1em; }
.lead { font-size: 1.2rem; color: var(--slate); }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.4rem, 820px); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #C4D4DE; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--orange-ink);
  margin-bottom: 0.6rem;
  display: inline-block;
}
.section--navy .eyebrow { color: var(--cyan); }
.section__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.text-center { text-align: center; }
.section__head.text-center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.18rem; letter-spacing: 0.01em; /* >=18.66px bold -> WCAG large text (3:1) so white-on-orange passes AA */
  padding: 0.8rem 1.6rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: transform var(--t-hover), background var(--t-hover), box-shadow var(--t-hover);
  text-transform: uppercase;
}
.btn--primary { background: var(--orange); color: var(--white); box-shadow: 0 8px 20px -8px rgba(255, 79, 15, 0.6); }
.btn--primary:hover { background: var(--orange-600); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.section--navy .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.5); }
.section--navy .btn--ghost:hover { background: var(--white); color: var(--navy); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #E3EBF1;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.site-logo img { max-height: 52px; width: auto; display: block; }
.site-logo__img { display: inline-flex; }
.site-logo .brand-text { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; text-transform: uppercase; color: var(--navy); }
.site-logo .brand-text b { color: var(--orange); }
.primary-nav ul { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.primary-nav a { font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.02em; }
.primary-nav a:hover { color: var(--orange); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone { font-family: var(--font-display); font-weight: 800; color: var(--orange-ink); font-size: 1.05rem; white-space: nowrap; }
.header-phone:hover { color: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: var(--t-hover); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(1200px 500px at 80% -10%, rgba(43,219,250,0.18), transparent 60%),
              linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%);
  z-index: 0;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--cyan); }
/* hero secondary (phone) button — must be clearly visible on the dark hero */
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06); }
.hero .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.hero .btn--ghost svg { stroke: currentColor; }
.hero__sub { font-size: 1.2rem; color: #C9D8E2; max-width: 38ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero__trust { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: 0.9rem; color: #9FB6C4; }
.hero__trust b { color: var(--white); }
.hero__media { position: relative; border-radius: var(--radius); overflow: visible; aspect-ratio: 4/3.05; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero__media::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); box-shadow: inset 0 0 0 1px rgba(43,219,250,0.25); pointer-events: none; }

/* faint real-photo wash behind the whole hero */
.hero--photo::before {
  background:
    linear-gradient(90deg, var(--navy) 38%, rgba(0,41,63,0.82) 70%, rgba(0,41,63,0.7) 100%),
    radial-gradient(1200px 500px at 80% -10%, rgba(43,219,250,0.16), transparent 60%),
    url(../img/hero-bg.jpg);
  background-size: cover; background-position: center right;
}

/* floating proof badge over hero photo */
.hero__badge { position: absolute; left: -14px; bottom: -16px; z-index: 3; display: flex; align-items: center; gap: 0.7rem; background: #fff; color: var(--navy); padding: 0.8rem 1.1rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.hero__badge-stars { color: var(--orange-ink); font-size: 1.15rem; letter-spacing: 1px; }
.hero__badge b { display: block; font-family: var(--font-display); font-size: 0.98rem; line-height: 1.1; }
.hero__badge small { color: var(--slate); font-size: 0.78rem; }

/* water spray drift accent */
.spray { position: absolute; top: 8%; right: 6%; width: 180px; max-width: 22%; opacity: 0.9; z-index: 1; pointer-events: none; }

/* hero proof card (replaces photo until real imagery is added) */
.hero__proof { position: relative; z-index: 2; }
.proof-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(43,219,250,0.25); border-radius: var(--radius); padding: 1.8rem; backdrop-filter: blur(4px); box-shadow: var(--shadow-lg); }
.proof-card__rating { display: flex; flex-direction: column; gap: 0.2rem; padding-bottom: 1.1rem; margin-bottom: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.proof-card__stars { color: var(--orange); font-size: 1.6rem; letter-spacing: 3px; line-height: 1; }
.proof-card__rating-text { color: #C9D8E2; font-size: 0.9rem; }
.proof-card__list { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: 0.85rem; }
.proof-card__list li { display: flex; gap: 0.7rem; align-items: center; color: #E4EEF4; font-size: 0.98rem; }
.proof-card__list li b { color: #fff; }
.proof-card__list svg { flex: none; stroke: var(--cyan); }
.proof-card__hours { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin: 0.9rem 0 0; font-size: 0.85rem; color: #9FB6C4; }
.proof-card__hours svg { stroke: var(--cyan); }

/* ---------- Trust band ---------- */
.trust-band { background: var(--navy-900); color: var(--white); }
.trust-band__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem, 4vw, 3rem); padding-block: 1rem; text-align: center; }
.trust-band__item { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.04em; color: #DCE7EE; }
.trust-band__item svg { width: 20px; height: 20px; stroke: var(--cyan); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid #E6EDF2; border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow);
  transition: transform var(--t-hover), box-shadow var(--t-hover);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--mist); display: grid; place-items: center; margin-bottom: 1rem; }
.card__icon svg { width: 30px; height: 30px; stroke: var(--orange); }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--slate); font-size: 0.98rem; margin-bottom: 0.8rem; }
.card__link { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; color: var(--orange-ink); }
.card__link::after { content: " →"; }

/* feature/check list */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.checklist li { display: flex; gap: 0.6rem; align-items: flex-start; }
.checklist li svg { width: 22px; height: 22px; flex: none; stroke: var(--lime); margin-top: 2px; }

/* ---------- Before/After slider ---------- */
.ba { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); user-select: none; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 3; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--white); transform: translateX(-50%); z-index: 2; box-shadow: 0 0 0 1px rgba(0,41,63,0.2); pointer-events: none; }
.ba__handle::after { content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--font-display); font-weight: 800; display: grid; place-items: center; letter-spacing: -2px; }
.ba__tag { position: absolute; bottom: 12px; z-index: 2; font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(0,26,41,0.8); color: #fff; padding: 0.3rem 0.7rem; border-radius: 999px; }
.ba__tag--before { left: 12px; }
.ba__tag--after { right: 12px; }

/* ---------- Reviews / proof ---------- */
.review { background: var(--white); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); border: 1px solid #E6EDF2; }
.review__stars { color: var(--orange-ink); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 0.6rem; }
.review p { font-size: 1rem; color: var(--ink); }
.review__name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--cyan); line-height: 1; }
.stat__label { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem; color: #B6C8D4; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--orange-ink) 0%, #A8320A 100%); color: #fff; border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.4rem); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 52ch; margin-inline: auto; }
.cta-band .btn--primary { background: var(--navy); box-shadow: none; }
.cta-band .btn--primary:hover { background: var(--navy-900); }

/* areas list */
.areas { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.areas a { background: var(--mist); border: 1px solid #E0E9F0; padding: 0.5rem 1rem; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--navy); transition: var(--t-hover); }
.areas a:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.section--navy .areas a { background: var(--navy-700); border-color: #0a4a6b; color: #fff; }
.section--navy .areas a:hover { background: var(--orange); border-color: var(--orange); }

/* ---------- Named process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); counter-reset: step; }
.process__step { position: relative; background: var(--white); border: 1px solid #E6EDF2; border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); transition: transform var(--t-hover), box-shadow var(--t-hover); }
.process__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process__num { font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; color: var(--silver); line-height: 1; }
.process__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--navy); display: grid; place-items: center; margin: 0.6rem 0 0.9rem; }
.process__icon svg { stroke: var(--cyan); }
.process__step h3 { margin-bottom: 0.4rem; }
.process__step p { color: var(--slate); font-size: 0.95rem; margin: 0; }

/* ---------- Quote form (multi-step) ---------- */
.quote-form { background: var(--white); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-lg); color: var(--ink); }
.quote-form h3 { color: var(--navy); margin-bottom: 1rem; }
.quote-form__progress { height: 6px; background: #E6EDF2; border-radius: 999px; overflow: hidden; margin-bottom: 0.6rem; }
.quote-form__progress span { display: block; height: 100%; background: var(--orange); transition: width 300ms var(--ease); }
.quote-form__stepcount { font-size: 0.82rem; color: var(--slate); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.quote-form__stepcount b { color: var(--orange); }
.quote-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 1.2rem; }
.quote-chip { display: flex; align-items: center; gap: 0.5rem; border: 1px solid #DCE6ED; border-radius: var(--radius-sm); padding: 0.7rem 0.9rem; font-size: 0.92rem; cursor: pointer; transition: var(--t-hover); }
.quote-chip:hover { border-color: var(--orange); }
.quote-chip input { accent-color: var(--orange); }
.quote-field { display: grid; gap: 0.3rem; margin-bottom: 0.9rem; }
.quote-field span { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.quote-field input, .quote-field select { padding: 0.7rem 0.8rem; border: 1px solid #DCE6ED; border-radius: var(--radius-sm); font: inherit; font-size: 0.95rem; }
.quote-field input:focus, .quote-field select:focus { outline: 2px solid var(--cyan); border-color: var(--cyan); }
.quote-form__nav { display: flex; gap: 0.7rem; justify-content: space-between; margin-top: 0.5rem; }
.quote-form__success { text-align: center; padding: 1rem 0; }
.quote-form__success svg { stroke: var(--success); width: 48px; height: 48px; margin-bottom: 0.6rem; }

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .process { grid-template-columns: 1fr; }
  .quote-options { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #AFC3D0; padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem; font-size: 0.95rem; }
.site-footer .footer-h { color: #fff; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.05em; margin-bottom: 1rem; font-family: var(--font-display); font-weight: 700; }
.site-footer a { color: #AFC3D0; }
.site-footer a:hover { color: var(--cyan); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-phone { font-family: var(--font-display); font-weight: 800; color: var(--orange) !important; font-size: 1.3rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.85rem; color: #7E97A6; }

/* ---------- Sticky mobile call bar ---------- */
.call-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none; background: var(--orange-ink); box-shadow: 0 -6px 20px -8px rgba(0,0,0,0.4); }
.call-bar a { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.95rem; color: #fff; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.call-bar svg { width: 20px; height: 20px; stroke: #fff; }

/* ---------- Breadcrumbs / page hero ---------- */
.page-hero { background: var(--navy); color: #fff; padding-block: clamp(2.5rem, 6vw, 4rem); }
.page-hero h1 { color: #fff; }
.breadcrumbs { font-size: 0.85rem; color: #9FB6C4; margin-bottom: 0.8rem; }
.breadcrumbs a { color: var(--cyan); }

/* service page hero */
.page-hero--service { position: relative; overflow: hidden; }
.page-hero--service::before { content: ""; position: absolute; inset: 0; background: var(--svc-img) center/cover no-repeat; opacity: 0.14; z-index: 0; }
.page-hero--service > .container { position: relative; z-index: 1; }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,5vw,3.5rem); align-items: center; margin-top: 0.5rem; }
.page-hero__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .page-hero__grid { grid-template-columns: 1fr; } .page-hero__media { order: 2; } }

/* semantic anchor sentence (entity-first opening line) */
.anchor-sentence { font-size: 1.15rem; color: var(--ink); border-left: 3px solid var(--orange); padding-left: 1rem; margin-bottom: 1.2rem; }
.anchor-sentence strong { font-weight: 600; }

/* result figure (single real image, replaces fake before/after) */
.result-figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.result-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* FAQ accordion */
.faq { display: grid; gap: 0.8rem; }
.faq__item { background: var(--white); border: 1px solid #E6EDF2; border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.1rem 1.3rem; font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--orange); font-size: 1.5rem; line-height: 1; flex: none; transition: transform var(--t-hover); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.3rem 1.2rem; color: var(--slate); }
.faq__a p { margin: 0; }

/* prose for content pages */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: 0.4rem; }

/* ---------- Motion (reveal) ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); }
.reveal-in { opacity: 1 !important; transform: none !important; transition: opacity 600ms var(--ease), transform 600ms var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .spray { display: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: 2; margin-top: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .primary-nav { display: none; }
  .primary-nav.open { display: block; position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid #E3EBF1; padding: 1rem 1.2rem; }
  .primary-nav.open ul { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .call-bar { display: block; }
  body { padding-bottom: 56px; }
}
