*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #FAF7F2; --warm: #F3EDE3;
  --sage: #7A9E82; --sage-light: #C8DEC9; --sage-dark: #4E7257;
  --terra: #C4785A; --terra-light: #E8C3B2;
  --ink: #2F2820; --muted: #8A7A6A; --border: #DDD4C6;
}
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--ink); color: #fff;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.8); max-width: 600px; }
#cookie-banner a { color: var(--sage-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.55rem 1.3rem; border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: none;
}
.cookie-accept { background: var(--sage); color: #fff; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.cookie-decline:hover { color: #fff; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem max(4rem, calc((100% - 1400px) / 2 + 4rem));
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--sage-dark); letter-spacing: 0.02em; text-decoration: none; }
.nav-logo span { color: var(--terra); font-style: italic; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 0.9rem; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--sage-dark); }
.nav-cta { background: var(--sage); color: #fff !important; padding: 0.55rem 1.4rem; border-radius: 100px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--sage-dark) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--ink); text-decoration: none; }
.mobile-nav a:hover { color: var(--sage-dark); }
.mobile-nav .m-cta { background: var(--sage); color: #fff !important; padding: 0.75rem 2rem; border-radius: 100px; font-size: 1.2rem; }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 8rem max(4rem, calc((100% - 1400px) / 2 + 4rem)) 4rem; gap: 4rem; position: relative; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.blob-1 { width: 500px; height: 500px; background: var(--sage-light); top: -100px; right: -100px; opacity: 0.4; }
.blob-2 { width: 350px; height: 350px; background: var(--terra-light); bottom: 50px; left: -80px; opacity: 0.35; }
.hero-text { position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--terra); }
h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5vw, 4.8rem); font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 1.5rem; }
h1 em { color: var(--sage-dark); font-style: italic; font-weight: 400; }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 420px; line-height: 1.8; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--sage); color: #fff; padding: 0.85rem 2rem; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); }
.btn-secondary { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.4rem; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.btn-secondary:hover { color: var(--terra); border-color: var(--terra); }
.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; }
.hero-card-wrap { position: relative; width: 100%; max-width: 460px; }
.card-tag { display: inline-block; background: var(--sage-light); color: var(--sage-dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 0.75rem; }
.card-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.card-quote-sub { font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }
.hero-overlay-card {
  position: absolute; bottom: -24px; left: -24px; right: 40px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-radius: 1.5rem; padding: 1.5rem 1.8rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.6);
  z-index: 2;
}

/* ── SECTIONS ── */
section { padding: 6rem 4rem; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.section-label::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--terra); }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2; margin-bottom: 1rem; }
h2 em { font-style: italic; color: var(--sage-dark); }

/* ── LEAD MAGNET ── */
.lead-magnet { background: var(--sage-dark); padding: 4rem; }
.lead-magnet-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.lm-text .section-label { color: var(--sage-light); }
.lm-text .section-label::before { background: var(--sage-light); }
.lm-text h2 { color: #fff; }
.lm-text h2 em { color: var(--sage-light); }
.lm-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 1rem; }
.lm-perks { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.lm-perks li { color: rgba(255,255,255,0.85); font-size: 0.9rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.lm-perks li::before { content: '✓'; color: var(--sage-light); font-weight: 700; flex-shrink: 0; }
.lm-form { background: #fff; border-radius: 1.5rem; padding: 2rem; }
.lm-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.lm-form p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: 0.75rem; font-family: 'Nunito', sans-serif; font-size: 0.92rem; color: var(--ink);
  background: var(--cream); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; padding: 0.85rem; border-radius: 100px; background: var(--sage); color: #fff; border: none; font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--sage-dark); }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }
.form-success { display: none; text-align: center; padding: 1.5rem; }
.form-success .success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--sage-dark); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--muted); }

/* ── FOR WHO ── */
.for-who { background: var(--warm); }
.for-who-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.for-who-left p { color: var(--muted); font-size: 1rem; max-width: 440px; margin-bottom: 1rem; }
.who-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.who-tag { background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 0.4rem 1rem; font-size: 0.85rem; color: var(--ink); }
.for-who-right { display: flex; flex-direction: column; gap: 1rem; }
.quote-card { background: #fff; border-radius: 1.2rem; padding: 1.5rem; border-left: 3px solid var(--sage); }
.quote-card p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--ink); line-height: 1.5; }
.quote-card.accent { border-left-color: var(--terra); }

/* ── HOW ── */
.how-works-inner { max-width: 1100px; margin: 0 auto; }
.how-works-inner > div:first-child { text-align: center; margin-bottom: 3.5rem; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.timeline::before { content: ''; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 1px; background: var(--border); }
.timeline-step { text-align: center; padding: 0 0.5rem; }
.timeline-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--cream); border: 2px solid var(--sage-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.3rem; position: relative; z-index: 1; }
.timeline-icon.active { background: var(--sage); border-color: var(--sage); }
.timeline-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.timeline-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── CALENDLY ── */
.calendly-section { background: var(--warm); }
.calendly-inner { max-width: 1100px; margin: 0 auto; }
.calendly-inner > div:first-child { text-align: center; margin-bottom: 2.5rem; }
.calendly-inner > div:first-child p { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0.5rem auto 0; }
.calendly-embed-wrap {
  background: #fff; border-radius: 2rem; border: 1px solid var(--border);
  overflow: hidden; min-height: 650px;
}

/* ── PRODUCTS ── */
.products-inner { max-width: 1100px; margin: 0 auto; }
.products-header { margin-bottom: 3rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.product-card { background: #fff; border-radius: 1.5rem; padding: 2rem; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.product-card.featured { background: var(--sage-dark); border-color: var(--sage-dark); color: #fff; }
.product-level { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--muted); }
.product-card.featured .product-level { color: var(--sage-light); }
.product-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.product-tagline { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }
.product-card.featured .product-tagline { color: var(--sage-light); }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; line-height: 1; margin-bottom: 0.2rem; }
.product-price-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.product-card.featured .product-price-note { color: var(--sage-light); }
.product-divider { height: 1px; background: var(--border); margin: 1.2rem 0; }
.product-card.featured .product-divider { background: rgba(255,255,255,0.15); }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.product-features li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 0.6rem; }
.product-features li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.product-card.featured .product-features li { color: rgba(255,255,255,0.9); }
.product-card.featured .product-features li::before { color: var(--sage-light); }
.product-btn { display: block; text-align: center; margin-top: 1.8rem; padding: 0.75rem; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 0.9rem; background: var(--cream); color: var(--sage-dark); border: 1px solid var(--border); transition: background 0.2s, color 0.2s; cursor: pointer; }
.product-btn:hover { background: var(--sage-light); }
.product-card.featured .product-btn { background: #fff; color: var(--sage-dark); border-color: transparent; }
.product-card.featured .product-btn:hover { background: var(--sage-light); }
.addon-note { margin-top: 2rem; background: #fff; border-radius: 1.2rem; padding: 1.5rem 2rem; border: 1px solid var(--border); display: flex; align-items: center; gap: 1.5rem; }
.addon-icon { font-size: 2rem; flex-shrink: 0; }
.addon-note h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
.addon-note p { font-size: 0.88rem; color: var(--muted); }

/* ── PRODUCT SUB-HEADERS ── */
.product-sub-header { margin-bottom: 2rem; margin-top: 3.5rem; background: var(--sage); border-radius: 1rem; padding: 1.5rem 2rem; }
.product-sub-header:first-of-type { margin-top: 0; }
.product-sub-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: #fff; margin-bottom: 0.3rem; }
.product-sub-header p { font-size: 0.95rem; color: rgba(255,255,255,0.9); max-width: 500px; }
.product-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; align-items: start; }
@media (max-width: 860px) { .product-grid-2 { grid-template-columns: 1fr; } }

/* ── MEEKIJK CARDS ── */
.meekijk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.meekijk-card { background: #fff; border-radius: 1.2rem; padding: 1.5rem 2rem; border: 1px solid var(--border); }
.meekijk-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; margin-bottom: 0.3rem; }
.meekijk-card .meekijk-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.5rem; }
.meekijk-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.75rem; line-height: 1.6; }
.meekijk-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--ink); }
.meekijk-price span { font-size: 0.82rem; font-weight: 400; color: var(--muted); }
@media (max-width: 860px) { .meekijk-grid { grid-template-columns: 1fr; } }

/* ── CONTACT FORM ── */
.contact { background: var(--warm); }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-left h2 { margin-bottom: 1rem; }
.contact-left p { color: var(--muted); font-size: 0.98rem; line-height: 1.8; margin-bottom: 1rem; }
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-info a { color: var(--sage-dark); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.contact-info a:hover { color: var(--terra); }
.contact-form-card { background: #fff; border-radius: 1.5rem; padding: 2.5rem; border: 1px solid var(--border); }
.contact-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 0.3rem; }
.contact-form-card > p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── ABOUT ── */
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-portrait { position: relative; }
.portrait-placeholder { width: 100%; aspect-ratio: 3/4; border-radius: 2rem; background: linear-gradient(135deg, var(--sage-light), var(--terra-light)); display: flex; align-items: center; justify-content: center; font-size: 5rem; color: #fff; position: relative; overflow: hidden; }
.portrait-placeholder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(78,114,87,0.3), transparent); }
.portrait-badge { position: absolute; bottom: -16px; right: -16px; background: var(--terra); color: #fff; border-radius: 1.2rem; padding: 1rem 1.4rem; box-shadow: 0 8px 24px rgba(196,120,90,0.3); }
.portrait-badge strong { display: block; font-size: 1.4rem; line-height: 1; }
.portrait-badge span { font-size: 0.78rem; opacity: 0.9; }
.about-text p { color: var(--muted); font-size: 0.98rem; line-height: 1.8; margin-bottom: 1rem; }
.values-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.value-pill { background: var(--cream); border: 1px solid var(--border); border-radius: 100px; padding: 0.35rem 0.9rem; font-size: 0.82rem; color: var(--ink); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--warm); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: #fff; border-radius: 1.5rem; padding: 2rem; border: 1px solid var(--border); }
.testi-stars { color: var(--terra); margin-bottom: 0.8rem; font-size: 0.85rem; }
.testi-card blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; line-height: 1.6; color: var(--ink); margin-bottom: 1.2rem; }
.testi-author { font-size: 0.85rem; font-weight: 600; color: var(--muted); }

/* ── CTA ── */
.cta { text-align: center; padding: 7rem 4rem; position: relative; overflow: hidden; }
.cta-blob1 { position: absolute; top: -80px; left: -80px; width: 400px; height: 400px; border-radius: 50%; background: var(--sage-light); filter: blur(60px); opacity: 0.4; }
.cta-blob2 { position: absolute; bottom: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: var(--terra-light); filter: blur(60px); opacity: 0.35; }
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.cta p { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 3rem 4rem; }
footer a { color: rgba(255,255,255,0.45); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #fff; font-weight: 600; }
.footer-logo span { color: var(--terra); font-style: italic; }
.footer-logo p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 0.4rem; max-width: 220px; }
.footer-links-group h5 { color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.footer-links-group a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-links-group a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.8rem; }
.footer-bottom a:hover { color: #fff; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-text > * { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.22s; }
.hero-text > *:nth-child(3) { animation-delay: 0.34s; }
.hero-text > *:nth-child(4) { animation-delay: 0.46s; }
.hero-visual { opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; }
  section { padding: 4rem 1.5rem; }
  .lead-magnet { padding: 3rem 1.5rem; }
  .lead-magnet-inner, .for-who-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-grid, .testi-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .hero-visual { max-width: 360px; }
  .hero-overlay-card { left: -8px; right: 16px; bottom: -16px; padding: 1.2rem 1.4rem; }
  .hero-photo-wrap { max-height: 420px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.5rem; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}

/* ── BOOKING CARD ── */
.booking-cta-wrap { padding: 0; }
.booking-card {
  background: #fff;
  border-radius: 2rem;
  border: 1px solid var(--border);
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}
.booking-icon { font-size: 3rem; line-height: 1; }
.booking-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.5rem;
}
.booking-text p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1rem; }
.booking-perks { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.booking-perks li { font-size: 0.88rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.booking-perks li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.booking-btn {
  background: var(--sage);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.booking-btn:hover { background: var(--sage-dark); transform: translateY(-1px); }
@media (max-width: 860px) {
  .booking-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }
  .booking-perks { align-items: center; }
  .booking-btn { width: 100%; text-align: center; }
}

/* ── PORTRAIT IMAGE ── */
.portrait-img {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 2rem;
  object-fit: cover; object-position: center top;
  display: block;
}

/* ── HERO PHOTO ── */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 560px;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

/* ── PHOTO STRIP ── */
.photo-strip { padding: 0; overflow: hidden; }
.photo-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 520px;
  gap: 6px;
}
.strip-photo { overflow: hidden; }
.strip-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; transition: transform 0.6s ease; }
.strip-photo:hover img { transform: scale(1.03); }

@media (max-width: 860px) {
  .photo-strip-inner { grid-template-columns: 1fr; height: auto; gap: 4px; }
  .strip-photo { height: 280px; }
  .hero-card-wrap { max-width: 360px; margin: 0 auto; }
}
