
/*
Theme Name: New Steps Revision Safe V2
Theme URI: https://newstepsrevision.nl/
Author: OpenAI
Description: Safe WordPress theme version based on preview-final. Uses existing pages without auto-import to avoid conflicts.
Version: 2.0.0
Text Domain: newstepsrevision-safe-v2
*/

/* ============================================================
   NEW STEPS REVISION — GLOBAL STYLESHEET
   Zen / Water / Stone aesthetic — premium, calm, minimal
   ============================================================ */

/* ── Google Fonts Import ────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --color-white:        #ffffff;
  --color-off-white:    #f4f6f9;
  --color-bg-light:     #eaecf2;
  --color-blue-100:     #dce8f5;
  --color-blue-200:     #b4cce0;
  --color-blue-300:     #80aac8;
  --color-blue-500:     #4d82a8;
  --color-blue-700:     #2e6288;
  --color-blue-900:     #183246;
  --color-gold:         #c09456;
  --color-gold-light:   #f0e4d0;
  --color-green:        #4d8a78;
  --color-green-light:  #cde5df;
  --color-text:         #132030;
  --color-text-muted:   #3a5060;
  --color-border:       #d4dae2;

  --font-sans:  'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 16px rgba(24,50,70,0.10), 0 1px 4px rgba(24,50,70,0.06);
  --shadow-md:  0 8px 40px rgba(24,50,70,0.15), 0 2px 10px rgba(24,50,70,0.08);
  --shadow-lg:  0 20px 64px rgba(24,50,70,0.20), 0 4px 16px rgba(24,50,70,0.10);
  --shadow-xl:  0 32px 80px rgba(24,50,70,0.25), 0 6px 24px rgba(24,50,70,0.12);

  --max-width:  1120px;
  --section-py: 100px;
}

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

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

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

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

a { color: var(--color-blue-700); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--color-blue-500); }

ul, ol { list-style: none; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.25; }

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--color-blue-900);
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--color-blue-900);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-blue-900);
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}

p { margin-bottom: 1em; color: var(--color-text); }
p:last-child { margin-bottom: 0; }

.lead { color: var(--color-text-muted); font-weight: 400; }

.text-center { text-align: center; }
.label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-blue-700);
  margin-bottom: 16px;
}

.label--gold { color: #b07830; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all .35s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-blue-700) 0%, #1e5070 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(46,98,136,0.35);
}
.btn--primary:hover {
  color: var(--color-white);
  background: linear-gradient(135deg, #1e5070 0%, var(--color-blue-900) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(46,98,136,0.45);
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, #a07840 100%);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(192,148,86,0.30);
}
.btn--gold:hover {
  color: var(--color-white);
  background: linear-gradient(135deg, #a07840 0%, #7a5c2c 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(192,148,86,0.40);
}

.btn--outline {
  background: transparent;
  color: var(--color-blue-700);
  border: 1.5px solid var(--color-blue-300);
}
.btn--outline:hover {
  background: var(--color-blue-100);
  color: var(--color-blue-900);
  border-color: var(--color-blue-500);
}

.btn--sm { padding: 10px 24px; font-size: 0.85rem; }
.btn--lg { padding: 18px 42px; font-size: 1rem; }

.btn-group--center { justify-content: center; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(180,204,224,0.6);
  transition: all .4s ease;
}

.site-nav.scrolled {
  box-shadow: 0 4px 30px rgba(24,50,70,0.12);
  background: rgba(255,255,255,0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 8px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-blue-900);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--color-blue-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  transition: all .3s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-blue-900);
  background: rgba(122,149,176,0.08);
}

.nav-cta { margin-left: 6px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-weight: 400;
}
.mobile-menu a:hover { background: rgba(122,149,176,0.08); color: var(--color-blue-900); }
.mobile-menu .btn { margin-top: 8px; align-self: flex-start; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(160deg, #0f2233 0%, #183246 50%, #0f2233 100%);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 36px;
}

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

.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.footer-col h4 {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color .3s;
}
.footer-col a:hover { color: var(--color-white); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  transition: all .3s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

/* ── Section Wrappers ───────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section--light { background: linear-gradient(180deg, var(--color-off-white) 0%, #e8ecf3 100%); }
.section--navy {
  background: linear-gradient(160deg, #0f2233 0%, #183246 40%, #1a3d58 70%, #0f2233 100%);
  color: var(--color-white);
}
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--color-white); }
.section--navy p { color: rgba(255,255,255,0.8); }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(180,204,224,0.5);
  transition: all .4s ease;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(77,130,168,0.3);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.card-icon--gold { background: var(--color-gold-light); }

.card h3 { color: var(--color-blue-900); margin-bottom: 12px; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ── Hero Sections (Inner Pages) ──────────────────────────────── */
.page-hero {
  padding: 160px 0 100px;
  min-height: 420px;
  background-color: var(--color-off-white);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(24,50,70,0.72) 0%,
    rgba(24,50,70,0.55) 50%,
    rgba(24,50,70,0.70) 100%
  );
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,151,122,0.06) 0%, transparent 70%);
  z-index: 0;
}

.page-hero .label { margin-bottom: 20px; color: #ffd966; letter-spacing: .14em; text-shadow: 0 1px 6px rgba(0,0,0,0.5); font-weight: 700; font-size: 0.82rem; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #ffffff; margin-bottom: 28px; text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 6px rgba(0,0,0,0.4); font-weight: 400; }
.page-hero p.lead { font-size: 1.1rem; color: rgba(255,255,255,0.90); max-width: 600px; margin-bottom: 36px; line-height: 1.8; }

/* ── Package Cards ──────────────────────────────────────────── */
.package-card {
  background: var(--color-white);
  backdrop-filter: none;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all .35s ease;
}
.package-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-blue-300);
}

.package-card.featured {
  border-color: var(--color-blue-300);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--color-blue-700);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-xl);
}

.package-card h3 { color: var(--color-blue-900); margin-bottom: 8px; }

.package-includes {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.package-includes li::before {
  content: '\2713';
  color: var(--color-green);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Placeholder for future testimonials */
.testimonial-placeholder {
  background: rgba(122,149,176,0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 1.5px dashed rgba(122,149,176,0.2);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-section {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(180,204,224,0.5);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: rgba(255,255,255,0.8);
  transition: all .3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-blue-500);
  box-shadow: 0 0 0 4px rgba(122,149,176,0.1);
  background: var(--color-white);
}

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

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

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  margin-top: 2px;
  accent-color: var(--color-blue-500);
}

.checkbox-item span { font-size: 0.9rem; color: var(--color-text-muted); }

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-box {
  background: linear-gradient(160deg, var(--color-blue-700), var(--color-blue-900));
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  color: var(--color-white);
}
.newsletter-box h2, .newsletter-box h3 { color: var(--color-white); margin-bottom: 12px; font-weight: 300; }
.newsletter-box p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-xl);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: 2px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.2); }

/* ── Image Placeholder ──────────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--color-off-white), var(--color-blue-100));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  padding: 40px;
}

/* ── Value / Pillar Blocks ──────────────────────────────────── */
.pillar-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(180,204,224,0.5);
  transition: all .4s ease;
}
.pillar-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pillar-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Split Layout ───────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Pain Point / Emotion List ──────────────────────────────── */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-blue-300);
  box-shadow: 0 2px 12px rgba(24,50,70,0.07);
  transition: all .3s ease;
}
.pain-item:hover {
  background: rgba(255,255,255,1);
  border-left-color: var(--color-blue-700);
  box-shadow: 0 4px 24px rgba(24,50,70,0.12);
  transform: translateX(4px);
}
.pain-item .icon { font-size: 1.2rem; flex-shrink: 0; }
.pain-item p { margin: 0; font-size: 0.93rem; }

/* ── Quote Highlight ────────────────────────────────────────── */
.quote-highlight {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  text-align: center;
  position: relative;
}
.quote-highlight blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-blue-900);
  font-style: italic;
  line-height: 1.6;
  font-weight: 300;
}
.quote-highlight cite {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-blue-700);
  font-style: normal;
  font-weight: 500;
}

.section--navy .quote-highlight {
  background: rgba(255,255,255,0.06);
}
.section--navy .quote-highlight blockquote,
.section--navy .quote-highlight p {
  color: rgba(255,255,255,0.9);
}
.section--navy .quote-highlight cite,
.section--navy .quote-highlight footer {
  color: rgba(255,255,255,0.5);
}

/* ── Home Hero (Full-Screen) ────────────────────────────────── */
.hero--full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  background-image: url('assets/images/hero-stone-water.png');
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero--full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24,50,70,0.55) 0%,
    rgba(24,50,70,0.30) 40%,
    rgba(24,50,70,0.55) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(24,50,70,0.4);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.hero-intro {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.75;
  text-align: center;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-blue-700);
  text-decoration: none;
  border: 1.5px solid rgba(122,149,176,0.3);
  background: rgba(255,255,255,0.75);
  transition: all .35s ease;
  backdrop-filter: blur(10px);
}
.btn--secondary:hover {
  color: var(--color-blue-900);
  border-color: var(--color-blue-500);
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* Home intro cards below hero */
.intro-cards {
  padding: 88px 0 100px;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-off-white) 100%);
}
.intro-cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.intro-cards .card {
  text-align: center;
  padding: 48px 36px;
}
.intro-cards .card h3 {
  color: var(--color-blue-900);
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.intro-cards .card p {
  margin-bottom: 24px;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-blue-500);
  text-decoration: none;
  border-bottom: 1px solid rgba(122,149,176,0.3);
  padding-bottom: 2px;
  transition: all .3s;
  letter-spacing: 0.02em;
}
.card-link:hover {
  color: var(--color-blue-900);
  border-color: var(--color-blue-700);
}

/* ── WhatsApp & Instagram Social ───────────────────────────── */
.footer-social a[aria-label="WhatsApp"]:hover {
  background: rgba(37,211,102,0.25);
  color: #25d366;
}
.footer-social a[aria-label="Instagram"]:hover {
  background: rgba(225,48,108,0.20);
  color: #e1306c;
}

/* ── Enhanced Section Separators ───────────────────────────── */
.section {
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(77,130,168,0.15) 50%, transparent 100%);
}

/* ── Contact Info Blocks ────────────────────────────────────── */
.contact-info-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  border: 1px solid rgba(180,204,224,0.5);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--color-text);
  transition: all .3s ease;
}
.contact-info-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--color-text);
  border-color: rgba(77,130,168,0.4);
}
.contact-info-block svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
}
.contact-info-block--whatsapp { color: #1a8a4a; border-left: 3px solid #25d366; }
.contact-info-block--whatsapp:hover { color: #1a8a4a; background: rgba(37,211,102,0.06); }
.contact-info-block--instagram { color: #c13584; border-left: 3px solid #e1306c; }
.contact-info-block--instagram:hover { color: #c13584; background: rgba(225,48,108,0.06); }
.contact-info-block span { font-weight: 500; font-size: 0.95rem; }

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* ── WordPress-Ready Utility Classes ───────────────────────── */
.social-card { text-decoration: none; color: inherit; display: block; }
.social-card:hover { color: inherit; }
.social-card .card { transition: all .4s ease; }

.social-card-inner { text-align: center; padding: 48px 32px; }

.social-card-icon {
  width: 44px;
  height: 44px;
  fill: var(--color-blue-500);
  margin: 0 auto 16px;
  display: block;
}

.form-hint { color: var(--color-text-muted); margin-top: 0.25rem; display: block; font-size: 0.82rem; }

.form-wrapper { max-width: 700px; margin: 0 auto; }

.form-intro { margin-bottom: 2rem; color: var(--color-text-muted); }

.sidebar-box {
  background: var(--color-off-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  border: 1px solid rgba(224,228,232,0.5);
}
.sidebar-box h3 { margin-top: 0; }
.sidebar-box ol { margin-bottom: 1.5rem; }

.sidebar-email { margin-bottom: 2rem; }

.sidebar-quote {
  background: var(--color-off-white);
  padding: 1.5rem;
  border-left: 3px solid var(--color-gold);
  margin-bottom: 2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.sidebar-quote p { margin: 0; font-style: italic; color: var(--color-text-muted); font-family: var(--font-serif); font-size: 1.05rem; }

.sidebar-image {
  border-radius: var(--radius-md);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-image p { text-align: center; color: var(--color-text-muted); padding: 1rem; }

.contact-icon { font-size: 2rem; margin-bottom: 1rem; }

.gold-link { color: var(--color-gold); text-decoration: none; font-weight: 500; }
.gold-link:hover { color: #8f7f64; }

.required-mark { color: #c97a7a; }

.package-subtitle { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1rem; letter-spacing: 0.02em; }

.package-includes-title { margin-bottom: 0.75rem; }

.package-cta { display: inline-block; margin-top: 1.5rem; }

.package-badge--green { background-color: var(--color-green); color: white; }

.package-note { font-size: 0.9rem; color: var(--color-text-muted); font-style: italic; margin-top: 1rem; }

.cta-center { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-center h2 { margin-bottom: 1.5rem; }
.cta-center p { margin-bottom: 2rem; }

.values-heading { margin-bottom: 2.5rem; }

.photo-placeholder {
  border-radius: var(--radius-lg);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder p { text-align: center; color: var(--color-text-muted); }

.pillar-heading { margin-bottom: 0.5rem; }
.pillar-subheading { max-width: 640px; margin-bottom: 2.5rem; }

.pillar-includes-title { margin-top: 1.5rem; margin-bottom: 0.75rem; }

.split-sidebar { flex: 1; }
.split-main { flex: 2; }

.textarea-tall { min-height: 140px; }

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

.navy-cta { text-align: center; max-width: 700px; margin: 0 auto; }
.navy-cta p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; }

/* ── Scroll Indicator ──────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-blue-700);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity .3s;
}
.scroll-indicator:hover { opacity: 1; }

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-blue-500), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Fade-in animations ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── Phase Cards (Gezin & Balans) ──────────────────────────── */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.phase-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(180,204,224,0.5);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .4s ease;
}
.phase-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.phase-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-gold-light);
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phase-card p { margin: 0; }

/* ── Fase Cards (Gezin detail sections) ───────────────────── */
.fase-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}
.fase-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(224,228,232,0.6);
}
.fase-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.fase-card h3 { margin-bottom: 12px; }

/* ── Value Cards (Pakketten) ──────────────────────────────── */
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(180,204,224,0.5);
  border-top: 3px solid var(--color-gold);
  transition: all .4s ease;
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.value-card h4 {
  color: var(--color-blue-900);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
}

/* ── About Layout (Over Ons) ──────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.profile-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--color-off-white), var(--color-blue-100));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  border: 1.5px dashed rgba(122,149,176,0.25);
}
.about-text p {
  line-height: 1.85;
}

/* ── Clean List Styles (minimal, no heavy boxes) ─────────── */
.clean-numbered-list {
  list-style: decimal;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.clean-numbered-list > li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  padding-left: 8px;
}
.clean-numbered-list > li h3 {
  margin-bottom: 4px;
}
.clean-numbered-list > li p {
  margin-bottom: 0;
}
.clean-numbered-list.pillar-list {
  gap: 28px;
  max-width: 680px;
}
.clean-numbered-list.pillar-list > li {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.clean-numbered-list.pillar-list > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.clean-bullet-list {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.clean-bullet-list > li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text);
}
.clean-bullet-list.value-list {
  gap: 20px;
  max-width: 720px;
  list-style: none;
  padding-left: 0;
}
.clean-bullet-list.value-list > li {
  padding-left: 20px;
  border-left: 3px solid var(--color-gold);
}
.clean-bullet-list.value-list > li strong {
  color: var(--color-blue-900);
}

/* ── Fase Sections (no-box variant) ──────────────────────── */
.fase-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}
.fase-section {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
}
.fase-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.fase-section h3 { margin-bottom: 12px; }

/* ── Simplified Package Cards ────────────────────────────── */
.package-card--minimal {
  background: transparent;
  backdrop-filter: none;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  box-shadow: none;
  position: relative;
  transition: border-color .3s ease;
}
.package-card--minimal:hover {
  box-shadow: none;
  transform: none;
  border-color: var(--color-blue-300);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .value-cards { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-layout .profile-placeholder { max-width: 220px; }

  .form-section { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }

  .newsletter-box { padding: 48px 24px; }
  .newsletter-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-hero { padding: 130px 0 70px; min-height: 340px; }
  .page-hero[style*="family-together"] { background-position: center 25% !important; }

  .stat-row { gap: 24px; }

  .hero--full { min-height: 90vh; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card { padding: 32px 24px; }
  .package-card { padding: 36px 28px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .intro-cards .cards-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

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

/* ── Premium Visual Enhancements ───────────────────────────── */
.section--light .card,
.section--light .pillar-block,
.section--light .phase-card,
.section--light .value-card {
  box-shadow: 0 4px 24px rgba(24,50,70,0.10), 0 1px 6px rgba(24,50,70,0.06);
}

/* Section visual separators */
.section + .section--light,
.section--light + .section {
  border-top: none;
}

/* Strong dark headings in sections */
h1, h2 {
  color: var(--color-blue-900);
}

.section--navy h1, .section--navy h2, .section--navy h3,
.site-footer h3, .newsletter-box h2, .newsletter-box h3 {
  color: var(--color-white);
}
.hero--full .hero-brand {
  color: #ffffff;
}

/* Deeper fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Floating card depth on hover */
.card:hover,
.pillar-block:hover,
.phase-card:hover,
.value-card:hover,
.fase-card:hover {
  transform: translateY(-6px);
}

/* Scroll indicator stronger */
.scroll-indicator {
  color: rgba(255,255,255,0.7);
  opacity: 0.9;
}

/* Stronger quote highlight */
.quote-highlight {
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 8px 32px rgba(24,50,70,0.2);
}

/* Package featured stronger border */
.package-card.featured {
  border-color: var(--color-blue-500);
  box-shadow: 0 0 0 1px var(--color-blue-500), var(--shadow-md);
}

/* ── Specific text visibility overrides ────────────────────────── */
.section h2, .section h3, .section--light h2, .section--light h3 {
  color: var(--color-blue-900);
}

/* Zakelijk page h1 extra weight */
.page-hero h1 {
  letter-spacing: 0.01em;
}


/* WordPress helpers */
.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-nav { top: 46px; } }
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a,
.site-nav a.active,
.mobile-menu .current-menu-item > a,
.mobile-menu .current_page_item > a { color: var(--color-navy); font-weight: 600; }
.mobile-menu.open { display: flex; }
.wp-block-image img { height: auto; }
.nsr-editor-content { padding-top: 24px; }
.nsr-editor-content .container > *:last-child { margin-bottom: 0; }
