/* ================================================================
   NT MOBILITY — style.css
   Kleuren: Navy #1B3A6B | Goud #C9A84C | Wit #FFFFFF | Zwart #1a1a1a
   Fonts: Cormorant Garamond (koppen) + DM Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  --navy:       #1B3A6B;
  --navy-dark:  #122b52;
  --navy-deep:  #0d1f3c;
  --white:      #FFFFFF;
  --black:      #1a1a1a;
  --gold:       #C9A84C;
  --gold-light: #d4b86a;
  --gold-pale:  rgba(201, 168, 76, 0.15);
  --navy-90:    rgba(27, 58, 107, 0.92);
  --navy-50:    rgba(27, 58, 107, 0.5);
  --grey-light: #f4f6f9;
  --grey-mid:   #e2e8f0;
  --grey-text:  #6b7280;

  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'DM Sans', system-ui, sans-serif;

  --radius:     4px;
  --radius-lg:  10px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.14);
  --shadow-dark:0 8px 32px rgba(0,0,0,0.3);
  --trans:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { font-size: 1rem; line-height: 1.75; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.2rem;
}

.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-text);
  max-width: 620px;
  line-height: 1.75;
}

/* ── Layout Containers ─────────────────────────────────────────── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 96px 0;
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy .section-title { color: var(--white); }
.section--navy .section-subtitle { color: rgba(255,255,255,0.72); }

.section--grey {
  background: var(--grey-light);
}

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  transition: var(--trans);
  background: transparent;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}

.nav.scrolled .nav__logo-text { color: var(--navy); }
.nav.scrolled .nav__link { color: var(--black); }
.nav.scrolled .nav__link::after { background: var(--gold); }
.nav.scrolled .nav__hamburger span { background: var(--navy); }
.nav__logo img { filter: brightness(0) invert(1); }
.nav.scrolled .nav__logo img { filter: none; }

.nav__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.nav__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav__logo-fallback {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: var(--trans);
}

.nav.scrolled .nav__logo-fallback { color: var(--navy); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: var(--trans);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--trans);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--gold); }
.nav__link.active::after { width: 100%; }
.nav.scrolled .nav__link:hover { color: var(--navy); }
.nav.scrolled .nav__link.active { color: var(--navy); }

.nav__cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  transition: var(--trans);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 100vw);
  height: 100vh;
  background: var(--navy-deep);
  padding: 100px 2.5rem 3rem;
  flex-direction: column;
  gap: 0;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}

.nav__mobile.open { right: 0; }

.nav__mobile-link {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--trans);
  letter-spacing: 0.01em;
}

.nav__mobile-link:hover,
.nav__mobile-link.active { color: var(--gold); }

.nav__mobile-cta {
  margin-top: 2rem;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--trans);
}

.nav__mobile-cta:hover { background: var(--gold-light); }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.35s;
}

.nav__overlay.open { opacity: 1; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(27,58,107,0.35);
}

/* ── Hero — shared ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  background-image: url('../images/hero_bg.jpg');
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,16,36,0.96) 0%, rgba(11,22,50,0.90) 55%, rgba(11,22,50,0.65) 100%),
              radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero__content .container { max-width: 1220px; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 58vh;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}

.page-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.page-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--trans); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: var(--gold); }

/* ── Page Hero: background image variant ────────────────────────── */
.page-hero__img-pan {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 55% 50%;
  animation: panBg 24s ease-in-out infinite alternate;
  z-index: 0;
}

.page-hero--img .page-hero__grid-bg { z-index: 2; }

.page-hero--img .page-hero__gradient {
  background: linear-gradient(to right, rgba(7,14,32,0.88) 0%, rgba(10,20,46,0.60) 45%, rgba(7,14,32,0.28) 100%),
              linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.22) 100%);
  z-index: 3;
}

.page-hero--img .page-hero__content { z-index: 4; }

/* ── Photo Banner ────────────────────────────────────────────────── */
.photo-banner {
  position: relative;
  height: clamp(200px, 26vw, 320px);
  overflow: hidden;
}

.photo-banner__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: panRTL 20s ease-in-out infinite alternate;
}

.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,12,28,0.82) 0%, rgba(11,22,50,0.54) 55%, rgba(5,12,28,0.70) 100%);
  z-index: 1;
}

.photo-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 max(2rem, 8vw);
  max-width: 760px;
}

.photo-banner__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.photo-banner__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.4rem;
}

.photo-banner__cta { align-self: flex-start; }

/* ── Ken Burns pan animation (shared) ───────────────────────────── */
@keyframes panRTL {
  from { transform: translateX(3%); }
  to   { transform: translateX(-3%); }
}

@keyframes panBg {
  from { background-position: 55% 50%; }
  to   { background-position: 45% 50%; }
}

/* ── Homepage Hero ──────────────────────────────────────────────── */
.hero__headline {
  font-family: var(--font-head);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__headline-line1 {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero__headline-line2 {
  display: block;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 700;
  color: var(--gold);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}

.hero__scroll-text {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-arrow {
  width: 20px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.hero__scroll-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: rgba(255,255,255,0.45);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Service Preview Cards ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--trans);
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.93rem;
  color: var(--grey-text);
  line-height: 1.75;
}

.services-preview__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── Auto Showcase Slider ──────────────────────────────────────── */
.slider-section {
  background: var(--navy-deep);
  padding: 96px 0;
  overflow: hidden;
}

.slider-section .section-title { color: var(--white); }

.slider__wrapper {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider__slide {
  min-width: 100%;
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #0d1f3c;
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.slider__slide:hover img { transform: scale(1.03); }

.slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.82) 0%, rgba(13,31,60,0.2) 60%, transparent 100%);
}

.slider__info {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 2;
}

.slider__car-name {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
}

.slider__car-year {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.25rem;
}

.slider__placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider__placeholder-icon {
  opacity: 0.15;
}

.slider__placeholder-icon svg {
  width: 80px;
  height: 80px;
  fill: var(--white);
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  cursor: pointer;
}

.slider__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.slider__btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider__btn:hover svg { stroke: var(--navy); }

.slider__btn--prev { left: 1.25rem; }
.slider__btn--next { right: 1.25rem; }

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  padding: 0;
}

.slider__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── About Preview ─────────────────────────────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--grey-mid);
}

.about-preview__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.88);
  transition: filter 0.7s ease, transform 0.7s ease;
  transform: scale(1);
}

.about-preview__img-wrap:hover img,
.about-preview__img-wrap.photo-revealed img {
  filter: saturate(1) brightness(1);
}

.about-preview__img-wrap:hover img {
  transform: scale(1.035);
}

.about-preview__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 22, 50, 0.60) 0%,
    rgba(11, 22, 50, 0.50) 45%,
    rgba(11, 22, 50, 0.20) 100%
  );
  z-index: 1;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.about-preview__img-wrap:hover::after,
.about-preview__img-wrap.photo-revealed::after {
  opacity: 0;
}

.about-preview__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-50), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-preview__img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about-preview__text { padding: 1rem 0; }
.about-preview__text .section-title { margin-bottom: 1.5rem; }

.about-preview__body {
  font-size: 1rem;
  color: var(--grey-text);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* ── Lead Capture Banner ───────────────────────────────────────── */
.lead-banner {
  background: var(--navy);
  padding: 72px 0;
  border-top: 3px solid var(--gold);
}

.lead-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.lead-banner__text .section-label { color: var(--gold); }
.lead-banner__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 600;
}

.lead-banner__text p {
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.75rem;
}

/* ── Forms ─────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.03em;
}

.form-label--white { color: rgba(255,255,255,0.75); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.93rem;
  color: var(--black);
  transition: var(--trans);
  outline: none;
  line-height: 1.5;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}

.form-input--dark,
.form-select--dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.form-input--dark::placeholder { color: rgba(255,255,255,0.4); }

.form-input--dark:focus,
.form-select--dark:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.1);
}

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

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

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #e53e3e;
  animation: shake 0.4s ease;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-grid--full { grid-column: 1 / -1; }

/* Radio group for contact preference */
.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-option input { cursor: pointer; accent-color: var(--navy); }
.radio-option span { font-size: 0.9rem; }

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  background: rgba(72,187,120,0.12);
  border: 1.5px solid #48bb78;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: #276749;
  font-size: 0.93rem;
  font-weight: 500;
  margin-top: 1rem;
}

.form-success.show { display: flex; }

.form-success svg {
  width: 22px;
  height: 22px;
  stroke: #48bb78;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Gold Divider ───────────────────────────────────────────────── */
.gold-divider {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}

/* ── Over Mij Page ─────────────────────────────────────────────── */
.profile-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

.profile-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--grey-mid);
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.45) brightness(0.88);
  transition: filter 0.7s ease, transform 0.7s ease;
  transform: scale(1);
}

.profile-img-wrap:hover img,
.profile-img-wrap.photo-revealed img {
  filter: saturate(1) brightness(1);
}

.profile-img-wrap:hover img {
  transform: scale(1.035);
}

.profile-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 22, 50, 0.60) 0%,
    rgba(11, 22, 50, 0.50) 45%,
    rgba(11, 22, 50, 0.20) 100%
  );
  z-index: 1;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.profile-img-wrap:hover::after,
.profile-img-wrap.photo-revealed::after {
  opacity: 0;
}

.profile-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}

.profile-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.profile-name {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.profile-bio {
  font-size: 1rem;
  color: var(--grey-text);
  line-height: 1.85;
}

.profile-bio p + p { margin-top: 1.25rem; }

/* Typewriter */
.typewriter-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.typewriter-text {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--gold);
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s infinite;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.vision-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.vision-card__title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.vision-card__text {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-size: 0.97rem;
}

/* ── Diensten Page ─────────────────────────────────────────────── */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--grey-mid);
}

.service-detail:last-child { border-bottom: none; }

.service-detail__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.service-detail__intro {
  font-size: 1.06rem;
  color: var(--grey-text);
  max-width: 700px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.service-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--grey-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  color: var(--black);
  line-height: 1.55;
  transition: var(--trans);
}

.service-point:hover {
  background: var(--gold-pale);
  transform: translateX(3px);
}

.service-point__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.service-point__check svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-tag {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  white-space: nowrap;
}

.price-tag__label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.3rem;
}

.price-tag__value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.price-tag__note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.service-price-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-price-tier {
  flex: 1;
  min-width: 180px;
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.service-price-tier__range {
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.service-price-tier__price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.service-travel-note {
  font-size: 0.88rem;
  color: var(--grey-text);
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--grey-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

/* ── Tarieven Page ─────────────────────────────────────────────── */
.pricing-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.06rem;
  color: var(--grey-text);
  line-height: 1.8;
}

.pricing-section {
  margin-bottom: 4rem;
}

.pricing-section__title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--grey-mid);
}

.pricing-section__title span { color: var(--gold); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.pricing-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-text);
  padding: 0.75rem 1.25rem;
  background: var(--grey-light);
  border-bottom: 2px solid var(--grey-mid);
}

.pricing-table td {
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--grey-mid);
  font-size: 0.95rem;
}

.pricing-table tbody tr:hover {
  background: var(--gold-pale);
}

.pricing-table td:last-child {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

.pricing-setup {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
}

.pricing-setup__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-setup__value {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
}

.pricing-fixed {
  display: inline-flex;
  flex-direction: column;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 2.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.pricing-fixed__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
}

.pricing-fixed__value {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin: 0.3rem 0;
}

.pricing-fixed__note {
  font-size: 0.8rem;
  color: var(--navy);
  opacity: 0.65;
}

.pricing-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.pricing-tier-card {
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--trans);
}

.pricing-tier-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-tier-card__range {
  font-size: 0.82rem;
  color: var(--grey-text);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.pricing-tier-card__price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
}

.pricing-note {
  font-size: 0.88rem;
  color: var(--grey-text);
  padding: 1rem 1.25rem;
  background: var(--grey-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  margin-top: 1rem;
}

/* ── Pricing Accordion ─────────────────────────────────────────── */
.pricing-accordion__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1rem 1.25rem;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  font-family: inherit;
  text-align: left;
  gap: 1rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.pricing-accordion__toggle:hover {
  background: rgba(201, 168, 76, 0.22);
  border-color: var(--gold-light);
}

.pricing-accordion__toggle[aria-expanded="true"] {
  background: rgba(201, 168, 76, 0.18);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.pricing-accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--trans);
}

.pricing-accordion__icon::after {
  content: '';
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}

.pricing-accordion__toggle[aria-expanded="true"] .pricing-accordion__icon::after {
  transform: rotate(-135deg) translateY(2px);
}

.pricing-accordion__body[hidden] { display: none; }

.pricing-accordion__body { padding-top: 1.5rem; }

/* ── Pricing Action Block ─────────────────────────────────────── */
.pricing-action {
  background: linear-gradient(135deg, var(--gold) 0%, #b8932e 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}

.pricing-action__badge {
  display: inline-block;
  background: var(--navy-deep);
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.pricing-action__title {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 1.25rem;
}

.pricing-action__calc {
  background: rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
}

.pricing-action__calc-row {
  display: flex;
  justify-content: space-between;
  padding: 0.28rem 0;
  font-size: 0.88rem;
  color: var(--navy-deep);
}

.pricing-action__calc-row--discount {
  color: var(--navy-deep);
  font-weight: 600;
}

.pricing-action__calc-row--total {
  border-top: 1px solid rgba(0,0,0,0.18);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
}

.pricing-action__note {
  font-size: 0.82rem;
  color: rgba(27,30,40,0.72);
  margin-top: 0.5rem;
  line-height: 1.65;
}

/* ── Pricing Additional Costs Block ──────────────────────────── */
.pricing-additional {
  background: var(--grey-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2rem 2.5rem;
  margin-top: 3.5rem;
}

.pricing-additional__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.pricing-additional__text {
  font-size: 0.92rem;
  color: var(--black);
  line-height: 1.8;
}

.pricing-additional__text p + p { margin-top: 0.75rem; }

.pricing-additional__text ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.4rem;
}

.pricing-additional__text ul li { margin-bottom: 0.2rem; }

/* Offerte form */
.offerte-section {
  background: var(--navy);
  padding: 80px 0;
  margin-top: 0;
}

.offerte-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.offerte-form-wrap .form-label { color: rgba(255,255,255,0.75); }
.offerte-form-wrap .form-input,
.offerte-form-wrap .form-select,
.offerte-form-wrap .form-textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
}

.offerte-form-wrap .form-input::placeholder,
.offerte-form-wrap .form-textarea::placeholder { color: rgba(255,255,255,0.35); }

.offerte-form-wrap .form-input:focus,
.offerte-form-wrap .form-select:focus,
.offerte-form-wrap .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.1);
}

.offerte-form-wrap .form-select option { background: var(--navy-deep); }

/* ── Contact Page ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--grey-mid);
}

.contact-info__item:first-child { padding-top: 0; }

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 0.3rem;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}

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

.contact-hours {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.7;
}

.contact-hours strong { color: var(--navy); display: block; margin-bottom: 0.5rem; }

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--grey-light);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--grey-mid);
  transition: var(--trans);
  letter-spacing: 0.04em;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--navy);
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.social-link:hover svg { fill: var(--white); }

/* Contact form card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer__logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.footer__tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--trans);
}

.footer__link:hover { color: var(--white); padding-left: 4px; }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.85rem;
  transition: var(--trans);
}

.footer__contact-item:hover { color: var(--white); }

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--trans);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.65);
}

.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer__social-link:hover svg { fill: var(--navy); }

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__kvk {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── Scroll Animations ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Keyframes ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Utility Classes ────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-grey  { color: var(--grey-text); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.w-full { width: 100%; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── Cinematic Intro ────────────────────────────────────────────── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000;
}

/* Letterbox bars */
.intro__lbx {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 12;
  background: #000;
  height: clamp(38px, 9vh, 76px);
  transition: height 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
.intro__lbx--top    { top: 0; }
.intro__lbx--bottom { bottom: 2px; }
.intro__lbx.collapse { height: 0; }

/* Scenes */
.intro__scene {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  will-change: transform, opacity;
  opacity: 0;
}

/* Scene 1 — Vintage car interior, looking forward through dashboard */
.intro__scene--1 {
  background-image: url('../images/intro_s1.jpg');
  filter: contrast(1.14) brightness(0.72) saturate(0.65) sepia(0.18);
  z-index: 1;
}
/* Scene 2 — Scenic mountain road */
.intro__scene--2 {
  background-image: url('../images/intro_s2.jpg');
  filter: contrast(1.1) brightness(0.78) saturate(0.9);
  z-index: 2;
  background-position: center 35%;
}
/* Scene 3 — Classic car exterior */
.intro__scene--3 {
  background-image: url('../images/intro_s3.jpg');
  filter: contrast(1.12) brightness(0.76) saturate(0.82);
  z-index: 3;
}


/* Film grain */
.intro__grain {
  position: absolute;
  inset: -15%;
  z-index: 5;
  pointer-events: none;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 175px 175px;
  animation: introGrain 0.17s steps(1) infinite;
}

/* Cinematic vignette */
.intro__vignette {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: radial-gradient(ellipse 78% 75% at 50% 50%, transparent 18%, rgba(0,0,0,0.84) 100%);
  pointer-events: none;
}

/* Punch-through white flash */
.intro__punch {
  position: absolute;
  inset: 0;
  z-index: 7;
  background: #fffcf5;
  opacity: 0;
  pointer-events: none;
}

/* Soft golden lens flare */
.intro__flare {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 28% 32% at 60% 36%, rgba(255,246,210,0.65) 0%, transparent 55%),
    radial-gradient(ellipse 10% 12% at 60% 36%, rgba(255,255,255,0.9) 0%, transparent 50%);
}

/* Centerwrapper — centering losgekoppeld van GSAP transforms */
.intro__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

/* Brand overlay */
.intro__brand {
  text-align: center;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
}

.intro__brand-name {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.14em;
  text-shadow: 0 4px 60px rgba(0,0,0,0.85), 0 0 120px rgba(201,168,76,0.2);
}

.intro__brand-sep {
  display: block;
  width: 56px;
  height: 1.5px;
  background: var(--gold);
  margin: 1.1rem auto 1rem;
  transform: scaleX(0);
  transform-origin: left center;
}

.intro__brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 0.85vw, 0.74rem);
  font-weight: 500;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 28px rgba(201,168,76,0.5);
}

/* Progress bar */
.intro__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.07);
  z-index: 13;
}
.intro__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
}

/* Skip button */
.intro__skip {
  position: absolute;
  bottom: 1.2rem;
  right: 1.5rem;
  z-index: 13;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.intro__skip.visible    { opacity: 1; pointer-events: auto; }
.intro__skip:hover {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

@keyframes introGrain {
  0%   { transform: translate(0,0); }
  11%  { transform: translate(-4%,-9%); }
  22%  { transform: translate(-13%,5%); }
  33%  { transform: translate(7%,-22%); }
  44%  { transform: translate(-5%,22%); }
  55%  { transform: translate(-13%,9%); }
  66%  { transform: translate(13%,1%); }
  77%  { transform: translate(1%,14%); }
  88%  { transform: translate(3%,30%); }
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .profile-grid { grid-template-columns: 340px 1fr; gap: 3.5rem; }
  .contact-grid { grid-template-columns: 360px 1fr; gap: 3.5rem; }
  .services-grid { gap: 1.25rem; }
  .pricing-tiers-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .about-preview,
  .profile-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-preview__img-wrap { max-width: 420px; }
  .profile-img-wrap { max-width: 360px; }

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

  .lead-banner__inner {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__grid > div:first-child { grid-column: 1 / -1; }

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

  .service-points { grid-template-columns: 1fr; }

  .service-detail__header { grid-template-columns: 1fr; }
  .service-price-tiers { flex-direction: column; }

  .pricing-tiers-grid { grid-template-columns: 1fr; }

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

  .offerte-form-wrap { padding: 2rem; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .container { padding: 0 1.25rem; }

  .hero__content { padding: 120px 0 80px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .slider__slide { height: 320px; }

  .page-hero__title { font-size: 2.4rem; }

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

  .contact-form-card { padding: 1.5rem; }

  .pricing-table { font-size: 0.85rem; }
  .pricing-table th, .pricing-table td { padding: 0.75rem 0.75rem; }

  .lead-banner { padding: 56px 0; }
}
