/* ============================================================
   BASTIAAN OPTIEK — Premium Opticien Waddinxveen
   Palet: #2C2416 (donkerbruin), #B8960C (goud), #F5F0E8 (crème), 
          #4A3F2F (middentoon bruin), #FFFFFF
   Fonts: Playfair Display (koppen) + Inter (body)
   ============================================================ */

/* ── Reset & Tokens ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-dark:  #2C2416;
  --brown-mid:   #4A3F2F;
  --brown-light: #6B5A42;
  --gold:        #B8960C;
  --gold-light:  #D4AF37;
  --gold-pale:   #E8D080;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D8;
  --white:       #FFFFFF;
  --text-dark:   #1A1208;
  --text-mid:    #3A2F1E;
  --text-muted:  #6B5A42;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(44,36,22,.12);
  --shadow-md: 0 6px 24px rgba(44,36,22,.18);
  --shadow-lg: 0 16px 48px rgba(44,36,22,.24);

  --nav-h: 76px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { max-width: 68ch; }

.gold { color: var(--gold); }
.cream-text { color: var(--cream); }

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--dark {
  background: var(--brown-dark);
  color: var(--cream);
}

.section--brown {
  background: var(--brown-mid);
  color: var(--cream);
}

.section--cream {
  background: var(--cream-dark);
  color: var(--text-dark);
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__heading {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section__heading--cream {
  color: var(--cream);
}

.section__heading--dark {
  color: var(--brown-dark);
}

.section__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: .88;
  max-width: 58ch;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,150,12,.35);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline-cream:hover {
  background: var(--cream);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--brown-dark);
  color: var(--gold);
  border-color: var(--brown-dark);
}
.btn--dark:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--brown-dark);
  border-bottom: 1px solid rgba(184,150,12,.2);
  transition: box-shadow .3s;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.nav__logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-mark svg {
  width: 22px;
  height: 22px;
  color: var(--brown-dark);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .01em;
}

.nav__logo-sub {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--cream);
  opacity: .85;
  transition: opacity .2s, color .2s;
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__phone {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  opacity: .9;
  transition: opacity .2s;
}

.nav__phone:hover { opacity: 1; }

.nav__phone svg {
  width: 16px; height: 16px;
}

/* ── Mobile menu trigger ─────────────────────────────────── */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--cream);
}

.mobile-menu__trigger svg {
  width: 26px; height: 26px;
  transition: opacity .2s;
}

.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;
}

/* ── Mobile Fullscreen Overlay ───────────────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  height: 100dvh;
  background: var(--brown-dark);
  z-index: 950;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  overflow: hidden;
}

.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--nav-h) 2rem 2rem;
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: .5rem;
}

.mobile-menu__close svg {
  width: 28px; height: 28px;
}

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: 1.5rem;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cream);
  padding: .65rem 0;
  border-bottom: 1px solid rgba(245,240,232,.08);
  transition: color .2s, padding-left .2s;
  text-decoration: none;
}

.mobile-menu__item:hover {
  color: var(--gold);
  padding-left: .5rem;
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,240,232,.12);
}

.mobile-menu__footer a {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: .75rem;
  text-decoration: none;
}

.mobile-menu__footer a svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.mobile-menu__footer-sub {
  font-size: .8rem;
  color: var(--cream);
  opacity: .5;
  letter-spacing: .05em;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(44,36,22,.82) 0%,
    rgba(44,36,22,.55) 55%,
    rgba(44,36,22,.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(184,150,12,.15);
  border: 1px solid rgba(184,150,12,.4);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero__badge svg {
  width: 14px; height: 14px;
}

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

.hero__title span {
  color: var(--gold);
  display: block;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(245,240,232,.5);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 20px; height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--brown-dark);
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--gold);
  margin-bottom: .75rem;
}

.page-hero p {
  color: rgba(245,240,232,.75);
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0 auto;
}

/* ── SPECIALISATIES CARDS ─────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card--dark {
  background: var(--brown-mid);
  color: var(--cream);
}

.card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.card:hover .card__img img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.75rem 1.75rem 2rem;
}

.card__icon {
  width: 48px; height: 48px;
  background: rgba(184,150,12,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.card__icon svg {
  width: 24px; height: 24px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .6rem;
}

.card--dark .card__title {
  color: var(--gold);
}

.card__text {
  font-size: .93rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.card--dark .card__text {
  color: rgba(245,240,232,.75);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap .2s;
}

.card__link:hover { gap: .7rem; }

.card__link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* ── ABOUT / BEURTELINGS ─────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.split__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(184,150,12,.15);
  pointer-events: none;
}

.split__accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  background: var(--gold);
  border-radius: var(--radius);
  opacity: .12;
}

.split__content p {
  margin-bottom: 1.25rem;
}

.split__content .btn {
  margin-top: .75rem;
}

/* ── VALUE PROPS (icon + text strip) ─────────────────────── */
.value-strip {
  background: var(--brown-dark);
  border-top: 1px solid rgba(184,150,12,.12);
  border-bottom: 1px solid rgba(184,150,12,.12);
  padding: 2.75rem 0;
}

.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem 2rem;
}

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

.value-item__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(184,150,12,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.value-item__icon svg {
  width: 22px; height: 22px;
}

.value-item__text strong {
  display: block;
  color: var(--cream);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .2rem;
}

.value-item__text span {
  font-size: .82rem;
  color: rgba(245,240,232,.55);
  line-height: 1.5;
}

/* ── MERKEN ROUW ─────────────────────────────────────────── */
.brands-section {
  background: var(--brown-mid);
  padding: 3.5rem 0;
  text-align: center;
}

.brands-section h2 {
  color: var(--cream);
  margin-bottom: .75rem;
}

.brands-section p {
  color: rgba(245,240,232,.65);
  font-size: .95rem;
  margin: 0 auto 2.5rem;
  max-width: 50ch;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: rgba(245,240,232,.08);
  border: 1px solid rgba(245,240,232,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.brand-item {
  background: rgba(44,36,22,.6);
  padding: 1.75rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background .2s;
}

.brand-item:hover {
  background: rgba(184,150,12,.08);
}

.brand-item span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(245,240,232,.6);
  letter-spacing: .05em;
  transition: color .2s;
}

.brand-item:hover span {
  color: var(--gold);
}

/* ── CTA-BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--brown-dark);
  margin-bottom: .75rem;
}

.cta-band p {
  color: var(--brown-mid);
  font-size: 1.05rem;
  margin: 0 auto 2rem;
  max-width: 54ch;
}

.cta-band .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section__bg {
  position: absolute;
  inset: 0;
}

.contact-section__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.contact-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,36,22,.88);
}

.contact-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-info h2 {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.contact-info p {
  color: rgba(245,240,232,.8);
  font-size: .95rem;
  max-width: 44ch;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  color: rgba(245,240,232,.85);
  font-size: .93rem;
  line-height: 1.55;
}

.contact-details li svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: .1rem;
}

.contact-details li a {
  color: inherit;
  transition: color .2s;
}

.contact-details li a:hover { color: var(--gold); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .75rem;
  font-size: .875rem;
  color: rgba(245,240,232,.7);
}

.hours-grid dt { font-weight: 600; color: rgba(245,240,232,.9); }
.hours-grid dd { color: var(--gold); }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form {
  background: rgba(245,240,232,.04);
  border: 1px solid rgba(184,150,12,.2);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
}

.contact-form h3 {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(245,240,232,.65);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(44,36,22,.6);
  border: 1px solid rgba(184,150,12,.25);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,12,.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select option {
  background: var(--brown-dark);
}

/* ── DIENSTEN PAGE CARDS ─────────────────────────────────── */
.dienst-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dienst-card__header {
  padding: 2rem 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.dienst-card__icon {
  width: 56px; height: 56px;
  background: rgba(184,150,12,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.dienst-card__icon svg { width: 28px; height: 28px; }

.dienst-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.dienst-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 1.5rem 0 0;
}

.dienst-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.dienst-card:hover .dienst-card__img img {
  transform: scale(1.03);
}

.dienst-card__body {
  padding: 1.5rem 2rem 2rem;
}

.dienst-card__body p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.dienst-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.5rem;
}

.dienst-card__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-mid);
}

.dienst-card__list li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: .15rem;
}

/* ── TEAM ─────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold);
  background: var(--brown-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__photo-placeholder {
  width: 60px; height: 60px;
  color: var(--gold);
  opacity: .5;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: .25rem;
}

.team-card__role {
  font-size: .85rem;
  color: rgba(245,240,232,.6);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .75rem;
}

.team-card__bio {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(245,240,232,.7);
  max-width: 32ch;
  margin: 0 auto;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.testimonial {
  background: rgba(245,240,232,.05);
  border: 1px solid rgba(184,150,12,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial__stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem;
}

.testimonial__star {
  width: 18px; height: 18px;
  color: var(--gold);
}

.testimonial__quote {
  font-style: italic;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(245,240,232,.8);
  margin-bottom: 1.25rem;
}

.testimonial__author {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
}

/* ── MAP ──────────────────────────────────────────────────── */
.map-embed {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184,150,12,.2);
}

.map-embed iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer-kit {
  background: var(--brown-dark);
  border-top: 1px solid rgba(184,150,12,.15);
  padding: 4rem 0 1.5rem;
}

.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.footer-brand__logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand__logo-mark svg {
  width: 20px; height: 20px;
  color: var(--brown-dark);
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-brand__tagline {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-brand__desc {
  font-size: .875rem;
  color: rgba(245,240,232,.55);
  line-height: 1.65;
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  font-size: .875rem;
  color: rgba(245,240,232,.55);
  transition: color .2s;
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .875rem;
  color: rgba(245,240,232,.55);
  line-height: 1.5;
}

.footer-contact-list li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: .1rem;
}

.footer-contact-list li a {
  color: inherit;
  transition: color .2s;
}

.footer-contact-list li a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,.07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(245,240,232,.3);
  max-width: none;
}

.footer-bottom a {
  color: var(--gold);
  font-size: .78rem;
  transition: opacity .2s;
}

.footer-bottom a:hover { opacity: .7; }

/* ── MEDIA FILL SAFEGUARD ─────────────────────────────────── */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}

.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__img img, .hero__media img,
.split__media img, .dienst-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-kit__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .split--reverse { direction: ltr; }

  .contact-section__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .mobile-menu__trigger {
    display: block;
  }

  .footer-kit__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band .btn-group {
    flex-direction: column;
    align-items: center;
  }
}

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

/* ── OVER ONS PAGE ────────────────────────────────────────── */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.story-section__content h2 {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.story-section__content p {
  color: var(--text-mid);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.story-section__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story-section__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .story-section {
    grid-template-columns: 1fr;
  }
  .story-section__media {
    aspect-ratio: 16/10;
    order: -1;
  }
}

/* ── DIENSTEN GRID ────────────────────────────────────────── */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

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

/* ── BRAND ITEMS ENHANCED ─────────────────────────────────── */
.brand-item {
  flex-direction: column !important;
  gap: .5rem;
  padding: 1.75rem 1rem 1.5rem !important;
}

.brand-item small {
  font-size: .72rem;
  color: rgba(245,240,232,.35);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transition: color .2s;
  display: block;
}

.brand-item:hover small {
  color: rgba(184,150,12,.6);
}

.brand-item span {
  text-align: center;
}

.brand-item__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: .5;
  transition: opacity .2s;
}

.brand-item__icon svg {
  width: 28px;
  height: 28px;
}

.brand-item:hover .brand-item__icon {
  opacity: 1;
}

/* ── BRANDS GRID BALANCE ──────────────────────────────────── */
.brands-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
