/* ==========================================================================
   De Kruijf Sport en Massage — Homepage
   Vormgeving aangesloten op huidige site: licht, ruim, oranje accentband,
   torn-edge hero. Mobile-first.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::selection { background: var(--c-petrol); color: #fff; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--c-text); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--c-orange); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Tokens ---------- */
:root {
  --c-orange: #F39200;          /* CTA only */
  --c-orange-hover: #D87F00;
  --c-petrol: #1B3A4B;          /* deep petrol — primary dark */
  --c-petrol-hover: #102733;
  --c-sage: #6B8F7B;            /* secondary accent — calm sage green */
  --c-cream: #F7F4EE;           /* warm off-white section bg */
  --c-black: #0E1A21;
  --c-text: #3F4A52;
  --c-text-soft: #6E7780;
  --c-gray-50: #FAFAFA;
  --c-gray-100: #F4F5F4;
  --c-gray-200: #E6E8E7;
  --c-gray-300: #CFD3D1;
  --c-bg: #FFFFFF;
  --c-whatsapp: #25D366;

  --shadow-card: 0 1px 2px rgba(14,26,33,0.04), 0 8px 24px rgba(14,26,33,0.04);
  --shadow-sticky: 0 1px 0 rgba(14,26,33,0.06);
  --shadow-lift: 0 16px 40px rgba(14,26,33,0.08);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container: 1280px;
  --section-pad-y: 64px;
  --section-pad-y-mobile: 40px;

  --header-h: 76px;
  --header-h-mobile: 64px;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--c-black);
  line-height: 1.05;
  text-wrap: balance;
}
h1 {
  font-size: clamp(44px, 6.4vw, 76px);
  letter-spacing: 0.01em;
  line-height: 1.02;
  text-wrap: pretty;
}
h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  letter-spacing: 0.02em;
  line-height: 1.08;
}
h3 {
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 18px;
  font-family: 'Barlow', sans-serif;
}
.eyebrow.is-light { color: rgba(255,255,255,0.85); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.section { padding: var(--section-pad-y-mobile) 0; }
@media (min-width: 1024px) { .section { padding: var(--section-pad-y) 0; } }

.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--c-black); color: #fff; padding: 12px 16px; z-index: 200;
}
.skip-link:focus { top: 0; }

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--c-orange);
  color: #fff;
}
.btn--primary:hover { background: var(--c-orange-hover); color: #fff; }

.btn--secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.55); color: #fff; }

.btn--petrol {
  background: var(--c-petrol);
  color: #fff;
}
.btn--petrol:hover { background: var(--c-petrol-hover); color: #fff; }

.btn--ghost-dark {
  background: transparent;
  color: var(--c-petrol);
  border-color: var(--c-gray-300);
}
.btn--ghost-dark:hover { background: var(--c-petrol); color: #fff; border-color: var(--c-petrol); }

.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: inherit;
  font-weight: 500;
  color: var(--c-petrol);
}
.link-arrow svg { transition: transform 0.2s var(--ease); width: 14px; height: 14px; }
.link-arrow:hover { color: var(--c-orange); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header (full-width: logo | centered nav | actions) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h-mobile);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  z-index: 100;
  transition: box-shadow 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  box-shadow: var(--shadow-sticky);
  background: rgba(255, 255, 255, 0.92);
}
@media (min-width: 1024px) { .site-header { height: var(--header-h); } }

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 0 24px;
}
@media (min-width: 768px) { .header-inner { padding: 0 32px; } }
@media (min-width: 1280px) { .header-inner { padding: 0 56px; } }

.logo { display: flex; align-items: center; flex-shrink: 0; height: 100%; }
.logo img {
  height: 20px !important;
  width: auto !important;
  max-width: none;
  display: block;
}
@media (min-width: 768px) { .logo img { height: 23px !important; } }

.nav { display: none; justify-self: center; }
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-list > li { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  border-radius: var(--radius-pill);
  transition: all 0.18s ease;
}
.nav-link:hover { color: var(--c-black); background: var(--c-gray-100); }
.nav-link.is-active { color: var(--c-black); font-weight: 600; }
.nav-link svg { width: 11px; height: 11px; transition: transform 0.2s ease; }
.has-submenu:hover .nav-link svg { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 8px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu li a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--c-text);
}
.submenu li a:hover { background: var(--c-gray-100); color: var(--c-petrol); }
.submenu-divider { height: 1px; background: var(--c-gray-200); margin: 6px 8px; }

.header-actions { display: none; align-items: center; gap: 8px; justify-self: end; }
@media (min-width: 1024px) { .header-actions { display: flex; } }

.hamburger {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  color: var(--c-black);
  grid-column: 3;
  justify-self: end;
}
.hamburger:hover { background: var(--c-gray-100); }
.hamburger svg { width: 22px; height: 22px; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger .icon-close { display: none; }
.hamburger.is-open .icon-open { display: none; }
.hamburger.is-open .icon-close { display: block; }

.mobile-menu {
  position: fixed;
  top: var(--header-h-mobile);
  left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 90;
  transform: translateY(-12px);
  opacity: 0; visibility: hidden;
  transition: all 0.25s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

.mobile-menu-inner {
  padding: 24px 24px 40px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px;
  font-weight: 500;
  color: var(--c-black);
  border-bottom: 1px solid var(--c-gray-200);
}
.mobile-link:hover { color: var(--c-orange); }
.mobile-sub {
  list-style: none; padding-left: 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.mobile-sub a {
  display: block; padding: 10px 4px;
  font-size: 14px; color: var(--c-text);
}
.mobile-sub-divider { height: 1px; background: var(--c-gray-200); margin: 4px 0; list-style: none; }
.mobile-cta-row {
  display: flex; flex-direction: column; gap: 12px; margin-top: 24px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  padding-top: calc(var(--header-h-mobile) + 80px);
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background: var(--c-petrol);
}
@media (min-width: 1024px) {
  .hero {
    min-height: 92vh;
    padding-top: calc(var(--header-h) + 120px);
    padding-bottom: 140px;
  }
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  animation: hero-zoom 6s var(--ease) forwards;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,26,33,0.55) 0%, rgba(14,26,33,0.35) 50%, rgba(14,26,33,0.7) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content { max-width: 760px; margin: 0 auto; }

.hero h1 {
  color: #fff;
  margin-bottom: 28px;
  text-wrap: balance;
  font-weight: 400;
}
.hero-sub {
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h1,
.section-head h2 { margin-bottom: 24px; }
.section-head p {
  color: var(--c-text);
  line-height: 1.6;
}
@media (min-width: 1024px) { .section-head { margin-bottom: 52px; } }

/* ---------- Service cards (photo-driven) ---------- */
.services { background: var(--c-bg); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (max-width: 639px) {
  .service-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    gap: 16px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .service-grid::-webkit-scrollbar { display: none; }
  .service-card { flex: 0 0 82%; scroll-snap-align: start; }
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.service-dots {
  display: none; justify-content: center; gap: 8px; margin-top: 20px;
}
@media (max-width: 639px) { .service-dots { display: flex; } }
.service-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-gray-300);
  transition: all 0.2s ease;
}
.service-dots button.is-active { width: 24px; border-radius: 4px; background: var(--c-orange); }

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.service-photo {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--c-gray-100);
}
.service-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-photo img { transform: scale(1.04); }

.service-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--c-petrol);
  letter-spacing: 0;
}

.service-body {
  padding: 24px 22px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.service-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}
.service-card .desc {
  color: var(--c-text);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

/* ---------- Bedrijfsmassage split ---------- */
.business {
  background: var(--c-cream);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 580px;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
a.split-media:hover img { transform: scale(1.04); }

.split-text .eyebrow { margin-bottom: 12px; }
.split-text h2 { margin-bottom: 18px; }
.split-text > p {
  margin-bottom: 24px;
  line-height: 1.7;
  color: var(--c-text);
}

/* ---------- Aan-huis (USP / werkgebied) — image left, text right ---------- */
.aanhuis { background: var(--c-bg); }

.aanhuis .split-media { aspect-ratio: 4/3; max-height: 480px; }
@media (max-width: 1023px) { .aanhuis .split-media { order: -1; } }

/* ---------- About John ---------- */
.about { background: var(--c-bg); }

.about .split-media { aspect-ratio: 4/5; max-height: 600px; }
.about .split-media img { object-position: 50% -100px; }

.about-text p { margin-bottom: 18px; line-height: 1.75; color: var(--c-text); }
.about-text p:last-of-type { margin-bottom: 28px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--c-bg); }

.reviews-ext-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  opacity: 0.6;
  margin-left: 4px;
  transition: opacity 0.2s ease;
}
.reviews-ext-link:hover { opacity: 1; color: inherit; }
.reviews-ext-link svg { display: inline; }

.review-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--c-gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.stars { display: inline-flex; gap: 2px; color: var(--c-orange); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-quote {
  line-height: 1.65;
  color: var(--c-black);
  flex: 1;
  text-wrap: pretty;
}
@media (max-width: 767px) {
  .review-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    gap: 16px;
    padding-bottom: 16px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
  }
  .review-grid::-webkit-scrollbar { display: none; }
  .review-card { flex: 0 0 85%; scroll-snap-align: start; }
}
.review-dots {
  display: none; justify-content: center; gap: 8px; margin-top: 16px;
}
@media (max-width: 767px) { .review-dots { display: flex; } }
.review-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-gray-300);
  transition: all 0.2s ease;
}
.review-dots button.is-active {
  width: 24px; border-radius: 4px; background: var(--c-orange);
}

/* ---------- Gemeente Alphen CTA ---------- */
.alphen-cta {
  background: var(--c-petrol);
  color: #fff;
}
.alphen-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.alphen-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}
.alphen-cta p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

/* ---------- Contact (afspraak) — like the existing AFSPRAAK? section ---------- */
.contact {
  background: var(--c-bg);
  position: relative;
}

.contact-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-top .contact-head { margin-bottom: 0; }
.contact-top .alphen-banner { margin-bottom: 0; }
@media (min-width: 1024px) {
  .contact-top {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
  }
}


.contact-head {
  text-align: left;
  max-width: 640px;
  margin: 0 0 40px;
}
.contact-head h2 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 16px;
  font-weight: 400;
}
.contact-head p { line-height: 1.6; color: var(--c-text); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
  }
  .contact-grid .contact-sidebar { grid-column: 1; grid-row: 1 / 3; }
  .contact-grid .contact-alphen-banner { grid-column: 2; grid-row: 1; margin-bottom: 0; }
  .contact-grid .contact-form { grid-column: 2; grid-row: 2; }
}

.contact-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(14,26,33,0.12);
}
.contact-profile strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-black);
  margin-bottom: 2px;
}
.contact-profile span {
  font-size: 13px;
  color: var(--c-text-soft);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-gray-200);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-list a, .contact-list span {
  color: var(--c-black); font-weight: 500;
}
.contact-list a:hover { color: var(--c-orange); }

/* Form */
.contact-form {
  background: var(--c-gray-50);
  border-radius: var(--radius);
  padding: 28px 24px;
}
@media (min-width: 1024px) { .contact-form { padding: 40px; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 600px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-black);
}
.field label .req { color: var(--c-orange); }

.field input, .field select, .field textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius);
  color: var(--c-black);
  font-size: 15px;
  transition: all 0.18s ease;
}
.field textarea { height: auto; min-height: 110px; padding: 14px 16px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.15);
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #d4413c;
}
.field-error { font-size: 12.5px; color: #d4413c; display: none; }
.field.has-error .field-error { display: block; }

.form-submit { margin-top: 24px; }

.form-success {
  display: none;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(243, 146, 0, 0.1);
  border: 1.5px solid var(--c-orange);
  margin-bottom: 24px;
}
.form-success.is-visible { display: block; }
.form-success strong {
  display: flex; align-items: center; gap: 8px;
  color: var(--c-black); margin-bottom: 4px;
}
.form-success strong svg { color: var(--c-orange); width: 20px; height: 20px; }
.form-success p { font-size: 14px; }

/* ---------- Alphen aan den Rijn promo banner ---------- */
.alphen-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--c-gray-200);
  color: var(--c-petrol);
  padding: 14px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  line-height: 1.45;
  margin-bottom: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.alphen-banner:hover { box-shadow: var(--shadow-lift); color: var(--c-petrol); transform: translateY(-1px); }
.alphen-banner-icon { flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; }
.alphen-banner-icon img { width: 38px; height: 38px; object-fit: contain; }
.alphen-banner-body { flex: 1; }
.alphen-banner-body strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 2px; }
.alphen-banner-body span { font-size: 13px; }
.alphen-banner-cta { color: var(--c-orange); text-decoration: underline; }
.alphen-banner-chevron-wrap { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: #FEF3E2; display: flex; align-items: center; justify-content: center; }
.alphen-banner-chevron { width: 16px; height: 16px; color: var(--c-orange); }
.mobile-menu-inner .alphen-banner { margin-top: 20px; margin-bottom: 0; }
.hero-content .alphen-banner { margin-top: 28px; margin-bottom: 0; max-width: 480px; margin-left: auto; margin-right: auto; }
.alphen-full-logo { height: 36px; width: auto; display: block; margin-bottom: 16px; }
.section-head .alphen-full-logo { margin-left: auto; margin-right: auto; margin-bottom: 12px; }

.consent {
  font-size: 12.5px;
  color: var(--c-text-soft);
  line-height: 1.5;
  margin-top: 14px;
}
.consent a { text-decoration: underline; color: var(--c-petrol); }

.formspree-badge {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--c-text-soft);
}
.formspree-badge:hover { color: var(--c-text); }
.formspree-badge img { height: 14px; width: auto; opacity: 0.55; display: inline; }
.formspree-badge:hover img { opacity: 0.85; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-cream);
  color: var(--c-text);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}

.footer-brand a { display: inline-block; margin-bottom: 16px; }
.footer-brand img { height: 22px; width: auto; max-width: 100%; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 320px; margin-bottom: 16px; }
.footer-brand address { font-style: normal; font-size: 14px; line-height: 1.7; display: flex; flex-direction: column; gap: 10px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
}
.footer-contact-item svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-black);
}
.footer-contact-item a { color: var(--c-text); }
.footer-contact-item a:hover { color: var(--c-orange); }

.footer-col h4 {
  color: var(--c-black);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--c-text); }
.footer-col a:hover { color: var(--c-orange); }
.footer-bottom a { color: var(--c-text-soft); }
.footer-bottom a:hover { color: var(--c-orange); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--c-gray-200);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  color: var(--c-text-soft);
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---------- WhatsApp FAB ---------- */
.fab-wa {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-whatsapp);
  display: grid; place-items: center;
  color: #fff;
  z-index: 95;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s var(--ease);
}
.fab-wa:hover { transform: scale(1.08); color: #fff; }
.fab-wa svg { width: 28px; height: 28px; fill: currentColor; }
@media (min-width: 768px) {
  .fab-wa { width: 60px; height: 60px; bottom: 28px; right: 28px; }
  .fab-wa svg { width: 30px; height: 30px; }
}
.fab-wa::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--c-whatsapp);
  animation: fab-pulse 2.4s ease-out infinite;
  opacity: 0;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--c-black); color: #fff;
  padding: 8px 12px; border-radius: 6px;
  font-size: 13px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: all 0.2s ease;
}
.fab-wa:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- Reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Volledige card klikbaar ---------- */
.service-card { position: relative; }
.card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ---------- Cookie bar ---------- */
.cookie-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-petrol);
  color: #fff;
  padding: 14px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  font-size: 14px;
}
.cookie-bar p { line-height: 1.5; }
.cookie-bar a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.cookie-bar a:hover { color: #fff; }
.cookie-bar button {
  background: var(--c-orange);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.cookie-bar button:hover { background: var(--c-orange-hover); }

/* ---------- Mobile overrides (< 1024px) ---------- */
@media (max-width: 1023px) {
  body { font-size: 18px; }

  h1 { font-size: clamp(48px, 11vw, 76px); }
  h2 { font-size: clamp(34px, 8vw, 48px); }
  h3 { font-size: clamp(22px, 5vw, 24px); }

  /* Equal-height images in split sections */
  .split-media {
    aspect-ratio: 16 / 9 !important;
    max-height: 260px !important;
  }

  /* Hide contact details on mobile — info is in the footer */
  .contact-list { display: none; }
  .contact-profile { margin-bottom: 0; }
}

/* ==========================================================================
   Inner pages (subpagina's)
   ========================================================================== */

/* ---------- Page hero (subpagina variant) ---------- */
.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h-mobile);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-hero {
    min-height: 62vh;
    padding-top: var(--header-h);
  }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: hero-zoom 6s var(--ease) forwards;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(14,26,33,0.88) 0%,
    rgba(14,26,33,0.50) 50%,
    rgba(14,26,33,0.20) 100%);
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 32px;
}
.page-hero .reveal {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Section bg utilities ---------- */
.bg-cream { background: var(--c-cream); }

/* ---------- Feature blocks (voordelen / doelgroepen) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .feature-grid--2col { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin-left: auto; margin-right: auto; } }
@media (min-width: 1024px) { .feature-grid--2col { grid-template-columns: repeat(2, 1fr); max-width: 700px; } }

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(243,146,0,0.10);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--c-orange);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--c-text); line-height: 1.65; }

/* ---------- Behandeling split (inner page) ---------- */
.behandeling .split-grid { align-items: center; }
.behandeling .split-text p { margin-bottom: 18px; line-height: 1.75; }
.behandeling .split-text p:last-of-type { margin-bottom: 28px; }
.behandeling .split-media img { object-position: 50% -100px; }
@media (max-width: 1023px) { .behandeling .split-media { order: -1; } }

/* ---------- Aan huis (inner page) ---------- */
.aanhuis-inner .split-media { aspect-ratio: 4/3; max-height: 480px; }
@media (max-width: 1023px) { .aanhuis-inner .split-media { order: -1; } }
.aanhuis-inner .split-text p { margin-bottom: 18px; line-height: 1.75; }

/* ---------- Tarieven ---------- */
.pricing-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 520px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border: 1.5px solid var(--c-gray-200);
  transition: box-shadow 0.2s var(--ease);
}
.pricing-card.is-featured {
  border-color: var(--c-orange);
  background: rgba(243,146,0,0.04);
}
.pricing-card:hover { box-shadow: var(--shadow-card); }
.pricing-duration {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--c-black);
  line-height: 1;
}
.pricing-incl {
  font-size: 12px;
  color: var(--c-text-soft);
}
.pricing-note {
  background: var(--c-gray-50);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--c-text);
  line-height: 1.55;
  display: flex; gap: 10px; align-items: flex-start;
}
.pricing-note svg { flex-shrink: 0; color: var(--c-sage); margin-top: 1px; width: 16px; height: 16px; }

/* ---------- Single review ---------- */
.single-review {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.single-review .stars { justify-content: center; margin-bottom: 20px; }
.single-review .stars svg { width: 20px; height: 20px; }
.single-review blockquote {
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.65;
  color: var(--c-black);
  font-style: italic;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.single-review blockquote::before { content: '\201C'; }
.single-review blockquote::after  { content: '\201D'; }
.single-review .reviewer-name {
  font-size: 13px;
  color: var(--c-text-soft);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
}
a.reviewer-name:hover { color: var(--c-orange); }

/* ---------- Andere massages ---------- */
.other-massages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 640px) { .other-massages { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .other-massages { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 639px) {
  .other-massages {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    gap: 16px;
    padding-bottom: 16px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
  }
  .other-massages::-webkit-scrollbar { display: none; }
  .other-massage-card { flex: 0 0 85%; scroll-snap-align: start; }
}
.other-massage-dots {
  display: none; justify-content: center; gap: 8px; margin-top: 16px;
}
@media (max-width: 639px) { .other-massage-dots { display: flex; } }
.other-massage-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-gray-300);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.2s ease;
}
.other-massage-dots button.is-active {
  width: 24px; border-radius: 4px; background: var(--c-orange);
}

.other-massage-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-gray-200);
  text-decoration: none;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.other-massage-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.other-massage-img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.other-massage-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.other-massage-card:hover .other-massage-img img { transform: scale(1.04); }
.other-massage-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.other-massage-body h3 { font-size: 19px; margin-bottom: 8px; }
.other-massage-body p { font-size: 14px; color: var(--c-text); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.other-massage-footer { display: flex; justify-content: space-between; align-items: center; gap: 8px; }

/* ---------- CTA band (onderin subpagina's) ---------- */
.cta-band { background: var(--c-petrol); }
.cta-band-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 32px; max-width: 480px; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.btn--wa { background: var(--c-whatsapp); color: #fff; }
.btn--wa:hover { background: #1da951; color: #fff; }
.btn--wa-light { background: #fff; color: var(--c-black); border-color: rgba(255,255,255,0.6); }
.btn--wa-light:hover { background: rgba(255,255,255,0.92); color: var(--c-black); border-color: #fff; }
.btn--ghost-light {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

/* ---------- Page intro centered ---------- */
.section-head--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.page-intro .section-head--center h1 { font-size: clamp(32px, 4.5vw, 58px); }

/* ---------- Page intro (no-hero pages) ---------- */
.section.page-intro {
  min-height: 38vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h-mobile) + 48px);
  padding-bottom: 48px;
}
@media (min-width: 1024px) {
  .section.page-intro { padding-top: calc(var(--header-h) + 48px); }
}
.page-intro .container { width: 100%; }
.page-intro .section-head { margin-bottom: 0; }

/* ---------- Page intro quote (over-ons) ---------- */
.page-intro-quote {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-text);
  margin: 24px auto 0;
  max-width: 600px;
}

/* ---------- Pricing card button ---------- */
.pricing-card .btn { margin-top: 8px; }

/* ---------- Pricing card body note ---------- */
.pricing-card-body-note {
  font-size: 0.82rem;
  color: var(--c-text-soft);
  text-align: center;
  margin: 8px 0 0;
}

/* ---------- Pricing card single (bedrijfsmassage) ---------- */
.pricing-card-single {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--c-gray-200);
  padding: 40px;
  text-align: center;
  max-width: 560px;
  margin: 40px auto 0;
}
.pricing-card-single__tiers { margin: 24px 0; display: flex; align-items: flex-start; }
.pricing-card-single__tiers > * { flex: 1; }
.pricing-card-single__divider { border-left: 1px solid var(--c-gray-200); padding-left: 24px; }
.pricing-card-single__footer { margin-bottom: 24px; }

/* ---------- Massage overview price badge ---------- */
.massage-price-badge {
  font-size: 0.85rem;
  color: var(--c-petrol);
  font-weight: 500;
}

/* ---------- Other massages 2×2 variant (massages.html) ---------- */
@media (min-width: 1024px) {
  .other-massages--full { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ---------- Section first (compensate fixed header, no hero) ---------- */
.section-first { padding-top: calc(var(--header-h-mobile) + var(--section-pad-y-mobile)); }
@media (min-width: 1024px) {
  .section-first { padding-top: calc(var(--header-h) + var(--section-pad-y)); }
}

/* ---------- Massage rows (over-ons vertical layout) ---------- */
.massage-rows { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; max-width: 860px; margin-left: auto; margin-right: auto; }
.massage-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  color: inherit;
}
.massage-row:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); color: inherit; }
.massage-row-img { position: relative; overflow: hidden; min-height: 160px; }
.massage-row-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.massage-row:hover .massage-row-img img { transform: scale(1.04); }
.massage-row-body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.massage-row-body h3 { margin-bottom: 10px; }
.massage-row-body p { font-size: 15px; color: var(--c-text); line-height: 1.6; margin-bottom: 18px; }
@media (max-width: 639px) {
  .massage-rows {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    gap: 16px;
    margin: 40px -24px 0;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 8px;
    scrollbar-width: none;
    max-width: none;
  }
  .massage-rows::-webkit-scrollbar { display: none; }
  .massage-row { flex: 0 0 82%; scroll-snap-align: start; grid-template-columns: 1fr; }
  .massage-row-img { aspect-ratio: 16/9; }
  .massage-row-body { padding: 24px; }
}

.massage-row-dots {
  display: none; justify-content: center; gap: 8px; margin-top: 20px;
}
@media (max-width: 639px) { .massage-row-dots { display: flex; } }
.massage-row-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-gray-300);
  transition: all 0.2s ease;
}
.massage-row-dots button.is-active { width: 24px; border-radius: 4px; background: var(--c-orange); }

/* ---------- Bedrijf research stats ---------- */
.bedrijf-intro { max-width: 640px; margin: 0 auto; text-align: center; }
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 400px;
  margin: 32px auto;
  text-align: center;
}
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--c-petrol);
  line-height: 1;
}
.stat-label { margin-top: 8px; font-size: 0.95rem; color: var(--c-text-soft); }
.stat-note { font-size: 0.9rem; color: var(--c-text-soft); margin-bottom: 8px; }

/* ---------- Booking embed (Salonized) ---------- */
.booking-embed { max-width: 900px; margin: 0 auto; }

/* ---------- Booking modal overlay ---------- */
.booking-modal {
  display: none;
  position: fixed; inset: 0; z-index: 900;
  align-items: flex-start; justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.booking-modal.is-open { display: flex; }
.booking-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
}
.booking-modal-box {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%; max-width: 960px;
  padding: 48px 32px 32px;
  margin: auto;
}
.booking-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: none; border: 1px solid var(--c-gray-200);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text);
  transition: all 0.2s ease;
}
.booking-modal-close:hover { border-color: var(--c-orange); color: var(--c-orange); }
.booking-modal-close svg { width: 18px; height: 18px; }
.booking-modal-header { margin-bottom: 32px; }
.booking-modal-header h2 { margin-bottom: 8px; font-size: clamp(24px, 3vw, 36px); }
.booking-modal-header p { color: var(--c-text); line-height: 1.6; }

/* ---------- Legal / prose content ---------- */
.legal-content {
  max-width: 680px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  margin-top: 48px;
  margin-bottom: 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; line-height: 1.7; color: var(--c-text); }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content li { margin-bottom: 6px; line-height: 1.65; color: var(--c-text); }
.legal-content address { font-style: normal; }

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  border-top: 1px solid var(--c-gray-200);
}
.faq-item { border-bottom: 1px solid var(--c-gray-200); }
.faq-q {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--c-black);
  cursor: pointer;
  user-select: none;
  line-height: 1.25;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--c-orange);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 32px 24px 0; }
.faq-a p { font-size: 15px; line-height: 1.7; color: var(--c-text); }

/* ---------- 404 page ---------- */
.not-found-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
