/* ==========================================================================
   DMV Doors & Docks — Global Stylesheet
   Brand: blue #003880 / white, black outlines (matches logo)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --blue: #003880;
  --blue-dark: #002a61;
  --blue-deep: #001d43;
  --blue-bright: #0a58c4;
  --blue-tint: #e8effa;
  --blue-tint-2: #d4e2f5;
  --ink: #10151d;
  --body: #33404f;
  --muted: #5b6a7c;
  --line: #d7dfe9;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --success: #0c7a43;
  --error: #b3261e;

  --font: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-head: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;

  --radius: 10px;
  --radius-lg: 16px;
  --outline: 2px solid var(--ink);
  --shadow-pop: 6px 6px 0 rgba(16, 21, 29, 0.9);
  --shadow-pop-sm: 4px 4px 0 rgba(16, 21, 29, 0.9);
  --shadow-soft: 0 12px 32px rgba(0, 29, 67, 0.14);
  --container: 1180px;
  --header-h: 76px;

  --dur: 0.55s;
  --ease: cubic-bezier(0.22, 0.9, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 0.5em;
  text-wrap: balance;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 700; text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--blue-bright); }

ul, ol { padding-left: 1.25rem; margin: 0 0 1.1em; }
li { margin-bottom: 0.35em; }

strong { color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--blue); color: var(--white); }

/* ---------- Utilities ---------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tint { background: var(--off-white); }
.section--blue { background: linear-gradient(160deg, var(--blue-dark), var(--blue) 55%, #0b4394); color: #dbe6f5; }
.section--blue h2, .section--blue h3 { color: var(--white); }
.section--blue p { color: #c9d8ee; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--blue);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.section--blue .eyebrow { color: #9dbdea; }
.section--blue .eyebrow::before { background: #9dbdea; }

.lead { font-size: clamp(1.1rem, 1.8vw, 1.28rem); color: var(--muted); max-width: 62ch; }
.section--blue .lead { color: #c9d8ee; }

.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.center .eyebrow::before { display: none; }
.center .eyebrow::after { display: none; }

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius);
  border: var(--outline);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s;
  will-change: transform;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-pop-sm);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--blue-bright);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-pop);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-pop-sm);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--blue);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-pop);
}

.btn--light {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.btn--light:hover,
.btn--light:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.35);
  color: var(--blue);
}

.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(16, 21, 29, 0.9); }

.btn--lg { font-size: 1.25rem; padding: 1.05rem 2.2rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: var(--outline);
  transition: box-shadow 0.25s;
}

.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(0, 29, 67, 0.12); }

.topbar {
  background: var(--blue-deep);
  color: #c8d8ef;
  font-size: 0.9rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 0.4rem;
}

.topbar a { color: var(--white); font-weight: 600; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar__badge { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar__badge svg { flex: none; }

@media (max-width: 720px) {
  .topbar__hide-sm { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.nav__logo img {
  height: 58px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list li { margin: 0; }

.nav__link {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.25rem;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}

.nav__link:hover { color: var(--blue); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--blue); }

.nav__cta { flex: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--white);
  border: var(--outline);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }

  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: var(--outline);
    box-shadow: 0 24px 40px rgba(0, 29, 67, 0.18);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
  }

  .nav__menu.is-open { display: block; }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
  }

  .nav__link { font-size: 1.25rem; padding: 0.7rem 0.6rem; }
  .nav__link::after { display: none; }
  .nav__link[aria-current="page"] { background: var(--blue-tint); }

  .nav__menu .btn { width: 100%; margin-top: 0.75rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--blue-deep);
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 22, 51, 0.93) 0%, rgba(0, 40, 92, 0.82) 45%, rgba(0, 40, 92, 0.35) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4.5rem, 11vw, 8.5rem);
  max-width: 780px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.hero h1 { color: var(--white); }
.hero h1 .accent { color: #8db8f2; }

.hero__sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #d3e0f2;
  max-width: 58ch;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero--page .hero__inner { padding-block: clamp(3.5rem, 8vw, 5.5rem); }

/* Trust bar */
.trustbar {
  background: var(--white);
  border-top: var(--outline);
  border-bottom: var(--outline);
}

.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trustbar__item {
  padding: 1.4rem 1rem;
  text-align: center;
  border-left: 1px solid var(--line);
}

.trustbar__item:first-child { border-left: 0; }

.trustbar__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--blue);
  line-height: 1;
  display: block;
}

.trustbar__label {
  font-size: 0.92rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

@media (max-width: 800px) {
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(odd) { border-left: 0; }
  .trustbar__item:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: var(--outline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-pop);
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: var(--outline);
  background: var(--blue-tint);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.card:hover .card__media img { transform: scale(1.05); }

.card__body {
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.card__body p { color: var(--muted); font-size: 1rem; flex: 1; }

.card__link {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.card__link .arrow { transition: transform 0.2s var(--ease); }
.card:hover .card__link .arrow { transform: translateX(5px); }

/* Icon feature tiles */
.tile {
  background: var(--white);
  border: var(--outline);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.tile:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-pop); }

.tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: var(--outline);
  background: var(--blue-tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.tile p { color: var(--muted); font-size: 1rem; margin: 0; }

.section--blue .tile { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.35); }
.section--blue .tile:hover { box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4); }
.section--blue .tile__icon { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.4); color: #9dc0f0; }
.section--blue .tile p { color: #c9d8ee; }

/* ---------- Split feature (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split--rev > .split__media { order: 2; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--rev > .split__media { order: 0; }
}

.split__media {
  position: relative;
}

.split__media img {
  border: var(--outline);
  border-radius: var(--radius-lg);
  box-shadow: 10px 10px 0 var(--blue);
  width: 100%;
  object-fit: cover;
}

.split__media--alt img { box-shadow: 10px 10px 0 var(--blue-tint-2); }

.split__badge {
  position: absolute;
  bottom: -1.25rem;
  right: 1.25rem;
  background: var(--blue);
  color: var(--white);
  border: var(--outline);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-pop-sm);
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0;
}

.checklist .check {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.section--blue .checklist .check { border-color: #8db8f2; color: #8db8f2; }

/* ---------- Free maintenance banner ---------- */
.freebanner {
  position: relative;
  border: var(--outline);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--blue-dark), var(--blue) 60%, var(--blue-bright));
  color: var(--white);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}

.freebanner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border: 3px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.freebanner__tag {
  display: inline-block;
  background: var(--white);
  color: var(--blue-dark);
  border: var(--outline);
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  transform: rotate(-2deg);
}

.freebanner h2, .freebanner h3 { color: var(--white); }
.freebanner p { color: #d5e2f4; max-width: 68ch; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }

.step {
  position: relative;
  padding: 1.6rem 1.5rem 1.5rem;
  background: var(--white);
  border: var(--outline);
  border-radius: var(--radius-lg);
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--blue-tint-2);
  -webkit-text-stroke: 1.5px var(--blue);
  display: block;
  margin-bottom: 0.6rem;
}

.step p { font-size: 1rem; color: var(--muted); margin: 0; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: grid; gap: 0.9rem; }

.accordion__item {
  border: var(--outline);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: 0;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.accordion__trigger:hover { color: var(--blue); }

.accordion__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.accordion__panel {
  padding: 0 1.3rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.accordion__panel.is-open { padding: 0 1.3rem 1.25rem; }
.accordion__panel p { color: var(--muted); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: var(--outline);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-pop);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-grid .form-field--full { grid-column: 1 / -1; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.form-field .req { color: var(--error); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--off-white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10, 88, 196, 0.22);
}

.form-field textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: 0.92rem; color: var(--muted); }

.form-status {
  display: none;
  border: 2px solid;
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-status.is-error { display: block; border-color: var(--error); color: var(--error); background: #fdeceb; }
.form-status.is-success { display: block; border-color: var(--success); color: var(--success); background: #e8f6ee; }

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--blue-deep);
  border-top: var(--outline);
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.cta-band h2 { color: var(--white); margin: 0 0 0.3rem; }
.cta-band p { color: #b9cce6; margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0b1420;
  color: #a8b7c9;
  font-size: 0.98rem;
}

.site-footer a { color: #dbe6f3; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-block: 3.5rem 2.5rem;
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__logo {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.5rem 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__logo img { height: 64px; width: auto; }

.footer__head {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer__list li { margin: 0; }

.footer__contact { display: grid; gap: 0.7rem; }
.footer__contact div { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer__contact svg { flex: none; margin-top: 4px; color: #7ba4dd; }

.footer__bottom {
  border-top: 1px solid #22354d;
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #7488a0;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.breadcrumbs li { margin: 0; display: flex; gap: 0.4rem; align-items: center; }
.breadcrumbs li + li::before { content: "/"; color: rgba(255,255,255,0.5); }
.breadcrumbs a { color: #b9cfec; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; color: var(--white); }
.breadcrumbs [aria-current] { color: var(--white); font-weight: 600; }

/* ---------- Areas / chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.chips li { margin: 0; }

.chip {
  display: inline-block;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  padding: 0.4rem 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.chip--blue { background: var(--blue); color: var(--white); border-color: var(--ink); }

/* ---------- Google reviews ---------- */
.greview {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  border: var(--outline);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-pop);
}

@media (max-width: 900px) {
  .greview { grid-template-columns: 1fr; text-align: center; }
  .greview__badge { margin-inline: auto; }
  .greview__actions { justify-content: center; }
}

.greview__badge {
  width: 92px;
  height: 92px;
  border: var(--outline);
  border-radius: 20px;
  background: var(--off-white);
  display: grid;
  place-items: center;
}

.greview__stars {
  display: inline-flex;
  gap: 0.25rem;
  color: #fbbc04;
  margin-bottom: 0.4rem;
}

.greview h2 { margin-bottom: 0.35rem; }
.greview p { color: var(--muted); max-width: 56ch; margin: 0; }

.greview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Emergency strip ---------- */
.pulse-dot {
  width: 11px;
  height: 11px;
  background: #ff5d5d;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 93, 93, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 93, 93, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 93, 93, 0); }
}

/* ---------- Brand logos strip ---------- */
.brandstrip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1rem;
  margin-top: 1.75rem;
}

/* ---------- Scroll reveal animations ----------
   Content is fully visible by default. The .js-anim class is added to <html>
   by main.js only when animation is safe to run, so no environment can ever
   be left with hidden content. */
html.js-anim .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--delay, 0s);
}

html.js-anim .reveal--left { transform: translateX(-30px); }
html.js-anim .reveal--right { transform: translateX(30px); }

html.js-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero entrance */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

.hero__inner > * { animation: heroUp 0.8s var(--ease) both; }
.hero__inner > *:nth-child(2) { animation-delay: 0.12s; }
.hero__inner > *:nth-child(3) { animation-delay: 0.24s; }
.hero__inner > *:nth-child(4) { animation-delay: 0.36s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js-anim .reveal { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav__toggle { display: none; }
}
