/* ═══════════════════════════════════════════════
   HAARMODE HANS PLAS — DESIGN SYSTEM
   Brand: Navy #1a3a6b | Accent #4a7fc1 | Text #2d2d2d
   Font: Nunito (Google Fonts)
═══════════════════════════════════════════════ */

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

:root {
  --navy:        #1a3a6b;
  --navy-dark:   #102648;
  --navy-light:  #2a4f8a;
  --accent:      #4a7fc1;
  --accent-light:#6a9fd1;
  --gold:        #c8a45a;
  --text:        #2d2d2d;
  --text-muted:  #5a5a5a;
  --bg:          #ffffff;
  --bg-off:      #f5f7fa;
  --bg-dark:     #0e1f3d;
  --border:      #e2e8f0;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(26,58,107,.10);
  --shadow-md:   0 6px 24px rgba(26,58,107,.14);
  --font:        'Nunito', system-ui, sans-serif;
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Utility */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── TYPOGRAPHY ──────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem; border-radius: 50px;
  font-size: .95rem; font-weight: 700;
  transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 4px 16px rgba(26,58,107,.35);
}
.btn--primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,58,107,.4); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); border-color: #fff; }
/* Hero CTA — primary white pill, secondary ghost */
.hero__actions .btn--primary {
  background: #fff; color: var(--navy);
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
  font-size: 1.05rem; padding: .9rem 2.4rem;
}
.hero__actions .btn--primary:hover { background: var(--bg-off); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.32); }
.hero__actions .btn--ghost { font-size: 1rem; }
.btn--white { background: #fff; color: var(--navy); font-weight: 700; }
.btn--white:hover { background: var(--bg-off); transform: translateY(-2px); }
.btn--outline-white { border: 2px solid #fff; color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,.12); }
.btn--full { width: 100%; justify-content: center; }

/* ── HEADER ──────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: .65rem; color: #fff; font-size: 1rem; font-weight: 600; }
.logo__mark { width: 32px; height: 32px; flex-shrink: 0; }
.logo__text strong { font-weight: 800; }
.logo--footer .logo__text { font-size: 1rem; }

/* Desktop nav */
.desktop-nav ul { display: flex; align-items: center; gap: .25rem; }
.desktop-nav a {
  padding: .5rem .85rem; border-radius: 50px; color: rgba(255,255,255,.85);
  font-size: .9rem; font-weight: 600; transition: var(--transition);
}
.desktop-nav a:hover { color: #fff; background: rgba(255,255,255,.12); }
.desktop-nav .nav-cta {
  background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4);
  margin-left: .5rem;
}
.desktop-nav .nav-cta:hover { background: rgba(255,255,255,.28); }

/* ── MOBILE MENU TRIGGER ────────────────────── */
.mobile-menu__trigger { display: none; padding: .5rem; }
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: #fff; border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}

/* ── MOBILE MENU OVERLAY ────────────────────── */
.mobile-menu__overlay {
  position: fixed; inset: 0;
  width: 100vw; height: 100svh; height: 100dvh;
  background: var(--navy-dark);
  z-index: 1000;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
  display: flex; flex-direction: column;
}
.mobile-menu__overlay.is-open {
  opacity: 1; visibility: visible; pointer-events: all;
}
.mobile-menu__panel { display: flex; flex-direction: column; height: 100%; padding: 1.5rem; }
.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 1.5rem;
}
.mobile-menu__logo { color: #fff; font-size: 1.1rem; font-weight: 600; }
.mobile-menu__logo strong { font-weight: 800; }
.mobile-menu__close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.mobile-menu__close svg { width: 20px; height: 20px; }
.mobile-menu__close:hover { background: rgba(255,255,255,.2); }
.mobile-menu__list { flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.mobile-menu__item {
  display: block; padding: 1rem 1.25rem; border-radius: var(--radius);
  color: rgba(255,255,255,.9); font-size: 1.25rem; font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu__item:hover, .mobile-menu__item:focus { background: rgba(255,255,255,.1); color: #fff; }
.mobile-menu__cta {
  display: block; text-align: center;
  margin-top: 1.5rem; padding: 1rem 2rem;
  background: var(--accent); color: #fff;
  border-radius: 50px; font-size: 1.1rem; font-weight: 800;
  box-shadow: 0 4px 16px rgba(74,127,193,.4);
  transition: background var(--transition);
}
.mobile-menu__cta:hover { background: var(--accent-light); }

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

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: 68px; /* header height */
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,31,61,.82) 0%, rgba(26,58,107,.65) 60%, rgba(10,20,45,.5) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 700px; padding-block: 5rem;
}
.hero__eyebrow {
  color: var(--gold); font-size: .85rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: .75rem;
}
.hero__headline { color: #fff; margin-bottom: 1.25rem; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.hero__sub { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll-cue {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.55); animation: bounce 2.2s infinite;
}
.hero__scroll-cue svg { width: 28px; height: 28px; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 55% { transform: translateX(-50%) translateY(8px); } }

/* ── SOCIAL PROOF ───────────────────────────── */
.social-proof { background: var(--navy); padding: 3.5rem 0; }
.social-proof .container {
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
}
.social-proof__rating {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.08); border-radius: var(--radius);
  padding: .85rem 1.75rem;
}
.stars { font-size: 1.75rem; color: #f5c518; letter-spacing: .1em; }
.rating-text { color: #fff; }
.rating-text strong { font-size: 1.3rem; font-weight: 800; display: block; line-height: 1; }
.rating-text span { font-size: .85rem; color: rgba(255,255,255,.65); }
.testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; width: 100%;
}
.testimonial {
  background: rgba(255,255,255,.06); border-radius: var(--radius);
  padding: 1.5rem; border-left: 3px solid var(--gold);
}
.testimonial p { color: rgba(255,255,255,.88); font-size: .95rem; font-style: italic; margin-bottom: .75rem; }
.testimonial cite { color: var(--gold); font-size: .82rem; font-weight: 700; }

/* ── SECTION HEADERS ────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .6rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin-inline: auto; }

/* ── DIENSTEN CARDS ─────────────────────────── */
.diensten { padding: 5rem 0; background: var(--bg-off); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.75rem; }
.card {
  background: var(--bg); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
}
.card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__img-wrap img { transform: scale(1.05); }
.card__img-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%; background: linear-gradient(to top, rgba(26,58,107,.18), transparent);
}
.card__body { padding: 1.5rem; border-top: 3px solid var(--accent); }
.card__title { color: var(--navy); margin-bottom: .5rem; }
.card__text { color: var(--text-muted); font-size: .93rem; margin-bottom: 1.1rem; }
.card__link { color: var(--accent); font-weight: 700; font-size: .9rem; transition: color var(--transition); }
.card__link:hover { color: var(--navy); }

/* ── OPENINGSTIJDEN + LOCATIE ───────────────── */
.openingstijden { padding: 5rem 0; background: var(--navy); }
.openingstijden h2 { color: #fff; margin-bottom: 1.75rem; }
.ot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.ot-table { width: 100%; border-collapse: collapse; }
.ot-table th, .ot-table td {
  padding: .6rem .5rem; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85); font-size: .95rem;
}
.ot-table th { font-weight: 700; color: rgba(255,255,255,.6); width: 130px; }
.ot-table tr.highlight td { color: var(--gold); font-weight: 700; }
.ot-table tr.highlight th { color: var(--gold); }
.ot-address, .ot-phone { color: rgba(255,255,255,.85); margin-bottom: 1rem; display: flex; gap: .65rem; align-items: flex-start; }
.ot-address svg, .ot-phone svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; opacity: .7; }
.ot-phone a { color: #fff; font-weight: 700; transition: color var(--transition); }
.ot-phone a:hover { color: var(--gold); }
.map-placeholder { margin-top: 1.25rem; border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(255,255,255,.12); }

/* ── OVER ONS ───────────────────────────────── */
.over-ons { padding: 5rem 0; background: var(--bg); }
.oo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.oo-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.oo-img img { width: 100%; height: 100%; object-fit: cover; }
.oo-text h2 { margin-bottom: 1.25rem; }
.oo-text p { color: var(--text-muted); margin-bottom: 1rem; }
.oo-text p:last-of-type { margin-bottom: 1.75rem; }
.oo-text em { color: var(--navy); font-style: italic; font-weight: 700; }

/* ── CTA-BAND ───────────────────────────────── */
.cta-band {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: .75rem; }
.cta-band > .container > p { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── CONTACT ────────────────────────────────── */
.contact { padding: 5rem 0; background: var(--bg-off); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.75rem; }
.contact-details { display: flex; flex-direction: column; gap: .85rem; }
.contact-details li { display: flex; align-items: flex-start; gap: .6rem; color: var(--text-muted); font-size: .95rem; }
.contact-details svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; color: var(--accent); }
.contact-details a { color: var(--navy); font-weight: 600; transition: color var(--transition); }
.contact-details a:hover { color: var(--accent); }

/* Form */
.contact-form {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .87rem; font-weight: 700; color: var(--navy); }
.form-group label span { color: var(--accent); }
.form-group input, .form-group textarea {
  padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font: inherit; font-size: .95rem;
  color: var(--text); background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,127,193,.18);
}
.form-group textarea { min-height: 110px; }

/* ── FOOTER-KIT ─────────────────────────────── */
.footer-kit { background: var(--bg-dark); color: rgba(255,255,255,.75); }
.footer-kit__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem; padding-top: 3.5rem; padding-bottom: 3rem;
}
.footer-kit__brand { display: flex; flex-direction: column; gap: .75rem; }
.footer-kit__tagline { color: var(--gold); font-style: italic; font-size: .9rem; }
.footer-kit__socials { display: flex; gap: .75rem; margin-top: .25rem; }
.footer-kit__socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-kit__socials svg { width: 16px; height: 16px; }
.footer-kit__socials a:hover { background: var(--accent); }
.footer-kit h3 { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; opacity: .6; }
.footer-kit__nav ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-kit__nav a { font-size: .9rem; transition: color var(--transition); }
.footer-kit__nav a:hover { color: #fff; }
.footer-kit__hours { display: flex; flex-direction: column; gap: .4rem; }
.footer-kit__hours li { display: flex; justify-content: space-between; font-size: .88rem; gap: .5rem; }
.footer-kit__hours span:last-child { text-align: right; }
.footer-kit__contact p { font-size: .9rem; margin-bottom: .5rem; }
.footer-kit__contact a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.footer-kit__contact a:hover { color: #fff; }
.footer-kit__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-kit__bar p { font-size: .82rem; color: rgba(255,255,255,.4); text-align: center; }
.footer-kit__bar a { color: rgba(255,255,255,.55); text-decoration: underline; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
  .ot-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero__content { padding-block: 4rem 3rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .card-grid { grid-template-columns: 1fr; }
  /* Taller card images on mobile for visual weight */
  .card__img-wrap { aspect-ratio: 3/2; }
  .oo-grid { grid-template-columns: 1fr; }
  .oo-img { order: -1; aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row--two { grid-template-columns: 1fr; }
  .footer-kit__inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }

  .testimonials { grid-template-columns: 1fr; }
  .social-proof__rating { flex-direction: column; text-align: center; }

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

/* Small mobile */
@media (max-width: 480px) {
  .contact-form { padding: 1.5rem; }
  .over-ons { padding: 3.5rem 0; }
  .diensten, .openingstijden, .contact, .cta-band { padding: 3.5rem 0; }
}

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

/* ── MAP VISUAL ─────────────────────────────── */
.map-visual { margin-top: 1.25rem; border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(255,255,255,.12); }
.map-visual__inner { position: relative; line-height: 0; }
.map-visual__inner svg { display: block; width: 100%; height: 180px; }
.map-visual__link {
  position: absolute; bottom: .75rem; right: .75rem;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(26,58,107,.95); color: #fff;
  padding: .45rem .9rem; border-radius: 50px;
  font-size: .8rem; font-weight: 700; line-height: 1.4;
  transition: background var(--transition);
}
.map-visual__link svg { width: 14px; height: 14px; }
.map-visual__link:hover { background: var(--navy-light); }
