/* ==========================================================================
   Installatiebedrijf Hopman
   Kleuren afgeleid van het bedrijfslogo: blauw #0078C1, zwart #231F20.
   Signature-element: de vier ribben van de radiator uit het beeldmerk.
   ========================================================================== */

/* ---------- Fonts (zelf gehost, geen externe request) ---------- */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/barlow-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/barlow-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/barlow-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/barlowcond-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/barlowcond-700.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --blue: #0078c1;
  --blue-700: #005b93;
  --blue-800: #00466f;
  --blue-050: #eaf4fb;
  --blue-100: #cfe6f6;

  --navy: #0b1c2b;
  --navy-800: #10293d;
  --navy-700: #17384f;
  --ink: #1b2733;
  --ink-600: #46586a;
  --ink-400: #6d7f90;

  --accent: #e2571a;   /* koperoranje, CTA */
  --accent-700: #b8420f; /* donkerder, voor tekst op wit */
  --accent-050: #fdf0e9;

  --paper: #ffffff;
  --shell: #f3f6f8;
  --shell-200: #e3eaef;
  --line: #dde5eb;

  --sans: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --cond: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;

  --wrap: 1180px;
  --narrow: 760px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(11, 28, 43, .07), 0 2px 8px rgba(11, 28, 43, .05);
  --shadow-md: 0 2px 6px rgba(11, 28, 43, .08), 0 12px 28px rgba(11, 28, 43, .09);
  --shadow-lg: 0 6px 18px rgba(11, 28, 43, .10), 0 28px 60px rgba(11, 28, 43, .16);

  --bar-h: 74px;    /* hoogte sticky header */
  --callbar-h: 0px; /* wordt op mobiel gezet */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
a { color: var(--blue-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-700); }
h1, h2, h3, h4 {
  font-family: var(--cond);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.005em;
  color: var(--navy);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.35rem, 1.5rem + 3.6vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 1.3rem + 2.2vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
strong, b { font-weight: 600; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--narrow)); margin-inline: auto; }
section { padding-block: clamp(3.2rem, 6vw, 5.5rem); }
.section-shell { background: var(--shell); }
.section-navy { background: var(--navy); color: #dbe6ef; }
.section-navy h2, .section-navy h3 { color: #fff; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #fff; padding: .8rem 1.2rem;
  font-weight: 600;
}
.skip:focus { left: .5rem; top: .5rem; color: #fff; }

/* ---------- Ribben: het signature-element ---------- */
.ribs {
  display: block;
  width: 30px;
  height: 24px;   /* vier balkjes van 3px met 4px tussenruimte */
  background: repeating-linear-gradient(
    to bottom,
    var(--blue) 0 3px,
    transparent 3px 7px
  );
  margin-bottom: .95rem;
}
.ribs-light { background: repeating-linear-gradient(to bottom, #4aa8de 0 3px, transparent 3px 7px); }
.ribs-accent { background: repeating-linear-gradient(to bottom, var(--accent) 0 3px, transparent 3px 7px); }

.eyebrow {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin: 0 0 .5rem;
}
.section-navy .eyebrow { color: #6fbde9; }

.lede { font-size: 1.16rem; color: var(--ink-600); max-width: 62ch; }
.section-navy .lede { color: #b9cbdb; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: .02em;
  line-height: 1;
  padding: .95rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-700); border-color: var(--accent-700); color: #fff; }

.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--shell-200); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: #fff; }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: var(--bar-h);
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { width: 230px; height: auto; }
.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 1.13rem;
  letter-spacing: .02em;
  color: var(--navy);
  text-decoration: none;
  padding: .5rem .7rem;
  border-radius: var(--radius);
}
.site-nav a:hover { background: var(--blue-050); color: var(--blue-800); }
.site-nav a[aria-current="page"] {
  color: var(--blue-800);
  box-shadow: inset 0 -3px 0 var(--accent);
}
.header-cta { flex: none; }
.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: .5rem;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: .6rem .85rem;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: #d9e6f1;
  overflow: hidden;
  padding-block: clamp(2.6rem, 5vw, 4.6rem) clamp(2.6rem, 5vw, 4.2rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(0, 120, 193, .34) 0%, transparent 62%),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.045) 0 2px, transparent 2px 10px);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: .55rem; }
.hero h1 .hl { color: #55b0e2; }
.hero-lede { font-size: 1.2rem; color: #b6cade; max-width: 46ch; margin-bottom: 0; }
.hero .eyebrow { color: #6fbde9; }

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-photo img { width: 100%; }
.photo-tag {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--navy);
  color: #cfe0ee;
  font-family: var(--cond);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem .9rem;
  border-top-right-radius: var(--radius);
}

.trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.6rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}
.trustbar li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  font-size: 1.02rem;
  color: #cadaea;
  margin: 0;
}
.trustbar svg { width: 19px; height: 19px; color: #55b0e2; flex: none; }

/* ---------- NAP-strip ---------- */
.napstrip {
  background: var(--navy-800);
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding-block: 0;
}
.napstrip ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.napstrip li { margin: 0; border-left: 1px solid rgba(255,255,255,.09); }
.napstrip li:first-child { border-left: 0; }
.napstrip a, .napstrip .np {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 1.3rem;
  color: #d6e4f0;
  text-decoration: none;
  height: 100%;
}
.napstrip a:hover { background: rgba(255,255,255,.05); color: #fff; }
.napstrip svg { width: 22px; height: 22px; color: #55b0e2; flex: none; }
.napstrip .k {
  display: block;
  font-family: var(--cond);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #7fa5c4;
}
.napstrip .v { display: block; font-weight: 600; font-size: 1.08rem; line-height: 1.3; }

/* ---------- Sectiekop ---------- */
.section-head { max-width: 66ch; margin-bottom: clamp(1.8rem, 3vw, 2.8rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .ribs { margin-inline: auto; }

/* ---------- Dienstkaarten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.15rem;
}
@media (min-width: 900px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .18s ease, transform .18s ease;
}
.card::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--blue);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0;
  transition: opacity .18s ease;
}
a.card:hover { border-color: var(--blue-100); box-shadow: var(--shadow-md); transform: translateY(-2px); }
a.card:hover::after { opacity: 1; }
.card-icon {
  width: 46px; height: 46px;
  color: var(--blue);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--ink-600); margin-bottom: 1rem; font-size: 1.02rem; }
.card .more {
  margin-top: auto;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .03em;
  color: var(--accent-700);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
a.card:hover .more { gap: .65rem; }
.card .more svg { width: 1em; height: 1em; transition: transform .18s ease; }

/* ---------- Waarom-lijst ---------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.reasons li { margin: 0; }
.reasons h3 { font-size: 1.28rem; margin-bottom: .3rem; }
.reasons p { color: var(--ink-600); margin: 0; }
.section-navy .reasons p { color: #a9bfd2; }

/* ---------- Werkwijze (HowTo) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  list-style: none;
  counter-reset: step;
  margin: 0; padding: 0;
}
.steps li {
  position: relative;
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.3rem;
  margin: 0;
}
.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-bottom: .9rem;
  background: var(--navy);
  color: #fff;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.35rem;
  border-radius: var(--radius);
}
.steps h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.steps p { margin: 0; color: var(--ink-600); font-size: 1.01rem; }

/* ---------- Split (tekst + beeld) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: center;
}
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }

/* ---------- Werkgebied ---------- */
.places {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
}
.places li {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-weight: 500;
  font-size: 1rem;
}
.section-navy .places li { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: #dbe6ef; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(1.18rem, 1.05rem + .4vw, 1.42rem);
  line-height: 1.25;
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  margin-left: auto;
  width: 14px; height: 14px;
  margin-top: .35em;
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--blue-800); }
.faq .answer { padding: 0 0 1.3rem; max-width: 72ch; color: var(--ink-600); }
.faq .answer > :last-child { margin-bottom: 0; }

/* ---------- Contactblok ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.6rem, 3vw, 2.8rem);
}
.nap {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.75;
}
.nap dt {
  font-family: var(--cond);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-top: 1rem;
}
.section-navy .nap dt { color: #6fbde9; }
.nap dd { margin: 0; font-weight: 500; }
.nap dl { margin: 0; }

.map-link {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.map-link img { width: 100%; }
.map-link span {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.1rem;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--navy);
  border-top: 1px solid var(--line);
}
.map-link:hover span { color: var(--accent-700); }
.map-link svg { width: 1.05em; height: 1.05em; }

/* ---------- Slot-CTA ---------- */
.cta-band { background: var(--navy); color: #cddcea; position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 90% 10%, rgba(0,120,193,.32) 0%, transparent 60%);
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: #b6cade; }

/* ---------- Kruimelpad ---------- */
.crumbs {
  background: var(--shell);
  border-bottom: 1px solid var(--line);
  font-size: .97rem;
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  list-style: none;
  margin: 0; padding: .75rem 0;
}
.crumbs li { margin: 0; color: var(--ink-400); }
.crumbs li + li::before { content: "›"; margin-right: .35rem; color: var(--ink-400); }
.crumbs a { color: var(--ink-600); text-decoration: none; }
.crumbs a:hover { color: var(--accent-700); text-decoration: underline; }

/* ---------- Paginakop (subpagina's) ---------- */
.page-head {
  background: var(--navy);
  color: #b9cbdb;
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.4rem, 4.5vw, 3.8rem);
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(100% 90% at 8% 0%, rgba(0,120,193,.30) 0%, transparent 60%),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0 2px, transparent 2px 10px);
}
.page-head .wrap { position: relative; }
.page-head h1 { color: #fff; margin-bottom: .4rem; }
.page-head .lede { color: #b6cade; }
.page-head .eyebrow { color: #6fbde9; }

/* ---------- Prose ---------- */
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.7rem; }
.prose > :first-child { margin-top: 0; }
.prose ul { padding-left: 1.15em; }
.prose li::marker { color: var(--blue); }
.prose .lede { margin-bottom: 1.4rem; }

.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .55rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 11px; height: 6px;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(-45deg);
}

.callout {
  background: var(--blue-050);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.4rem;
  margin: 1.8rem 0;
}
.callout > :last-child { margin-bottom: 0; }
.callout h3 { margin-top: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #a9bfd2;
  padding-block: clamp(2.8rem, 5vw, 4rem) 0;
  font-size: 1.02rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 2.2rem;
}
.site-footer img.flogo { width: 220px; margin-bottom: 1.1rem; }
.site-footer h2 {
  font-size: 1.12rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--cond);
  font-weight: 600;
  color: #7fa5c4;
  margin-bottom: .9rem;
}
.site-footer a { color: #dbe6ef; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer address { font-style: normal; line-height: 1.75; }
.footer-social { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: 2.6rem;
  border-top: 1px solid rgba(255,255,255,.11);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: .95rem;
  color: #7f9ab2;
}
.footer-bottom a { color: #7f9ab2; }

/* ---------- Mobiele belbalk ---------- */
.callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.14);
  padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem .6rem;
  border-radius: var(--radius);
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.16rem;
  text-decoration: none;
}
.callbar .c-call { background: var(--accent); color: #fff; }
.callbar .c-mail { background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.22); }
.callbar svg { width: 1.15em; height: 1.15em; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .fcol-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .6rem 0 1rem;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
  .site-nav a { padding: .8rem .3rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.22rem; }
  .site-nav li:last-child a { border-bottom: 0; }
  .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--accent); padding-left: .8rem; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .brand img { width: 190px; }
  .napstrip ul { grid-template-columns: 1fr; }
  .napstrip li { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .napstrip li:first-child { border-top: 0; }
}

@media (max-width: 720px) {
  body { --callbar-h: 68px; padding-bottom: var(--callbar-h); }
  .callbar { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header, .callbar, .cta-band, .crumbs { display: none; }
  body { color: #000; }
}
