/* ============================================================
   Angelic Beauty – Hoofd Stylesheet
   Kleurenpalet: wit, creme, beige, nude, blush, goud
   ============================================================ */

/* ──────────────────────────────────────────────
   CSS Variabelen
────────────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --cream:        #FAFAF8;
  --beige:        #F5F0EA;
  --nude:         #EDD9C7;
  --blush:        #F0C8D0;
  --gold:         #C9A96E;
  --gold-dark:    #A8834A;
  --gold-light:   #E8D5AF;
  --text:         #2C2C2C;
  --text-mid:     #5A5A5A;
  --text-light:   #9A9A9A;
  --border:       #E8E0D8;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.12);
  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.3s ease;
  --max-width:    1200px;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ──────────────────────────────────────────────
   Typografie
────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.05em; }

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

/* ──────────────────────────────────────────────
   Lay-out helpers
────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--beige { background: var(--beige); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ──────────────────────────────────────────────
   Knoppen
────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--text);
  color: var(--white);
  border: 1px solid var(--text);
}
.btn--dark:hover {
  background: var(--text-mid);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 22px; font-size: 0.72rem; }
.btn--lg { padding: 17px 42px; font-size: 0.85rem; }

/* ──────────────────────────────────────────────
   Formulier elementen
────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-control::placeholder { color: var(--text-light); }
.form-control--error { border-color: #e05555; }
.form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 5px;
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239A9A9A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ──────────────────────────────────────────────
   Alerts / Flash berichten
────────────────────────────────────────────── */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  border-left: 3px solid transparent;
}
.alert--success { background: #f0faf0; border-color: #5cb85c; color: #2d6a2d; }
.alert--error   { background: #fef0f0; border-color: #e05555; color: #7a1a1a; }
.alert--warning { background: #fdf8e1; border-color: #d4ac0d; color: #6b5500; }
.alert--info    { background: #f0f6ff; border-color: var(--gold); color: var(--text-mid); }

/* ──────────────────────────────────────────────
   Site Header / Navigatie
────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
}
.logo__sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 14px;
  color: var(--text-mid);
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.site-nav a:hover, .site-nav a.active {
  color: var(--text);
}
.site-nav a:hover::after, .site-nav a.active::after {
  transform: scaleX(1);
}
.site-nav .nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.12em;
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ──────────────────────────────────────────────
   Hero sectie
────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FAFAF8 0%, #F5F0EA 40%, #EDD9C7 80%, #F0C8D0 100%);
  padding: 120px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(240,200,208,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 {
  margin-bottom: 24px;
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: bounce 2s infinite;
}
.hero-scroll svg { color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ──────────────────────────────────────────────
   Diensten kaarten
────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.service-card:hover::before { height: 100%; }

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.service-card__desc {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-card__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 500;
}
.service-card__duration {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ──────────────────────────────────────────────
   Over ons sectie
────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image__main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--nude) 0%, var(--blush) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image__placeholder {
  text-align: center;
  color: rgba(44,44,44,0.3);
}
.about-image__placeholder svg { width: 64px; height: 64px; margin-bottom: 12px; }
.about-image__placeholder p { font-size: 0.8rem; letter-spacing: 0.1em; }
.about-image__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-content .eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.about-content h2 { margin-bottom: 24px; }
.about-content p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stat__number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat__label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────
   Werkwijze stappen
────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--blush), var(--gold));
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.step__desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ──────────────────────────────────────────────
   Reviews / Testimonials
────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name {
  font-weight: 500;
  font-size: 0.88rem;
}
.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ──────────────────────────────────────────────
   CTA sectie
────────────────────────────────────────────── */
.cta-section {
  background: var(--text);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,169,110,0.12) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .eyebrow {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 40px;
}

/* ──────────────────────────────────────────────
   Boekingspagina
────────────────────────────────────────────── */
.page-hero {
  padding: clamp(100px, 18vw, 140px) 0 clamp(36px, 6vw, 60px);
  text-align: center;
  background: var(--beige);
}
.page-hero .eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero h1 { margin-bottom: 12px; font-size: clamp(1.8rem, 5vw, 3rem); }
.page-hero p  { color: var(--text-mid); font-size: 1rem; }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.booking-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 5vw, 40px);
}
.booking-form-wrap h2 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin-bottom: 8px;
}
.booking-form-wrap .sub {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.booking-sidebar {
  position: sticky;
  top: 100px;
}
.booking-info-card {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 4vw, 28px);
  margin-bottom: 16px;
}
.booking-info-card h4 {
  margin-bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.booking-info-card ul { display: flex; flex-direction: column; gap: 10px; }
.booking-info-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.booking-info-card svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Tijdsloten */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.time-slot-btn {
  padding: 11px 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  min-height: 44px; /* minimale touch-target grootte */
  display: flex;
  align-items: center;
  justify-content: center;
}
.time-slot-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.time-slot-btn.selected {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.time-slot-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.slots-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 12px 0;
}
.slots-empty {
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 12px 0;
  font-style: italic;
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ──────────────────────────────────────────────
   Contact pagina
────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { padding-right: 24px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--text-mid); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
}
.contact-item-value a:hover { color: var(--gold); }

.contact-hours {
  margin-top: 40px;
  padding: 28px;
  background: var(--beige);
  border-radius: var(--radius-lg);
}
.contact-hours h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row.closed { color: var(--text-light); font-style: italic; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap .sub {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* ──────────────────────────────────────────────
   Diensten pagina
────────────────────────────────────────────── */
.services-intro {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--text-mid);
}
.service-list-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.service-list-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.service-list-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.service-list-card__desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}
.service-list-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 120px;
}
.service-list-card__price {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}
.service-list-card__duration {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────────
   Footer
────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }

.site-footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav ul, .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
}
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ──────────────────────────────────────────────
   Success pagina / Bedankt
────────────────────────────────────────────── */
.success-block {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--gold);
}
.success-block h2 { margin-bottom: 16px; }
.success-block p {
  color: var(--text-mid);
  margin-bottom: 32px;
}

/* ──────────────────────────────────────────────
   Responsive
────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 480px; }
  .booking-layout { grid-template-columns: 1fr; gap: 24px; }
  .booking-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .booking-info-card { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .service-list-card { grid-template-columns: 1fr; }
  .service-list-card__actions { align-items: center; flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Boekingspagina mobiel */
  .booking-sidebar { grid-template-columns: 1fr; }
  .booking-layout { gap: 20px; }
  .time-slots { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 7px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 32px 40px;
    transition: right var(--transition);
    z-index: 105;
  }
  .site-nav.open { right: 0; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-nav a {
    padding: 12px 16px;
    font-size: 0.85rem;
    display: block;
  }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
    display: block;
    padding: 13px 16px;
  }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { flex-direction: column; gap: 24px; }

  /* Boekingspagina klein scherm */
  .booking-sidebar { display: flex; flex-direction: column; gap: 12px; }
  .booking-info-card { padding: 16px 14px; }
  .booking-info-card h4 { margin-bottom: 12px; }
  .time-slots { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .time-slot-btn { font-size: 0.78rem; padding: 10px 2px; }

  /* Formulier velden groter voor touch */
  .form-control { padding: 13px 14px; font-size: 1rem; }
  select.form-control { padding-right: 36px; }

  /* Submit knop */
  #booking-submit { font-size: 0.9rem; padding: 16px; }
}
