/* ============================================================
   JG PRESSURE WASHING LLC — "Clean & Bright Blue"
   Light system: paper white, deep navy, royal blue, cyan spray.
   Libre Franklin (display) + Public Sans (body).
   Plain CSS, no build step. Deploys to Netlify (publish .).
   ============================================================ */
:root {
  --navy: #0E2A52;
  --navy-deep: #081D3A;
  --navy-ink: #11294B;
  --blue: #2C74C9;
  --blue-deep: #1C5AA6;
  --spray: #37A9E6;
  --spray-deep: #1583C2;

  --paper: #FFFFFF;
  --cloud: #F7FAFD;
  --mist: #EDF3FA;
  --mist-2: #E0EAF5;
  --ink: #14233B;
  --slate: #56677F;
  --line: #DCE6F0;
  --line-strong: #C6D5E6;

  --maxw: 1240px;
  --pad: clamp(1rem, 4vw, 3rem);
  --r: 18px;
  --shadow: 0 18px 50px -22px rgba(11, 44, 91, .35);
  --shadow-sm: 0 8px 24px -14px rgba(11, 44, 91, .4);

  --font-head: "Libre Franklin", "Helvetica Neue", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.02em;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 7.4vw, 6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); letter-spacing: -.01em; }
h4 { font-size: 1.05rem; letter-spacing: .01em; }
p { color: var(--slate); }
strong { font-weight: 700; color: var(--ink); }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); position: relative; }
.sect { padding-block: clamp(3.6rem, 9vw, 7.5rem); position: relative; }
.sect--mist { background: var(--mist); }
.sect--cloud { background: var(--cloud); }
.sect--navy { background: var(--navy-deep); color: #EAF1FA; }
.sect--navy h2, .sect--navy h3, .sect--navy h4 { color: #fff; }
.sect--navy p { color: #B7C6DC; }

.accent-blue { color: var(--blue); }
.accent-spray { color: var(--spray); }
.accent-navy { color: var(--navy); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 1.15rem;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--blue); border-radius: 2px; }
.eyebrow--spray { color: var(--spray-deep); }
.eyebrow--spray::before { background: var(--spray); }
.sect--navy .eyebrow { color: #6FC4ED; }
.sect--navy .eyebrow::before { background: var(--spray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 800; font-size: .98rem;
  letter-spacing: .01em;
  padding: .92rem 1.5rem; border-radius: 999px;
  background: var(--blue); color: #fff; border: 2px solid var(--blue);
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 24px -12px rgba(44, 116, 201, .7);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(44, 116, 201, .75); background: var(--blue-deep); }
.btn span { transition: transform .2s ease; }
.btn:hover span { transform: translateX(3px); }
.btn--navy { background: var(--navy); border-color: var(--navy); box-shadow: 0 10px 24px -12px rgba(11, 44, 91, .7); }
.btn--navy:hover { background: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); box-shadow: none; }
.btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.sect--navy .btn--ghost { color: #fff; border-color: rgba(255,255,255,.32); }
.sect--navy .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .65rem; }
.nav__logo img { height: 50px; width: auto; }
.nav__tog {
  display: none; background: none; border: 0; font-size: 1.6rem; color: var(--navy);
  cursor: pointer; line-height: 1; padding: .25rem .4rem;
}
.nav__links { list-style: none; display: flex; align-items: center; gap: 1.7rem; }
.nav__links a {
  font-weight: 600; font-size: .96rem; color: var(--navy-ink);
  position: relative; padding-block: .3rem; transition: color .15s ease;
}
.nav__links a:hover { color: var(--blue); }
.nav__links a[aria-current="page"] { color: var(--blue); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--blue); border-radius: 2px;
}
.nav__cta {
  background: var(--blue); color: #fff !important; padding: .6rem 1.15rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 800; box-shadow: 0 8px 20px -10px rgba(44,116,201,.7);
}
.nav__cta:hover { background: var(--blue-deep); }

/* ---------- Top strip ---------- */
.strip {
  background: var(--navy-deep); color: #fff; font-size: .82rem; font-weight: 600;
  letter-spacing: .02em;
}
.strip__in { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; padding-block: .5rem; text-align: center; }
.strip a { color: #fff; }
.strip__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--spray); display: inline-block; }
.strip b { color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--paper); padding-block: clamp(3rem, 7vw, 6rem); }
.hero::before {
  /* faint blue spray wash */
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(43, 168, 224, .12), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(44, 116, 201, .07), transparent 60%);
}
.hero__stripes {
  position: absolute; top: 0; right: 0; width: min(46vw, 560px); height: 100%; z-index: 0;
  pointer-events: none; opacity: .9;
  -webkit-mask-image: linear-gradient(to left, #000 30%, transparent);
  mask-image: linear-gradient(to left, #000 30%, transparent);
  background: repeating-linear-gradient(
    -52deg,
    rgba(11, 44, 91, .055) 0 26px,
    transparent 26px 52px
  );
}
.hero__inner { position: relative; z-index: 2; max-width: 920px; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.6rem); align-items: center; }
.hero__copy { max-width: 640px; }
.hero__video { display: flex; justify-content: center; }
.hero__video iframe {
  width: 357px; max-width: 100%; height: 476px; display: block;
  border-radius: var(--r); overflow: hidden; background: #0B1B33;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero__media {
  position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); aspect-ratio: 5/6; background: var(--mist);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 42%; display: block; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(7,31,64,.42), rgba(7,31,64,0) 42%);
}
.hero__media-badge {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 800; font-size: .82rem; letter-spacing: .02em;
  color: #fff; background: rgba(44,116,201,.92); padding: .5rem .9rem; border-radius: 999px;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,.5);
}
.hero__media-badge svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.2; }
.hero__brand {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  letter-spacing: .16em; font-size: .82rem; color: var(--slate); margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: 0; }
.hero h1 .line { display: block; }
.hero__rule {
  width: 200px; height: 5px; margin: 1.7rem 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--spray), rgba(43,168,224,0));
  position: relative;
}
.hero__rule::after {
  content: ""; position: absolute; left: 0; top: -3px; width: 56px; height: 11px;
  border-radius: 6px; background: var(--blue);
}
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.28rem); max-width: 56ch; color: var(--slate); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; margin-top: 2.4rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.hero__trust div { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--navy-ink); font-size: .95rem; }
.hero__trust svg { width: 22px; height: 22px; stroke: var(--spray-deep); fill: none; stroke-width: 2; flex: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(var(--d, 0) * 95ms); }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } }

/* ---------- Value bar ---------- */
.bar { background: var(--navy); color: #fff; }
.bar__in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.bar__cell { padding: 1.5rem 1.2rem; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.bar__cell:last-child { border-right: 0; }
.bar__cell b { display: block; font-family: var(--font-head); font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.3rem); color: #fff; line-height: 1; }
.bar__cell b .accent { color: var(--spray); }
.bar__cell span { font-size: .82rem; color: #AFC2DA; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ---------- Section heads ---------- */
.head { max-width: 60ch; margin-bottom: 2.6rem; }
.head h2 { margin-bottom: 1rem; }
.head p { font-size: 1.08rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.9rem 1.7rem; position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--blue), var(--navy)); transform: scaleY(0); transform-origin: top;
  transition: transform .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--mist-2); }
.card:hover::before { transform: scaleY(1); }
.card h3 { margin-bottom: .55rem; }
.card h3::before {
  content: ""; display: block; width: 34px; height: 4px; border-radius: 3px;
  background: var(--blue); margin-bottom: 1.1rem;
}
.card:nth-child(3n+2) h3::before { background: var(--navy); }
.card:nth-child(3n) h3::before { background: var(--spray); }
.card p { font-size: .97rem; }
.card__list { list-style: none; margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.card__list li { font-size: .8rem; font-weight: 600; color: var(--navy); background: var(--mist); padding: .3rem .7rem; border-radius: 999px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.step { position: relative; padding-top: 1.4rem; }
.step__num { font-family: var(--font-head); font-weight: 900; font-size: 2.6rem; color: var(--mist-2); line-height: 1; margin-bottom: .5rem; }
.step h4 { color: var(--navy); margin-bottom: .4rem; font-size: 1.15rem; }
.step p { font-size: .95rem; }
.sect--navy .step__num { color: rgba(255,255,255,.16); }

/* ---------- Why tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.tile {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 1.5rem 1.6rem;
}
.tile__ico { width: 46px; height: 46px; flex: none; border-radius: 11px; background: rgba(43,168,224,.18); display: grid; place-items: center; }
.tile__ico svg { width: 24px; height: 24px; stroke: var(--spray); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.tile h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.tile p { font-size: .95rem; }

/* ---------- Split feature panel ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.panel {
  border-radius: var(--r); overflow: hidden; position: relative;
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: #fff; padding: 2.4rem; min-height: 360px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.panel::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.05) 0 8px, transparent 8px 26px);
  -webkit-mask-image: radial-gradient(120% 90% at 80% 0%, #000, transparent 70%);
  mask-image: radial-gradient(120% 90% at 80% 0%, #000, transparent 70%);
}
.panel__spray { position: absolute; top: 1.8rem; right: 1.8rem; width: 110px; height: 110px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, var(--spray), transparent 65%); opacity: .55; filter: blur(2px); }
.panel__ba { position: relative; z-index: 2; display: inline-flex; gap: .5rem; margin-bottom: auto; }
.panel__ba span { font-family: var(--font-head); font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px; }
.panel__ba .before { background: rgba(255,255,255,.14); color: #fff; }
.panel__ba .after { background: var(--spray); color: var(--navy-deep); }
.panel h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2.1rem); position: relative; z-index: 2; }
.panel p { color: #C3D3E8; position: relative; z-index: 2; margin-top: .6rem; }
.panel p:has(.btn) { margin-top: 1.2rem; }
.panel .btn { position: relative; z-index: 2; }
.panel .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.panel .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- Real photos ---------- */
.feature-photo {
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); position: relative; aspect-ratio: 4/5; background: var(--mist);
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-photo__tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  font-family: var(--font-head); font-weight: 800; font-size: .76rem; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; background: rgba(7,31,64,.82); padding: .4rem .85rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---------- Before / After gallery ---------- */
.ba-feature {
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line);
  margin-bottom: 1.4rem; line-height: 0;
}
.ba-feature img { width: 100%; display: block; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.ba-card { display: flex; flex-direction: column; }
.ba-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--paper);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.ba-cell { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.ba-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-pair--solo { grid-template-columns: 1fr; }
.ba-pair--solo .ba-cell { aspect-ratio: 8/5; }
.ba-tag {
  position: absolute; bottom: .55rem; left: .55rem; z-index: 2;
  font-family: var(--font-head); font-weight: 800; font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; padding: .28rem .6rem; border-radius: 999px; color: #fff;
}
.ba-tag--before { background: rgba(7,31,64,.85); }
.ba-tag--after { background: var(--spray); color: var(--navy-deep); }
.ba-cap { margin-top: .95rem; }
.ba-cap b { font-family: var(--font-head); color: var(--navy); font-size: 1.08rem; display: block; }
.ba-cap span { color: var(--slate); font-size: .94rem; }

/* ---------- Checklist ---------- */
.check { list-style: none; display: grid; gap: .85rem; margin-top: 1.4rem; }
.check li { display: flex; gap: .75rem; align-items: flex-start; font-size: 1.02rem; color: var(--ink); }
.check svg { width: 22px; height: 22px; flex: none; margin-top: .15rem; }

/* ---------- Service area grid ---------- */
.cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.city {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: .9rem 1.1rem; font-weight: 700; color: var(--navy); font-family: var(--font-head);
  display: flex; align-items: center; gap: .55rem; transition: background .15s ease, border-color .15s ease;
}
.city::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex: none; }
.city:nth-child(3n)::before { background: var(--spray); }
.city:nth-child(3n+2)::before { background: var(--navy); }
.city:hover { background: var(--mist); border-color: var(--mist-2); }

/* ---------- Big CTA band ---------- */
.cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff; border-radius: var(--r); padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.cta::before {
  content: ""; position: absolute; inset: 0; opacity: .25;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 2px, transparent 2px 30px);
  -webkit-mask-image: radial-gradient(80% 120% at 50% 0%, #000, transparent 70%);
  mask-image: radial-gradient(80% 120% at 50% 0%, #000, transparent 70%);
}
.cta h2 { color: #fff; position: relative; z-index: 2; }
.cta p { color: rgba(255,255,255,.9); position: relative; z-index: 2; max-width: 52ch; margin: 1rem auto 1.8rem; font-size: 1.1rem; }
.cta__btns { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.cta .btn { background: #fff; color: var(--blue); border-color: #fff; box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }
.cta .btn:hover { background: var(--navy-deep); color: #fff; border-color: var(--navy-deep); }
.cta .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); box-shadow: none; }
.cta .btn--ghost:hover { background: #fff; color: var(--blue); }

/* ---------- Sub-hero (interior pages) ---------- */
.subhero { background: var(--navy-deep); color: #fff; padding-block: clamp(2.6rem, 6vw, 4.6rem); position: relative; overflow: hidden; }
.subhero::before {
  content: ""; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: repeating-linear-gradient(-52deg, rgba(255,255,255,.05) 0 24px, transparent 24px 48px);
  -webkit-mask-image: linear-gradient(to left, #000, transparent);
  mask-image: linear-gradient(to left, #000, transparent);
}
.subhero h1 { color: #fff; position: relative; z-index: 2; }
.subhero .eyebrow { color: #6FC4ED; position: relative; z-index: 2; }
.subhero .eyebrow::before { background: var(--spray); }
.subhero p { color: #B7C6DC; position: relative; z-index: 2; max-width: 58ch; margin-top: 1.2rem; font-size: 1.1rem; }

/* ---------- Stat row ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem; text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--navy); line-height: 1; }
.stat b .accent { color: var(--blue); }
.stat span { color: var(--slate); font-weight: 600; font-size: .92rem; }

/* ---------- Prose ---------- */
.prose { max-width: 70ch; }
.prose p { font-size: 1.08rem; margin-bottom: 1.15rem; color: var(--slate); }
.prose p strong { color: var(--navy); }

/* ---------- Forms ---------- */
.contact-split { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form label, .form .lab { display: block; font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: .4rem; font-family: var(--font-head); }
.form input, .form textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 11px;
  padding: .8rem .95rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--spray-deep); box-shadow: 0 0 0 4px rgba(43,168,224,.16); }
.form textarea { min-height: 130px; resize: vertical; }
.form__radios { display: flex; flex-wrap: wrap; gap: .55rem; }
.form__radios label {
  font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: var(--ink);
  display: inline-flex; align-items: center; gap: .45rem; margin: 0;
  border: 1.5px solid var(--line-strong); border-radius: 999px; padding: .5rem .95rem; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.form__radios label:hover { border-color: var(--spray-deep); }
.form__radios input { width: auto; accent-color: var(--blue); }
.form__err { display: block; color: var(--blue); font-size: .82rem; font-weight: 600; margin-top: .3rem; min-height: .9rem; }
.hp { position: absolute; left: -9999px; }

/* contact aside */
.reach { background: var(--navy-deep); color: #fff; border-radius: var(--r); padding: 2rem; box-shadow: var(--shadow); }
.reach .row { padding-block: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.reach .row:first-child { padding-top: 0; }
.reach .row:last-child { border-bottom: 0; padding-bottom: 0; }
.reach h4 { color: #6FC4ED; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; margin-bottom: .4rem; }
.reach a { color: #fff; }
.reach .big { font-family: var(--font-head); font-weight: 900; font-size: 1.7rem; color: #fff; }
.reach .big:hover { color: var(--spray); }
.reach p { color: #B7C6DC; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: #C3D3E8; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__logo { display: inline-block; background: #fff; padding: .7rem .9rem; border-radius: 12px; margin-bottom: 1.1rem; }
.footer__logo img { height: 56px; width: auto; }
.footer p { color: #9FB4D0; font-size: .95rem; }
.footer h4 { color: #fff; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; margin-bottom: 1rem; }
.footer a { color: #C3D3E8; transition: color .15s ease; }
.footer a:hover { color: var(--spray); }
.footer__nav { list-style: none; display: grid; gap: .55rem; }
.footer__legal {
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.5rem; font-size: .85rem; color: #8AA1C0;
}
.footer__legal a { color: #8AA1C0; }
.footer__legal a:hover { color: #fff; }
.badge { font-family: var(--font-head); font-weight: 800; letter-spacing: .06em; color: #6FC4ED; text-transform: uppercase; font-size: .78rem; }

/* ---------- Mobile call/text bar ---------- */
.mbar { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .split { grid-template-columns: 1fr; }
  .panel { min-height: 280px; }
  .contact-split { grid-template-columns: 1fr; }
  .cities { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__copy { max-width: none; }
  .hero__media { aspect-ratio: 16/10; }
  .bar__in { grid-template-columns: repeat(2, 1fr); }
  .bar__cell:nth-child(2) { border-right: 0; }
  .bar__cell:nth-child(1), .bar__cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 720px) {
  .nav__tog { display: block; position: relative; z-index: 70; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px);
    background: #fff; flex-direction: column; align-items: flex-start; gap: 0;
    padding: 5rem 1.8rem 2rem; transform: translateX(100%); transition: transform .28s ease;
    box-shadow: -20px 0 50px -20px rgba(11,44,91,.4); z-index: 60;
  }
  .nav__links--open { transform: translateX(0); }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; width: 100%; padding-block: .9rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__cta { display: inline-block; margin-top: 1rem; }

  .tiles { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .cities { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__trust { gap: 1rem 1.6rem; }

  .mbar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    box-shadow: 0 -10px 30px -12px rgba(11,44,91,.45);
  }
  .mbar a { text-align: center; padding: .95rem; font-family: var(--font-head); font-weight: 800; color: #fff; letter-spacing: .02em; }
  .mbar a:first-child { background: var(--blue); }
  .mbar a:last-child { background: var(--navy); }
  body { padding-bottom: 3.4rem; }
}

@media (max-width: 460px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
