/* =========================================================================
   Kindercoach Marjolein — warm earth-tone design system
   ========================================================================= */
:root {
  --bg: #FBF7F1;
  --fg: #2A2622;
  --fg-soft: #5A4F45;
  --fg-muted: #8A7C6E;
  --accent: #B85A3E;
  --secondary: #7A8A6A;
  --soft: #E8D9C4;
  --line: rgba(42, 38, 34, 0.1);
  --heading-font: 'Newsreader', Georgia, serif;
  --body-font: 'Asap', system-ui, sans-serif;
  --section-py: 120px;
  --container-max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section-soft { background: rgba(232, 217, 196, 0.35); }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--fg);
  text-wrap: balance;
}
h1 em, h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
h2 em {
  position: relative;
  white-space: nowrap;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body-font);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.section-title {
  font-size: clamp(32px, 4.4vw, 56px);
  margin-bottom: 32px;
  max-width: 18ch;
}
.section-title-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin-bottom: 24px;
  text-wrap: pretty;
  max-width: 60ch;
}
.body {
  color: var(--fg-soft);
  margin-bottom: 20px;
  text-wrap: pretty;
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 24px -10px rgba(184, 90, 62, 0.5);
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 14px 32px -10px rgba(184, 90, 62, 0.6);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-weight: 500;
  color: var(--fg);
  transition: border-color 200ms ease, background 200ms ease;
  font-size: 15px;
}
.btn-ghost:hover {
  border-color: var(--fg);
  background: rgba(42,38,34,0.03);
}

.link-underline {
  font-weight: 600;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}

/* ---------- Nav ---------- */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: inline-flex;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14.5px;
  color: var(--fg-soft);
  font-weight: 500;
  position: relative;
  transition: color 200ms ease;
}
.nav-link:hover { color: var(--fg); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  margin-left: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: filter 200ms ease, transform 200ms ease;
}
.nav-cta:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
}
.mobile-menu {
  background: var(--bg);
  padding: 16px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.desktop-only { display: flex; }
.mobile-only { display: none; }
@media (max-width: 880px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: flex !important; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(232,217,196,0.7) 0%, transparent 60%),
    radial-gradient(40% 60% at 0% 60%, rgba(184,90,62,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-text { padding-top: 12px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px 8px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-soft);
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
}
.eyebrow-mark { width: 36px; height: auto; }
.hero-title {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero-lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--fg-soft);
  max-width: 52ch;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1;
}
.trust-item span {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
  max-width: 14ch;
  line-height: 1.3;
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hero-blob {
  width: 110%;
  top: -5%;
  left: -5%;
  z-index: 0;
}
.hero-photo-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 280px 280px 24px 24px;
  filter: saturate(0.95);
}
.hero-photo-card {
  position: absolute;
  bottom: -28px;
  left: -32px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  max-width: 280px;
  border: 1.5px solid;
  box-shadow: 0 18px 40px -16px rgba(42,38,34,0.18);
  z-index: 2;
}
.hero-photo-card-inner p {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--fg);
  margin-top: 6px;
}
.card-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--body-font);
}

.hero-scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- Two-col ---------- */
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.two-col-flip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.col-narrow { position: sticky; top: 120px; }

.signal-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-top: 32px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.5);
  border-radius: 18px;
  border: 1px solid var(--line);
}
.signal-list li {
  position: relative;
  padding-left: 24px;
  color: var(--fg);
  font-size: 15.5px;
  line-height: 1.4;
}
.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent);
}

/* ---------- Pillars ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 32px 32px;
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(42,38,34,0.18);
}
.pillar-num {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.pillar-brush {
  width: 80px;
  height: 16px;
  margin-bottom: 18px;
  display: block;
}
.pillar-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}
.pillar-card p {
  color: var(--fg-soft);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.timeline-rail {
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 2px;
  opacity: 0.6;
}
.timeline-step {
  position: relative;
  padding-bottom: 48px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -52px;
  top: 4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
}
.timeline-duration {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.timeline-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.timeline-content p {
  color: var(--fg-soft);
  max-width: 56ch;
  line-height: 1.55;
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
  background: #fff;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.price-card:hover {
  transform: translateY(-4px);
}
.price-card-featured {
  border-width: 2px;
  box-shadow: 0 28px 50px -28px rgba(184,90,62,0.3);
  transform: translateY(-8px);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  color: #fff;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
}
.price-amount {
  font-family: var(--heading-font);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 8px 0 4px;
  line-height: 1;
}
.price-sub {
  font-size: 14px;
  color: var(--fg-muted);
}
.price-detail {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--fg-soft);
  font-size: 14.5px;
  line-height: 1.5;
}
.price-foot {
  margin-top: 48px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  font-size: 14.5px;
  color: var(--fg-soft);
}
.dot-sep { color: var(--fg-muted); }

/* ---------- Over Marjolein ---------- */
.over-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
}
.over-blob {
  position: absolute;
  inset: -8% -8% auto auto;
  width: 80%;
  z-index: 0;
}
.over-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: 0 24px 48px -24px rgba(42,38,34,0.25);
}
.over-photo-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.over-stat {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px -18px rgba(42,38,34,0.2);
  z-index: 2;
}
.over-stat-num {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}
.over-stat-lbl {
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.35;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}
.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}
.cred-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.signature-quote {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--fg);
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.quote-mark {
  font-family: var(--heading-font);
  font-size: 48px;
  line-height: 0;
  position: relative;
  top: 14px;
  margin-right: 6px;
}
.quote-attr {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-style: normal;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--body-font);
}

/* ---------- Quotes ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote-tag {
  align-self: flex-start;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid;
}
.quote-card blockquote {
  font-family: var(--heading-font);
  font-size: 21px;
  line-height: 1.4;
  color: var(--fg);
  flex: 1;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-soft);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.quote-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: 16px;
}

/* ---------- FAQ ---------- */
.faq-container { max-width: 820px; }
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.faq-item:hover { border-color: rgba(42,38,34,0.18); }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--heading-font);
  font-size: 19px;
  color: var(--fg);
  font-weight: 500;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  font-family: var(--body-font);
  line-height: 1;
  transition: transform 240ms ease;
}
.faq-open .faq-toggle { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease;
}
.faq-open .faq-answer { max-height: 240px; }
.faq-answer p {
  padding: 0 26px 26px;
  color: var(--fg-soft);
  line-height: 1.55;
  max-width: 60ch;
}

/* ---------- Contact ---------- */
.section-contact {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(232,217,196,0.4) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.contact-direct-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 200ms ease, border-color 200ms ease;
}
a.contact-direct-row:hover {
  transform: translateY(-2px);
  border-color: rgba(42,38,34,0.18);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-direct-row strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}
.contact-direct-row span {
  font-size: 13.5px;
  color: var(--fg-muted);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-title {
  font-size: 28px;
  margin-bottom: 4px;
}
.form-sub {
  color: var(--fg-soft);
  margin-bottom: 12px;
  font-size: 15px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label span {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-soft);
  letter-spacing: 0.04em;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 15.5px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 180ms ease, background 180ms ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.form-submit {
  align-self: flex-start;
  margin-top: 8px;
}
.form-fineprint {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.form-sent {
  text-align: center;
  padding: 24px 12px;
}
.form-sent-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-sent h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.form-sent p {
  color: var(--fg-soft);
}

/* ---------- Footer ---------- */
.footer {
  background: #2A2622;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 36px;
  font-size: 14.5px;
}
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: rgba(255,255,255,0.5); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-blurb {
  margin-top: 20px;
  max-width: 32ch;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-h {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer p { line-height: 1.7; }
.footer a:hover { color: #fff; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-motto {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  :root { --section-py: 80px; }
  .hero-grid,
  .two-col,
  .two-col-flip,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .col-narrow { position: static; }
  .pillar-grid,
  .price-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .price-card-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo-card { left: 0; }
  .hero { padding-top: 110px; }
  .hero-scroll-cue { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .hero-title { font-size: 44px; }
  .section-title { font-size: 32px; }
  .signal-list { grid-template-columns: 1fr; padding: 22px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline { padding-left: 48px; }
  .timeline-dot { left: -44px; width: 30px; height: 30px; font-size: 14px; }
  .contact-form { padding: 28px 22px; }
}
