:root {
  --brand: #0bb893;
  --brand-600: #0aa181;
  --brand-700: #0b8a73;
  --ink: #222;
  --ink-soft: #333;
  --bg: #fff;
  --muted: #f7f7f7;
  --muted-2: #f0f9f7;
  --border: #ddd;
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* === Global: nooit overflow op kleine schermen === */
*,
*::before,
*::after {
  box-sizing: border-box;
}
input,
select,
textarea {
  max-width: 100%;
}
html,
body {
  overflow-x: hidden;
}

/* =========================
   Animaties & helpers
========================= */
@keyframes fadeInSmooth {
  0% {
    opacity: 0;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.2s ease-out,
    transform 1.2s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.hidden {
  display: none;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 0.6rem 0.8rem;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  z-index: 2000;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================
   Basis
========================= */
html {
  scroll-behavior: smooth;
}
html,
body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: text;
  user-select: text;
}
a {
  color: var(--brand);
  text-decoration: none;
  -webkit-user-select: text;
  user-select: text;
}
img {
  max-width: 100%;
  height: auto;
}
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

/* =========================
   Navigatie
========================= */
.nav-main {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: relative;
}
.brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand);
  -webkit-user-select: none;
  user-select: none;
}
.hamburger {
  display: none;
  background: none;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.hamburger-icon {
  width: 30px;
  height: 30px;
  fill: #000;
}
.nav-links {
  display: flex;
  gap: 1rem;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  color: #000;
  font-weight: 700;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  line-height: 1.2;
  transition:
    color 0.25s,
    background-color 0.25s;
}
.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--brand);
  background: rgba(11, 184, 147, 0.08);
}
@media (max-width: 768px) {
  .hamburger {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 8px;
    right: 8px;
    border: 1px solid #ccc;
    padding: 0.5rem;
    z-index: 1200;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    min-width: 180px;
  }
  .nav-links.open {
    display: flex;
  }
}

/* =========================
   Hero
========================= */
.hero {
  background: linear-gradient(180deg, #07b293 0%, #0bb893 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 1rem 5rem;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0.5rem 0;
}
.hero-subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0.75rem auto 0;
  line-height: 1.75;
}
.hero-fade {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.hero-fade.visible {
  opacity: 1;
  transform: none;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* =========================
   Buttons
========================= */
.btn,
.cta-button {
  width: 100%;
  max-width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1;
  padding: 1rem 1.5rem;
  min-height: 52px;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: var(--shadow-sm);
  transition:
    background-color 0.25s,
    transform 0.15s,
    box-shadow 0.25s;
}
.btn {
  border: 2px solid transparent;
}
.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}
.btn-outline {
  background: #fff;
  color: var(--brand);
  border-color: #000;
}
.btn-outline:hover {
  background: #f4f4f4;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Alias voor oudere markup (.cta-button) */
.cta-button {
  border: 2px solid #000;
  background: #fff;
  color: var(--brand);
}
.cta-button:hover {
  background: #f4f4f4;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* =========================
   Secties & Tarieven
========================= */
.section {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.tarieven-lijst {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tarief-item {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  font-size: 1.1rem;
}
.tarief-bedrag {
  font-weight: 700;
  color: var(--brand);
  min-width: 80px;
}
.tarief-omschrijving {
  color: var(--ink-soft);
}

/* =========================
   Ritgegevens & Calculator
========================= */
.rit-gegevens {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.rit-gegevens .form-group {
  display: flex;
  flex-direction: column;
}
.rit-gegevens label {
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.rit-gegevens input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.calculator {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.calculator label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.calculator input,
.calculator select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.calculator button {
  margin-top: 1.5rem;
  background: var(--brand);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}
.calculator button:hover {
  background: var(--brand-600);
  transform: scale(1.05);
}
#prijsOutput {
  margin-top: 1rem;
  font-weight: 700;
}

.nacht-melding {
  background: #e7f9f6;
  color: #004d43;
  border-left: 4px solid var(--brand);
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}
.nacht-melding a {
  color: var(--brand);
  font-weight: 700;
}

/* Rit-samenvatting */
.rit-samenvatting {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--muted-2);
  border: 1px solid #d0eae4;
  border-radius: 8px;
  animation: fadeInSmooth 0.5s;
}
.samenvatting-kaart h4 {
  margin-bottom: 1rem;
  color: var(--brand);
}
.samenvatting-kaart ul {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}

/* Kaart */
#map {
  width: 100%;
  height: 350px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* =========================
   Contact
========================= */
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

/* Professionele underline-animatie */
.footer-links a,
.contact-item a,
a.link-underline {
  color: inherit;
  position: relative;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a::after,
.contact-item a::after,
a.link-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--brand-700);
  transition: width 0.25s ease;
}
.footer-links a:hover,
.contact-item a:hover,
a.link-underline:hover {
  color: var(--brand-700);
}
.footer-links a:hover::after,
.contact-item a:hover::after,
a.link-underline:hover::after {
  width: 100%;
}

/* =========================
   Footer
========================= */
footer {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.footer-container {
  max-width: 700px;
  margin: 0 auto;
}
.footer-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.footer-links a {
  color: #fff;
  font-weight: 700;
}
.footer-contact {
  margin-top: 1rem;
  text-align: center;
}
.footer-contact a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}

/* =========================
   Scroll-to-top knop
========================= */
#scrollTopBtn {
  position: fixed;
  bottom: var(--lifted-bottom, 40px);
  right: 20px;
  background: rgba(11, 184, 147, 0.95);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity 0.35s,
    transform 0.35s,
    box-shadow 0.25s,
    background-color 0.25s;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 6px 14px rgba(0, 0, 0, 0.22);
  -webkit-user-select: none;
  user-select: none;
}
#scrollTopBtn.show {
  opacity: 0.98;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
#scrollTopBtn:hover {
  background: var(--brand-600);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.42),
    0 12px 24px rgba(0, 0, 0, 0.28);
}
#scrollTopBtn:focus-visible {
  outline: 3px solid #fff;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.9),
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 6px 14px rgba(0, 0, 0, 0.22);
  transition: none;
}

/* =========================
   Sticky “Boek nu” (mobiel)
========================= */
.sticky-boeknu {
  position: fixed;
  right: 20px;
  bottom: 110px;
  z-index: 10000;
  background: #fff;
  color: var(--brand);
  border: 2px solid #000;
  border-radius: 28px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  display: none;
  -webkit-user-select: none;
  user-select: none;
}
.sticky-boeknu:hover {
  background: #f4f4f4;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .sticky-boeknu {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
}

/* =========================
   Handmatige fotogalerij
========================= */
.manual-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* <<< belangrijk voor XS */
}
.lightbox-img-btn {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}
.manual-gallery img {
  display: block;
  max-width: min(90vw, 700px);
  max-height: 350px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.manual-gallery img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.nav-btn {
  background: transparent;
  border: 0;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--brand);
  padding: 0 1rem;
  -webkit-user-select: none;
  user-select: none;
}
.nav-btn:hover {
  color: var(--brand-700);
}

/* Phones: hou pijlen + foto binnen 100vw */
@media (max-width: 380px) {
  .manual-gallery {
    gap: 6px;
  }
  .manual-gallery img {
    max-width: 72vw;
  }
  .nav-btn {
    font-size: 2rem;
    padding: 0 0.25rem;
  }
}
@media (max-width: 320px) {
  .manual-gallery img {
    max-width: 68vw;
  }
}

/* =========================
   LIGHTBOX – definitieve set
========================= */
body.noscroll {
  overflow: hidden;
}
.lightbox-overlay {
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0, 0, 0, 0.85) !important;
  z-index: 9999 !important;
  padding: 32px !important;
}
.lightbox-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
.lightbox-dialog {
  position: relative !important;
  max-width: min(92vw, 1200px) !important;
  max-height: 86vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.lightbox-dialog img,
#lightboxImage {
  max-width: 100% !important;
  max-height: 86vh !important;
  display: block !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
}

.lightbox-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 2.5rem !important;
  color: #fff !important;
  background: transparent !important;
  border: 0 !important;
  cursor: pointer !important;
  padding: 0.25rem 0.5rem !important;
  line-height: 1 !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}

#lightboxPrev {
  left: -56px !important;
}
#lightboxNext {
  right: -56px !important;
}
.lightbox-close {
  position: absolute !important;
  top: -44px !important;
  right: -44px !important;
  font-size: 36px !important;
  color: #fff !important;
  background: none !important;
  border: 0 !important;
  cursor: pointer !important;
  line-height: 1 !important;
}
@media (max-width: 640px) {
  #lightboxPrev {
    left: 8px !important;
  }
  #lightboxNext {
    right: 8px !important;
  }
  .lightbox-close {
    top: 8px !important;
    right: 8px !important;
  }
}

/* =========================
   Dienstenlijst + groene iconen
========================= */
.diensten-lijst {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
}
.diensten-lijst li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}
.diensten-lijst .icoon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.diensten-lijst .icoon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.diensten-lijst .icoon svg path,
.diensten-lijst .icoon svg rect,
.diensten-lijst .icoon svg circle,
.diensten-lijst .icoon svg polygon {
  fill: var(--brand) !important;
  stroke: none !important;
}

/* =========================
   Nieuwsbrief formulier
========================= */
.nieuwsbrief-form {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}
.nieuwsbrief-form .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.nieuwsbrief-form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: var(--ink);
}
.nieuwsbrief-form input[type='text'],
.nieuwewsbrief-form input[type='email'],
.nieuwsbrief-form input[type='email'] {
  display: block;
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.nieuwsbrief-form input[type='checkbox'] {
  margin-right: 0.5rem;
}
.nieuwsbrief-form .checkbox-group {
  margin: 1rem 0;
}
.nieuwsbrief-form button {
  margin-top: 1rem;
  background: var(--brand);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.nieuwsbrief-form button:hover {
  background: var(--brand-600);
}
#formulierFeedback {
  margin-top: 1rem;
  font-weight: 700;
}

/* =========================
   Reserveringsformulier (shared stijl)
========================= */
.formulier-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
}
.formulier-reserveren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.formulier-reserveren label {
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.formulier-reserveren input,
.formulier-reserveren select,
.formulier-reserveren textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.formulier-reserveren textarea {
  resize: vertical;
  min-height: 100px;
}
.formulier-reserveren .cta-button {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Alleen reserveren-pagina layout helpers */
.reserveren-pagina,
.reserveren-pagina html,
.reserveren-pagina body {
  height: 100%;
  margin: 0;
  padding: 0;
}
.reserveren-pagina .page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.reserveren-pagina main {
  flex-grow: 1;
}

/* =========================
   Google Autocomplete (widget op mobiel netjes bovenop)
========================= */
@media (max-width: 768px) {
  .pac-container {
    z-index: 2000 !important;
    position: fixed !important;
    width: 90% !important;
    max-width: 400px;
    margin-left: 5% !important;
    box-sizing: border-box;
  }
}

/* Floating fallback lijst (mobiel) – gebruikt door main.js */
.addr-suggest {
  position: fixed;
  z-index: 2147483647;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 6px 0;
  max-height: 240px;
  overflow: auto;
  list-style: none;
  margin: 0;
}
.addr-suggest li {
  padding: 10px 12px;
  cursor: pointer;
}
.addr-suggest li:hover {
  background: #f5f7f9;
}

/* =========================
   Mobiele tweaks (tablet/phones)
========================= */
@media (max-width: 768px) {
  .btn {
    min-height: 50px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
  .rit-gegevens input,
  .calculator input,
  .calculator select,
  .formulier-reserveren input,
  .formulier-reserveren select,
  .formulier-reserveren textarea,
  .nieuwsbrief-form input[type='text'],
  .nieuwsbrief-form input[type='email'] {
    padding: 0.8rem;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  .calculator,
  .nieuwsbrief-form {
    padding: 1rem;
  }
}

/* Phones tot 480px */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .section {
    padding: 1.5rem 1rem;
  }
  .hero-buttons {
    gap: 0.75rem;
  }
  .hero-buttons .cta-button,
  .hero-buttons .btn {
    width: 100%;
  }
}

/* ===== EXTRA COMPACT: kleine telefoons (≤360px) ===== */
@media (max-width: 360px) {
  .nav-container {
    padding: 0.75rem;
  }
  .brand {
    font-size: 1.25rem;
  }

  body {
    font-size: 15px;
  }
  .section {
    padding: 1.25rem 0.75rem;
  }

  .hero {
    padding: 3.75rem 0.75rem 3rem;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 520px;
  }

  .btn,
  .cta-button {
    max-width: 210px;
    min-height: 44px;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .calculator label {
    margin-top: 0.8rem;
  }
  .calculator input,
  .calculator select {
    padding: 0.55rem;
    font-size: 1rem;
  }
  .calculator button {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .tarief-item {
    font-size: 1rem;
  }
  .tarief-bedrag {
    min-width: 70px;
  }

  .diensten-lijst li {
    font-size: 1rem;
  }

  .contact-item {
    font-size: 1rem;
  }

  .nieuwsbrief-form {
    padding: 0.85rem;
  }
  .nieuwsbrief-form input[type='text'],
  .nieuwsbrief-form input[type='email'] {
    padding: 0.55rem;
    font-size: 1rem;
  }
  .nieuwsbrief-form button {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  #scrollTopBtn {
    width: 56px;
    height: 56px;
    right: 14px;
  }
  footer {
    padding: 1.25rem 0.75rem;
  }
  .footer-links {
    gap: 0.6rem;
  }
  .footer-links a {
    font-size: 0.95rem;
  }
  .footer-container p {
    font-size: 0.95rem;
  }

  /* galerij nog compacter dan 380px-regel */
  .manual-gallery img {
    max-width: 66vw;
    max-height: 280px;
  }
  .nav-btn {
    font-size: 1.75rem;
    padding: 0 0.25rem;
  }
}

/* ===== ULTRA COMPACT: allerkleinste (≤320px) ===== */
@media (max-width: 320px) {
  body {
    font-size: 14.5px;
  }
  .brand {
    font-size: 1.15rem;
  }

  .hero {
    padding: 3.25rem 0.6rem 2.6rem;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn,
  .cta-button {
    max-width: 200px;
    min-height: 42px;
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
  }

  .section {
    padding: 1.1rem 0.6rem;
  }
  .manual-gallery img {
    max-width: 62vw;
    max-height: 250px;
  }
  #scrollTopBtn {
    width: 52px;
    height: 52px;
    right: 12px;
  }
}

/* Safari compat, maar nu mét standaard property en juiste volgorde */
* {
  -webkit-user-select: text;
  user-select: text;
}
.btn,
.nav-btn,
.hamburger,
.lightbox-nav,
.lightbox-close,
.cta-button {
  -webkit-user-select: none;
  user-select: none;
}
