/* ═══════════════════════════════════════════════════════════════
   COIFFURES GILBERT — Premium Salon CSS
   Palet: #1a1a1a (near-black) | #ffffff | #f5f5f5 (light grey)
   Fonts: Cormorant Garamond (display) + Inter (body)
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --black:       #1a1a1a;
  --black-soft:  #2d2d2d;
  --white:       #ffffff;
  --grey-light:  #f5f5f5;
  --grey-mid:    #e8e8e8;
  --grey-text:   #666666;
  --border:      rgba(26,26,26,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 100px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.14);

  --header-h:    72px;
  --container:   1200px;
  --gutter:      clamp(1rem, 4vw, 2rem);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
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 img,
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── CONTAINER ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.04em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-body); }

p { max-width: 68ch; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease-out), color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn--primary:hover {
  background: var(--black-soft);
  border-color: var(--black-soft);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
}
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn--lg { padding: 0.9rem 2rem; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── LOGO ────────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--black);
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--black);
}
.logo-mark--white { color: var(--white); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-text);
}

/* ─── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.desktop-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.desktop-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 2px;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.25s var(--ease-out);
}
.desktop-nav a:hover::after { width: 100%; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ─── HAMBURGER ───────────────────────────────────────────────── */
.mobile-menu__trigger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE MENU OVERLAY ─────────────────────────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  height: 100svh;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  pointer-events: none;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 var(--gutter) 2rem;
  overflow-y: auto;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  flex-shrink: 0;
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }
.mobile-menu__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 2rem 0;
}
.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 0.4rem 0;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}
.mobile-menu__item:hover {
  opacity: 0.6;
  transform: translateX(8px);
}
.mobile-menu__cta {
  margin-bottom: 1.5rem;
}
.mobile-menu__cta .btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  font-size: 0.9rem;
  padding: 1rem 1.5rem;
}
.mobile-menu__cta .btn--primary:hover {
  background: rgba(255,255,255,0.88);
}
.mobile-menu__info {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.mobile-menu__info a {
  color: var(--white);
}

/* ─── SECTION LAYOUT ─────────────────────────────────────────── */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 0.75rem;
  max-width: none;
}
.section-title {
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--grey-text);
  margin: 0 auto;
  max-width: 60ch;
  line-height: 1.7;
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.3) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: var(--header-h);
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero__kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
  max-width: none;
}
.hero__title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  max-width: none;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── SOCIAL PROOF STRIP ──────────────────────────────────────── */
.social-proof {
  background: var(--black);
  padding: 1.75rem 0;
}
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  color: var(--white);
}
.proof-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.proof-item span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  max-width: none;
}
.proof-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
  color: rgba(255,255,255,0.8);
}
.proof-icon svg { width: 16px; height: 16px; }
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── SERVICES CARDS ──────────────────────────────────────────── */
.diensten { background: var(--grey-light); }

.card-grid {
  display: grid;
  gap: 1.5rem;
}
.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--grey-mid);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.card:hover .card__media img {
  transform: scale(1.04);
}
.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.card__title {
  font-size: 1.15rem;
  font-weight: 400;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.card__text {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.65;
  flex: 1;
  max-width: none;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: auto;
  transition: gap 0.2s;
}
.card__link svg { width: 14px; height: 14px; }
.card__link:hover { gap: 0.75rem; }

/* ─── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.cta-band__sfeer {
  position: relative;
  overflow: hidden;
}
.cta-band__sfeer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.cta-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  color: var(--white);
}
.cta-band__kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  max-width: none;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.cta-band__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 40ch;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── VESTIGINGEN ─────────────────────────────────────────────── */
.vestigingen { background: var(--white); }
.vestiging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.vestiging-card {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s;
}
.vestiging-card:hover {
  box-shadow: var(--shadow-md);
}
.vestiging-card__accent {
  height: 4px;
  background: var(--black);
}
.vestiging-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.vestiging-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vestiging-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
}
.vestiging-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-text);
}
.vestiging-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.vestiging-info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.vi-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  color: var(--black);
}
.vi-icon svg { width: 18px; height: 18px; }
.vestiging-info strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 0.25rem;
}
.vestiging-info span {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: none;
}
.vestiging-info a {
  color: var(--black);
  font-weight: 500;
}
.vestiging-info a:hover { text-decoration: underline; }

/* ─── INSTAGRAM MOSAIC ────────────────────────────────────────── */
.inspiratie { background: var(--grey-light); }
.insta-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 340px;
  grid-auto-rows: 340px;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.insta-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
  background: var(--grey-mid);
  grid-column: auto;
  grid-row: auto;
}
.insta-tile--lg {
  grid-row: span 1;
}
.insta-tile--lg-bottom {
  grid-column: auto;
  grid-row: auto;
}
.insta-tile .media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.insta-tile .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.insta-tile:hover .media img {
  transform: scale(1.06);
}
.insta-tile__hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  color: var(--white);
}
.insta-tile__hover svg { width: 32px; height: 32px; }
.insta-tile:hover .insta-tile__hover { opacity: 1; }
.insta-follow {
  display: flex;
  justify-content: center;
}

/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}
.ci-icon svg { width: 18px; height: 18px; }
.contact-list strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 0.25rem;
}
.contact-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}
.contact-list a:hover { text-decoration: underline; }

/* ─── FORM ────────────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.form-field label span { color: var(--grey-text); }
.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--grey-text);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(26,26,26,0.08);
}
.select-wrap {
  position: relative;
}
.select-wrap select {
  width: 100%;
  padding-right: 2.5rem;
  cursor: pointer;
}
.select-wrap svg {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
  color: var(--grey-text);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.btn--submit { align-self: flex-start; margin-top: 0.5rem; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer-kit { background: var(--black); color: var(--white); }
.footer-kit__main {
  padding: clamp(3rem, 6vw, 5rem) 0 3rem;
}
.footer-kit__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: none;
}
.footer-brand__sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  max-width: none;
}
.footer-nav ul {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-vestigingen {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-vestiging h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
}
.footer-vestiging address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.footer-vestiging address a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer-vestiging address a:hover { color: var(--white); }
.footer-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  max-width: none;
}
.footer-contact-col h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
}
.footer-contact-col > a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 1.5rem;
}
.footer-contact-col > a:hover { color: var(--white); }
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.footer-kit__bottom {
  background: rgba(0,0,0,0.3);
  padding: 1.25rem 0;
}
.footer-kit__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-kit__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  max-width: none;
}
.footer-demo-note a { color: rgba(255,255,255,0.55); }
.footer-demo-note a:hover { color: var(--white); }

/* ─── RESPONSIVE: TABLET 768px ───────────────────────────────── */
@media (max-width: 960px) {
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-band__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cta-band__sfeer {
    height: 280px;
  }
  .footer-vestigingen {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .insta-mosaic {
    grid-template-rows: repeat(2, 220px);
  }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-actions .btn--outline { display: none; }
  .mobile-menu__trigger { display: flex; }

  .vestiging-grid {
    grid-template-columns: 1fr;
  }
  .footer-kit__top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul { gap: 1rem; }
  .footer-vestigingen {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .insta-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    grid-auto-rows: 200px;
  }
}

/* ─── RESPONSIVE: MOBILE 375px ───────────────────────────────── */
@media (max-width: 480px) {
  .card-grid--4 { grid-template-columns: 1fr; }

  .hero__title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
    max-width: none;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .proof-strip {
    flex-direction: column;
    gap: 0;
  }
  .proof-divider {
    width: 40px;
    height: 1px;
    margin: 0.5rem 0;
  }
  .proof-item { padding: 0.6rem 1rem; }

  .form-row--2 { grid-template-columns: 1fr; }
  .btn--submit { width: 100%; justify-content: center; }

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

  .insta-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
    grid-auto-rows: 160px;
    gap: 0.5rem;
  }

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

/* ─── SCROLL REVEAL VISIBLE FALLBACK ─────────────────────────── */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}

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