/* ============================================
   ALL ABOUT HAIR — RIDDERKERK
   Design: dark/gold premium salon
   ============================================ */

/* === TOKENS === */
:root {
  --c-black:    #1a1a1a;
  --c-dark:     #111111;
  --c-charcoal: #2c2c2c;
  --c-gold:     #c9a96e;
  --c-gold-lt:  #e2c896;
  --c-white:    #ffffff;
  --c-offwhite: #f7f5f2;
  --c-warm:     #f0ece6;
  --c-muted:    #8a8178;
  --c-border:   #e5e0d8;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;

  --r-sm:  0.5rem;
  --r-md:  1rem;
  --r-lg:  1.5rem;
  --r-xl:  2rem;
  --r-pill: 100px;

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

  --header-h: 72px;
  --transition: 280ms cubic-bezier(.4,0,.2,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--c-offwhite);
  color: var(--c-black);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === MEDIA / IMG FILL (mandatory fill pattern) === */
.media,
.img-fill,
figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img,
.img-fill,
figure.photo > img,
.gallery img,
.card img,
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--c-black);
}
h1 { font-size: clamp(2.4rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
p  { max-width: 62ch; }

.label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .75rem;
}
.label--light { color: var(--c-gold); }
.label--gold  { color: var(--c-gold); }

.lead-text {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 52ch;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p, .section-header .section-sub {
  color: var(--c-muted);
  margin: .75rem auto 0;
  max-width: 50ch;
}
.section-header--light h2,
.section-header--light .section-sub { color: var(--c-white); }
.section-header--light p { color: rgba(255,255,255,.7); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--r-pill);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--dark {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}
.btn--dark:hover {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
}
.btn--gold:hover {
  background: var(--c-gold-lt);
  border-color: var(--c-gold-lt);
  box-shadow: 0 4px 24px rgba(201,169,110,.35);
}

.btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--c-white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--c-black);
  border-color: var(--c-black);
}
.btn--outline-dark:hover {
  background: var(--c-black);
  color: var(--c-white);
}

.btn--lg { padding: 1rem 2.5rem; font-size: .9rem; }
.btn--full { width: 100%; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === ICONS === */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-offwhite);
  flex-shrink: 0;
}
.icon-wrap svg { width: 18px; height: 18px; }
.icon-wrap--gold {
  background: rgba(201,169,110,.12);
  color: var(--c-gold);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(26,26,26,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,.15);
  transition: background var(--transition);
}
.site-header.scrolled {
  background: rgba(17,17,17,.97);
}

.header-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; flex-shrink: 0; }
.logo-badge { width: 48px; height: 48px; }
.logo-badge svg { width: 100%; height: 100%; }

.desktop-nav { flex: 1; display: flex; justify-content: center; }
.desktop-nav ul { display: flex; gap: 0; }
.desktop-nav a {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: .5rem 1rem;
  transition: color var(--transition);
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.desktop-nav a:hover { color: var(--c-white); }
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

.mobile-menu__trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  color: var(--c-white);
  margin-left: auto;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================
   MOBILE MENU (FULLSCREEN OVERLAY — KIT)
   ============================================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--c-dark);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity var(--transition), transform var(--transition);
  overflow-y: auto;
}
.mobile-menu__overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
body.menu-open { overflow: hidden; }

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 2rem 1.5rem 3rem;
}

.mobile-menu__close {
  align-self: flex-end;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white);
  border-radius: var(--r-sm);
  margin-bottom: 1.5rem;
}
.mobile-menu__close svg { width: 28px; height: 28px; }
.mobile-menu__close:hover { color: var(--c-gold); }

.mobile-menu__logo {
  width: 72px; height: 72px;
  margin-bottom: 2.5rem;
}
.mobile-menu__logo svg { width: 100%; height: 100%; }

.mobile-menu__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition), padding-left var(--transition);
  letter-spacing: -.01em;
}
.mobile-menu__item:hover { color: var(--c-white); padding-left: .5rem; }

.mobile-menu__cta {
  margin-top: 2.5rem;
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,.82) 0%,
    rgba(26,26,26,.55) 60%,
    rgba(17,17,17,.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: var(--header-h);
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
  max-width: none;
}

.hero__title {
  color: var(--c-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.hero__subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 46ch;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,.4);
  animation: bounce 2s infinite;
}
.hero__scroll-hint svg { width: 24px; height: 24px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   OVER ONS
   ============================================ */
.over {
  padding: 6rem 0;
  background: var(--c-white);
}
.over__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.over__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.over__media .media {
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.over__media .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.over__badge-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--c-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.over__years {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-black);
  line-height: 1;
}
.over__years-label {
  font-family: var(--font-head);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-black);
  line-height: 1.2;
}
.over__copy h2 { margin-bottom: 1.25rem; }
.over__copy p + p { margin-top: 1rem; color: var(--c-muted); }
.over__list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.over__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 400;
  font-size: .95rem;
}
.over__list .icon-wrap {
  background: rgba(201,169,110,.12);
  color: var(--c-gold);
}

/* ============================================
   DIENSTEN
   ============================================ */
.diensten {
  padding: 6rem 0;
  background: var(--c-offwhite);
}
.diensten__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dienst-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--c-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.dienst-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.dienst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dienst-card:hover::before { transform: scaleX(1); }

.dienst-card--accent {
  background: var(--c-black);
  border-color: var(--c-black);
  color: var(--c-white);
}
.dienst-card--accent h3 { color: var(--c-white); }
.dienst-card--accent::before { background: var(--c-gold); transform: scaleX(1); }
.dienst-card--accent .dienst-card__from strong { color: var(--c-gold); }

.dienst-card__icon {
  width: 52px; height: 52px;
  background: rgba(201,169,110,.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--c-gold);
}
.dienst-card--accent .dienst-card__icon {
  background: rgba(201,169,110,.15);
}
.dienst-card__icon svg { width: 26px; height: 26px; }

.dienst-card h3 { margin-bottom: 1.25rem; }

.dienst-card__list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.dienst-card__list li {
  font-size: .9rem;
  color: var(--c-muted);
  padding-left: 1rem;
  position: relative;
}
.dienst-card--accent .dienst-card__list li { color: rgba(255,255,255,.65); }
.dienst-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .52em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-gold);
}

.dienst-card__from {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--c-muted);
  text-transform: uppercase;
  border-top: 1px solid var(--c-border);
  padding-top: 1.25rem;
}
.dienst-card--accent .dienst-card__from { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.5); }
.dienst-card__from strong { font-size: 1.15rem; color: var(--c-black); }

.diensten__cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.diensten__cta p { color: var(--c-muted); margin: 0; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 6rem 0;
  background: var(--c-black);
}
.reviews .section-header h2 { color: var(--c-white); }

.reviews__google-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.reviews__score {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
}
.reviews__stars { display: flex; gap: 3px; }
.reviews__stars svg { width: 18px; height: 18px; }
.reviews__count {
  font-size: .8rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background var(--transition), border-color var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,169,110,.2);
}
.review-card__stars { display: flex; gap: 3px; }
.review-card__stars svg { width: 16px; height: 16px; }

.review-card blockquote {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  font-style: italic;
  font-weight: 300;
  flex: 1;
}

.review-card cite {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-style: normal;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem;
}
.review-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-white);
}
.review-card__source {
  font-size: .75rem;
  color: var(--c-muted);
  margin-left: auto;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  position: relative;
  padding: 5rem 0;
  background: var(--c-charcoal);
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,169,110,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(201,169,110,.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-band__text h2 { color: var(--c-white); }
.cta-band__text p {
  color: rgba(255,255,255,.65);
  margin-top: .6rem;
  font-size: 1rem;
}
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-band__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-band__divider { display: none; }
}

/* ============================================
   GALERIJ
   ============================================ */
.galerij {
  padding: 6rem 0;
  background: var(--c-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
/* Explicit placement — full 3-row clean layout, no orphans */
.gallery-grid__item:nth-child(1) { grid-column: 1 / span 4; }
.gallery-grid__item:nth-child(2) { grid-column: 5 / span 8; }
.gallery-grid__item:nth-child(3) { grid-column: 1 / span 8; }
.gallery-grid__item:nth-child(4) { grid-column: 9 / span 4; }
.gallery-grid__item:nth-child(5) { grid-column: 1 / span 12; }

.gallery-grid__item .media {
  border-radius: var(--r-md);
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-grid__item:nth-child(2) .media,
.gallery-grid__item:nth-child(3) .media {
  aspect-ratio: 16 / 7;
}
.gallery-grid__item:nth-child(5) .media {
  aspect-ratio: 16 / 6;
}
.gallery-grid__item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-grid__item:hover .media img { transform: scale(1.04); }

/* ============================================
   CONTACT
   ============================================ */
.contact-sectie {
  padding: 6rem 0;
  background: var(--c-offwhite);
}
.contact-sectie__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-sectie__info h2 { margin-bottom: 1rem; }
.contact-sectie__info > p { color: var(--c-muted); margin-bottom: 2rem; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-list a { color: var(--c-gold); transition: opacity var(--transition); }
.contact-list a:hover { opacity: .75; }

/* FORM */
.contact-form {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
.form-row .form-group { margin-bottom: 1.25rem; }

label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-black);
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--c-black);
  background: var(--c-offwhite);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
input:focus, textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
textarea { resize: vertical; min-height: 110px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.65);
  padding: 5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .footer-logo {
  width: 64px; height: 64px; margin-bottom: 1.25rem;
}
.footer-brand .footer-logo svg { width: 100%; height: 100%; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 28ch; }

.footer-col h4 {
  color: var(--c-white);
  margin-bottom: 1.25rem;
  font-size: .72rem;
  letter-spacing: .15em;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--c-gold); }

.hours-list li { display: flex; justify-content: space-between; font-size: .85rem; gap: 1rem; }
.hours-list .closed { color: rgba(255,255,255,.35); }

.footer-col address { font-size: .9rem; line-height: 1.9; }
.footer-col address a { transition: color var(--transition); }
.footer-col address a:hover { color: var(--c-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); max-width: none; margin: 0; }
.footer-demo-note a { color: var(--c-gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

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

  .desktop-nav, .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* Hero */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  /* Over */
  .over__grid { grid-template-columns: 1fr; gap: 3rem; }
  .over__badge-accent { bottom: -1rem; right: -.5rem; width: 80px; height: 80px; }
  .over__years { font-size: 1.2rem; }

  /* Diensten */
  .diensten__grid { grid-template-columns: 1fr; gap: 1rem; }
  .dienst-card { padding: 2rem 1.5rem; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__text h2, .cta-band__text p { text-align: center; }
  .cta-band__actions { justify-content: center; width: 100%; }
  .cta-band__actions .btn { flex: 1; min-width: 200px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .gallery-grid__item:nth-child(1) { grid-column: 1 / span 1; }
  .gallery-grid__item:nth-child(2) { grid-column: 2 / span 1; }
  .gallery-grid__item:nth-child(3) { grid-column: 1 / span 2; }
  .gallery-grid__item:nth-child(4) { grid-column: 1 / span 2; }
  .gallery-grid__item:nth-child(5) { grid-column: 1 / span 2; }
  .gallery-grid__item:nth-child(1) .media,
  .gallery-grid__item:nth-child(2) .media { aspect-ratio: 1; }
  .gallery-grid__item:nth-child(2) .media,
  .gallery-grid__item:nth-child(3) .media,
  .gallery-grid__item:nth-child(4) .media,
  .gallery-grid__item:nth-child(5) .media { aspect-ratio: 4/3; }

  /* Contact */
  .contact-sectie__grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid__item:nth-child(n) { grid-column: 1; }
  .gallery-grid__item .media { aspect-ratio: 4/3 !important; }
  .contact-form { padding: 1.5rem; }
}

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

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