/* ============================================
   Aoraki Perspectief — gedeeld stylesheet
   ============================================ */

:root {
  /* Kleuren: berg, water, steen */
  --kleur-dieptegroen: #2f3e36;     /* donker dennengroen, voor tekst/headers */
  --kleur-mosgroen: #5b6f60;        /* gedempt groen, accenten */
  --kleur-steen: #cfd3cb;           /* lichte steenkleur, randen */
  --kleur-ondergrond: #f5f3ee;      /* warme lichte achtergrond, "mist" */
  --kleur-wit: #ffffff;
  --kleur-oker: #b08a5e;            /* warme okerbruin accent, "berghelling" */
  --kleur-tekst: #3a3f3a;

  /* Typografie — Wix: titels Lulo Clean (≈ Montserrat Bold), body Avenir Light (≈ Mulish) */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-titel: "Montserrat", "Jost", "Century Gothic", "Futura", sans-serif;
  --font-body: "Mulish", "Avenir", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-breedte: 1080px;
  --ruimte-xs: 0.5rem;
  --ruimte-sm: 1rem;
  --ruimte-md: 2rem;
  --ruimte-lg: 4rem;
  --ruimte-xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--kleur-tekst);
  background-color: var(--kleur-ondergrond);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--kleur-dieptegroen);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--kleur-oker);
  outline-offset: 3px;
}

/* ============ Header / Navigatie ============ */

.site-header {
  background-color: var(--kleur-wit);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem var(--ruimte-md);
  gap: var(--ruimte-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--kleur-dieptegroen);
  white-space: nowrap;
}

.logo span {
  color: var(--kleur-oker);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: var(--ruimte-md);
}

nav.main-nav > ul {
  display: flex;
  list-style: none;
  gap: var(--ruimte-md);
  align-items: center;
}

nav.main-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--kleur-tekst);
  padding: 0.4rem 0.1rem;
  transition: color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.actief {
  color: #317F81;
}

/* Dropdown voor Diensten */
.heeft-submenu {
  position: relative;
}

.heeft-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.heeft-submenu > a::after {
  content: "▾";
  font-size: 0.7rem;
  color: var(--kleur-mosgroen);
}

.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--kleur-wit);
  border: 1px solid var(--kleur-steen);
  border-radius: 6px;
  min-width: 230px;
  box-shadow: 0 8px 24px rgba(47, 62, 54, 0.1);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.heeft-submenu:hover .submenu,
.heeft-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.92rem;
  border-bottom: none;
  white-space: nowrap;
}

.submenu li a:hover {
  background-color: var(--kleur-ondergrond);
  color: #317F81;
}

/* Mobiel menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.menu-toggle svg {
  width: 26px;
  height: 26px;
  stroke: var(--kleur-dieptegroen);
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  nav.main-nav {
    position: fixed;
    inset: 0;
    top: 64px;
    background-color: var(--kleur-wit);
    flex-direction: column;
    align-items: stretch;
    padding: var(--ruimte-md);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  nav.main-nav.open {
    transform: translateX(0);
  }

  nav.main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  nav.main-nav a {
    display: block;
    padding: 0.75rem 0.2rem;
    border-bottom: 1px solid var(--kleur-steen);
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--kleur-steen);
    margin-left: 0.6rem;
    border-radius: 0;
    display: none;
  }

  .heeft-submenu.open .submenu {
    display: block;
  }

  .heeft-submenu > a::after {
    margin-left: auto;
  }

  .heeft-submenu > a {
    justify-content: space-between;
    width: 100%;
  }
}

/* ============ Hero ============ */

.hero {
  position: relative;
  background-color: #5a7580;
  color: var(--kleur-wit);
  overflow: hidden;
  height: 100vh;
  min-height: 500px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--ruimte-md);
  padding-top: 16vh;
  gap: 1rem;
}

.hero-logo {
  width: min(520px, 80vw);
  height: auto;
  display: block;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kleur-wit);
  font-weight: 500;
}

/* Kleinere hero voor subpagina's */
.hero.compact {
  height: 40vh;
  min-height: 240px;
}

.hero.compact .hero-inner {
  justify-content: flex-end;
  padding-bottom: var(--ruimte-lg);
  align-items: flex-start;
  text-align: left;
}

.hero.compact .hero-bg {
  opacity: 0.6;
}

.hero.compact .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47,62,54,0.2) 0%, rgba(47,62,54,0.75) 100%);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kleur-steen);
  margin-bottom: 0.4rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  max-width: 18ch;
  color: var(--kleur-wit);
}

.hero-sub {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--kleur-steen);
  max-width: 42ch;
}

/* ============ Subpagina achtergrond layout ============ */

.pagina-bg {
  position: fixed;
  inset: 0;
  height: 200vh;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Melkglas-overlay: doorschijnend wit met frosted-glass blur over de foto */
.pagina-kolom {
  max-width: 860px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.46);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  min-height: 100vh;
  padding: 0 0 4rem;
}

.pagina-header {
  text-align: center;
  padding: 6rem 8.5rem 2.8rem;
}

.pagina-titel {
  font-family: var(--font-titel);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2b2b2b;
  margin-bottom: 1.6rem;
}

.pagina-citaat {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 0.88rem;
  color: #444;
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.7;
}

.pagina-sectie {
  padding: 1.5rem 8.5rem;
}

.pagina-kolom .pagina-sectie-titel {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2b2b2b;
  margin-bottom: 0.1rem;
}

.pagina-sectie p,
.pagina-kaart p,
.pagina-kaart-solo p,
.instrument-voeding p,
.instrument-item p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #3a3a3a;
  margin-bottom: 1.4rem;
}

.pagina-sectie p:last-child {
  margin-bottom: 0;
}

.pagina-sectie a {
  color: #1b1b1b;
  text-decoration: underline;
}

.pagina-sectie .accent {
  font-style: italic;
  color: #555;
}

/* Ingevoegde scherpe foto-band — volle breedte van de overlay */
.pagina-foto {
  display: block;
  width: 100%;
  margin: 1.5rem 0 2.5rem;
  max-height: 290px;
  object-fit: cover;
  object-position: center 25%;
}

/* Scheidingslijntje */
.pagina-divider {
  width: 160px;
  height: 1px;
  background: #8f998f;
  border: none;
  margin: 2.2rem auto 2.6rem;
}

/* Twee-koloms kaart-rij */
.pagina-twee-kolom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1rem 5.5rem 2rem;
}

.pagina-kaart {
  background: rgba(255, 255, 255, 0.5);
  padding: 1.9rem 2rem;
}

/* Losse melkglas-kaart over volledige breedte (bv. "Wat je kunt verwachten") */
.pagina-kaart-solo {
  margin: 1rem 5.5rem 2rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 1.9rem 2.2rem;
}

/* Bullet-lijst */
.pagina-lijst {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.4rem 0 0;
}

.pagina-lijst li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #3a3a3a;
  margin-bottom: 0.1rem;
}

.pagina-lijst li:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .pagina-twee-kolom {
    grid-template-columns: 1fr;
    padding: 1rem 1.8rem 1.5rem;
  }
  .pagina-header { padding: 4rem 2rem 2.5rem; }
  .pagina-sectie { padding: 1.4rem 1.8rem; }
  .pagina-kaart-solo { margin: 1rem 1.8rem 1.5rem; }
  .pagina-foto { width: 100%; margin: 1rem 0 2rem; }
}

/* ============ Algemene layout ============ */

main {
  display: block;
}

.sectie {
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: var(--ruimte-lg) var(--ruimte-md);
}

.sectie-smal {
  max-width: 740px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kleur-oker);
  font-weight: 600;
  margin-bottom: var(--ruimte-xs);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--kleur-dieptegroen);
  font-weight: 600;
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: var(--ruimte-sm);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
}

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

.citaat {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--kleur-dieptegroen);
  border-left: 3px solid var(--kleur-oker);
  padding-left: var(--ruimte-md);
  margin: var(--ruimte-md) 0;
  max-width: 60ch;
}

/* ============ Foto-achtergrond sectie (diensten homepage) ============ */

.sectie-foto {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.sectie-foto .sectie {
  background: transparent;
}

.eyebrow-foto {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-titel);
  margin-bottom: 2.5rem;
}

.sectie-foto-titel {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  margin-bottom: var(--ruimte-md);
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.sectie-foto .dienst-kaart {
  background: rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
  border: none;
  border-radius: 6px;
}

.sectie-foto .lees-meer {
  color: var(--kleur-dieptegroen);
}

/* ============ Diensten grid (homepage) ============ */

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--ruimte-md);
  margin-top: var(--ruimte-md);
}

.dienst-kaart {
  background-color: var(--kleur-wit);
  border: 1px solid var(--kleur-steen);
  border-radius: 10px;
  padding: var(--ruimte-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dienst-kaart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(47, 62, 54, 0.08);
}

.dienst-kaart h3 {
  font-family: var(--font-titel);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--kleur-dieptegroen);
  margin-bottom: 0.5rem;
  text-align: center;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dienst-kaart .citaat-klein {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  color: #444;
  font-size: 0.79rem;
  line-height: 1.6;
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  text-align: center;
  position: relative;
}

.dienst-kaart .citaat-klein::after {
  content: '';
  display: block;
  width: 65%;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
  margin: 0.7rem auto 0;
}

.dienst-kaart p {
  flex-grow: 1;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #3a3a3a;
  text-align: left;
}

.lees-meer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--kleur-dieptegroen);
  margin-top: var(--ruimte-sm);
  align-self: flex-start;
  text-decoration: none;
}

.lees-meer:hover {
  color: #317F81;
}

/* ============ Twee-koloms blok met afbeelding ============ */

.twee-kolommen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ruimte-lg);
  align-items: start;
}

.twee-kolommen.omgekeerd {
  direction: rtl;
}

.twee-kolommen.omgekeerd > * {
  direction: ltr;
}

.twee-kolommen img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 380px;
}

.sectie-mist .sectie {
  padding-bottom: var(--ruimte-lg);
}

.sectie-mist .twee-kolommen {
  align-items: stretch;
}

.sectie-mist .twee-kolommen > div {
  padding-bottom: var(--ruimte-lg);
}

.sectie-mist .twee-kolommen img {
  max-height: none;
  object-position: top;
  border-radius: 10px 10px 0 0;
}

@media (max-width: 760px) {
  .twee-kolommen {
    grid-template-columns: 1fr;
  }

  .twee-kolommen img {
    max-height: 240px;
    order: -1;
  }
}

/* ============ Lijsten met principes/bullets ============ */

.principe-lijst {
  list-style: none;
  display: grid;
  gap: var(--ruimte-sm);
  margin-top: var(--ruimte-sm);
}

.principe-lijst li {
  background-color: var(--kleur-wit);
  border: 1px solid var(--kleur-steen);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  font-size: 0.97rem;
}

.principe-lijst strong {
  color: var(--kleur-dieptegroen);
  font-weight: 600;
}

/* Genummerde laag-lijst (inhoud / dynamiek) */
.laag-lijst {
  list-style: none;
  counter-reset: laag;
  display: grid;
  gap: var(--ruimte-sm);
  margin-top: var(--ruimte-sm);
}

.laag-lijst li {
  position: relative;
  padding-left: 3rem;
  font-size: 0.97rem;
}

.laag-lijst li::before {
  counter-increment: laag;
  content: counter(laag);
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background-color: var(--kleur-dieptegroen);
  color: var(--kleur-wit);
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* ============ Sectie achtergrondvarianten ============ */

.sectie-mist {
  background-color: var(--kleur-wit);
  border-top: 1px solid var(--kleur-steen);
  border-bottom: 1px solid var(--kleur-steen);
}

/* OVER MIJ sectie */
.sectie-mist p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.sectie-mist .eyebrow {
  font-family: var(--font-titel);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--kleur-dieptegroen);
  font-weight: 700;
  margin-bottom: 3.5rem;
}

.twee-kolommen h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
  line-height: 1.4;
  margin-bottom: 0;
}

.twee-kolommen h2 + p {
  margin-top: 0.5rem;
}

/* ============ Instrument-grid (over-joris) ============ */

.instrument-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 2.5rem;
  margin-top: 1.5rem;
}

.instrument-item {
  padding-left: 0;
}

.instrument-naam {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--kleur-dieptegroen);
  margin-bottom: 0.4rem !important;
}

.instrument-portret {
  padding: 2.5rem 5.5rem 2rem;
  gap: 1.8rem 2.5rem;
  align-items: start;
}

.instrument-portret img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 480px;
  object-position: center 15%;
}

.instrument-voeding {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0.5rem;
}

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

/* ============ Footer ============ */

.site-footer {
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.46) 100%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #2b2b2b;
}

.site-footer--licht {
  background: linear-gradient(to bottom, rgba(47,62,54,0.55) 0%, rgba(47,62,54,0.82) 100%);
}
.site-footer--donker-tekst .footer-inner p,
.site-footer--donker-tekst .footer-inner a,
.site-footer--donker-tekst .footer-contact-label {
  color: rgba(255,255,255,0.95);
}
.site-footer--donker-tekst .footer-social svg {
  fill: rgba(255,255,255,0.95);
}
.site-footer--donker-tekst .footer-streep {
  background: rgba(255,255,255,0.5);
}
.site-footer--donker-tekst .footer-bottom {
  color: rgba(255,255,255,0.7);
  border-top-color: rgba(255,255,255,0.2);
}
.site-footer--donker-tekst .footer-maker,
.site-footer--donker-tekst .footer-maker a {
  color: rgba(255,255,255,0.5);
}

.footer-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.1rem;
}

.footer-contact-label {
  font-family: var(--font-titel);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.footer-streep {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.footer-kolommen {
  display: grid;
  grid-template-columns: auto auto;
  gap: 3rem;
  justify-content: end;
}

.footer-inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: var(--ruimte-md) var(--ruimte-md) var(--ruimte-sm);
}

.footer-inner p,
.footer-inner a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  line-height: 1.3;
  margin-bottom: 0.1rem;
}

.footer-inner a:hover {
  color: #ffffff;
}

.footer-inner a.pdf-link,
.footer-inner a.av-link {
  text-decoration: none;
  text-transform: lowercase;
}

.footer-inner a.av-link .av-download {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.footer-social a:hover {
  opacity: 0.6;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  transition: fill 0.2s ease;
}

.footer-social a:hover svg {
  fill: rgba(255,255,255,0.6);
}

.footer-bottom {
  border-top: 1px solid #e4e4e0;
  text-align: center;
  font-size: 0.73rem;
  padding: var(--ruimte-sm);
  color: #555;
}
.footer-maker {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.55);
}
.footer-maker a {
  color: rgba(0,0,0,0.55);
  text-decoration: none;
}
.footer-maker a:hover {
  color: rgba(0,0,0,0.8);
}
.site-footer--licht .footer-bottom {
  color: rgba(255,255,255,0.65);
  border-top-color: rgba(255,255,255,0.2);
}
.site-footer--licht .footer-maker {
  color: rgba(255,255,255,0.5);
}
.site-footer--licht .footer-maker a {
  color: rgba(255,255,255,0.5);
}
.site-footer--licht .footer-maker a:hover {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Footer: donkere tekst alleen op mobiel (voor pagina's met lichte achtergrond onderaan) */
@media (max-width: 760px) {
  .site-footer--mobiel-donker-tekst .footer-inner p,
  .site-footer--mobiel-donker-tekst .footer-inner a,
  .site-footer--mobiel-donker-tekst .footer-contact-label {
    color: rgba(0,0,0,0.75);
  }
  .site-footer--mobiel-donker-tekst .footer-social svg {
    fill: rgba(0,0,0,0.75);
  }
  .site-footer--mobiel-donker-tekst .footer-streep {
    background: rgba(0,0,0,0.25);
  }
  .site-footer--mobiel-donker-tekst .footer-bottom {
    color: #333;
    border-top-color: rgba(0,0,0,0.15);
  }
  .site-footer--mobiel-donker-tekst .footer-maker,
  .site-footer--mobiel-donker-tekst .footer-maker a {
    color: rgba(0,0,0,0.55);
  }
}

/* Hero: bergtop altijd zichtbaar */
.hero-bg {
  object-position: center top;
}

/* --- Tablet & mobiel menu (≤ 860px) --- */
@media (max-width: 860px) {
  /* Hamburger rechts uitlijnen */
  .header-inner {
    justify-content: flex-end;
  }

  /* iOS: background-attachment: fixed werkt niet correct */
  .sectie-foto {
    background-attachment: scroll;
  }

  /* Eyebrow titels inkrimpen */
  .eyebrow-foto {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
  }

  .sectie-mist .eyebrow {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
  }

  /* Instrument-portret: één kolom, minder zijpadding */
  .instrument-portret {
    grid-template-columns: 1fr;
    padding: 1.5rem 2rem 2rem;
  }

  /* Logo iets kleiner */
  .hero-logo {
    width: min(380px, 78vw);
  }
}

/* --- Tablet portret (≤ 760px) --- */
@media (max-width: 760px) {
  /* Footer kolommen stapelen */
  .footer-kolommen {
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 1.5rem;
  }

  .footer-inner {
    padding: 1.5rem 1.5rem 1rem;
  }

  /* Diensten: één kolom */
  .diensten-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Sectie padding */
  .sectie {
    padding: 2rem 1.5rem;
  }

  /* Sectie-mist over mij */
  .sectie-mist .eyebrow {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .sectie-mist .twee-kolommen > div {
    padding-bottom: 2rem;
  }

  /* Pagina titel */
  .pagina-titel {
    font-size: 1.25rem;
    letter-spacing: 0.07em;
  }
}

/* --- Mobiel (≤ 480px) --- */
@media (max-width: 480px) {
  .pagina-header {
    padding: 3rem 1.4rem 2rem;
  }

  .pagina-sectie {
    padding: 1.2rem 1.4rem;
  }

  .pagina-twee-kolom {
    padding: 0.8rem 1.4rem 1.2rem;
  }

  .pagina-kaart-solo {
    margin: 0.8rem 1.4rem 1.2rem;
  }

  .instrument-portret {
    padding: 1rem 1.4rem 1.5rem;
  }

  .pagina-titel {
    font-size: 1.05rem;
    letter-spacing: 0.05em;
  }

  .pagina-citaat {
    font-size: 0.82rem;
  }

  .hero-logo {
    width: min(250px, 82vw);
  }

  .eyebrow-foto {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }

  .sectie-mist .eyebrow {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-inner {
    padding: 1.2rem 1.2rem 0.8rem;
  }

  .footer-kolommen {
    gap: 1.2rem;
  }

  .dienst-kaart {
    padding: 1.4rem;
  }

  .twee-kolommen img {
    max-height: 200px;
  }
}
