/* ============================================================
   EBBE & ROOT — Shared Stylesheet
   ============================================================ */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Transat';
  src: url('fonts/transat_standard.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Transat';
  src: url('fonts/transat_light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy-900: #1E2440;
  --navy-800: #2C3659;
  --navy-700: #3D4A72;
  --navy-600: #4E5D8A;
  --navy-100: #E8EBF4;
  --navy-50:  #F4F5FA;
  --sand-600: #C4B49A;
  --sand-300: #E8DECE;
  --sand-100: #F5F0E8;
  --sand-50:  #FAF7F3;
  --orange-700: #D4693A;
  --orange-600: #E8865A;
  --orange-100: #FCEEE6;
  --gray-900: #1A1F2E;
  --gray-700: #4A5162;
  --gray-600: #6B7280;
  --gray-300: #D1D5DB;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Transat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.22,.68,0,1.1), transform 0.7s cubic-bezier(.22,.68,0,1.1); }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.18s; }
.rd3 { transition-delay: 0.28s; }
.rd4 { transition-delay: 0.38s; }
.rd5 { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
a { color: var(--navy-700); text-decoration: none; transition: color 150ms; }
a:hover { color: var(--orange-600); }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100%; left: 0; z-index: 9999;
  background: var(--navy-700); color: var(--white);
  padding: 10px 18px; font-size: 14px; font-weight: 600;
  border-radius: 0 0 8px 0; text-decoration: none;
  transition: top 150ms;
}
.skip-link:focus { top: 0; }

/* ── FOCUS STYLES (keyboard navigation) ── */
:focus-visible {
  outline: 2px solid var(--orange-600);
  outline-offset: 3px;
  border-radius: 4px;
}
.footer :focus-visible { outline-color: rgba(255,255,255,0.85); }
.hero :focus-visible { outline-color: rgba(255,255,255,0.85); }
.form-input:focus-visible { outline: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-300);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 68px;
  transition: box-shadow 250ms var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(61,74,114,0.10); }
.nav.nav-solid { box-shadow: 0 4px 20px rgba(61,74,114,0.10); }
.nav-logo img { height: 36px; display: block; }
.nav-links { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--gray-700); text-decoration: none; cursor: pointer;
  transition: color 150ms; position: relative; padding-bottom: 2px;
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--orange-600);
  transform: scaleX(0); transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav-link:hover { color: var(--navy-700); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--navy-700); }
.nav-cta {
  font-size: 13px; font-weight: 600;
  background: var(--navy-700); color: var(--white);
  border: none; border-radius: 8px; padding: 10px 18px; cursor: pointer;
  transition: background 150ms, box-shadow 150ms;
  white-space: nowrap; flex-shrink: 0; text-decoration: none;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--navy-800); box-shadow: 0 4px 14px rgba(61,74,114,0.25); color: var(--white); }

/* ── PAGE HEADER (subpages) ── */
.page-header {
  background: var(--navy-800); padding: 140px 60px 72px;
  position: relative; overflow: hidden;
}
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.page-header-bg1 { position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(196,180,154,0.06); pointer-events: none; }
.page-header-bg2 { position: absolute; bottom: -60px; left: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(232,134,90,0.07); pointer-events: none; }
.page-header-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sand-600); margin-bottom: 16px;
}
.page-header-headline {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; color: var(--white); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 20px; max-width: 760px;
}
.page-header-headline em { color: var(--sand-600); font-style: italic; }
.page-header-sub {
  font-size: 17px; color: rgba(255,255,255,0.80); line-height: 1.7;
  max-width: 580px;
}
.page-header-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: block; width: 100%; height: 48px; line-height: 0;
  pointer-events: none;
}

/* ── SECTION COMMONS ── */
.section { padding: 96px 60px; }
.section-alt { background: var(--sand-50); }
.section-dark { background: var(--navy-800); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy-700); margin-bottom: 12px;
}
.section-label-light { color: rgba(196,180,154,0.8); }
.section-headline {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; color: var(--navy-700); line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.section-headline-light { color: var(--white); }
.section-sub {
  font-size: 16px; color: var(--gray-600);
  line-height: 1.7; max-width: 560px; margin-bottom: 56px;
}
.section-sub-light { color: rgba(255,255,255,0.80); }
.wave-sep { display: block; width: 100%; height: 48px; line-height: 0; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--sand-300);
  border-radius: 14px; padding: 28px 26px;
  box-shadow: 0 2px 8px rgba(61,74,114,0.06);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(61,74,114,0.12); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy-100); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}
.service-icon-accent { background: var(--orange-100); }
.service-title {
  font-family: var(--font-display); font-size: 21px; font-weight: 500;
  color: var(--navy-700); margin-bottom: 10px; line-height: 1.2;
}
.service-body { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.service-tag {
  display: inline-block; margin-top: 14px;
  font-size: 11px; font-weight: 600;
  color: var(--navy-700); background: var(--navy-100);
  padding: 3px 10px; border-radius: 20px;
}

/* ── SMART HOME GRID ── */
.smarthome-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ── BERATUNG CARDS ── */
.beratung-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.beratung-card {
  background: var(--white); border: 1px solid var(--sand-300);
  border-radius: 16px; padding: 36px 32px;
  box-shadow: 0 2px 8px rgba(61,74,114,0.06);
}
.beratung-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--navy-700); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.beratung-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: var(--navy-700); margin-bottom: 14px; line-height: 1.2;
}
.beratung-body { font-size: 15px; color: var(--gray-600); line-height: 1.75; }
.beratung-detail {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--sand-300);
  display: flex; flex-direction: column; gap: 8px;
}
.beratung-point { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.beratung-point-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange-600); flex-shrink: 0; margin-top: 6px; }

/* ── TIMELINE ── */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; margin-top: 56px; }
.timeline::before {
  content: ''; position: absolute; top: 23px; left: 12.5%; right: 12.5%;
  height: 1px; background: rgba(196,180,154,0.2);
}
.timeline-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; }
.timeline-num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(196,180,154,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 300;
  color: rgba(196,180,154,0.8); background: var(--navy-800);
  position: relative; z-index: 1; margin-bottom: 24px; flex-shrink: 0;
  transition: border-color 300ms, color 300ms, transform 300ms;
}
.timeline-step:hover .timeline-num {
  border-color: #E8865A;
  color: #E8865A;
  transform: scale(1.15);
}
.timeline-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  color: var(--white); margin-bottom: 10px; line-height: 1.2;
}
.timeline-body { font-size: 14px; color: rgba(255,255,255,0.80); line-height: 1.7; }

/* ── TEASER CARDS (hub index) ── */
.teaser-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.teaser-card {
  background: var(--white); border: 1px solid var(--sand-300);
  border-radius: 16px; padding: 40px 36px;
  box-shadow: 0 2px 8px rgba(61,74,114,0.06);
  display: flex; flex-direction: column;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  text-decoration: none; color: inherit;
}
.teaser-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(61,74,114,0.13); color: inherit; }
.teaser-card.coming-soon { cursor: default; }
.teaser-card.coming-soon:hover { transform: none; box-shadow: 0 2px 8px rgba(61,74,114,0.06); }
.teaser-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; flex-shrink: 0;
}
.teaser-icon-navy { background: var(--navy-700); }
.teaser-icon-orange { background: var(--orange-600); }
.teaser-icon-sand { background: var(--sand-600); }
.teaser-icon-gray { background: var(--gray-300); }
.teaser-badge {
  display: inline-flex; align-items: center; margin-bottom: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1;
  color: var(--navy-700); background: var(--sand-100);
  padding: 5px 12px 3px; border-radius: 20px; align-self: flex-start;
}
.teaser-badge-soon { color: var(--gray-700); background: var(--gray-300); }
.teaser-title {
  font-family: var(--font-display); font-size: 30px; font-weight: 400;
  color: var(--navy-700); margin-bottom: 12px; line-height: 1.2;
}
.teaser-body { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.teaser-points { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.teaser-point { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.teaser-point-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange-600); flex-shrink: 0; margin-top: 6px; }
.teaser-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--navy-700);
  transition: gap 150ms var(--ease), color 150ms;
}
.teaser-card:hover .teaser-link { gap: 10px; color: var(--orange-600); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  background: var(--navy-100); border-radius: 16px;
  padding: 40px; display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--sand-300);
}
.about-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--sand-300); }
.about-stat-cell { padding: 20px; background: var(--white); text-align: center; }
.about-stat-cell:first-child { border-right: 1px solid var(--sand-300); }
.about-stat-num { font-family: var(--font-display); font-size: 38px; font-weight: 300; color: var(--navy-700); line-height: 1; }
.about-stat-num span { color: var(--orange-600); }
.about-stat-label { font-size: 13px; color: var(--gray-600); margin-top: 4px; }
.about-text p { font-size: 16px; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }

/* ── CTA BOX & CONTACT ── */
.cta-box {
  background: var(--sand-100); border: 1px solid var(--sand-300);
  border-radius: 20px; padding: 56px 48px; text-align: center;
}
.cta-headline {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px);
  font-weight: 300; color: var(--navy-700); margin-bottom: 14px; line-height: 1.2;
}
.cta-sub { font-size: 16px; color: var(--gray-700); margin-bottom: 36px; line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 480px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--navy-700); text-align: left; }
.form-input {
  font-size: 14px; color: var(--gray-900);
  background: var(--white); border: 1.5px solid var(--gray-300);
  border-radius: 8px; padding: 11px 14px; outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  font-family: var(--font-body);
}
.form-input:focus { border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(61,74,114,0.10); }
.form-input::placeholder { color: #B3B8C2; }

/* ── SUBPAGE CTA ── */
.subcta-box {
  background: var(--navy-800); border-radius: 20px; padding: 56px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.subcta-bg { position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(196,180,154,0.07); pointer-events: none; }
.subcta-headline {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 300; color: var(--white); margin-bottom: 14px; line-height: 1.2;
  position: relative;
}
.subcta-sub { font-size: 16px; color: rgba(255,255,255,0.80); margin-bottom: 32px; line-height: 1.6; position: relative; }

/* ── BUTTONS ── */
.btn-primary {
  font-size: 15px; font-weight: 600; font-family: var(--font-body);
  background: var(--navy-700); color: var(--white);
  border: none; border-radius: 10px; padding: 14px 32px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 150ms, box-shadow 150ms; text-decoration: none;
}
.btn-primary:hover { background: var(--navy-800); box-shadow: 0 6px 20px rgba(61,74,114,0.22); color: var(--white); }
.btn-accent {
  font-size: 15px; font-weight: 600; font-family: var(--font-body);
  background: var(--orange-600); color: var(--navy-900);
  border: none; border-radius: 10px; padding: 14px 32px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 150ms, box-shadow 150ms; text-decoration: none;
}
.btn-accent:hover { background: var(--orange-700); box-shadow: 0 6px 20px rgba(232,134,90,0.35); color: var(--navy-900); }
.btn-ghost {
  font-size: 15px; font-weight: 500; font-family: var(--font-body);
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 10px;
  padding: 14px 32px; cursor: pointer;
  transition: border-color 150ms, color 150ms; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-cta {
  font-size: 15px; font-weight: 600; font-family: var(--font-body);
  background: var(--navy-700); color: var(--white);
  border: none; border-radius: 10px; padding: 14px 32px; cursor: pointer;
  width: 100%; transition: background 150ms, box-shadow 150ms;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-cta:hover { background: var(--navy-800); box-shadow: 0 6px 20px rgba(61,74,114,0.22); }

/* ── FOOTER ── */
.footer {
  background: var(--navy-900); padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo img { height: 28px; filter: brightness(0) invert(1); opacity: 0.6; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.60); }
.footer-links { display: flex; gap: 20px; }
.footer-link { font-size: 12px; color: rgba(255,255,255,0.60); text-decoration: none; transition: color 150ms; }
.footer-link:hover { color: rgba(255,255,255,0.75); }

/* ── ARROW ICON HELPER ── */
.arrow-icon { display: inline-block; }

/* ── HAMBURGER & MOBILE NAV ── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; width: 36px; height: 36px; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-700); border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms;
  pointer-events: none;
}
.nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--sand-300);
  flex-direction: column; padding: 8px 24px 24px;
  box-shadow: 0 8px 24px rgba(61,74,114,0.12);
}
.nav.nav-open .nav-mobile { display: flex; }
.nav-mobile-link {
  font-size: 16px; font-weight: 500; color: var(--gray-700);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--sand-100);
  transition: color 150ms;
}
.nav-mobile-link:hover, .nav-mobile-link.active { color: var(--navy-700); }
.nav-mobile-cta {
  margin-top: 16px;
  font-size: 15px; font-weight: 600; font-family: var(--font-body);
  background: var(--navy-700); color: var(--white) !important;
  border-radius: 10px; padding: 14px 24px; cursor: pointer;
  text-decoration: none; text-align: center;
  transition: background 150ms; display: block;
}
.nav-mobile-cta:hover { background: var(--navy-800); }

/* ── RESPONSIVE ≤ 768 px ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .section { padding: 60px 24px; }
  .section-sub { margin-bottom: 36px; }
  .page-header { padding: 100px 24px 56px; }
  .page-header-sub { font-size: 15px; }
  .page-header-wave { height: 32px; }
  .wave-sep { height: 32px; }

  .services-grid { grid-template-columns: 1fr; }
  .smarthome-grid { grid-template-columns: 1fr; }
  .beratung-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .timeline { grid-template-columns: 1fr; gap: 0; margin-top: 40px; }
  .timeline::before { display: none; }
  .timeline-step {
    display: grid; grid-template-columns: 48px 1fr; column-gap: 20px;
    text-align: left; padding: 24px 0;
    border-bottom: 1px solid rgba(196,180,154,0.15);
  }
  .timeline-step:last-child { border-bottom: none; }
  .timeline-num { grid-column: 1; grid-row: 1 / 3; align-self: start; margin-bottom: 0; }
  .timeline-title { grid-column: 2; grid-row: 1; }
  .timeline-body { grid-column: 2; grid-row: 2; margin-top: 8px; }

  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 36px 24px; }
  .subcta-box { padding: 40px 24px; }
  .teaser-card { padding: 28px 24px; }

  .footer { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; }
  .footer-links { justify-content: center; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-accent, .hero-actions .btn-ghost { justify-content: center; }
}
