/* ============================================================
   De Vries Installatie — preview stylesheet
   Kleuren afgeleid van het nieuwe logo:
     - Helder blauw (uit pet/gereedschapskist)
     - Zwart (DVI-tekst)
     - Wit (figuur/achtergrond)
     - Geel accent (bliksemflits op pet)
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Ethnocentric";
  src: url("../fonts/ethnocentric rg.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

/* ---------- Design tokens — officieel DVI palet ---------- */
:root {
  --c-blue:        #295DA8;   /* primair — corporate */
  --c-blue-dark:   #1F4880;
  --c-blue-deep:   #122C50;
  --c-blue-soft:   #EAF0FA;
  --c-red:         #CC1517;   /* actie — CTA / highlight */
  --c-red-dark:    #A40F11;
  --c-red-soft:    #FBE9E9;
  --c-ink:         #0E1116;
  --c-ink-soft:    #2A2F36;
  --c-muted:       #5B6470;
  --c-line:        #E4E8EE;
  --c-bg:          #FFFFFF;
  --c-bg-soft:     #F4F7FB;
  --c-accent:      var(--c-red);   /* backwards compat */

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(14,17,22,.06);
  --shadow:    0 8px 24px rgba(14,17,22,.08);
  --shadow-lg: 0 20px 60px rgba(14,17,22,.14);

  --container: 1180px;

  --font-body: "Gotham", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Ethnocentric", "Gotham", system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-weight: 700; color: var(--c-ink); line-height: 1.15; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); letter-spacing: -.015em; }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--soft { background: var(--c-bg-soft); }
.section__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-blue);
  font-weight: 700;
  margin-bottom: .8rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.4rem;
  font: 500 .95rem/1 var(--font-body);
  letter-spacing: .01em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--primary {
  background: var(--c-red);
  color: #fff;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}
.btn--primary:hover { background: var(--c-red-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--blue {
  background: var(--c-blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--blue:hover { background: var(--c-blue-dark); text-decoration: none; transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--c-blue);
  border-color: var(--c-blue);
  font-weight: 700;
}
.btn--outline:hover { background: var(--c-blue); color: #fff; text-decoration: none; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); text-decoration: none; }
.btn--dark {
  background: var(--c-ink);
  color: #fff;
}
.btn--dark:hover { background: #000; text-decoration: none; transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand__logo { height: 112px; width: auto; }
.brand__text { display: none; }
.site-header__inner { height: 132px; }

.nav { display: flex; gap: 1.6rem; align-items: center; }
.nav a {
  color: var(--c-ink);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 0;
  position: relative;
}
.nav a:hover { color: var(--c-blue); text-decoration: none; }
.nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--c-blue); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; color: var(--c-ink);
}
.header-phone svg { width: 18px; height: 18px; color: var(--c-blue); }

@media (max-width: 880px) {
  .nav { display: none; }
  .header-phone span { display: none; }
}

/* ---------- Hero — split layout, licht thema ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}
.hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: stretch;
  min-height: clamp(560px, 72vh, 720px);
}

/* ---- Linker (copy) kolom ---- */
.hero__copy {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem) max(2.5rem, calc((100vw - var(--container)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(600px 400px at 0% 0%, var(--c-blue-soft), transparent 60%),
    #fff;
}
.hero__copy::before {
  /* Subtiele technical grid op de tekstkolom */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(41,93,168,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,93,168,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 80% 100%, transparent 0%, #000 50%);
  pointer-events: none;
}
.hero__copy-inner { position: relative; max-width: 580px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--font-display);
  color: var(--c-blue);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero__eyebrow::before {
  content: "";
  width: 36px; height: 2px; background: var(--c-red);
}

.hero h1 {
  color: var(--c-ink);
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  letter-spacing: -.025em;
  line-height: 1.04;
  margin-bottom: 1.4rem;
  font-weight: 700;
}
.hero h1 .line { display: block; }
.hero h1 .accent { color: var(--c-red); }
.hero h1 .stroke {
  position: relative;
  display: inline-block;
}
.hero h1 .stroke::after {
  content: "";
  position: absolute; left: -2%; right: -2%; bottom: 6%;
  height: .26em;
  background: var(--c-blue);
  z-index: -1;
  transform: skewX(-8deg);
  opacity: .18;
}

.hero__lead {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--c-ink-soft);
  max-width: 520px;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}
.hero__cta { display: flex; gap: .75rem; flex-wrap: wrap; }

.hero__meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.hero__meta strong { color: var(--c-ink); font-weight: 400; }

/* ---- Rechter (foto) kolom ---- */
.hero__visual {
  position: relative;
  background: var(--c-blue-deep);
  overflow: hidden;
}
.hero__visual::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../images/hero.jpg") center 30% / cover no-repeat;
  filter: saturate(.9) contrast(1.05);
}
.hero__visual::after {
  /* Subtiele blauwe duotone overlay om de foto in-brand te trekken */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,44,80,.18) 0%, rgba(18,44,80,.05) 50%, rgba(18,44,80,.45) 100%),
    linear-gradient(90deg, rgba(41,93,168,.18) 0%, transparent 35%);
  mix-blend-mode: multiply;
}

/* Photo label — diagonal naam-tag rechtsonder */
.hero__photo-tag {
  position: absolute;
  bottom: 24px; right: 24px;
  z-index: 2;
  background: var(--c-red);
  color: #fff;
  padding: .55rem .9rem;
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

/* Frame corner marks op de foto */
.hero__visual .corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,.65);
  z-index: 2;
}
.hero__visual .corner--tl { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.hero__visual .corner--tr { top: 20px; right: 20px; border-left: 0; border-bottom: 0; }
.hero__visual .corner--bl { bottom: 20px; left: 20px; border-right: 0; border-top: 0; }

/* ---- Stats strip onder de split, in dark-blue band ---- */
.hero__stats {
  background:
    linear-gradient(90deg, var(--c-blue) 0%, var(--c-blue-dark) 100%);
  color: #fff;
  position: relative;
}
.hero__stats::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--c-red);
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.6rem 0;
  gap: 0;
}
.hero__stat {
  padding: .25rem 1.8rem;
  border-left: 1px solid rgba(255,255,255,.16);
}
.hero__stat:first-child { border-left: 0; padding-left: 0; }
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: .35rem;
}
.hero__stat span {
  display: block;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

@media (max-width: 980px) {
  .hero__split { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { min-height: 380px; }
  .hero__copy { padding-left: max(1.5rem, calc((100vw - var(--container)) / 2 + 1rem)); padding-right: 1.5rem; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem 0; padding: 1.3rem 0; }
  .hero__stat { padding: .5rem 1.2rem; }
  .hero__stat:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* ---------- Trust strip ---------- */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.6rem 0;
}
.trust__item {
  display: flex; align-items: center; gap: .8rem;
  padding: .5rem .25rem;
  font-size: .95rem;
}
.trust__item svg { width: 26px; height: 26px; color: var(--c-blue); flex: 0 0 auto; }
.trust__item strong { display: block; font-weight: 700; }
.trust__item small { color: var(--c-muted); font-size: .8rem; }

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

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-dark) 100%);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 1.2rem;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { color: var(--c-muted); font-size: .95rem; margin-bottom: 1.2rem; flex: 1; }
.service-card__link {
  font-weight: 700;
  display: inline-flex; align-items: center; gap: .4rem;
}
.service-card__link::after { content: "→"; transition: transform .2s ease; }
.service-card__link:hover::after { transform: translateX(3px); }

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

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-deep) 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  text-align: center;
  padding: 2rem;
}
.about__media::after {
  content: "[Foto van Nick — nog in te vullen]";
}
.about__badge {
  position: absolute;
  right: -20px; bottom: 32px;
  background: var(--c-red);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow);
  line-height: 1.1;
}
.about__badge strong { display: block; font-size: 1.8rem; }
.about__list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.about__list li {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .6rem 0;
  border-top: 1px solid var(--c-line);
}
.about__list li:first-child { border-top: 0; }
.about__list svg { width: 22px; height: 22px; color: var(--c-blue); flex: 0 0 auto; margin-top: 2px; }

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 16/10; max-width: 100%; }
}

/* ---------- Process ---------- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-blue);
  display: block;
  margin-bottom: .8rem;
  letter-spacing: .05em;
}
.process-step h3 { margin-bottom: .4rem; }
.process-step p { color: var(--c-muted); font-size: .94rem; margin: 0; }

@media (max-width: 880px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process__grid { grid-template-columns: 1fr; } }

/* ---------- Area ---------- */
.area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.area__map {
  position: relative;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.area__map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pin op Franeker — coordinaten afgeleid uit de SVG-bounds
   (lat 52.60–53.60, lng 4.70–6.50). Franeker = 53.18°N, 5.54°E. */
.area__pin {
  position: absolute;
  left: 46.7%;
  top: 42%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: var(--c-red);
  border: 3px solid #fff;
  box-shadow:
    0 0 0 7px rgba(204,21,23,.22),
    0 0 0 14px rgba(204,21,23,.10),
    0 3px 8px rgba(14,17,22,.3);
  animation: pin-pulse 2.4s ease-in-out infinite;
  z-index: 2;
}
.area__pin-label {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #fff;
  padding: .35rem .7rem;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-ink);
  box-shadow: 0 2px 8px rgba(14,17,22,.15);
  border: 1px solid var(--c-line);
}
.area__pin-label::before {
  /* klein pijltje naar links wijzend, naar de pin */
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: #fff;
  border-left: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
@keyframes pin-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 7px rgba(204,21,23,.22),
      0 0 0 14px rgba(204,21,23,.10),
      0 3px 8px rgba(14,17,22,.3);
  }
  50% {
    box-shadow:
      0 0 0 11px rgba(204,21,23,.28),
      0 0 0 22px rgba(204,21,23,.08),
      0 3px 8px rgba(14,17,22,.3);
  }
}

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

/* ---------- Reviews ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.review-card__stars {
  display: flex; gap: 2px;
  color: #F2B91C;     /* gouden sterren — los van merkpalet */
  margin-bottom: 1rem;
}
.review-card blockquote {
  margin: 0 0 1.2rem;
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  line-height: 1.5;
}
.review-card__meta { display: flex; align-items: center; gap: .8rem; }
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-dark));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
}
.review-card__name { font-weight: 700; }
.review-card__role { font-size: .85rem; color: var(--c-muted); }

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

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 20% 50%, rgba(31,143,219,.45), transparent 60%),
    linear-gradient(180deg, #0B1A2B 0%, #07111C 100%);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 2rem; }
.cta-band__buttons { display: inline-flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}
.contact__info h2 { margin-bottom: 1rem; }
.contact__list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact__list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid var(--c-line);
}
.contact__list svg { width: 22px; height: 22px; color: var(--c-blue); margin-top: 3px; flex: 0 0 auto; }
.contact__list strong { display: block; }
.contact__list span { color: var(--c-muted); font-size: .95rem; }

.contact__form {
  background: var(--c-bg-soft);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--c-line);
}
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 500; font-size: .9rem; margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  color: var(--c-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(31,143,219,.15);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact__form button { width: 100%; justify-content: center; }

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-blue-deep);
  color: rgba(255,255,255,.72);
  padding: 4rem 0 2rem;
  position: relative;
}
.site-footer::before {
  /* dunne rode accentlijn bovenaan de footer */
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-red);
}
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand img { height: 104px; width: auto; margin-bottom: 1.2rem; display: block; }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { padding: .35rem 0; font-size: .95rem; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
  font-size: .85rem;
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: .8rem; text-align: center; }
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---------- Preview-only ribbon ---------- */
.preview-ribbon {
  position: fixed; right: -54px; top: 22px;
  transform: rotate(45deg);
  background: var(--c-red);
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .15em;
  padding: .4rem 4rem;
  z-index: 100;
  box-shadow: var(--shadow);
}

/* ---------- Status banner (na contactform-submit, top-of-page) ---------- */
.status-banner {
  position: relative;
  z-index: 60;
  color: #fff;
  font-weight: 500;
  font-size: .98rem;
  line-height: 1.45;
  box-shadow: 0 6px 22px rgba(14,17,22,.18);
  animation:
    status-banner-in .45s cubic-bezier(.22,.61,.36,1) both,
    status-banner-fade .8s ease-in 9.2s forwards;
}
.status-banner--success { background: linear-gradient(90deg, #1F6B3A 0%, #1A8F47 100%); }
.status-banner--error   { background: linear-gradient(90deg, var(--c-red-dark) 0%, var(--c-red) 100%); }

.status-banner__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.status-banner__icon {
  width: 28px; height: 28px;
  flex: 0 0 auto;
  display: grid; place-items: center;
}
.status-banner__icon svg { width: 100%; height: 100%; }
.status-banner__text { flex: 1; }
.status-banner__close {
  background: rgba(255,255,255,.16);
  border: 0;
  color: inherit;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.4rem; line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
  display: grid; place-items: center;
  transition: background .2s ease, transform .15s ease;
}
.status-banner__close:hover { background: rgba(255,255,255,.28); transform: scale(1.08); }

@keyframes status-banner-in {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes status-banner-fade {
  to { opacity: 0; visibility: hidden; max-height: 0; padding: 0; margin: 0; overflow: hidden; }
}

@media (max-width: 720px) {
  .status-banner { font-size: .9rem; }
  .status-banner__inner { gap: .7rem; padding: .8rem 0; }
}

/* ---------- Hero service-variant ---------- */
.hero--service .hero__visual::before {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-deep) 100%);
  background-size: cover;
}
.hero--service .hero__visual::after {
  background: linear-gradient(180deg, rgba(18,44,80,.2) 0%, rgba(18,44,80,.5) 100%);
  mix-blend-mode: multiply;
}

/* ---------- Nav-list (fallback en wp_nav_menu container) ---------- */
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.nav-list li { padding: 0; }
.nav-list a {
  color: var(--c-ink);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 0;
  position: relative;
  text-decoration: none;
}
.nav-list a:hover { color: var(--c-blue); }
.nav-list a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--c-blue); border-radius: 2px;
}
.nav-list .current-menu-item > a { color: var(--c-blue); }
