/* Kinesitherapie Van der Berg — demo styles */

:root {
  --cream: #faf8f4;
  --white: #ffffff;
  --warm-dark: #1c1917;
  --warm-mid: #44403c;
  --warm-muted: #78716c;
  --border: #e7e4de;
  --sage: #6b7c6e;
  --sage-light: #eef2ee;
  --sage-dark: #4a5c4d;
  --gold: #c8a96e;
  /* Demo-banner + nav + extra ruimte bij hash-links (o.a. behandelingen#…) */
  --anchor-scroll-offset: 7.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--warm-mid);
  background: var(--cream);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--warm-dark);
  margin: 0 0 0.5em;
}

h1,
.h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h2,
.h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h3,
.h3 {
  font-size: 1.4rem;
  font-weight: 500;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.overline {
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 1rem;
}

.label-upper {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--warm-muted);
}

.container {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
}

/* Demo banner */
.demo-banner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-dark);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  text-align: center;
  padding: 0 12px;
  z-index: 200;
  position: relative;
}

.demo-banner a {
  color: var(--gold);
  text-decoration: underline;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  height: 68px;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 250ms ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__logo {
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-line1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--warm-dark);
  line-height: 1.1;
}

.nav__logo-line2 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--warm-mid);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}

.nav__link:hover {
  color: var(--warm-dark);
}

.nav__link--active {
  color: var(--warm-dark);
  border-bottom-color: var(--sage);
}

.nav__cta {
  font-family: "DM Sans", sans-serif;
  background: var(--sage);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 250ms ease;
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--sage-dark);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav__toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--warm-dark);
  border-radius: 1px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.site-header.is-open .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.nav__mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.25);
  z-index: 130;
}

.site-header.is-open .nav__mobile-backdrop {
  display: block;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__inner {
    position: fixed;
    left: 0;
    right: 0;
    top: 104px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease, transform 280ms ease;
    z-index: 135;
  }

  .site-header.is-open .nav__inner {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav__link--active {
    border-bottom-color: var(--sage);
  }

  .nav__cta-wrap {
    margin-top: 12px;
  }

  .nav__cta {
    display: block;
    text-align: center;
    width: 100%;
  }
}

@media (min-width: 901px) {
  .nav__wrap {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
  }

  .nav__inner {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 4px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease,
    transform 200ms ease;
}

.btn--primary {
  background: var(--sage);
  color: #fff;
}

.btn--primary:hover {
  background: var(--sage-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--warm-dark);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.btn--outline-sage {
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage);
}

.btn--outline-sage:hover {
  background: var(--sage-light);
}

.btn--block {
  width: 100%;
}

/* Hero home */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  padding: 48px 0 80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 48px;
  align-items: center;
  flex: 1;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero__text h1 {
  margin-bottom: 0.35em;
}

.hero__text p {
  max-width: 460px;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 0.85rem;
  color: var(--warm-muted);
}

.hero__visual {
  position: relative;
}

.hero__photo-box {
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(145deg, #d4cfc7 0%, #b8b0a4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-height: 500px;
  margin: 0 auto;
}

.hero__monogram {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
}

.hero__floating-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: var(--warm-mid);
}

.hero__stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  color: var(--warm-muted);
  opacity: 0.4;
}

.scroll-indicator svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* Sections */
.section {
  padding: 80px 0;
}

.section--100 {
  padding: 100px 0;
}

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

.section--cream {
  background: var(--cream);
}

.section--tight-top {
  padding-top: 60px;
}

.section--page-hero {
  padding: 120px 0 80px;
}

.section--page-hero-sm {
  padding: 120px 0 60px;
}

.section--page-hero-contact {
  padding: 100px 0 60px;
}

@media (max-width: 640px) {
  .section--page-hero {
    padding: 80px 0 56px;
  }

  .section--page-hero-sm {
    padding: 80px 0 48px;
  }

  .section--page-hero-contact {
    padding: 72px 0 48px;
  }
}

.section__intro {
  max-width: 520px;
  margin-bottom: 0;
}

/* USP grid */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}

.usp-item__num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.5rem;
  color: var(--sage);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.25rem;
}

#home-usp .usp-item__num.js-count-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease-out, transform 480ms ease-out;
  will-change: opacity, transform;
}

#home-usp .usp-item__num.js-count-up.is-ready {
  opacity: 0.4;
  transform: translateY(0);
}

.usp-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.usp-item p {
  font-size: 0.9rem;
  color: var(--warm-muted);
  margin: 0;
}

/* Cards grid treatments */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.treatment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.treatment-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--sage);
}

.treatment-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.treatment-card p {
  font-size: 0.95rem;
  color: var(--warm-muted);
  margin-bottom: 1rem;
}

.treatment-card__link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--sage);
  text-decoration: none;
}

.treatment-card__link:hover {
  text-decoration: underline;
}

.section__head {
  margin-bottom: 48px;
}

.section__head h2 {
  max-width: 520px;
}

/* Team preview cards */
.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

@media (max-width: 700px) {
  .team-preview-grid {
    grid-template-columns: 1fr;
  }
}

.team-card-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.team-card-preview__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(160deg, var(--sage-light), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  color: var(--sage);
  overflow: hidden;
}

.team-card-preview__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.team-card-preview__body {
  padding: 24px;
}

.team-card-preview__role {
  font-size: 0.85rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.team-card-preview p {
  font-size: 0.95rem;
  color: var(--warm-muted);
}

/* CTA dark section */
.cta-dark {
  background: var(--warm-dark);
  padding: 100px 0;
}

.cta-dark__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .cta-dark__grid {
    grid-template-columns: 1fr;
  }
}

.cta-dark .overline {
  color: var(--gold);
}

.cta-dark h2 {
  color: #fff;
}

.cta-dark__lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
}

.cta-dark__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-dark__card {
  background: #2d2926;
  border-radius: 8px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-dark__card .label-upper {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.cta-dark__card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #fff;
}

.cta-dark__card .btn {
  margin-top: 12px;
}

/* Team grid full */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.team-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(165deg, var(--sage-light), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 3.25rem);
  color: var(--sage);
  overflow: hidden;
}

.team-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.team-card__body {
  padding: 24px 28px;
}

.team-card__role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.95rem;
  color: var(--warm-muted);
  margin-bottom: 1rem;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  background: var(--sage-light);
  color: var(--sage);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.values-grid h3 {
  margin-bottom: 0.5rem;
}

.values-grid p {
  color: var(--warm-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Behandelingen rows */
.treatment-rows {
  background: var(--white);
}

.treatment-row {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.treatment-row:last-child {
  border-bottom: none;
}

.treatment-row[id] {
  scroll-margin-top: var(--anchor-scroll-offset);
}

@media (max-width: 800px) {
  .treatment-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.treatment-row__left {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.treatment-row__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.treatment-row__titles h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.treatment-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.treatment-row__right p {
  margin-bottom: 1.25rem;
}

.treatment-row__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 1rem;
}

@media (max-width: 560px) {
  .treatment-row__meta {
    grid-template-columns: 1fr;
  }
}

.treatment-row__meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-muted);
  margin-bottom: 4px;
}

.treatment-row__meta dd {
  margin: 0;
  font-size: 0.95rem;
}

.treatment-row__cta {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--sage);
  text-decoration: none;
}

.treatment-row__cta:hover {
  text-decoration: underline;
}

/* Insurance table */
.insurance-block {
  background: var(--sage-light);
  padding: 80px 0;
}

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 800px) {
  .insurance-grid {
    grid-template-columns: 1fr;
  }
}

.table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
}

table.insurance-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.insurance-table th,
.insurance-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.insurance-table th {
  background: var(--cream);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm-dark);
}

.insurance-table tr:last-child td {
  border-bottom: none;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  padding: 80px 0;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 56px 0;
  }
}

.form-panel h2 {
  margin-bottom: 1.5rem;
}

/* Step indicator */
.form-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.form-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--warm-muted);
}

.form-step-indicator__circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  background: var(--white);
}

.form-step-indicator.is-active .form-step-indicator__circle {
  border-color: var(--sage);
  background: var(--sage);
  color: #fff;
}

.form-step-indicator.is-done .form-step-indicator__circle {
  border-color: var(--warm-dark);
  background: var(--warm-dark);
  color: #fff;
}

.form-step-indicator.is-done .form-step-indicator__label {
  color: var(--warm-dark);
}

.form-step-indicator.is-active .form-step-indicator__label {
  color: var(--warm-dark);
}

.form-step-indicator__label {
  white-space: nowrap;
}

.form-step-sep {
  color: var(--border);
  font-size: 1rem;
  padding: 0 4px;
}

.form-step-panel {
  display: none;
}

.form-step-panel.is-visible {
  display: block;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--warm-muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px 16px;
  color: var(--warm-dark);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 124, 110, 0.15);
  outline: none;
}

.field--error input,
.field--error select,
.field--error textarea {
  border-color: #dc2626;
}

.field-error {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 4px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--warm-mid);
  cursor: pointer;
}

.radio-group input {
  width: auto;
}

.summary-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.summary-card dl {
  margin: 0;
}

.summary-card dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-muted);
  margin-top: 12px;
}

.summary-card dt:first-child {
  margin-top: 0;
}

.summary-card dd {
  margin: 4px 0 0;
}

#booking-root[hidden] {
  display: none !important;
}

.fieldset-voorschrift {
  border: none;
  padding: 0;
  margin: 0 0 1.25rem;
  min-width: 0;
}

.fieldset-voorschrift > legend {
  margin-bottom: 10px;
}

.info-sidebar__block > .label-upper {
  margin-bottom: 10px;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--warm-muted);
  margin-bottom: 1rem;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success svg {
  margin-bottom: 1rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

/* Info sidebar */
.info-sidebar h3 {
  margin-bottom: 1.25rem;
}

.info-sidebar__block {
  margin-bottom: 2rem;
}

.info-sidebar__block p,
.info-sidebar__block address {
  font-style: normal;
  margin: 0 0 0.5em;
  line-height: 1.6;
}

.map-embed {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 100%;
}

.map-embed iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

.hours-list dt {
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 10px;
}

.hours-list dt:first-child {
  margin-top: 0;
}

.hours-list dd {
  margin: 0;
  color: var(--warm-muted);
  font-size: 0.95rem;
}

.info-box {
  background: var(--sage-light);
  border-radius: 8px;
  padding: 20px;
  font-size: 0.9rem;
  color: var(--warm-mid);
}

/* Footer */
.site-footer {
  background: var(--warm-dark);
  padding: 64px 0 40px;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer .nav__logo-line1 {
  color: #fff;
}

.site-footer .nav__logo-line2 {
  color: rgba(255, 255, 255, 0.65);
}

.footer-lead {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  display: block;
  padding: 6px 0;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-contact p {
  margin: 0 0 0.5em;
}

.footer-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 200ms ease, border-color 200ms ease;
}

.footer-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
}

.text-center-wrap {
  text-align: center;
}

.mt-lg {
  margin-top: 40px;
}

.note-muted {
  font-size: 0.85rem;
  color: var(--warm-muted);
  margin-top: 12px;
  margin-bottom: 0;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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