:root {
  --ink: #15171c;
  --ink-soft: #2a2e36;
  --muted: #5c6370;
  --line: #e3e6ea;
  --paper: #f6f6f7;
  --white: #ffffff;
  --red: #d31119;
  --red-dark: #a90d14;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(21, 23, 28, 0.12);
  --shadow-soft: 0 6px 18px rgba(21, 23, 28, 0.06);
  --font: "Archivo", Arial, Helvetica, sans-serif;
  --font-display: "Archivo Expanded", "Archivo", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(13, 15, 19, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.brand-name strong,
.brand-name small {
  display: block;
  line-height: 1.25;
}

.brand-name strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-name small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: background-color 0.15s ease;
}

.header-call:hover {
  background: var(--red-dark);
}

.header-call svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
}

.mobile-cta {
  display: none;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.9) 0%, rgba(10, 12, 16, 0.66) 42%, rgba(10, 12, 16, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 12, 16, 0.82) 0%, rgba(10, 12, 16, 0.04) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  margin: 140px 0 clamp(56px, 10vh, 110px) clamp(18px, 5vw, 72px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-block;
  padding: 7px 14px;
  color: var(--white);
  background: rgba(211, 17, 25, 0.92);
  border-radius: 999px;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.005em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  font-weight: 700;
}

.hero-text {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.button:active {
  transform: scale(0.98);
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button.outline {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.button.outline:hover {
  border-color: var(--muted);
}

/* ---------- Trust bar ---------- */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar div {
  padding: 26px clamp(18px, 3vw, 40px);
  background: var(--white);
}

.trust-bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
}

.trust-bar span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 720px;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.service-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.service-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  background: #fdeaeb;
  color: var(--red);
  border-radius: var(--radius-sm);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card p,
.split p,
.appointment-copy p,
.contact p {
  color: var(--muted);
}

/* ---------- Over / openingstijden ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--white);
}

.split-copy p {
  max-width: 600px;
}

.hours-panel {
  padding: 30px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hours-panel h3 {
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.hours-panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}

.hours-panel th,
.hours-panel td {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}

.hours-panel td {
  text-align: right;
  font-weight: 600;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.hours-panel tr:last-child th,
.hours-panel tr:last-child td {
  border-bottom: 0;
}

/* ---------- Afspraak ---------- */

.appointment {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--paper);
}

.appointment-copy .button {
  margin-top: 16px;
}

.planner-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.planner-panel iframe {
  width: 100%;
  height: min(760px, 78vh);
  min-height: 620px;
  border: 0;
  display: block;
}

/* ---------- Contact ---------- */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.contact .eyebrow {
  color: #ff6b71;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.route-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--red);
  font-weight: 700;
  border-radius: 999px;
  transition: background-color 0.15s ease;
}

.route-link:hover {
  background: var(--red-dark);
}

.contact-details {
  display: grid;
  gap: 22px;
  width: min(100%, 520px);
  justify-self: end;
}

.contact-line {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-line span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-line a,
.contact-line strong {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-line a:hover {
  color: #ff6b71;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  min-height: 66px;
  margin-top: 8px;
  padding: 13px 22px 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.whatsapp-button:hover {
  background: rgba(211, 17, 25, 0.16);
  border-color: rgba(255, 107, 113, 0.72);
  transform: translateY(-2px);
}

.whatsapp-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}

.whatsapp-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-button strong,
.whatsapp-button small {
  display: block;
}

.whatsapp-button strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.whatsapp-button small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.62);
  background: #0c0e12;
  font-size: 0.88rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .main-nav.is-open a {
    padding: 14px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    margin-right: 18px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hours-panel {
    max-width: 520px;
  }

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

  .contact-details {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    padding: 10px 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name strong {
    font-size: 0.98rem;
  }

  .mobile-cta {
    position: fixed;
    z-index: 25;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(12, 14, 18, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 48px;
    place-items: center;
    color: var(--white);
    font-weight: 700;
    border-radius: 10px;
  }

  .mobile-cta a:first-child {
    background: var(--red);
  }

  .mobile-cta a:last-child {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 120px 16px 32px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.78) 58%, rgba(10, 12, 16, 0.4) 100%),
      linear-gradient(0deg, rgba(10, 12, 16, 0.88) 0%, rgba(10, 12, 16, 0.1) 54%);
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.55rem, 7.5vw, 2.1rem);
  }

  .hero-text {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .section {
    padding: 52px 16px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    padding: 18px;
  }

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

  .hours-panel {
    padding: 24px 20px;
  }

  .planner-panel {
    margin-right: -16px;
    margin-left: -16px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .planner-panel iframe {
    height: 720px;
    min-height: 720px;
  }

  .contact-details {
    width: 100%;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 16px;
  }

  .whatsapp-button {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .brand-name small {
    display: none;
  }
}
