/* ============ DESIGN SYSTEM ============ */
:root {
  --ink-900: #1d1d1f;
  --ink-700: #3a3a3c;
  --ink-500: #6e6e73;
  --ink-300: #a1a1a6;
  --ink-200: #d2d2d7;

  --mist-50:  #faf6f0;
  --mist-100: #f5f5f7;
  --mist-200: #ececee;

  --coral:      #ff6b6b;
  --coral-soft: #ff8a8a;
  --coral-deep: #e85d5d;
  --sky:        #7cb9e8;
  --sky-soft:   #a8d8ea;
  --sky-deep:   #5a9bd4;
  --sun:        #ffd23f;
  --sun-soft:   #ffe07a;
  --sun-deep:   #f0bc2a;
  --mint:       #7cc99a;
  --mint-soft:  #a8e0bd;
  --mint-deep:  #5cb27e;

  --grad-rainbow: linear-gradient(120deg, #ff8a8a 0%, #ffd23f 30%, #7cc99a 65%, #7cb9e8 100%);
  --grad-coral:   linear-gradient(135deg, #ff8a8a, #ff6b6b);
  --grad-sky:     linear-gradient(135deg, #a8d8ea, #7cb9e8);
  --grad-sun:     linear-gradient(135deg, #ffe07a, #ffd23f);
  --grad-mint:    linear-gradient(135deg, #a8e0bd, #7cc99a);

  --shadow-soft: 0 4px 24px -8px rgba(0,0,0,0.06);
  --shadow-card: 0 10px 40px -12px rgba(0,0,0,0.08);
  --shadow-pop:  0 24px 64px -16px rgba(0,0,0,0.12);

  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 28px;
  --r-2xl: 32px;
  --r-pill: 999px;

  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background-color: #fefdfb;
  background-image:
    radial-gradient(ellipse 1000px 650px at 0% 0%, rgba(255,138,138,0.15), transparent 60%),
    radial-gradient(ellipse 900px 600px at 100% 10%, rgba(255,210,63,0.15), transparent 60%),
    radial-gradient(ellipse 950px 650px at 8% 38%, rgba(124,201,154,0.15), transparent 60%),
    radial-gradient(ellipse 1000px 650px at 95% 50%, rgba(124,185,232,0.15), transparent 60%),
    radial-gradient(ellipse 900px 600px at 15% 78%, rgba(255,210,63,0.15), transparent 60%),
    radial-gradient(ellipse 1000px 650px at 90% 90%, rgba(255,138,138,0.15), transparent 60%),
    radial-gradient(ellipse 850px 600px at 50% 100%, rgba(124,201,154,0.15), transparent 60%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: 0; background: 0; cursor: pointer; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.narrow    { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.mid       { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.balance   { text-wrap: balance; }

/* TYPE */
.display { font-family: var(--font-display); letter-spacing: -0.03em; font-weight: 600; line-height: 1.05; }
h1.display { font-size: clamp(44px, 8vw, 88px); }
h2.display { font-size: clamp(34px, 5vw, 60px); }
h3.display { font-size: clamp(20px, 2vw, 28px); }
.eyebrow   { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.muted     { color: var(--ink-500); }
.ink-300   { color: var(--ink-300); }
.lead      { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: var(--ink-500); }

.grad-rainbow {
  background: var(--grad-rainbow);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-pill);
  font-weight: 500; font-size: 15px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: #34b870; color: #fff; box-shadow: 0 6px 18px -6px rgba(52,184,112,0.35); }
.btn-primary:hover { background: #2ca163; transform: translateY(-1px); box-shadow: 0 10px 24px -6px rgba(52,184,112,0.45); }
.btn-secondary { color: var(--ink-900); background: transparent; }
.btn-secondary:hover { background: var(--mist-100); }
.btn-outline {
  color: var(--ink-900); background: #fff;
  border: 1px solid var(--mist-200);
}
.btn-outline:hover { background: var(--mist-100); }
.btn-light { background: #fff; color: var(--ink-900); }
.btn-light:hover { background: var(--mist-100); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.arrow { display: inline-block; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(2px); }

/* NAV */
nav.topnav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: -0.02em; font-size: 17px;
}
.brand-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--grad-rainbow);
  display: inline-flex; flex-direction: column;
  justify-content: center; gap: 2.5px;
  padding: 0 5px; flex-shrink: 0;
}
.brand-mark i {
  display: block; height: 2.5px; background: #fff;
  border-radius: 1px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--ink-700); transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--ink-900); }
.nav-links a.active { color: var(--ink-900); }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--ink-900);
}
@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* MOBILE MENU */
.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--mist-100);
}
.menu-toggle svg { width: 18px; height: 18px; }
@media (max-width: 860px) { .menu-toggle { display: inline-flex; } }
.mobile-menu {
  display: none;
  position: fixed; inset: 56px 0 0 0; z-index: 49;
  background: #fff; padding: 32px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 16px 0; font-family: var(--font-display);
  font-size: 22px; letter-spacing: -0.02em; font-weight: 500;
  border-bottom: 1px solid var(--mist-200);
}
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* SECTION SPACING */
section { padding: 100px 0; position: relative; }
@media (max-width: 760px) { section { padding: 72px 0; } }
.bg-mist { background: var(--mist-50); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head .eyebrow { margin-bottom: 12px; display: block; }

/* PAGE HEADER (for sub-pages) */
.page-header { padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin: 20px 0 16px; }
.page-header .lead { max-width: 640px; margin: 0 auto; }

/* HERO */
.hero { padding: 140px 0 96px; overflow: hidden; position: relative; }
@media (min-width: 760px) { .hero { padding: 180px 0 128px; } }
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.45;
  pointer-events: none; z-index: 0;
}
.blob.b1 { background: var(--coral-soft); width: 420px; height: 420px; top: -80px; left: -80px; }
.blob.b2 { background: var(--sun-soft);   width: 360px; height: 360px; top: 160px; right: 0; }
.blob.b3 { background: var(--sky-soft);   width: 320px; height: 320px; bottom: 0; left: 33%; }
.blob.b4 { background: var(--mint-soft);  width: 280px; height: 280px; top: 0; right: 20%; }

.hero .container { position: relative; z-index: 1; }
.hero-text { text-align: center; max-width: 880px; margin: 0 auto; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--mist-100); color: var(--ink-700);
  font-size: 12px; font-weight: 500;
}
.pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mint);
  box-shadow: 0 0 0 0 rgba(124,201,154,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124,201,154,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(124,201,154,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,201,154,0); }
}
.hero h1 { margin: 24px 0; }
.hero .lead { max-width: 640px; margin: 0 auto; }
.hero .cta-row {
  margin-top: 40px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.trust-strip {
  margin-top: 56px;
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: var(--ink-500);
}
.trust-strip span.ok { color: var(--mint-deep); margin-right: 6px; font-weight: 700; }

/* HERO VISUAL */
.hero-visual {
  position: relative; max-width: 1040px; margin: 80px auto 0;
  aspect-ratio: 16/9; border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--mist-100), var(--mist-200));
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.hero-visual-photo {
  background: transparent;
  box-shadow: none;
  aspect-ratio: 1/1;
  max-width: 760px;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual-photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.13));
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.hero-visual-photo:hover img { transform: scale(1.03); }
.dotgrid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.strips {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.strip {
  background: #fff; padding: 14px 14px 38px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25), 0 12px 24px -8px rgba(0,0,0,0.1);
  position: absolute; top: 50%;
}
.strip-frame { width: 100%; height: 70px; border-radius: 3px; margin-bottom: 8px; }
.strip-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-align: center;
  color: var(--ink-900); text-transform: uppercase; margin-top: 6px;
}
.strip.s1 { width: 130px; left: 14%; transform: translateY(-50%) rotate(-12deg); }
.strip.s2 { width: 160px; left: 50%; transform: translate(-50%, -50%) rotate(2deg); z-index: 2; }
.strip.s3 { width: 130px; right: 14%; transform: translateY(-50%) rotate(12deg); }
@media (max-width: 600px) {
  .strip.s1 { width: 100px; left: 6%; }
  .strip.s2 { width: 130px; }
  .strip.s3 { width: 100px; right: 6%; }
  .strip-frame { height: 56px; }
}

/* PRICE RIBBON */
.price-ribbon {
  position: relative; margin: -32px auto 0; max-width: 480px;
  background: #fff; border: 1px solid var(--mist-200);
  border-radius: 20px; box-shadow: var(--shadow-card);
  padding: 18px 26px;
  display: flex; align-items: center; justify-content: space-around; gap: 24px;
  z-index: 3;
}
.price-ribbon .cell { text-align: center; }
.price-ribbon .cell-label { font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; }
.price-ribbon .cell-value { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-top: 2px; letter-spacing: -0.02em; }
.price-ribbon .divider { width: 1px; height: 36px; background: var(--mist-200); }
@media (max-width: 600px) { .price-ribbon { display: none; } }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .features-grid { grid-template-columns: 1fr; } }
.card {
  background: #fff; border: 1px solid var(--mist-200);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card.wide { grid-column: span 2; padding: 48px; }
@media (max-width: 760px) { .card.wide { grid-column: span 1; padding: 32px; } }
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 22px; height: 22px; }
.ic-coral { background: rgba(255,107,107,0.10); color: var(--coral-deep); }
.ic-sky   { background: rgba(124,185,232,0.12); color: var(--sky-deep); }
.ic-sun   { background: rgba(255,210,63,0.15); color: var(--sun-deep); }
.ic-mint  { background: rgba(124,201,154,0.13); color: var(--mint-deep); }
.card h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 10px; }
.card p  { color: var(--ink-500); font-size: 15px; line-height: 1.6; }

.feature-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 760px) { .feature-hero { grid-template-columns: 1fr; } }
.swatch-grid {
  aspect-ratio: 1; background: linear-gradient(135deg, var(--mist-100), var(--mist-200));
  border-radius: var(--r-lg); display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 36px;
}
.swatch { border-radius: 16px; aspect-ratio: 1; }
.pill-tag {
  display: inline-flex; padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(255,107,107,0.10); color: var(--coral-deep);
  font-size: 12px; font-weight: 600; margin-bottom: 18px;
}

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; gap: 16px; } }
.pkg {
  background: var(--mist-50);
  border: 1px solid var(--mist-200);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  position: relative;
}
.pkg:hover { transform: translateY(-4px); }
.pkg-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-500); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.pkg-tag .dot { width: 8px; height: 8px; border-radius: 50%; }
.pkg-tag.mint .dot  { background: var(--mint); }
.pkg-tag.sky .dot   { background: var(--sky); }
.pkg-tag.coral .dot { background: var(--coral); }
.pkg h3 { font-family: var(--font-display); font-size: 26px; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 16px; }
.price { font-family: var(--font-display); font-size: 48px; font-weight: 600; letter-spacing: -0.03em; }
.price-period { font-size: 14px; color: var(--ink-500); margin-bottom: 28px; margin-top: 2px; }
.pkg ul { list-style: none; margin-bottom: 32px; flex: 1; }
.pkg li { display: flex; gap: 12px; padding: 8px 0; font-size: 15px; color: var(--ink-700); }
.pkg li.off { color: var(--ink-300); }
.pkg li .check { color: var(--mint-deep); font-weight: 700; }
.pkg .btn { width: 100%; justify-content: center; }
.pkg.featured {
  background: var(--ink-900); color: #fff;
  border-color: var(--ink-900);
  box-shadow: var(--shadow-pop);
  transform: translateY(-12px);
}
.pkg.featured:hover { transform: translateY(-16px); }
@media (max-width: 900px) { .pkg.featured { transform: none; } .pkg.featured:hover { transform: translateY(-4px); } }
.pkg.featured h3, .pkg.featured .price { color: #fff; }
.pkg.featured .price-period, .pkg.featured li { color: rgba(255,255,255,0.85); }
.pkg.featured li .check { color: var(--sun); }
.pkg.featured .pkg-tag { color: var(--ink-300); }
.pkg .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%); z-index: 10;
  background: var(--grad-rainbow); color: var(--ink-900);
  padding: 5px 14px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}

/* HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--mist-200);
  border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}
.step:hover { transform: translateY(-4px); }
.step-num { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--ink-300); letter-spacing: 0.18em; margin-bottom: 22px; }
.step-mark { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 22px; }
.step h3 { font-family: var(--font-display); font-size: 19px; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--ink-500); font-size: 15px; }

/* DORDRECHT */
.dordrecht { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .dordrecht { grid-template-columns: 1fr; gap: 40px; } }
.perk-list { display: flex; flex-direction: column; gap: 18px; margin: 32px 0; }
.perk { display: flex; gap: 16px; align-items: flex-start; }
.perk-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.perk-icon svg { width: 18px; height: 18px; }
.pi-coral { background: rgba(255,107,107,0.10); }
.pi-sun   { background: rgba(255,210,63,0.15); }
.pi-mint  { background: rgba(124,201,154,0.13); }
.pi-sky   { background: rgba(124,185,232,0.12); }
.perk h4 { font-weight: 500; margin-bottom: 4px; }
.perk p  { color: var(--ink-500); font-size: 15px; }

.map-card {
  aspect-ratio: 1; border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--mist-100), var(--mist-200));
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.map-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.map-ring { position: absolute; border-radius: 50%; border: 1px solid; }
.ring-1 { width: 360px; height: 360px; border-color: rgba(255,107,107,0.18); animation: ring 4s ease-in-out infinite; }
.ring-2 { width: 240px; height: 240px; border-color: rgba(255,107,107,0.28); }
.ring-3 { width: 130px; height: 130px; border-color: rgba(255,107,107,0.4); }
@keyframes ring {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}
.map-pin {
  position: relative; z-index: 2;
  background: #fff; border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-pop);
}
.map-pin-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad-rainbow);
  display: flex; align-items: center; justify-content: center;
}
.map-pin-mark svg { width: 18px; height: 18px; fill: #fff; }
.map-pin-name { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; font-size: 17px; }
.map-pin-sub  { font-size: 12px; color: var(--ink-500); margin-top: 1px; }
.open-now {
  position: absolute; bottom: 20px; left: 20px;
  background: #fff; border-radius: var(--r-md); padding: 10px 14px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-700);
}

/* TESTIMONIALS */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.tcard {
  background: #fff; border: 1px solid var(--mist-200);
  border-radius: var(--r-xl); padding: 32px;
  transition: transform 0.3s;
}
.tcard:hover { transform: translateY(-4px); }
.stars { color: var(--sun); letter-spacing: 2px; margin-bottom: 18px; }
.tcard blockquote { font-family: var(--font-display); font-size: 17px; line-height: 1.5; letter-spacing: -0.01em; color: var(--ink-900); margin-bottom: 22px; }
.tperson { display: flex; align-items: center; gap: 12px; }
.tavatar { width: 40px; height: 40px; border-radius: 50%; }
.tname { font-size: 14px; font-weight: 500; }
.tmeta { font-size: 13px; color: var(--ink-500); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
details {
  background: #fff; border: 1px solid var(--mist-200);
  border-radius: var(--r-md); box-shadow: var(--shadow-soft);
  transition: border-color 0.2s;
}
details[open] { border-color: var(--ink-300); }
details summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
}
details summary::-webkit-details-marker { display: none; }
details .chev { width: 22px; height: 22px; flex-shrink: 0; color: var(--ink-500); transition: transform 0.3s ease; }
details[open] .chev { transform: rotate(180deg); }
details .answer { overflow: hidden; max-height: 0; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1); }
details[open] .answer { max-height: 600px; }
details .answer p { padding: 0 24px 24px; color: var(--ink-500); }

/* FAQ CATEGORY */
.faq-category { margin-bottom: 56px; }
.faq-category h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 20px; text-align: center; }

/* FORMS */
.form-card {
  background: #fff; border: 1px solid var(--mist-200);
  border-radius: var(--r-2xl); box-shadow: var(--shadow-pop);
  padding: 56px;
  max-width: 720px; margin: 0 auto;
  position: relative; z-index: 1;
}
@media (max-width: 640px) { .form-card { padding: 32px 24px; } }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { form .row { grid-template-columns: 1fr; } }
form .field { margin-bottom: 16px; }
form .field > label { display: block; font-size: 13px; font-weight: 500; color: var(--ink-700); margin-bottom: 6px; }
form input, form select, form textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1px solid var(--mist-200); background: var(--mist-50);
  font-family: inherit; font-size: 15px; color: var(--ink-900);
  transition: background 0.2s, border-color 0.2s;
}
form input:focus, form select:focus, form textarea:focus {
  outline: 0; background: #fff; border-color: var(--ink-300);
}
form textarea { resize: vertical; min-height: 100px; }
form button[type="submit"] { width: 100%; justify-content: center; padding: 16px; font-size: 16px; margin-top: 8px; }
.form-note { text-align: center; font-size: 12px; color: var(--ink-300); margin-top: 14px; }
.form-success {
  display: none; text-align: center; padding: 14px 18px;
  background: rgba(124,201,154,0.10); color: var(--mint-deep);
  border: 1px solid rgba(124,201,154,0.3); border-radius: 12px;
  margin-top: 12px; font-size: 15px;
}
.form-success.show { display: block; }
.form-error {
  display: none; text-align: center; padding: 14px 18px;
  background: rgba(255,138,138,0.10); color: #c0392b;
  border: 1px solid rgba(255,138,138,0.3); border-radius: 12px;
  margin-top: 12px; font-size: 15px;
}
.form-error.show { display: block; }
.form-error a { color: inherit; text-decoration: underline; }

/* COMPARISON TABLE */
.compare-table {
  background: #fff; border: 1px solid var(--mist-200); border-radius: var(--r-xl);
  overflow: hidden;
}
.compare-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--mist-200);
  align-items: center;
}
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 18px 20px; font-size: 15px; }
.compare-row .feature-name { color: var(--ink-700); font-weight: 500; }
.compare-row .feature-val { text-align: center; color: var(--ink-500); }
.compare-row.head { background: var(--mist-50); }
.compare-row.head .feature-val {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink-900); font-size: 17px;
}
.compare-row.head .feature-val.featured {
  color: var(--coral-deep);
}
.compare-row .check { color: var(--mint-deep); font-weight: 700; font-size: 18px; }
.compare-row .dash { color: var(--ink-300); }
@media (max-width: 760px) {
  .compare-table { border: 0; background: transparent; }
  .compare-row { grid-template-columns: 1fr; padding: 0; border: 0; margin-bottom: 16px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--mist-200); }
  .compare-row > div { padding: 12px 16px; }
  .compare-row .feature-name { background: var(--mist-50); border-bottom: 1px solid var(--mist-200); }
  .compare-row.head { display: none; }
  .compare-row .feature-val::before { content: attr(data-label); display: block; font-size: 11px; color: var(--ink-500); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
  .compare-row .feature-val { text-align: left; }
}

/* CALCULATOR */
.calc {
  display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start;
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc-main { background: #fff; border: 1px solid var(--mist-200); border-radius: var(--r-2xl); box-shadow: var(--shadow-card); padding: 40px; }
@media (max-width: 640px) { .calc-main { padding: 28px 22px; } }
.calc-step { margin-bottom: 36px; }
.calc-step:last-child { margin-bottom: 0; }
.calc-step-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.calc-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink-900); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; font-family: var(--font-display);
}
.calc-step h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; font-weight: 600; }

.pkg-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 640px) { .pkg-options { grid-template-columns: 1fr; } }
.pkg-option {
  position: relative;
  display: block; cursor: pointer;
  padding: 20px; border-radius: var(--r-md);
  background: var(--mist-50); border: 2px solid var(--mist-200);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.pkg-option input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-option:hover { background: #fff; transform: translateY(-2px); }
.pkg-option-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 4px; }
.pkg-option-price { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.pkg-option-sub { font-size: 12px; color: var(--ink-500); }
.pkg-option input:checked + .pkg-option-name { color: var(--coral-deep); }
.pkg-option:has(input:checked) { border-color: var(--coral); background: rgba(255,107,107,0.04); }
.pkg-option:has(input:checked) .pkg-option-name { color: var(--coral-deep); }

.addon-list { display: flex; flex-direction: column; gap: 10px; }
.addon {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: var(--r-md);
  background: var(--mist-50); border: 1px solid var(--mist-200);
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.addon:hover { background: #fff; }
.addon input { width: 18px; height: 18px; accent-color: var(--mint-deep); flex-shrink: 0; }
.addon-name { flex: 1; font-weight: 500; font-size: 15px; }
.addon-desc { font-size: 13px; color: var(--ink-500); display: block; font-weight: 400; margin-top: 2px; }
.addon-price { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink-700); }

.calc-aside {
  background: var(--ink-900); color: #fff;
  border-radius: var(--r-2xl); padding: 32px;
  position: sticky; top: 80px;
  box-shadow: var(--shadow-pop);
}
.calc-aside h3 { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 22px; }
.calc-summary { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.calc-summary-row { display: flex; justify-content: space-between; font-size: 14px; color: rgba(255,255,255,0.7); }
.calc-summary-row.sub { color: rgba(255,255,255,0.5); font-size: 13px; }
.calc-total { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 22px; }
.calc-total-label { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.calc-total-value { font-family: var(--font-display); font-size: 44px; font-weight: 600; letter-spacing: -0.03em; }
.calc-aside .btn { width: 100%; justify-content: center; margin-top: 24px; }
.calc-aside .calc-note { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 14px; }

/* CONTACT GRID */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block { background: #fff; border: 1px solid var(--mist-200); border-radius: var(--r-xl); padding: 36px; }
.contact-block h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 18px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-list .ic svg { width: 16px; height: 16px; }
.contact-list .ll { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-list .vv { font-size: 15px; color: var(--ink-900); font-weight: 500; }

.hours { display: flex; flex-direction: column; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; font-size: 15px; padding: 8px 0; border-bottom: 1px solid var(--mist-200); }
.hours-row:last-child { border-bottom: 0; }
.hours-day { color: var(--ink-700); }
.hours-time { color: var(--ink-500); font-variant-numeric: tabular-nums; }

/* VALUES (over ons) */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }

/* TEAM (over ons) */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }
.member {
  background: #fff; border: 1px solid var(--mist-200); border-radius: var(--r-xl); padding: 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.member-avatar { width: 120px; height: 120px; border-radius: 50%; margin-bottom: 16px; overflow: hidden; background: var(--mist-100); }
.member-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member h4 { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.02em; font-weight: 600; }
.member p { color: var(--ink-500); font-size: 14px; margin-top: 4px; }

/* OVER */
.over { text-align: center; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.over h2 { margin-bottom: 32px; }
.over p { margin-bottom: 20px; }
.over p:last-child { margin-bottom: 0; }

/* CLOSING CTA */
.closing-cta {
  background: var(--ink-900); color: #fff;
  border-radius: var(--r-2xl);
  padding: 80px 40px; text-align: center;
  max-width: 1080px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.closing-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,107,107,0.2), transparent 60%);
}
.closing-cta > * { position: relative; z-index: 1; }
.closing-cta h2 { color: #fff; margin-bottom: 16px; }
.closing-cta p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; font-size: 17px; }

/* FOOTER */
footer { background: var(--ink-900); color: #fff; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: 80px 0; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; } }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.foot-brand-name { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; font-size: 18px; }
.foot-grid p { color: rgba(255,255,255,0.6); max-width: 380px; margin-bottom: 22px; }
.foot-grid h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 18px; font-weight: 600; }
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-grid ul a, .foot-grid ul li { color: rgba(255,255,255,0.7); font-size: 15px; }
.foot-grid ul a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0 32px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.foot-bottom .links { display: flex; gap: 20px; }
.foot-bottom a:hover { color: rgba(255,255,255,0.7); }

/* FLOATING CTA */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  box-shadow: 0 18px 40px -10px rgba(52,184,112,0.5);
  transform: translateY(100px); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.4s;
}
.fab.show { transform: translateY(0); opacity: 1; }
@media (min-width: 760px) { .fab { display: none; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(26px) scale(0.985); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* SCROLL EFFECTS */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60;
  background: var(--grad-rainbow);
  transform-origin: 0 50%; transform: scaleX(0);
  pointer-events: none;
}
nav.topnav { transition: box-shadow 0.35s ease; }
nav.topnav.scrolled { box-shadow: 0 10px 28px -14px rgba(0,0,0,0.15); }
.hero-visual { will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
  .blob { animation: blobDrift 16s ease-in-out infinite; }
  .blob.b2 { animation-duration: 21s; animation-delay: -7s; }
  .blob.b3 { animation-duration: 25s; animation-delay: -13s; }
  .blob.b4 { animation-duration: 18s; animation-delay: -4s; }
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(28px, -22px) scale(1.07); }
  66%      { transform: translate(-18px, 16px) scale(0.96); }
}


/* GOOGLE REVIEWS BADGE */
.google-badge {
  margin: 0 auto 48px;
  max-width: 680px;
}
.google-badge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1.5px solid var(--mist-200);
  border-radius: var(--r-xl);
  padding: 20px 28px;
  box-shadow: var(--shadow-card);
}
.google-badge-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.google-g { flex-shrink: 0; }
.google-badge-score {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  line-height: 1;
}
.google-badge-stars {
  font-size: 18px;
  line-height: 1.2;
  margin-top: 2px;
}
.google-badge-count {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 3px;
}
.google-badge-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink-900);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.google-badge-cta:hover { opacity: 0.8; }
@media (max-width: 580px) {
  .google-badge-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .google-badge-cta { width: 100%; justify-content: center; }
}

/* GALLERY (op locatie) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.gallery-item {
  position: relative; margin: 0;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: 3 / 4;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500; color: var(--ink-900);
}

/* PHOTOSTRIPS (voorbeeldontwerpen) */
.strips-row {
  display: flex; gap: 32px;
  justify-content: center; align-items: flex-start; flex-wrap: wrap;
}
.strip-card { margin: 0; width: min(230px, 62vw); text-align: center; }
.strip-card img {
  width: 100%; height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.28), 0 6px 16px -6px rgba(0,0,0,0.12);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s;
}
.strip-card:nth-child(1) img { transform: rotate(-3.5deg); }
.strip-card:nth-child(3) img { transform: rotate(3.5deg); }
.strip-card:hover img { transform: rotate(0deg) translateY(-8px) scale(1.02); box-shadow: 0 32px 60px -18px rgba(0,0,0,0.32); }
.strip-card figcaption { margin-top: 20px; font-size: 14px; font-weight: 500; color: var(--ink-500); }

/* ACCESSIBILITY */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink-900); color: #fff;
  padding: 12px 20px; border-radius: 0 0 12px 0;
  font-size: 14px; font-weight: 500;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sky-deep); outline-offset: 2px; border-radius: 4px;
}
.btn:focus-visible { outline-offset: 3px; border-radius: var(--r-pill); }
::selection { background: rgba(124,185,232,0.35); }
[id] { scroll-margin-top: 80px; }

/* CONTACT & FOOTER LINK POLISH */
.contact-list .vv a { border-bottom: 1px solid var(--mist-200); transition: border-color 0.2s; }
.contact-list .vv a:hover { border-color: var(--ink-500); }
.foot-grid ul a { transition: color 0.2s; }

/* PACKAGE PHOTOS */
.pkg-photo {
  margin: -36px -36px 28px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pkg-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px 28px 8px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.pkg:hover .pkg-photo img { transform: scale(1.05); }
.pkg-photo-mint { background: linear-gradient(160deg, #f0faf4 0%, #dcf0e5 100%); }
.pkg-photo-sky  { background: linear-gradient(160deg, #eef6fd 0%, #d8edf9 100%); }
.pkg-photo-pro  { background: linear-gradient(160deg, #e8f8ee 0%, #c8ecd5 100%); }
