/* ═══════════════════════════════════════════════════════
   BROOD&KO — Stylesheet
   Navy: #1A3A5C | Goud: #C8A96E | Crème: #F5F0E8
   Playfair Display (serif) + Source Sans 3 (sans)
═══════════════════════════════════════════════════════ */

/* ─── RESET + ROOT ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #1A3A5C;
  --navy-dark:  #122944;
  --gold:       #C8A96E;
  --gold-dark:  #b08f52;
  --cream:      #F5F0E8;
  --cream-dark: #ede5d6;
  --text:       #1e1e1e;
  --text-mid:   #444444;
  --text-light: #6e6a63;
  --white:      #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(26,58,92,.08);
  --shadow-md: 0 4px 24px rgba(26,58,92,.12);
  --shadow-lg: 0 12px 48px rgba(26,58,92,.18);

  --nav-h: 72px;
  --transition: 240ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
address { font-style: normal; }

/* Media + fill utility */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__media img, .hero__img,
.story__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* ─── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  min-height: 44px;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,110,.35);
}
.btn--hero {
  font-size: 1.05rem;
  padding: .9rem 2.25rem;
}
.btn--lg {
  padding: .9rem 2.25rem;
  font-size: 1.05rem;
}
.btn--full { width: 100%; }
.btn--outline-nav {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
}
.btn--outline-nav:hover {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ─── NAVIGATION ────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(245,240,232,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,169,110,.2);
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26,58,92,.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.logo-amp { color: var(--gold); }

.desktop-nav { margin-left: auto; }
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: .25rem;
}
.desktop-nav a {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.desktop-nav a:hover {
  color: var(--gold-dark);
  background: rgba(200,169,110,.08);
}

/* ─── HAMBURGER ─────────────────────────────────────── */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu__trigger:hover { background: rgba(200,169,110,.1); }
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE MENU OVERLAY ───────────────────────────── */
.mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  height: 100svh;
  background: var(--navy);
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 280ms ease, opacity 280ms ease;
}
.mobile-menu__overlay.is-open {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  min-height: 100svh;
}
.mobile-menu__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  margin-bottom: 2rem;
  transition: background var(--transition);
}
.mobile-menu__close:hover { background: rgba(255,255,255,.2); }
.mobile-menu__close svg { width: 20px; height: 20px; }
.mobile-menu__logo .logo-text {
  font-size: 1.8rem;
  color: var(--white);
}
.mobile-menu__logo .logo-amp { color: var(--gold); }
.mobile-menu__logo { margin-bottom: 2.5rem; }
.mobile-menu__list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu__item {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  padding: .65rem 0;
  border-bottom: 1px solid rgba(200,169,110,.15);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover {
  color: var(--gold);
  padding-left: .5rem;
}
.mobile-menu__cta {
  margin-top: 2.5rem;
}
.mobile-menu__tagline {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .9rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* Body lock when menu open */
body.menu-open {
  overflow: hidden;
}

/* ─── CONTAINER ─────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.container--contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ─── SECTION ───────────────────────────────────────── */
.section {
  padding: 6rem 0;
}
.section--cream { background: var(--cream); }
.section--story { background: var(--white); }
.section--winkels { background: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-header--light { }
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .5rem;
}
.section-eyebrow--light { color: var(--gold); }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--navy);
  margin-bottom: .75rem;
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
}
.section-sub--light { color: rgba(255,255,255,.7); }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,58,92,.72) 0%,
    rgba(26,58,92,.45) 50%,
    rgba(26,41,68,.3) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  max-width: 780px;
  margin: 0 auto;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--gold);
  opacity: .8;
  animation: bob 2s ease-in-out infinite;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__scroll svg { width: 28px; height: 28px; }
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── CARD GRID (BRODEN) ────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;  
  list-style: none;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.card:hover .card__media img {
  transform: scale(1.04);
}
.card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__icon {
  width: 44px;
  height: 44px;
  background: rgba(200,169,110,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
}
.card__title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.card__text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.card__badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200,169,110,.12);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 20px;
  padding: .3rem .85rem;
  align-self: flex-start;
}

/* ─── STORY SECTION ─────────────────────────────────── */
.story__image {
  position: relative;
}
.story__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.story__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(26,58,92,.25));
}
.story__content { }
.story__lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.story__body {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.story__values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.story__value {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.story__value-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,169,110,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.story__value-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
}
.story__value strong {
  display: block;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.story__value span {
  font-size: .85rem;
  color: var(--text-light);
}

/* ─── WINKELS ───────────────────────────────────────── */
.card-grid--winkels {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.card--winkel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card--winkel:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.card__winkel-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.winkel-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,169,110,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.winkel-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}
.card__title--winkel {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: .15rem;
}
.card__winkel-sub {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}
.card__winkel-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.winkel-adres {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .95rem;
  color: rgba(255,255,255,.92);
  line-height: 1.55;
}
.winkel-adres svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.winkel-uren {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.winkel-uren svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.winkel-uren > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.winkel-uren span {
  font-size: .92rem;
  color: rgba(255,255,255,.88);
}

/* ─── CTA BAND ──────────────────────────────────────── */
.cta-band {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 5rem 1.5rem;
}
.cta-band__grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,169,110,.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(200,169,110,.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.cta-band__eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.cta-band__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
  margin-bottom: .75rem;
}
.cta-band__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
}
.cta-band__text { }
.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── CONTACT ───────────────────────────────────────── */
.contact__intro {
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__icon {
  width: 44px;
  height: 44px;
  background: rgba(200,169,110,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
}
.contact__label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .25rem;
}
.contact__value {
  font-size: .975rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
a.contact__value:hover { color: var(--gold-dark); }

/* ─── CONTACT FORM ──────────────────────────────────── */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form__title {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.form__group {
  margin-bottom: 1.25rem;
}
.form__group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.form__group label span {
  color: var(--gold-dark);
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #ddd5c8;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.15);
}
.form__group textarea { resize: vertical; }
.btn--submit { margin-top: .5rem; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer-kit {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
}
.footer__tagline-wrap {
  background: var(--navy);
  border-bottom: 1px solid rgba(200,169,110,.15);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.25rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: -.01em;
}
.footer__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
}
.footer__brand .logo-text { color: var(--white); font-size: 1.3rem; }
.footer__brand-desc {
  margin-top: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer__address {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.footer__nav-title {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer__nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }
.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.footer__contact-list svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.footer__contact-list a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__contact-list a:hover { color: var(--gold); }
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer__gilde strong { color: rgba(255,255,255,.5); }

/* ─── SECTION SPACING ───────────────────────────────── */
.story__content .section-eyebrow { margin-bottom: .5rem; }
.story__content .section-title { margin-bottom: 1.25rem; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .container--story { gap: 3rem; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid--winkels { grid-template-columns: 1fr; }
  .container--story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story__badge { display: none; }
  .story__img-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .desktop-nav { display: none; }
  .nav-inner > .btn--outline-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  .section { padding: 4rem 0; }

  .card-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .container--contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .container--story { grid-template-columns: 1fr; }

  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }

  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .footer__main { grid-template-columns: 1fr; gap: 2rem; }
  .contact__form-wrap { padding: 1.5rem; }
}

/* ─── FOCUS STYLES ──────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── REDUCED MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero__scroll { animation: none; }
}

/* ─── MOBILE CARD IMAGE FIX ─────────────────────────── */
@media (max-width: 768px) {
  .card__media {
    aspect-ratio: 16/9;
  }
  .card--winkel {
    padding: 1.75rem;
  }
  .winkel-uren span {
    font-size: .92rem;
  }
}
