/* ============================================
   EVOLVE MARKETING — Design System
   ============================================ */

:root {
  /* Colors — warm, premium, earthy (no orange, no standard marketing blue) */
  --ink: #2B2118;
  --ink-soft: #6B5D4F;
  --cream: #FAF6F0;
  --cream-alt: #F3ECE3;
  --sand: #F1E9DE;
  --sand-dark: #E4D5C3;
  --border: #E4D9CB;
  --accent: #7A2E39;
  --accent-dark: #5E2129;
  --accent-light: #B97883;
  --white: #FFFFFF;
  --success: #4B6B4F;
  --error: #A8442E;

  /* Type */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

  /* Shape */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(43, 33, 24, 0.08);
  --shadow-md: 0 8px 30px rgba(43, 33, 24, 0.10);
  --shadow-lg: 0 20px 60px rgba(43, 33, 24, 0.16);

  --container: 1180px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; line-height: 1.15; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

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

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

section { position: relative; }

.eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 1.65rem;
  max-width: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 18px;
  height: 1.5px;
  background: var(--ink-soft);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-lg);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2.h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
p.lead { font-size: 1.15rem; color: var(--ink-soft); margin-top: 1rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  text-align: center;
  max-width: 100%;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--white); }
.btn-on-dark {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 240, 0.3);
}
.btn-on-dark:hover { border-color: var(--cream); background: rgba(250, 246, 240, 0.08); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

.link-arrow {
  display: inline;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.link-arrow:hover { opacity: 0.75; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.is-scrolled { border-color: var(--border); box-shadow: 0 1px 20px rgba(43,33,24,0.04); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}
.brand-logo-img { height: 48px; width: auto; display: block; }
.mobile-menu-top .brand-logo-img { height: 64px; }

@media (min-width: 900px) {
  .brand-logo-img { height: 64px; }
}
.brand .m { font-family: var(--font-body); font-weight: 500; color: var(--ink-soft); font-size: 0.95rem; margin-left: -2px; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); transition: color var(--transition); }
.nav-links a:hover { color: var(--ink); }

.nav-cta { display: none; }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none; border: none;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2.5rem; }
.mobile-menu-links a { font-family: var(--font-heading); font-size: 1.75rem; color: var(--ink); }
.mobile-menu-close { width: 40px; height: 40px; background: none; border: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 2.5rem 0 var(--space-2xl);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-text p.lead { max-width: 46ch; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-lg);
  align-items: center;
}
.hero-microcopy {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,33,24,0) 60%, rgba(43,33,24,0.35) 100%);
}

@media (min-width: 960px) {
  .hero { padding: 4rem 0 var(--space-3xl); }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-2xl); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-lg) 0;
}
.trust-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
.trust-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.trust-item svg { flex-shrink: 0; color: rgba(250, 246, 240, 0.55); margin-top: 2px; }
.trust-item strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.2rem; }
.trust-item span { font-size: 0.9rem; color: rgba(250,246,240,0.7); }

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
}

/* ============================================
   PROBLEM RECOGNITION
   ============================================ */
.problem { padding: var(--space-2xl) 0; }
.problem-list {
  display: grid;
  gap: 1rem;
  margin-top: var(--space-lg);
}
.problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 500;
}
.problem-item svg { flex-shrink: 0; color: var(--ink-soft); margin-top: 2px; }
.problem-close {
  margin-top: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  max-width: 30ch;
}

@media (min-width: 768px) {
  .problem-list { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value { padding: var(--space-2xl) 0; background: var(--sand); }
.value-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 20ch;
  margin-bottom: var(--space-xl);
}
.value-statement em { color: var(--ink); font-style: normal; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.value-pillars {
  display: grid;
  gap: var(--space-md);
}
.value-pillar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--border);
}
.value-pillar .num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  display: block;
}
.value-pillar h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-pillar p { color: var(--ink-soft); font-size: 0.95rem; }

@media (min-width: 768px) {
  .value-pillars { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   SERVICES — connected chain, not cards
   ============================================ */
.services { padding: var(--space-2xl) 0; }
.services-intro { max-width: 640px; margin-bottom: var(--space-xl); }
.services-chain {
  position: relative;
  display: grid;
  gap: 0;
}
.services-chain::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 1.5px;
  background: var(--border);
}
.service-node {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-node:last-of-type { border-bottom: none; }
.service-num {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream-alt);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink);
  transition: all var(--transition);
}
.service-node:hover .service-num { background: var(--accent); color: var(--white); border-color: var(--accent); }
.service-body h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.service-body p { color: var(--ink-soft); font-size: 0.95rem; max-width: 56ch; }
.services-note {
  margin-top: var(--space-lg);
  padding: 1.25rem 1.5rem;
  background: var(--sand);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.services-note strong { color: var(--ink); }

@media (min-width: 768px) {
  .service-node { grid-template-columns: 64px 1fr; padding: 2rem 0; }
  .service-num { width: 64px; height: 64px; font-size: 1.1rem; }
  .services-chain::before { left: 31px; }
}

/* ============================================
   PROCESS — how it works
   ============================================ */
.process { padding: var(--space-2xl) 0; background: var(--ink); color: var(--cream); }
.process .section-head p.lead { color: rgba(250,246,240,0.65); }
.process-steps {
  display: grid;
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
.process-step {
  padding: var(--space-md);
  border: 1px solid rgba(250,246,240,0.15);
  border-radius: var(--radius-md);
  background: rgba(250,246,240,0.03);
}
.process-step .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(250, 246, 240, 0.45);
  display: block;
  margin-bottom: 0.75rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--cream); }
.process-step p { font-size: 0.9rem; color: rgba(250,246,240,0.65); }

@media (min-width: 640px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .process-steps { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================
   REPORT / LEAD MAGNET
   ============================================ */
.report {
  padding: var(--space-2xl) 0;
}
.report-card {
  background: linear-gradient(135deg, #4A3A2C 0%, #2B2118 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.report-card::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  top: -150px; right: -150px;
}
.report-head { max-width: 640px; margin-bottom: var(--space-xl); position: relative; }
.report-head .eyebrow { color: var(--cream); }
.report-head .eyebrow::before { background: var(--cream); }
.report-head h2 { color: var(--white); }
.report-head p.lead { color: rgba(255,255,255,0.85); }

.report-grid {
  display: grid;
  gap: var(--space-lg);
  position: relative;
}
.report-info { display: grid; gap: 1.25rem; align-content: start; }
.report-info-item { display: flex; gap: 0.9rem; }
.report-info-item svg { flex-shrink: 0; margin-top: 2px; }
.report-info-item strong { display: block; margin-bottom: 0.2rem; }
.report-info-item span { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

.report-form {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--ink);
}
.report-form h3 { margin-bottom: 1.25rem; font-size: 1.2rem; }

@media (min-width: 960px) {
  .report-card { padding: var(--space-2xl); }
  .report-grid { grid-template-columns: 0.9fr 1.1fr; }
}

/* ============================================
   FORMS
   ============================================ */
.form-row { margin-bottom: 1rem; }
.form-row-2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-error { color: var(--error); font-size: 0.8rem; margin-top: 0.35rem; display: none; }
.form-row.has-error .form-input,
.form-row.has-error .form-textarea { border-color: var(--error); }
.form-row.has-error .form-error { display: block; }
.form-privacy { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.9rem; }
.form-submit-error { color: var(--error); font-size: 0.88rem; margin-top: 0.9rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success.is-visible { display: block; }
.form-success svg { color: var(--success); margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--ink-soft); }
.form-fields.is-hidden { display: none; }

/* ============================================
   ABOUT
   ============================================ */
.about { padding: var(--space-2xl) 0; }
.about-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-caption {
  position: absolute;
  bottom: -1.25rem;
  right: -1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  max-width: 220px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  display: none;
}
.about-text p { margin-bottom: 1.1rem; color: var(--ink-soft); font-size: 1.02rem; }
.about-text p:first-of-type { color: var(--ink); font-size: 1.15rem; font-weight: 500; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-2xl); }
  .about-caption { display: block; }
}

/* ============================================
   SOCIAL PROOF (placeholder-ready)
   ============================================ */
.proof { padding: var(--space-2xl) 0; background: var(--sand); }
.proof-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: var(--space-lg);
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 180px;
  justify-content: center;
}
.proof-card svg { color: var(--ink-soft); }
.proof-card strong { font-family: var(--font-heading); font-size: 1.1rem; }
.proof-card span { font-size: 0.92rem; color: var(--ink-soft); }

@media (min-width: 768px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: var(--space-2xl) 0; }
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-q svg { flex-shrink: 0; transition: transform var(--transition); color: var(--ink-soft); }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}
.faq-a-inner { padding-bottom: 1.35rem; color: var(--ink-soft); max-width: 62ch; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--space-2xl) 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.final-cta h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.75rem); max-width: 18ch; margin: 0 auto; }
.final-cta p.lead { color: rgba(250,246,240,0.7); max-width: 46ch; margin-left: auto; margin-right: auto; }
.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: var(--space-lg);
}
.final-cta-actions .btn { width: 100%; max-width: 320px; }
.final-cta-tertiary { margin-top: 0.5rem; color: rgba(250,246,240,0.6); font-size: 0.9rem; }
.final-cta-tertiary a { text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 600px) {
  .final-cta-actions { flex-direction: row; justify-content: center; }
  .final-cta-actions .btn { min-width: 0; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: var(--space-2xl) 0; }
.contact-grid {
  display: grid;
  gap: var(--space-xl);
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.contact-info { display: grid; gap: 1.5rem; align-content: start; }
.contact-info-item { display: flex; gap: 1rem; }
.contact-info-item svg { flex-shrink: 0; color: var(--ink-soft); }
.contact-info-item strong { display: block; margin-bottom: 0.2rem; }
.contact-info-item span, .contact-info-item a { color: var(--ink-soft); font-size: 0.95rem; }

@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; }
  .contact-info { order: -1; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--ink); color: rgba(250,246,240,0.7); padding: var(--space-xl) 0 var(--space-md); }
.footer-top {
  display: grid;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(250,246,240,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-heading); font-size: 1.15rem; color: var(--cream); margin-bottom: 0.75rem; }
.footer-brand .m { font-family: var(--font-body); font-weight: 500; color: rgba(250,246,240,0.6); font-size: 0.9rem; }
.footer-tagline { font-size: 0.9rem; max-width: 32ch; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--cream); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(250,246,240,0.45); margin-bottom: 1rem; font-weight: 600; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: var(--space-md);
  font-size: 0.82rem;
  color: rgba(250,246,240,0.45);
}

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(43,33,24,0.08);
  transform: translateY(100%);
  transition: transform 280ms ease;
}
.mobile-sticky-cta.is-visible { transform: translateY(0); }
@media (min-width: 900px) {
  .mobile-sticky-cta { display: none; }
}

/* ============================================
   MODAL — kennismaking
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(43,33,24,0.55);
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-lg) var(--space-md);
  transform: translateY(40px);
  transition: transform var(--transition);
}
.modal-overlay.is-open .modal { transform: translateY(0); }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; gap: 1rem; }
.modal-close { flex-shrink: 0; width: 36px; height: 36px; background: var(--sand); border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; }
.modal-expect {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0 1.5rem;
  padding: 1.1rem;
  background: var(--sand);
  border-radius: var(--radius-md);
}
.modal-expect-item { display: flex; gap: 0.7rem; font-size: 0.9rem; }
.modal-expect-item svg { flex-shrink: 0; color: var(--ink-soft); margin-top: 2px; }

@media (min-width: 700px) {
  .modal-overlay { align-items: center; }
  .modal { border-radius: var(--radius-lg); }
}

/* ============================================
   UTILITIES / ANIMATION
   ============================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.no-scroll { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
