/* ==========================================================================
   Reed Works Pro Wash — stylesheet
   Design system: Trust & Authority + Conversion / Flat Design
   Type: Bebas Neue (display) + Source Sans 3 (body)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-950: #071630;
  --navy-900: #0B1F3F;
  --navy-800: #122E5C;
  --blue-700: #1E40AF;
  --blue-600: #1D4ED8;
  --blue-500: #3B82F6;
  --blue-100: #DBEAFE;
  --blue-50:  #EFF6FF;

  --accent:      #EA580C;
  --accent-hover:#F2690F;
  --accent-press:#C2410C;
  --on-accent:   #0B1220;

  /* Neutrals */
  --white: #FFFFFF;
  --fg:        #14213D;
  --fg-muted:  #475569;
  --border:    #BFDBFE;
  --border-ui: #64748B;
  --danger:    #B91C1C;
  --success:   #15803D;

  /* Focus ring — 4.5:1 on white, 4.5:1 on navy */
  --focus: #EA580C;

  /* Spacing (standard density) */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;

  --gutter: 1.25rem;
  --section-y: clamp(3.5rem, 8vw, 7rem);

  --radius:    14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --t-fast: 150ms;
  --t-base: 220ms;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Keep anchor targets clear of the sticky header. */
section[id], .field__input, .form__summary { scroll-margin-top: 96px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.6;
  color: var(--fg);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; }
ul, ol { list-style: none; padding: 0; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn--accent:focus-visible,
.callbar__btn--quote:focus-visible { outline-color: var(--on-accent); }

.skip-link {
  position: absolute; left: var(--sp-4); top: -100px; z-index: 200;
  background: var(--accent); color: var(--on-accent);
  padding: .75rem 1.25rem; border-radius: var(--radius-sm); font-weight: 700;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Icons ---------- */
.ico {
  width: 1.25em; height: 1.25em; flex: none;
  fill: none; stroke: currentColor;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.ico--lg { width: 1.75rem; height: 1.75rem; }
.ico--xl { width: 2.25rem; height: 2.25rem; stroke-width: 1.5; }

/* ---------- Layout ---------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), 1200px);
  margin-inline: auto;
}
.wrap--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--blue-50); }
.section--navy { background: var(--navy-900); color: var(--white); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: var(--sp-3);
}
.eyebrow--light { color: #93C5FD; }

.section__head { max-width: 46rem; margin-bottom: var(--sp-7); }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.125rem, 4.6vw, 3.25rem);
  line-height: 1;
  letter-spacing: .015em;
  text-wrap: balance;
  color: var(--navy-900);
}
.section__title--light { color: var(--white); }
.section__lede { margin-top: var(--sp-4); font-size: 1.125rem; color: var(--fg-muted); text-wrap: pretty; }
.section--navy .section__lede { color: #C7D6EE; }
.section__foot { margin-top: var(--sp-6); color: var(--fg-muted); }

.link {
  color: var(--blue-700); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: color var(--t-fast) var(--ease);
}
.link:hover { color: var(--accent-press); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: .75rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--accent { background: var(--accent); color: var(--on-accent); }
.btn--accent:hover { background: var(--accent-hover); }
.btn--accent:active { background: var(--accent-press); color: var(--white); }

.btn--ghost-light { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn--ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.12); }

.btn--ghost-dark { border-color: var(--border-ui); color: var(--navy-900); }
.btn--ghost-dark:hover { border-color: var(--blue-700); background: var(--blue-50); }

.btn--lg { min-height: 56px; padding: .9rem 1.75rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ---------- Utility bar ---------- */
.utility {
  background: var(--navy-950);
  color: #C7D6EE;
  font-size: .875rem;
}
.utility__inner {
  display: flex; align-items: center; gap: var(--sp-5);
  min-height: 42px; flex-wrap: wrap;
}
.utility__item { display: inline-flex; align-items: center; gap: .4rem; }
.utility__phone {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: .4rem;
  min-height: 44px; padding-inline: .25rem;   /* comfortable tap target */
  color: var(--white); font-weight: 700; text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.utility__phone:hover { color: var(--accent-hover); }
@media (max-width: 600px) {
  .utility__item--hide-sm { display: none; }
  .utility { font-size: .8125rem; }
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-base) var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 20px -12px rgba(11,31,63,.5); }

.header__inner {
  display: flex; align-items: center; gap: var(--sp-5);
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand__mark { width: auto; height: 52px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: var(--sp-6); margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: var(--sp-5); }
.nav__link {
  display: inline-block; padding: .5rem 0;
  font-weight: 600; text-decoration: none; color: var(--navy-900);
  position: relative;
  transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.nav__link:hover { color: var(--blue-700); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: var(--sp-3); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  border: 2px solid var(--border-ui);
}
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

.nav-scrim {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(7,22,48,.55);
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; z-index: 70;
    width: min(88vw, 360px);
    flex-direction: column; align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: var(--sp-6) var(--sp-5) calc(var(--sp-6) + env(safe-area-inset-bottom));
    background: var(--white);
    border-left: 1px solid var(--border);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--t-base) var(--ease);
    visibility: hidden;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; margin-top: var(--sp-6); }
  .nav__list li { border-bottom: 1px solid var(--blue-100); }
  .nav__link { display: block; padding: 1rem .25rem; font-size: 1.125rem; }
  .nav__link::after { display: none; }
  .nav__cta { flex-direction: column; align-items: stretch; margin-top: var(--sp-5); }
}
@media (prefers-reduced-motion: reduce) {
  .nav { transition: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex; align-items: center;
  min-height: clamp(560px, 78vh, 780px);
  padding-block: var(--sp-8);
  overflow: hidden;
  background: var(--navy-900);
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,22,48,.82) 0%, rgba(7,22,48,.68) 45%, rgba(7,22,48,.90) 100%),
    linear-gradient(90deg, rgba(7,22,48,.75) 0%, rgba(7,22,48,.25) 70%);
}
.hero__inner { position: relative; color: var(--white); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.875rem, 8vw, 5.75rem);
  line-height: .93;
  letter-spacing: .015em;
  text-wrap: balance;
  max-width: 16ch;
}
.hero__lede {
  margin-top: var(--sp-5);
  max-width: 44rem;
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  color: #DCE7F7;
  text-wrap: pretty;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.hero__chips {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.22);
  font-size: .9375rem; font-weight: 600; color: #DCE7F7;
}
.hero__chips li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__chips .ico { color: var(--accent-hover); stroke-width: 2.5; width: 1.05em; height: 1.05em; }

/* ---------- Trust bar ---------- */
.trust { background: var(--blue-700); color: var(--white); padding-block: var(--sp-7); }
.trust__grid {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.trust__item {
  text-align: center;
  padding-inline: var(--sp-3);
}
.trust__item .ico--xl { margin: 0 auto var(--sp-3); color: var(--accent-hover); }
.trust__stat {
  font-family: var(--font-display); font-size: 2.25rem; line-height: 1;
  letter-spacing: .02em;
}
.trust__label { margin-top: var(--sp-2); font-size: .9375rem; color: #D5E3F8; }

/* ---------- Tabs ---------- */
.tabs__list {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  border-bottom: 2px solid var(--border);
  padding-bottom: var(--sp-3);
}
.tab {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 48px; padding: .6rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  font-weight: 700; color: var(--navy-900);
  background: var(--white);
  transition: background-color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease);
}
.tab:hover { border-color: var(--blue-500); background: var(--blue-50); }
.tab[aria-selected="true"] {
  background: var(--navy-900); border-color: var(--navy-900); color: var(--white);
}
.tab[aria-selected="true"] .ico { color: var(--accent-hover); }
.tabs__panel:focus-visible { outline-offset: 6px; }

/* ---------- Cards ---------- */
.cards {
  display: grid; gap: var(--sp-4);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.section--tint .card { background: var(--white); }
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card__icon { color: var(--blue-700); margin-bottom: var(--sp-3); }
.card__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.5rem; line-height: 1.1; letter-spacing: .02em;
  color: var(--navy-900);
  margin-bottom: var(--sp-2);
}
.card__text { color: var(--fg-muted); font-size: 1rem; }
/* Standalone link at the foot of a card — not inside a sentence, so it needs a
   full 44px target rather than relying on the WCAG inline-link exception. */
.card__link {
  display: inline-flex; align-items: center;
  min-height: 44px;
  margin-top: var(--sp-2);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid; gap: var(--sp-3);
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.gallery__btn {
  position: relative; display: block; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--blue-100);
  aspect-ratio: 1 / 1;
}
.gallery__btn img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms var(--ease);
}
.gallery__btn:hover img { transform: scale(1.05); }
.gallery__zoom {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7,22,48,.55); color: var(--white);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.gallery__btn:hover .gallery__zoom,
.gallery__btn:focus-visible .gallery__zoom { opacity: 1; }

/* ---------- Before / after slider ---------- */
.compare { margin-bottom: var(--sp-7); }

.compare__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--navy-900);
  cursor: ew-resize;
  /* Vertical scrolling still belongs to the page; we only claim horizontal drags. */
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.compare__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
/* The "before" shot is revealed by clipping it back from the right edge. */
.compare__img--before { clip-path: inset(0 50% 0 0); will-change: clip-path; }

.compare__tag {
  position: absolute; top: var(--sp-4); z-index: 3;
  font-family: var(--font-display); font-size: 1.0625rem; line-height: 1;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .55rem .9rem .45rem;
  border-radius: var(--radius-pill);
  pointer-events: none;
}
.compare__tag--before { left: var(--sp-4); background: var(--navy-900); color: var(--white); }
.compare__tag--after  { right: var(--sp-4); background: var(--accent); color: var(--on-accent); }

.compare__divider {
  position: absolute; top: 0; left: 50%; z-index: 4;
  width: 3px; height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 14px rgba(7, 22, 48, .45);
}

.compare__handle {
  position: absolute; top: 50%; left: 50%; z-index: 5;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--white); color: var(--navy-900);
  box-shadow: 0 6px 18px rgba(7, 22, 48, .35);
  cursor: ew-resize;
  transition: transform var(--t-fast) var(--ease);
}
.compare__handle:hover { transform: translate(-50%, -50%) scale(1.07); }
.compare__handle:focus-visible { border-radius: var(--radius-pill); outline-offset: 3px; }
.compare__handle .ico { width: 1.1rem; height: 1.1rem; stroke-width: 2.5; }
.compare__handle .ico:first-child { transform: rotate(90deg);  margin-right: -3px; }
.compare__handle .ico:last-child  { transform: rotate(-90deg); margin-left: -3px; }

.compare__caption {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: var(--sp-3);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  font-size: .9375rem;
}
.compare__hint {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--fg-muted); font-weight: 600;
}
.compare__meta { display: flex; flex-wrap: wrap; gap: .55rem; color: var(--navy-900); font-weight: 700; }
.compare__meta span[aria-hidden] { color: var(--border-ui); font-weight: 400; }

.work__subhead {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.75rem; line-height: 1; letter-spacing: .02em;
  color: var(--navy-900);
  margin-bottom: var(--sp-4);
}

@media (max-width: 600px) {
  .compare__stage { aspect-ratio: 4 / 3; }
  .compare__handle { width: 46px; height: 46px; }
  .compare__tag { font-size: .9375rem; padding: .45rem .7rem .35rem; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-5);
  background: rgba(7,22,48,.94);
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: min(100%, 1100px); max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox__close {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.14); color: var(--white);
  transition: background-color var(--t-fast) var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.28); }

/* ---------- Process steps ---------- */
.steps {
  display: grid; gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--radius-pill);
  background: var(--accent); color: var(--on-accent);
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  margin-bottom: var(--sp-3);
}
.step__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.4375rem; letter-spacing: .02em; line-height: 1.1;
  color: var(--navy-900); margin-bottom: var(--sp-2);
}
.step__text { color: var(--fg-muted); font-size: 1rem; }

/* ---------- About ---------- */
.about {
  display: grid; gap: var(--sp-7);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .about { grid-template-columns: 1fr 1.05fr; gap: var(--sp-8); }
}
.about__media img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.about__quote { color: var(--accent-hover); margin: var(--sp-5) 0 var(--sp-3); }
.about__text { color: #D5E3F8; font-size: 1.125rem; margin-bottom: var(--sp-4); text-wrap: pretty; }
.about__sign { font-weight: 700; color: var(--white); }
.about__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

/* ---------- Service area ---------- */
.towns { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.town {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.05rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 600; font-size: .9375rem;
  color: var(--navy-900);
  white-space: nowrap;
}
.town--hq { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.town--hq .ico { color: var(--accent-hover); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: 1.15rem .25rem;
  min-height: 56px;
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.3125rem; letter-spacing: .02em; line-height: 1.2;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast) var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--blue-700); }
.faq__chev {
  color: var(--blue-700); stroke-width: 2.25;
  transition: transform var(--t-base) var(--ease);
}
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a { padding: 0 .25rem 1.35rem; max-width: 62ch; }
.faq__a p { color: var(--fg-muted); }

/* ---------- Quote / form ---------- */
.quote { background: var(--navy-900); color: var(--white); padding-block: var(--section-y); }
.quote__grid {
  display: grid; gap: var(--sp-7);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 940px) {
  .quote__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}
.quote__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.125rem, 4.6vw, 3.25rem); line-height: 1;
  letter-spacing: .015em; text-wrap: balance;
}
.quote__lede { margin-top: var(--sp-4); font-size: 1.125rem; color: #C7D6EE; }
.quote__points { margin-top: var(--sp-6); display: grid; gap: var(--sp-3); }
.quote__points li { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.quote__points .ico { color: var(--accent-hover); stroke-width: 2.5; }
.quote__direct {
  margin-top: var(--sp-6); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.2);
  display: grid; gap: var(--sp-3);
}
.quote__direct-link {
  display: flex; align-items: center; gap: .55rem;
  min-height: 44px;                            /* tap target */
  font-weight: 700; text-decoration: none; color: var(--white);
  word-break: break-word;
  transition: color var(--t-fast) var(--ease);
}
.quote__direct-link:hover { color: var(--accent-hover); }
.quote__direct-link .ico { color: var(--accent-hover); flex: none; }

.quote__formwrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--fg);
}
.form { display: grid; gap: var(--sp-4); }
.field { display: grid; gap: .35rem; }
.field-row { display: grid; gap: var(--sp-4); }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field__label { font-weight: 700; font-size: .9375rem; color: var(--navy-900); }
.req { color: var(--danger); }
.field__input {
  width: 100%; min-height: 48px;
  padding: .7rem .85rem;
  border: 1.5px solid var(--border-ui);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field__input:hover { border-color: var(--blue-600); }
.field__input:focus { border-color: var(--blue-700); box-shadow: 0 0 0 3px var(--blue-100); }
.field__input--area { min-height: 120px; resize: vertical; }
.field__input[aria-invalid="true"] { border-color: var(--danger); }
.field__input[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px #FEE2E2; }
select.field__input { cursor: pointer; }

.field__help { font-size: .875rem; color: var(--fg-muted); }
.field__err {
  display: flex; align-items: flex-start; gap: .35rem;
  font-size: .875rem; font-weight: 600; color: var(--danger);
}
.field__err[hidden] { display: none; }

.form__summary {
  border: 2px solid var(--danger);
  border-left-width: 6px;
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
  background: #FEF2F2;
}
.form__summary[hidden] { display: none; }
.form__summary-title { font-size: 1rem; color: var(--danger); margin-bottom: var(--sp-2); }
.form__summary-list { display: grid; gap: .35rem; list-style: disc; padding-left: 1.15rem; }
.form__summary-list a { color: var(--danger); font-weight: 600; text-underline-offset: 3px; }

.form__note { font-size: .875rem; color: var(--fg-muted); text-align: center; }
.form__success {
  padding: var(--sp-4); border-radius: var(--radius-sm);
  background: #ECFDF5; border: 2px solid var(--success);
  color: #14532D; font-weight: 600;
}
.form__success[hidden] { display: none; }

/* Honeypot — off-screen, not display:none, so bots still fill it */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: #C7D6EE; padding-top: var(--sp-8); }
.footer__grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-bottom: var(--sp-7);
}
.footer__logo { height: 56px; width: auto; object-fit: contain; margin-bottom: var(--sp-4); }
.footer__blurb { font-size: .9375rem; max-width: 34ch; }
.footer__head {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.25rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); margin-bottom: var(--sp-4);
}
.footer__list { display: grid; gap: .125rem; font-size: .9375rem; }
.footer__list a, .footer__list span {
  display: flex; align-items: center; gap: .5rem;
  min-height: 44px;                            /* tap target */
  text-decoration: none; color: #C7D6EE;
  transition: color var(--t-fast) var(--ease);
}
.footer__list a:hover { color: var(--accent-hover); }
.footer__list--contact .ico { color: var(--blue-500); flex: none; }
.footer__list--contact a { word-break: break-word; }
.footer__cta { margin-top: var(--sp-5); }

.social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.social__link {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  transition: background-color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.social__link:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

.footer__base {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5);
  justify-content: space-between;
  padding-block: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .875rem;
}

/* ---------- Mobile sticky call bar ---------- */
.callbar {
  position: fixed; z-index: 50;
  left: 0; right: 0; bottom: 0;
  display: none;
  gap: 1px;
  background: rgba(255,255,255,.2);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -6px 24px -12px rgba(7,22,48,.7);
}
.callbar__btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 56px;
  font-weight: 700; text-decoration: none;
}
.callbar__btn--call { background: var(--navy-900); color: var(--white); }
.callbar__btn--quote { background: var(--accent); color: var(--on-accent); }

@media (max-width: 767px) {
  .callbar { display: flex; }
  body { padding-bottom: 56px; }
}

/* ---------- Scroll reveal ----------
   Scoped to .js so that if the script fails to load, nothing is ever hidden. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Stagger children of grids that reveal as a unit */
.trust__item.reveal:nth-child(2) { transition-delay: 70ms; }
.trust__item.reveal:nth-child(3) { transition-delay: 140ms; }
.trust__item.reveal:nth-child(4) { transition-delay: 210ms; }
.step.reveal:nth-child(2) { transition-delay: 70ms; }
.step.reveal:nth-child(3) { transition-delay: 140ms; }
.step.reveal:nth-child(4) { transition-delay: 210ms; }

/* ---------- 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 .reveal { opacity: 1; transform: none; }
  .gallery__btn:hover img { transform: none; }
  .card:hover { transform: none; }
}

/* ---------- Contact page ---------- */
.pagehead {
  background: var(--navy-900); color: var(--white);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.pagehead__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4rem); line-height: .95; letter-spacing: .015em;
}
.pagehead__lede { margin-top: var(--sp-4); max-width: 44rem; font-size: 1.125rem; color: #C7D6EE; }

.contact__grid {
  display: grid; gap: var(--sp-7);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 940px) {
  .contact__grid { grid-template-columns: 1fr 1.1fr; gap: var(--sp-8); }
}
.contact__card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  background: var(--blue-50);
}
.contact__list { display: grid; gap: var(--sp-4); margin-top: var(--sp-4); }
.contact__row { display: flex; gap: var(--sp-3); align-items: flex-start; }
.contact__row .ico { color: var(--blue-700); margin-top: .2rem; flex: none; }
.contact__row-label { font-weight: 700; color: var(--navy-900); font-size: .9375rem; }
.contact__row-value { color: var(--fg-muted); word-break: break-word; }
.contact__row-value a { color: var(--blue-700); font-weight: 600; text-underline-offset: 3px; }
.contact__formwrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
}
