/* Self-hosted fonts (latin + latin-ext, nl-BE) */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("../fonts/dm-sans-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("../fonts/dm-sans-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-italic-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-italic-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --brick: #a85224;
  --brick-hover: #c06030;
  --amber: #c98520;
  --amber-light: #e09a35;
  --anthracite: #1c1e21;
  --anthracite-mid: #262b30;
  --anthracite-light: #353c44;
  --cream: #f4ede0;
  --cream-mid: #ede2d0;
  --cream-dark: #d8cbba;
  --text: #1a1717;
  --muted: #7a6e65;
  --white: #fdfaf5;
  --border: #ddd0bc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--amber-light), white 20%);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  transform: translateY(-160%);
  background: var(--anthracite);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.55rem 0.75rem;
  border-radius: 3px;
  z-index: 1000;
  font-size: 0.85rem;
}

.skip-link:focus {
  transform: none;
}

/* ── NAV ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--anthracite);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 70px;
  border-bottom: 2px solid var(--brick);
  /* iOS/Safari: keep fixed header visible while scrolling */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.nav-logo em {
  color: var(--amber-light);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--amber-light);
}

.nav-btn {
  background: var(--brick);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.15s;
}

.nav-btn:hover {
  background: var(--brick-hover);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: 0.25s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 250;
  background: var(--anthracite-mid);
  padding: 1.5rem 6%;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 2px solid var(--brick);
  max-height: calc(100dvh - 70px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
}

.mobile-menu.open {
  display: flex;
}

.mobile-cta {
  color: var(--amber-light);
  font-weight: 600;
}

/* ── HERO ───────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 70px 6% 7%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: #1a1c1f;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 62% 50%;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .hero-media img {
    /* Toon wat meer van het gebouw op mobiel */
    object-position: 66% 48%;
    transform: scale(1.005);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(20, 18, 15, 0.88) 0%,
    rgba(20, 18, 15, 0.45) 45%,
    rgba(20, 18, 15, 0.12) 100%
  );
}

.hero-photo-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  color: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  line-height: 2;
  pointer-events: none;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(201, 133, 32, 0.45);
  background: rgba(201, 133, 32, 0.1);
  color: var(--amber-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

.hero-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

.btn-primary {
  background: var(--brick);
  color: #fff;
  padding: 0.9rem 2.1rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--brick-hover);
  transform: translateY(-2px);
}

.btn-outline {
  color: #fff;
  padding: 0.9rem 2.1rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 6%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, 0.25);
}

/* ── USP STRIP ──────────────────────── */
.usp-strip {
  background: var(--anthracite-mid);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--amber);
}

.usp-item {
  padding: 1.75rem 2.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.usp-item:last-child {
  border-right: none;
}

.usp-icon-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(168, 82, 36, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: var(--amber-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usp-text strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.usp-text span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

/* ── SHARED SECTION STYLES ──────────── */
.section {
  padding: 6.5rem 6%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--anthracite);
  margin-bottom: 1rem;
}

.section-title--inverse {
  color: #fff;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
}

/* ── DIENSTEN ───────────────────────── */
#diensten {
  background: var(--cream);
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border: 2px solid var(--cream-dark);
}

.dienst-card {
  background: var(--cream);
  padding: 2.5rem;
  transition: background 0.25s;
}

.dienst-card:hover {
  background: var(--white);
}

.dienst-icon {
  width: 46px;
  height: 46px;
  background: var(--brick);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.dienst-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dienst-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.6rem;
}

.dienst-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.dienst-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.dienst-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
}

.dienst-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.75rem;
}

/* ── AANPAK ─────────────────────────── */
#aanpak {
  background: var(--anthracite);
  color: #fff;
}

#aanpak .section-label {
  color: var(--amber);
}

#aanpak .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1rem;
}

.steps-row::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(10% + 2px);
  right: calc(10% + 2px);
  height: 1px;
  background: var(--brick);
  opacity: 0.45;
}

.step {
  padding: 0 1.25rem;
  text-align: center;
}

.step-num {
  width: 54px;
  height: 54px;
  background: var(--brick);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--anthracite);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ── OVER ONS ───────────────────────── */
#over-ons {
  background: var(--cream-mid);
}

.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: var(--cream);
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--brick);
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--brick);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-card span {
  font-size: 0.82rem;
  color: var(--muted);
}

.quote-box {
  background: var(--anthracite);
  padding: 2.5rem 2.75rem;
  border-radius: 3px;
  position: relative;
  margin-bottom: 1.5rem;
}

.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 5.5rem;
  color: var(--amber);
  line-height: 1;
  position: absolute;
  top: -0.6rem;
  left: 1.75rem;
}

blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  padding-top: 1.25rem;
}

.quote-attr {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.joost-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brick);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.95rem;
  border-radius: 2px;
  margin-top: 0.85rem;
}

.joost-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--amber-light);
  border-radius: 50%;
}

.accbo-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accbo-note a {
  color: var(--brick);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.over-note {
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 1.25rem;
  line-height: 1.7;
}

/* ── CONTACT ────────────────────────── */
#contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.fg {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fg label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.fg input,
.fg textarea,
.fg select {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--brick);
}

.fg textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  align-self: flex-start;
  background: var(--brick);
  color: #fff;
  padding: 0.9rem 2.1rem;
  border: none;
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: var(--brick-hover);
  transform: translateY(-2px);
}

.form-help {
  font-size: 0.83rem;
  color: var(--muted);
  min-height: 1.2em;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--brick);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.ci-val {
  font-size: 0.92rem;
  color: var(--text);
}

.ci-val a {
  color: var(--brick);
  transition: opacity 0.2s;
}

.ci-val a:hover {
  opacity: 0.7;
}

.contact-note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: var(--cream-mid);
  border-left: 3px solid var(--amber);
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact-note strong {
  color: var(--brick);
  font-weight: 600;
}

/* ── LOKAAL & FAQ ───────────────────── */
.section--local {
  background: var(--cream-mid);
}

.local-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 720px;
}

.local-grid p {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.75;
}

.local-grid a {
  color: var(--brick);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section--faq {
  background: var(--cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 720px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 0 1.25rem;
}

.faq-item[open] {
  border-color: color-mix(in srgb, var(--brick), var(--border) 50%);
}

.faq-item summary {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--anthracite);
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brick);
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 1.1rem;
  margin: 0;
}

/* ── FOOTER ─────────────────────────── */
.footer {
  background: var(--anthracite);
  padding: 2.75rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo em {
  color: var(--amber);
  font-style: normal;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--amber-light);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.45);
}

.footer-copy a:hover {
  color: var(--amber-light);
}

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 900px) {
  .nav-links,
  .nav-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .usp-strip {
    grid-template-columns: 1fr;
  }

  .usp-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .usp-item:last-child {
    border-bottom: none;
  }

  .diensten-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-row::before {
    display: none;
  }

  .step {
    text-align: left;
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
  }

  .step-num {
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .over-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ── ANIMATE IN ─────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

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

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-primary,
  .btn-outline,
  .nav-btn,
  .btn-submit {
    transition: none;
  }
}
