/* =====================================================================
   Van den Bogaart Gevelrenovatie — design system
   Aesthetic: "vakmanschap editorial" — deep navy + warm amber + brick clay.
   Type: Archivo (display) / Figtree (body). Mobile-first.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --navy-900: #121b26;
  --navy-800: #16212e;
  --navy-700: #1d2c3d;
  --navy-600: #28394d;
  --amber:    #e8721e;
  --amber-600:#cf6112;
  --amber-50: #fbeede;
  --clay:     #b5532a;   /* brick accent */
  --ink:      #1a1a1a;
  --muted:    #5d6670;
  --line:     #e3ddd4;
  --paper:    #f7f4ef;   /* warm off-white */
  --paper-2:  #efe9e0;
  --white:    #ffffff;
  --green:    #2f9e54;
  --red:      #d23b3b;
  --star:     #f5a623;

  /* type */
  --display: "Archivo", system-ui, sans-serif;
  --body: "Figtree", system-ui, sans-serif;

  /* rhythm */
  --container: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(18,27,38,.07);
  --shadow-md: 0 14px 40px -16px rgba(18,27,38,.35);
  --shadow-lg: 0 30px 70px -24px rgba(18,27,38,.45);
  --ring: 0 0 0 3px rgba(232,114,30,.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--navy-800);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); letter-spacing: -.01em; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--paper2 { background: var(--paper-2); }
.section--navy { background: var(--navy-800); color: #dfe6ee; }
.section--navy h2, .section--navy h3 { color: #fff; }
.grid { display: grid; gap: var(--gap); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }

/* eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display);
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--amber); display: inline-block; }
.section--navy .eyebrow { color: var(--amber); }
.section-head { max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1.1rem; }
.section--navy .section-head p { color: #b6c2cf; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--amber);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  padding: .9rem 1.5rem; border-radius: var(--radius); border: 2px solid transparent;
  background: var(--bg); color: #fff; min-height: 52px;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 22px -10px rgba(232,114,30,.7);
}
.btn:hover { background: var(--amber-600); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.075rem; min-height: 58px; }
.btn--block { width: 100%; }
.btn--ghost {
  background: transparent; color: var(--navy-800); border-color: rgba(26,37,51,.25);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(26,37,51,.06); border-color: var(--navy-700); }
.section--navy .btn--ghost, .on-dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.section--navy .btn--ghost:hover, .on-dark .btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn svg { width: 18px; height: 18px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem; font-family: var(--display);
  font-weight: 700; color: var(--clay);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900); color: #cfd8e2; font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .45rem 0; }
.topbar__promos { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar__promos li { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__promos svg { width: 14px; height: 14px; color: var(--amber); }
.topbar__phones { display: flex; gap: 1.1rem; font-weight: 600; }
.topbar__phones a { color: #fff; display: inline-flex; align-items: center; gap: .4rem; }
.topbar__phones svg { width: 14px; height: 14px; color: var(--amber); }
@media (max-width: 860px) { .topbar { display: none; } }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--navy-700);
  padding: .55rem .7rem; border-radius: 5px; position: relative;
}
.nav a:hover { color: var(--amber-600); background: var(--amber-50); }
.nav a[aria-current="page"] { color: var(--amber-600); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .25rem; height: 2px; background: var(--amber);
}
.header__cta { display: flex; align-items: center; gap: .75rem; }
.header__phone {
  font-family: var(--display); font-weight: 800; color: var(--navy-800); white-space: nowrap;
  display: inline-flex; align-items: center; gap: .45rem;
}
.header__phone svg { width: 18px; height: 18px; color: var(--amber); }
.nav-toggle { display: none; }

@media (max-width: 1040px) {
  .header__phone span { display: none; }
}
@media (max-width: 960px) {
  .nav, .header__cta .btn { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--navy-800);
  }
  .nav-toggle svg { width: 24px; height: 24px; }
}

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 80; background: var(--navy-800); color: #fff;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 1.1rem; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mobile-nav__top button { background: none; border: none; color: #fff; width: 48px; height: 48px; }
.mobile-nav__top svg { width: 28px; height: 28px; }
.mobile-nav a.m-link {
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; padding: .85rem .2rem;
  border-bottom: 1px solid rgba(255,255,255,.1); color: #fff;
}
.mobile-nav a.m-link:active { color: var(--amber); }
.mobile-nav__foot { margin-top: auto; display: grid; gap: .7rem; padding-top: 1.5rem; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-800); color: #e7edf3; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(232,114,30,.18), transparent 60%),
    radial-gradient(700px 600px at -10% 110%, rgba(181,83,42,.16), transparent 60%);
}
.hero__inner {
  position: relative; display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .hero__inner { grid-template-columns: 1.05fr 1fr; } }
.hero__rating { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem; font-weight: 600; color: #cdd7e1; }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 .accent { color: var(--amber); }
.hero__lead { font-size: 1.18rem; color: #c4cfda; max-width: 46ch; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }
.hero__assurance { display: flex; align-items: center; gap: .55rem; font-size: .95rem; color: #aebccb; }
.hero__assurance svg { width: 18px; height: 18px; color: var(--amber); }

/* stars */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; color: var(--star); }

/* ---------- Before/After slider ---------- */
.ba {
  position: relative; width: 100%; aspect-ratio: 4 / 3.1; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; touch-action: pan-y; background: #0d141d;
  --pos: 50%;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos)); }
.ba__tag {
  position: absolute; top: 14px; z-index: 3; font-family: var(--display); font-weight: 800;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #fff;
  background: rgba(18,27,38,.78); padding: .35rem .65rem; border-radius: 4px; backdrop-filter: blur(2px);
}
.ba__tag--voor { left: 14px; }
.ba__tag--na { right: 14px; background: var(--amber); }
.ba__divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; background: #fff; z-index: 4; transform: translateX(-50%); box-shadow: 0 0 14px rgba(0,0,0,.4); }
.ba__handle {
  position: absolute; top: 50%; left: var(--pos); z-index: 5; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--navy-800);
  display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,.35); cursor: ew-resize;
}
.ba__handle svg { width: 26px; height: 26px; }
.ba__range { position: absolute; inset: 0; z-index: 6; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba__hint {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 3;
  font-size: .8rem; color: #fff; background: rgba(18,27,38,.6); padding: .3rem .8rem; border-radius: 20px;
  pointer-events: none; transition: opacity .3s ease;
}
.ba.interacted .ba__hint { opacity: 0; }
.ba-cta { margin-top: 1.1rem; text-align: center; }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy-900); color: #fff; border-block: 1px solid rgba(255,255,255,.06); }
.trust__list { display: flex; flex-wrap: wrap; gap: .4rem 2rem; justify-content: center; padding: 1rem 0; }
.trust__list li { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 600; font-size: .95rem; }
.trust__list svg { width: 18px; height: 18px; color: var(--amber); flex: none; }
@media (max-width: 720px) {
  .trust__list { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-inline: 1.2rem; -webkit-overflow-scrolling: touch; }
  .trust__list li { white-space: nowrap; }
}

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--white); padding: 1.8rem 1.4rem; text-align: center; }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--navy-800); line-height: 1; }
.stat__num .u { color: var(--amber); }
.stat__label { color: var(--muted); margin-top: .5rem; font-size: .95rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } .cards--4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem;
  display: flex; flex-direction: column; gap: .7rem; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d6cdbf; }
.card__icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: var(--amber-50); color: var(--clay); margin-bottom: .3rem; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { color: var(--navy-800); }
.card p { color: var(--muted); font-size: .98rem; }
.card .link-arrow { margin-top: auto; padding-top: .4rem; }

/* ---------- Split feature (100m²) ---------- */
.split { display: grid; gap: clamp(2rem,5vw,4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 920px) { .split { grid-template-columns: 1fr 1fr; } .split--rev > .split__media { order: 2; } }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media-badge {
  position: absolute; left: 18px; bottom: 18px; background: var(--amber); color: #fff;
  font-family: var(--display); font-weight: 800; padding: .7rem 1rem; border-radius: 10px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; line-height: 1.05;
}
.media-badge b { font-size: 1.6rem; }
.media-badge span { font-size: .78rem; font-weight: 600; letter-spacing: .03em; opacity: .92; }
.checklist { display: grid; gap: .85rem; margin: 1.4rem 0; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 2px; }
.checklist b { color: var(--navy-800); }

/* ---------- Reviews ---------- */
.review-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.4rem; margin-bottom: 2.4rem; }
.review-score { font-family: var(--display); font-weight: 800; font-size: 3rem; color: var(--navy-800); line-height: 1; }
.review-meta { color: var(--muted); }
.review-meta .g { font-weight: 700; color: var(--navy-700); }
.quotes { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .9rem; }
.quote p { font-size: 1.02rem; }
.quote__by { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.quote__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-700); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; }
.quote__by b { color: var(--navy-800); display: block; }
.quote__by span { color: var(--muted); font-size: .88rem; }

/* ---------- Project gallery ---------- */
.projects { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .projects { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .projects--3 { grid-template-columns: repeat(3, 1fr); } }
.project { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project:hover img { transform: scale(1.05); }
.project__cap {
  position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem 1.1rem .9rem;
  background: linear-gradient(transparent, rgba(18,27,38,.85)); color: #fff;
}
.project__cap b { font-family: var(--display); font-size: 1.05rem; }
.project__cap span { display: block; font-size: .82rem; color: #c9d3dd; }
.tag-pill { position: absolute; top: 12px; left: 12px; background: var(--amber); color: #fff; font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 4px; }

/* ---------- Certificaten / badges ---------- */
.badges { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 760px) { .badges { grid-template-columns: repeat(4,1fr); } }
.badge {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.badge__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--navy-800); color: var(--amber); display: grid; place-items: center; }
.badge__icon svg { width: 28px; height: 28px; }
.badge b { font-family: var(--display); color: var(--navy-800); }
.badge span { font-size: .85rem; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; color: #fff; overflow: hidden; }
.cta-banner__bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(18,27,38,.94) 30%, rgba(18,27,38,.62)); z-index: 1; }
.cta-banner__inner { position: relative; z-index: 2; padding-block: clamp(3.5rem, 7vw, 6rem); }
.cta-banner h2 { color: #fff; max-width: 18ch; }
.cta-banner p { color: #cdd7e1; max-width: 50ch; margin: 1rem 0 1.8rem; font-size: 1.15rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(1.4rem, 3vw, 2.4rem); }
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-grid { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-family: var(--display); font-weight: 600; font-size: .92rem; color: var(--navy-800); }
.field label .req { color: var(--clay); }
.field .hint { font-size: .82rem; color: var(--muted); }
.field input, .field textarea {
  font: inherit; font-size: 1rem; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--paper); color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--amber); background: #fff; box-shadow: 0 0 0 3px rgba(232,114,30,.16); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:user-invalid { border-color: var(--red); }
.field .error { color: var(--red); font-size: .82rem; min-height: 0; display: none; }
.field.invalid .error { display: block; }
.field.invalid input, .field.invalid textarea { border-color: var(--red); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; display: flex; gap: .5rem; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; color: var(--green); flex: none; margin-top: 3px; }
.form-success {
  display: none; background: #eef8f1; border: 1.5px solid #bfe3cb; color: #1d6b38; border-radius: var(--radius);
  padding: 1.1rem 1.2rem; gap: .7rem; align-items: flex-start; font-weight: 500;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; color: var(--green); flex: none; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; max-width: 800px; margin-inline: auto; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--display); font-weight: 700; color: var(--navy-800); display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; color: var(--amber); transition: transform .2s ease; flex: none; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq__body { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--navy-800); color: #dbe3ec; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 90% -20%, rgba(232,114,30,.16), transparent 60%); }
.page-hero__inner { position: relative; padding-block: clamp(2.6rem, 6vw, 4.4rem); }
.breadcrumb { font-size: .85rem; color: #93a3b3; margin-bottom: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--amber); }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: #b9c5d2; max-width: 56ch; margin-top: 1rem; font-size: 1.12rem; }

/* prose */
.prose p { margin-bottom: 1.1rem; color: #33404d; }
.prose h2 { margin: 2rem 0 .8rem; }
.prose h3 { margin: 1.6rem 0 .6rem; color: var(--navy-800); }
.prose ul.bul { display: grid; gap: .6rem; margin: 1rem 0 1.4rem; }
.prose ul.bul li { display: flex; gap: .6rem; }
.prose ul.bul svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 3px; }
.steps { counter-reset: s; display: grid; gap: 1rem; margin: 1.2rem 0; }
.steps li { display: flex; gap: 1rem; align-items: flex-start; }
.steps li::before { counter-increment: s; content: counter(s); font-family: var(--display); font-weight: 800; background: var(--navy-800); color: #fff; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.steps li b { color: var(--navy-800); display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #aab6c2; padding-block: clamp(3rem,6vw,4.5rem) 0; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer a:hover { color: var(--amber); }
.footer__brand img { height: 54px; background: #fff; padding: 8px 12px; border-radius: 8px; margin-bottom: 1rem; }
.footer__brand p { font-size: .95rem; max-width: 38ch; }
.footer ul.links { display: grid; gap: .6rem; }
.footer .nap { display: grid; gap: .5rem; font-size: .95rem; }
.footer .nap a { color: #fff; font-weight: 600; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 2.5rem; padding: 1.3rem 0; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .85rem; color: #7f8d9b; }

/* ---------- Sticky mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 720px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    box-shadow: 0 -8px 24px rgba(18,27,38,.22);
  }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; font-family: var(--display); font-weight: 700; color: #fff; }
  .callbar a svg { width: 20px; height: 20px; }
  .callbar .c-call { background: var(--navy-800); }
  .callbar .c-quote { background: var(--amber); }
  body { padding-bottom: 60px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover, .project:hover img { transform: none; }
}

/* utilities */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--muted); }
.flex-cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--amber); color: #fff; padding: .7rem 1rem; z-index: 200; border-radius: 0 0 6px 0; }
.skip-link:focus { left: 0; }
