/* ============================================
   HEAVENLY ANGELS BSO — Design System
   Locked to uploaded design board
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Color Palette (Locked) */
  --lilac-bloom: #B57EC9;
  --soft-lavender: #DCC6E6;
  --orchid: #A468B1;
  --plum: #6B3D7A;
  --warm-cream: #FFF6EC;
  --misty-grey: #E9E1EC;
  --white: #FFFFFF;
  --dark-text: #3D2E4A;
  --light-text: #6B5B7B;
  --border-light: #E8DCF0;
  --card-shadow: rgba(107, 61, 122, 0.08);
  --card-shadow-hover: rgba(107, 61, 122, 0.15);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 100px;
  --radius-round: 50%;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.25rem;

  /* Header */
  --header-height: 72px;
  --topbar-height: 36px;
}

/* --- Top Utility Bar --- */
.topbar {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  padding: 0.4rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.topbar-item:hover { color: #fff; }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-fast);
}
.topbar-social:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.topbar-social svg { width: 14px; height: 14px; }

@media (max-width: 767px) {
  .topbar { display: none; }
  :root { --topbar-height: 0px; }
}

/* --- Scripture Quote Banner --- */
.scripture-banner {
  background: linear-gradient(135deg, var(--orchid), var(--lilac-bloom), var(--plum));
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.scripture-banner::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 5%;
  font-size: 8rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}
.scripture-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.scripture-ref {
  display: block;
  margin-top: var(--space-sm);
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* --- Hero Italic Script --- */
.hero-highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--orchid);
}

/* --- Circular Offer Icon Badges --- */
.offer-icon-circle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--soft-lavender);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orchid);
  margin: 0 auto var(--space-md);
  transition: all var(--transition-base);
}
.card:hover .offer-icon-circle {
  background: var(--lilac-bloom);
  color: var(--white);
  transform: translateY(-3px);
}

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

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--warm-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--orchid);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--plum); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--plum);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: var(--space-lg); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p { margin-bottom: var(--space-md); color: var(--light-text); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.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;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--lilac-bloom);
  color: var(--white);
  border-color: var(--lilac-bloom);
}
.btn-primary:hover {
  background: var(--orchid);
  border-color: var(--orchid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 126, 201, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--plum);
  border-color: var(--lilac-bloom);
}
.btn-secondary:hover {
  background: var(--soft-lavender);
  color: var(--plum);
  transform: translateY(-2px);
}

.btn-icon { width: 18px; height: 18px; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 2px 16px var(--card-shadow);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}
.card:hover {
  box-shadow: 0 8px 32px var(--card-shadow-hover);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--misty-grey);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--orchid);
}

/* --- Header --- */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition-base), top var(--transition-base);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(107, 61, 122, 0.08);
  top: 0;
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--plum);
  position: relative;
}

.logo-img {
  width: auto;
  height: 50px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.1;
  position: relative;
  z-index: 1;
  padding-left: 0.75rem;
  /* Initial state: hidden behind logo — GSAP will animate */
  opacity: 0;
  transform: translateX(-30px);
  white-space: nowrap;
}
.logo-text span { display: block; }

.nav-desktop { display: none; }
.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}
.nav-desktop a {
  font-size: 0.9375rem;
  color: var(--dark-text);
  font-weight: 400;
  padding: 0.25rem 0;
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lilac-bloom);
  border-radius: 2px;
  transition: width var(--transition-base);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }
.nav-desktop a.active { color: var(--plum); font-weight: 500; }

.nav-cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: calc(var(--header-height) + var(--topbar-height));
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.mobile-menu a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-size: 1.125rem;
  color: var(--dark-text);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--misty-grey);
  color: var(--plum);
}
.mobile-menu .btn {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
  width: 100%;
}

/* --- Hero Section --- */
.hero {
  padding-top: calc(var(--header-height) + var(--topbar-height) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
  background: var(--warm-cream);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.hero-content h1 {
  margin-bottom: var(--space-lg);
  font-size: clamp(1.75rem, 5vw, 3rem);
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--light-text);
  margin-bottom: var(--space-xl);
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(107, 61, 122, 0.15);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--soft-lavender);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  background: var(--soft-lavender);
  opacity: 0.3;
  z-index: 0;
}
.hero-decoration-1 { width: 300px; height: 300px; top: -100px; right: -100px; }
.hero-decoration-2 { width: 200px; height: 200px; bottom: -50px; left: -80px; background: var(--misty-grey); }

/* --- Quick Info Cubes --- */
.quick-info {
  padding: var(--space-2xl) 0;
  background: var(--white);
  position: relative;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.quick-info-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--warm-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}
.quick-info-card:hover { box-shadow: 0 4px 16px var(--card-shadow); }

.quick-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--soft-lavender);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orchid);
}

.quick-info-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--plum);
  margin-bottom: 2px;
}

.quick-info-detail {
  font-size: 0.8125rem;
  color: var(--light-text);
  margin: 0;
}

/* --- Section Styles --- */
.section {
  padding: var(--space-3xl) 0;
}

.section-alt { background: var(--white); }
.section-cream { background: var(--warm-cream); }
.section-lavender { background: var(--misty-grey); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* --- Welkom Section --- */
.welkom {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.welkom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.welkom-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--card-shadow);
}

.welkom-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.welkom-slideshow {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--lavender);
}

.welkom-slideshow .welkom-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  opacity: 0;
}

.welkom-slideshow .welkom-slide--one { opacity: 1; }

.welkom-slideshow-dots {
  position: absolute;
  right: var(--space-md);
  bottom: var(--space-md);
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 22px rgba(93, 44, 115, 0.14);
  backdrop-filter: blur(10px);
}

.welkom-slideshow-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(126, 62, 157, 0.34);
}

.welkom-slideshow-dots span:first-child {
  background: var(--purple);
  transform: scale(1.25);
}

.welkom-content h2 { margin-bottom: var(--space-lg); }

.welkom-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orchid);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-top: var(--space-sm);
}
.welkom-link:hover { gap: 0.75rem; color: var(--plum); }

/* --- Values Section --- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.value-card { text-align: center; }
.value-card h3 { margin-bottom: var(--space-xs); }
.value-card p { font-size: 0.875rem; margin: 0; }

/* --- Icon Strip --- */
.icon-strip {
  padding: var(--space-2xl) 0;
  background: var(--misty-grey);
}

.icon-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  min-width: 100px;
}

.icon-circle {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orchid);
  box-shadow: 0 2px 12px var(--card-shadow);
  transition: all var(--transition-base);
}
.icon-item:hover .icon-circle {
  background: var(--lilac-bloom);
  color: var(--white);
  transform: translateY(-3px);
}

.icon-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--plum);
}

/* --- Gallery Section --- */
.gallery { padding: var(--space-3xl) 0; background: var(--warm-cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--card-shadow);
  transition: all var(--transition-base);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 32px var(--card-shadow-hover); }

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* --- CTA Section --- */
.cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--orchid), var(--lilac-bloom));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255, 255, 255, 0.85); max-width: 500px; margin: 0 auto var(--space-xl); }

.cta-section .btn-primary {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}
.cta-section .btn-primary:hover {
  background: var(--warm-cream);
  border-color: var(--warm-cream);
}

/* --- Founder Section --- */
.founder-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.founder-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--card-shadow);
}
.founder-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  max-height: 500px;
}

.founder-content blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--orchid);
  border-left: 3px solid var(--lilac-bloom);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
}

/* --- Offer Cards --- */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.offer-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.offer-card .card-icon { min-width: 48px; }

/* --- Practical Info --- */
.practical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.practical-card h3 { margin-bottom: var(--space-sm); }
.practical-card p { margin: 0; font-size: 0.9375rem; }
.practical-card--wide { grid-column: 1 / -1; }

/* --- Contact Form --- */
.contact-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.form-group { margin-bottom: var(--space-lg); }

.form-progress {
  margin: 0 0 var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 246, 236, 0.95), rgba(255, 255, 255, 0.92));
}

.form-progress-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--plum);
  font-size: 0.875rem;
  font-weight: 600;
}

.form-progress-track {
  position: relative;
  height: 12px;
  margin: 0.35rem 0 var(--space-md);
  overflow: visible;
  border-radius: var(--radius-pill);
  background: var(--misty-grey);
}

.form-progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--plum), var(--orchid), var(--lilac-bloom));
  transition: width 0.35s ease;
}

.form-progress-walker {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 22px;
  height: 22px;
  border: 3px solid var(--white);
  border-radius: var(--radius-round);
  background: var(--orchid);
  box-shadow: 0 5px 18px rgba(107, 61, 122, 0.25);
  transform: translate(-50%, -50%);
  transition: left 0.35s ease;
  animation: progressWalk 0.8s ease-in-out infinite;
}

.form-progress-walker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 12px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: rgba(107, 61, 122, 0.24);
  transform: translateX(-50%);
}

.form-step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xs);
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-step-list li {
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--light-text);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.form-step-list li.active,
.form-step-list li.complete {
  color: var(--white);
  border-color: var(--orchid);
  background: var(--orchid);
}

.form-step-list li.complete {
  background: var(--plum);
}

.form-step-tip,
.field-tip {
  color: var(--light-text);
  font-size: 0.875rem;
}

.form-step-tip {
  padding: var(--space-sm) var(--space-md);
  margin: calc(var(--space-md) * -1) 0 var(--space-lg);
  border-left: 3px solid var(--orchid);
  border-radius: var(--radius-sm);
  background: rgba(255, 246, 236, 0.78);
}

.form-section {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: 0 0 var(--space-lg);
  background: rgba(255, 255, 255, 0.74);
}

.form-section[hidden],
[data-form-submit][hidden],
.btn[hidden] {
  display: none !important;
}

.form-section legend {
  padding: 0 var(--space-xs);
  color: var(--plum);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.form-note {
  padding: var(--space-md);
  margin: 0 0 var(--space-lg);
  color: var(--muted-text);
  background: var(--warm-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.consent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--dark-text);
  background: var(--white);
  font-size: 0.9375rem;
  cursor: pointer;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--orchid);
  flex: 0 0 auto;
}

.field-tip {
  display: none;
  margin-top: var(--space-xs);
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: var(--orchid);
  box-shadow: 0 0 0 3px rgba(164, 104, 177, 0.16);
}

.form-group.has-error .field-tip {
  display: block;
  color: var(--plum);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.form-actions .btn {
  min-width: 150px;
  justify-content: center;
}

.form-submit-status {
  min-height: 1.4em;
  margin: var(--space-sm) 0 0;
  color: var(--plum);
  font-size: 0.875rem;
  text-align: center;
}

.form-submit-status.is-error {
  color: var(--plum);
  font-weight: 600;
}

@keyframes progressWalk {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -62%) scale(1.06); }
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--plum);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--lilac-bloom);
  box-shadow: 0 0 0 3px rgba(181, 126, 201, 0.15);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--warm-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

/* --- Footer --- */
.footer {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-grid--compact {
  grid-template-columns: 1fr;
}

.footer h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.footer p { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; }

.footer ul { list-style: none; }
.footer ul li { margin-bottom: var(--space-xs); }
.footer ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}
.footer ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.footer-bottom p { font-size: 0.8125rem; margin: 0; }

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--soft-lavender) !important;
  font-size: 0.9375rem !important;
}

/* --- Wave Divider (see flower-decorations.css) --- */

/* --- Page Hero --- */
.page-hero {
  padding-top: calc(var(--header-height) + var(--topbar-height) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  background: var(--misty-grey);
  text-align: center;
}

.page-hero h1 { margin-bottom: var(--space-md); }
.page-hero p { max-width: 600px; margin: 0 auto; }

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root { --container-padding: 2rem; }

  .hero-inner { flex-direction: row; align-items: center; }
  .hero-content { flex: 1.1; }
  .hero-image { flex: 0.9; }
  .hero-buttons { flex-direction: row; }

  .quick-info-grid { grid-template-columns: repeat(2, 1fr); }

  .welkom-inner { flex-direction: row; align-items: center; }
  .welkom-image { flex: 1; }
  .welkom-content { flex: 1; }

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

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

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

  .practical-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
  .consent-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .founder-inner { flex-direction: row; align-items: center; }
  .founder-image { flex: 0.8; }
  .founder-content { flex: 1.2; }

  .contact-inner { flex-direction: row; }
  .contact-form-wrap { flex: 1.2; }
  .contact-sidebar { flex: 0.8; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .nav-desktop { display: block; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
}

@media (max-width: 767px) {
  .form-progress { padding: var(--space-md); }
  .form-step-list { grid-template-columns: repeat(2, 1fr); }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .form-progress-walker {
    animation: none;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .quick-info-grid { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-grid--compact { grid-template-columns: repeat(3, 1fr); }

  .hero { padding-top: calc(var(--header-height) + var(--topbar-height) + var(--space-4xl)); padding-bottom: var(--space-4xl); }

  .hero-decoration-1 { width: 450px; height: 450px; }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  :root { --container-padding: 2.5rem; }
}
