/* ============================================================
   Preis & Partner — Design System v2
   Aesthetic: Editorial Finance · Ember Orange · Cream · Gold
   Fonts: Plus Jakarta Sans (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Ember Orange Palette */
  --forest-950: #2E1005;
  --forest-900: #E7530C;
  --forest-800: #CC490A;
  --forest-700: #8C3209;
  --forest-600: #B03D0A;
  --forest-500: #E7530C;
  --forest-400: #F5B28A;
  --forest-300: #FFE5D4;
  --forest-200: #FDDBC5;
  --forest-100: #FEF0E7;

  /* Cream Palette */
  --cream-50:  #FDFAF5;
  --cream-100: #F8F3E8;
  --cream-200: #F0E9D6;
  --cream-300: #E4D8BC;
  --cream-400: #D2C098;

  /* Gold */
  --gold:       #C4A24E;
  --gold-light: #D4B96A;
  --gold-pale:  #ECD9A8;

  /* Neutrals — warm-toned */
  --charcoal:   #1A1210;
  --ink:        #2D1E18;
  --text:       #3D2A22;
  --muted:      #7A6560;
  --subtle:     #A89590;
  --border:     #E4D8D2;
  --white:      #FFFFFF;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  1.875rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3rem;
  --fs-5xl:  3.75rem;
  --fs-6xl:  4.5rem;
  --fs-7xl:  5.5rem;

  /* Spacing */
  --s1: 0.25rem; --s2: 0.5rem; --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem; --s8: 2rem; --s10: 2.5rem;
  --s12: 3rem; --s16: 4rem; --s20: 5rem; --s24: 6rem;
  --s32: 8rem; --s40: 10rem;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 780px;

  /* Radius */
  --r-sm: 0.375rem;
  --r-md: 0.625rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-2xl: 2rem;
  --r-pill: 9999px;

  /* Shadows */
  --sh-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md:  0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --sh-lg:  0 8px 24px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --sh-xl:  0 20px 40px rgba(0,0,0,0.09), 0 8px 16px rgba(0,0,0,0.05);
  --sh-green: 0 8px 32px rgba(231,83,12,0.35);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast: 150ms;
  --t-base: 260ms;
  --t-slow: 400ms;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
}
@media (min-width: 768px) { .container { padding: 0 var(--s8); } }
@media (min-width: 1280px) { .container { padding: 0 var(--s10); } }

/* ── Section Basics ── */
.section { padding: var(--s20) 0; }
.section--sm { padding: var(--s12) 0; }
.section--lg { padding: var(--s32) 0; }
.section--cream { background: var(--cream-100); }
.section--forest { background: var(--forest-900); }
.section--charcoal { background: var(--charcoal); }
.section--white { background: var(--white); }

/* ── Typography Utilities ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-700);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--forest-600);
  flex-shrink: 0;
}
.eyebrow--light { color: var(--forest-300); }
.eyebrow--light::before { background: var(--forest-400); }
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { background: var(--gold); }

.display-headline {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}
.display-headline em {
  font-style: italic;
  color: var(--forest-700);
}
.display-headline--light { color: var(--white); }
.display-headline--light em { color: var(--forest-300); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}
.section-headline--light { color: var(--white); }

.body-lg {
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-pill);
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--forest-900);
  color: var(--white);
  border-color: var(--forest-900);
}
.btn--primary:hover {
  background: var(--forest-800);
  border-color: var(--forest-800);
  transform: translateY(-1px);
  box-shadow: var(--sh-green);
}
.btn--secondary {
  background: transparent;
  color: var(--forest-900);
  border-color: var(--forest-900);
}
.btn--secondary:hover {
  background: var(--forest-900);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--forest-700);
  color: var(--forest-900);
}
.btn--light {
  background: var(--white);
  color: var(--forest-900);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--cream-100);
  transform: translateY(-1px);
  box-shadow: var(--sh-lg);
}
.btn--light-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--light-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn--lg { padding: 1rem 2rem; font-size: var(--fs-base); }
.btn--sm { padding: 0.5rem 1.125rem; font-size: var(--fs-xs); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}
.reveal-fade.visible { opacity: 1; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--s4) 0;
  transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), padding var(--t-base) var(--ease);
}
.header--scrolled {
  background: rgba(253,250,245,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 2px 8px rgba(0,0,0,0.04);
  padding: var(--s3) 0;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.header__logo {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.header__logo span { color: var(--forest-700); }
.header__nav {
  display: none;
  align-items: center;
  gap: var(--s6);
  flex: 1;
}
.header__nav a {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--muted);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--forest-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.header__nav a:hover,
.header__nav a.active { color: var(--charcoal); }
.header__nav a:hover::after,
.header__nav a.active::after { transform: scaleX(1); }
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-left: auto;
}
.lang-toggle {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  transition: all var(--t-fast) var(--ease);
}
.lang-toggle:hover {
  color: var(--forest-900);
  border-color: var(--forest-900);
}
.header__cta { display: none; }
.menu-toggle {
  width: 36px; height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 768px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,16,5,0.55);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

@media (max-width: 767px) {
  .header__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s1);
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    padding: var(--s20) var(--s8) var(--s8);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    box-shadow: var(--sh-xl);
  }
  .header__nav.open { transform: translateX(0); }
  .header__nav a {
    font-size: var(--fs-md);
    padding: var(--s3) 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  display: flex;
  align-items: center;
  padding-top: calc(90px + var(--s6));
  padding-bottom: var(--s10);
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.hero__bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  background: var(--cream-100);
  pointer-events: none;
}
@media (max-width: 899px) {
  .hero__bg-shape { display: none; }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow { margin-bottom: var(--s6); }
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: var(--s6);
}
.hero__headline em {
  font-style: italic;
  color: var(--forest-700);
}
.hero__sub {
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: var(--s8);
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s6);
}
.hero__reviews {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
  cursor: pointer;
}
.hero__reviews:hover .hero__reviews-text {
  color: var(--text);
}
.hero__reviews-glogo {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero__reviews-stars {
  font-size: 0.8rem;
  color: #F5A623;
  letter-spacing: 0.08em;
  line-height: 1;
}
.hero__reviews-text {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--muted);
  font-weight: 400;
  transition: color var(--t-fast) var(--ease);
}
.hero__reviews-score {
  font-weight: 600;
  color: var(--text);
}
.hero__reviews-sep {
  color: var(--subtle);
}
.hero__left {
  position: relative;
  z-index: 2;
}
.hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image-wrap {
  position: relative;
  width: 100%;
}
/* Left fade: blends the image's white bg into the beige hero background */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background: linear-gradient(to right, var(--cream-100), transparent);
  z-index: 2;
  pointer-events: none;
}
/* Bottom fade: desk fades softly into background */
.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 14%;
  background: linear-gradient(to bottom, transparent, var(--cream-50));
  z-index: 2;
  pointer-events: none;
}
.hero__image {
  display: block;
  width: 100%;
  height: auto;
}

/* Floating stat cards */
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s6);
  box-shadow: var(--sh-md);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.stat-card--forest {
  background: var(--forest-900);
  border-color: var(--forest-900);
  color: var(--white);
  grid-column: span 2;
}
.stat-card--tall { grid-row: span 2; }
.stat-card__icon {
  width: 36px; height: 36px;
  background: var(--forest-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-700);
  margin-bottom: var(--s4);
}
.stat-card--forest .stat-card__icon {
  background: rgba(255,255,255,0.12);
  color: var(--forest-300);
}
.stat-card__num {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 600;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: var(--s1);
}
.stat-card--forest .stat-card__num { color: var(--white); }
.stat-card__label {
  font-size: var(--fs-sm);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}
.stat-card--forest .stat-card__label { color: var(--forest-300); }
.stat-card__sub {
  font-size: var(--fs-xs);
  color: var(--subtle);
  margin-top: var(--s2);
}
.stat-card--forest .stat-card__sub { color: var(--forest-400); }

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--s12);
    align-items: center;
  }
}
@media (max-width: 899px) {
  .hero__right {
    margin-top: var(--s6);
  }
}

/* ============================================================
   TRUST STRIP — seamless infinite marquee
   ============================================================ */

/*
  How the loop works:
  - The track contains 4 identical .trust-strip__set groups
  - We animate translateX from 0 → -25% (= exactly 1 set width)
  - At -25% the visual is identical to 0, so it resets invisibly
*/
@keyframes trust-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

.trust-strip {
  background: var(--white);
  padding: var(--s5) 0;
  overflow: hidden;
  position: relative;
}

/* Soft edge fades */
.trust-strip__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.trust-strip__fade--left  { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.trust-strip__fade--right { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

/* Outer track — animates the whole row */
.trust-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: trust-marquee 40s linear infinite;
}
.trust-strip__track:hover { animation-play-state: paused; }

/* One logical set of logos — 4 of these sit side by side in the track */
.trust-strip__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/*
  Each logo item.
  Horizontal padding creates the spacing *between* logos.
  72px each side = 144px gap between adjacent logos — very generous, editorial.
  A thin 1px right border acts as the divider; last item in set has none,
  but because 4 sets tile seamlessly it still works.
*/
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 72px;
  flex-shrink: 0;
  position: relative;
}

/* Hairline divider between items */
.trust-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background: var(--border);
}

/* All logos: grayscale + low opacity for visual unity */
.trust-item__logo {
  display: block;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.42;
  transition: opacity 0.2s ease;
}

/* JPEG has white background — multiply makes it transparent on the white strip */
.trust-item__logo--jpg {
  mix-blend-mode: multiply;
  opacity: 0.55;
}

/* ============================================================
   WHAT WE DO (Editorial center section)
   ============================================================ */
.editorial-section {
  padding: var(--s24) 0;
  background: var(--cream-50);
}
.editorial-section__inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto var(--s16);
}
.editorial-section__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: var(--s6) 0 var(--s8);
}
.editorial-section__headline em {
  font-style: italic;
  color: var(--forest-700);
  position: relative;
}
.editorial-section__text {
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: 1.75;
}
.editorial-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s4);
}
.highlight-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.highlight-item__icon {
  width: 44px; height: 44px;
  background: var(--forest-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-700);
  margin-bottom: var(--s5);
}
.highlight-item__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--s3);
}
.highlight-item__text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   FOREST BANNER (Built for trust)
   ============================================================ */
.forest-banner {
  background: var(--forest-900);
  padding: var(--s20) 0;
  position: relative;
  overflow: hidden;
}
.forest-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 40%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(231,83,12,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.forest-banner__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}
.forest-banner__left {}
.forest-banner__eyebrow { margin-bottom: var(--s5); }
.forest-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--s6);
}
.forest-banner__headline em { font-style: italic; color: var(--forest-300); }
.forest-banner__text {
  font-size: var(--fs-md);
  color: var(--forest-300);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: var(--s8);
}
.forest-banner__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.forest-banner__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  width: 100%;
}
.forest-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: var(--s6);
}
.forest-card--accent {
  background: var(--forest-800);
  border-color: var(--forest-700);
}
.forest-card__num {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--s2);
}
.forest-card__label {
  font-size: var(--fs-sm);
  color: var(--forest-400);
  line-height: 1.4;
}
.forest-card__icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-300);
  margin-bottom: var(--s4);
}
.forest-card__title {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--s2);
}
.forest-card__text {
  font-size: var(--fs-xs);
  color: var(--forest-400);
  line-height: 1.55;
}

@media (min-width: 900px) {
  .forest-banner__inner { grid-template-columns: 1fr 1fr; gap: var(--s20); }
}

/* ============================================================
   WHY US — 3-Column with Featured Center
   ============================================================ */
.why-us-section {
  padding: var(--s24) 0;
  background: var(--white);
}
.why-us-header {
  text-align: center;
  margin-bottom: var(--s16);
}
.why-us-header .eyebrow { justify-content: center; }
.why-us-header .eyebrow::before { display: none; }
.why-us-header .eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--forest-600);
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
.why-card {
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.why-card--featured {
  background: var(--forest-900);
  border-color: var(--forest-900);
  color: var(--white);
}
.why-card--featured:hover { box-shadow: var(--sh-green); }
.why-card__icon {
  width: 44px; height: 44px;
  background: var(--forest-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-700);
  margin-bottom: var(--s5);
}
.why-card--featured .why-card__icon {
  background: rgba(255,255,255,0.12);
  color: var(--forest-300);
}
.why-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--s3);
}
.why-card--featured .why-card__title { color: var(--white); }
.why-card__text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
}
.why-card--featured .why-card__text { color: var(--forest-300); }

@media (min-width: 640px) {
  .why-us-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================================
   WHO WE HELP — editorial numbered list
   ============================================================ */
.who-section {
  padding: var(--s20) 0;
  background: var(--cream-100);
}
.who-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
}
.who-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s5);
}
.who-intro__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl));
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
}
.who-intro__sub {
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Numbered list */
.who-list {
  display: flex;
  flex-direction: column;
}
.who-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto auto;
  align-items: center;
  gap: var(--s4);
  padding: var(--s5) 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding-left var(--t-fast) var(--ease);
}
.who-row:first-child { border-top: 1px solid var(--border); }
.who-row:hover { padding-left: var(--s3); }
.who-row:focus-visible { outline: 2px solid var(--forest-700); outline-offset: 2px; }
.who-row__num {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--forest-700);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.who-row__title {
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}
.who-row__tag {
  font-size: var(--fs-sm);
  color: var(--forest-700);
  text-align: right;
}
.who-row__arrow {
  font-size: var(--fs-lg);
  color: var(--forest-700);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  line-height: 1;
}
.who-row:hover .who-row__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Who Flyout ── */
.who-flyout {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  visibility: hidden;
}
.who-flyout.open {
  pointer-events: auto;
  visibility: visible;
}
.who-flyout__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 16, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  cursor: pointer;
}
.who-flyout.open .who-flyout__backdrop {
  opacity: 1;
}
.who-flyout__panel {
  position: relative;
  width: min(480px, 92vw);
  height: 100%;
  background: var(--white);
  padding: var(--s12) var(--s10);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.who-flyout.open .who-flyout__panel {
  transform: translateX(0);
}
.who-flyout__close {
  position: absolute;
  top: var(--s6);
  right: var(--s6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--cream-100);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) var(--ease);
  flex-shrink: 0;
}
.who-flyout__close:hover { background: var(--border); color: var(--charcoal); }
.who-flyout__num {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--forest-700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.who-flyout__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
}
.who-flyout__tag {
  font-size: var(--fs-sm);
  color: var(--forest-700);
  font-weight: 500;
  margin: 0;
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--border);
}
.who-flyout__intro {
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.who-flyout__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  flex: 1;
}
.who-flyout__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: var(--fs-sm);
  color: var(--charcoal);
  line-height: 1.5;
}
.who-flyout__list li::before {
  content: '→';
  color: var(--forest-700);
  flex-shrink: 0;
  font-size: var(--fs-xs);
  margin-top: 0.2em;
}

@media (min-width: 960px) {
  .who-layout {
    grid-template-columns: 340px 1fr;
    gap: var(--s20);
    align-items: start;
  }
  .who-intro { position: sticky; top: calc(80px + var(--s8)); }
}

/* ============================================================
   PROCESS SECTION — centered 3-step layout
   ============================================================ */
.process-section {
  padding: var(--s20) 0;
  background: var(--white);
}

/* Header: centered */
.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--s16);
}
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
  font-weight: 500;
  color: var(--charcoal);
  margin: var(--s4) 0 var(--s5);
  line-height: 1.2;
}
.process-sub {
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: 1.6;
}
.process-sub strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* 3-column step grid */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Each step: number big on top, then title, then text */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

/* Large orange step number */
.process-step__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forest-900);
  line-height: 1;
  margin-bottom: var(--s5);
  letter-spacing: -0.02em;
}

/* Horizontal connector line between steps (desktop only) */
.process-step__connector { display: none; }

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 var(--s3);
}
.process-step__text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* CTA block: centered below steps */
.process-cta {
  text-align: center;
  margin-top: var(--s16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}
.process-cta__hint {
  font-size: var(--fs-xs);
  color: var(--subtle);
  letter-spacing: 0.04em;
  margin: 0;
}

@media (min-width: 760px) {
  .process-steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
  }
  .process-step {
    padding: 0 var(--s8);
  }
  /* Vertical separator between columns */
  .process-step:not(:last-child) {
    border-right: 1px solid var(--border);
  }
  .process-step:first-child { padding-left: 0; }
  .process-step:last-child  { padding-right: 0; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: var(--s24) 0;
  background: var(--cream-100);
}
.services-header {
  margin-bottom: var(--s16);
}
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s10);
}
.services-tab {
  padding: 0.5rem 1.125rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.services-tab:hover { color: var(--forest-900); border-color: var(--forest-700); }
.services-tab.active {
  background: var(--forest-900);
  color: var(--white);
  border-color: var(--forest-900);
}
.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
.service-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
.service-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.service-card-v2__header {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
}
.service-card-v2__icon {
  width: 44px; height: 44px;
  background: var(--forest-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-700);
  flex-shrink: 0;
}
.service-card-v2__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}
.service-card-v2__intro {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
}
.service-card-v2__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.service-card-v2__list li {
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.5;
  padding-left: var(--s5);
  position: relative;
}
.service-card-v2__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px; height: 6px;
  background: var(--forest-500);
  border-radius: 50%;
}
.service-card-v2__meta {
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
  display: grid;
  gap: var(--s3);
}
.service-card-v2__meta-row {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
}
.service-card-v2__meta-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--subtle);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 100px;
  flex-shrink: 0;
}
.service-card-v2__meta-text {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .services-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .services-cards { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Services: Two-pillar accordion layout ── */
.svc-panel {
  margin-top: var(--s16);
  padding-top: var(--s10);
  border-top: 1px solid var(--border);
}
.svc-panel:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: var(--s10);
}
.svc-panel__header {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s8);
}
.svc-panel__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  background: var(--forest-100);
  border: 1px solid var(--forest-200);
  border-radius: var(--r-pill);
  padding: var(--s2) var(--s5);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--forest-800);
  flex-shrink: 0;
}
.svc-panel__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 500;
  color: var(--charcoal);
}
.svc-panel__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
  align-items: start;
}
@media (min-width: 800px) {
  .svc-panel__inner { grid-template-columns: 300px 1fr; }
}
@media (min-width: 1060px) {
  .svc-panel__inner { grid-template-columns: 340px 1fr; }
}

/* Contact card */
.svc-contact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s4);
}
@media (min-width: 800px) {
  .svc-contact { position: sticky; top: calc(80px + var(--s6)); }
}
.svc-contact__top {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.svc-contact__avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--forest-100);
}
.svc-contact__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.svc-contact__photo--juri {
  object-position: center 8%;
}
.svc-contact__identity {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.svc-contact__name {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}
.svc-contact__role {
  font-size: var(--fs-sm);
  color: var(--muted);
}
.svc-contact__bio {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
}
.svc-contact__more {
  background: none;
  border: none;
  padding: 0;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--forest-800);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.svc-contact__more:hover { color: var(--forest-700); }
.svc-contact__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Person modal */
.person-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: var(--s6);
}
.person-modal.open { display: flex; }
.person-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,18,16,0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.person-modal__box {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s10) var(--s8);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--sh-xl);
  z-index: 1;
  max-height: 90vh;
  overflow-y: auto;
}
.person-modal__close {
  position: absolute;
  top: var(--s4);
  right: var(--s5);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-100);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast) var(--ease);
}
.person-modal__close:hover { background: var(--border); }
.person-modal__header {
  display: flex;
  align-items: center;
  gap: var(--s5);
  margin-bottom: var(--s6);
}
.person-modal__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.person-modal__name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--charcoal);
}
.person-modal__role {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-top: var(--s1);
}
.person-modal__body {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: var(--s5);
}

/* Accordion */
.svc-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.svc-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease);
}
.svc-item.active {
  border-color: var(--forest-900);
}
.svc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.svc-trigger:hover { background: var(--cream-50); }
.svc-item.active .svc-trigger { background: var(--forest-100); }
.svc-trigger__title {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}
.svc-trigger__icon {
  width: 28px; height: 28px;
  background: var(--forest-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--forest-700);
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.svc-item.active .svc-trigger__icon {
  transform: rotate(45deg);
  background: var(--forest-900);
  color: var(--white);
}
.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.svc-item.active .svc-body { max-height: 600px; }
.svc-body__list {
  margin: 0 var(--s6);
  padding: var(--s4) 0 var(--s5);
  border-top: 1px solid var(--border);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.svc-body__list li {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
  padding-left: var(--s5);
  position: relative;
}
.svc-body__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px; height: 5px;
  background: var(--forest-900);
  border-radius: 50%;
}

/* ============================================================
   TEAM — orange, centered
   ============================================================ */
.team-section {
  padding: var(--s20) 0;
  background: var(--forest-900);
  color: var(--white);
}

/* Centered header */
.team-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--s16);
}
.team-header .eyebrow--light {
  justify-content: center;
}
.team-headline {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
  font-weight: 500;
  color: var(--white);
  margin: var(--s4) 0 var(--s6);
  line-height: 1.2;
}
.team-intro-text {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin: 0;
}

/* Team values — 3-column, separated by hairlines */
.team-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--s12);
  max-width: 860px;
  margin: 0 auto;
}
.team-value {
  text-align: center;
}
.team-value__label {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--s3);
}
.team-value__text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

@media (min-width: 760px) {
  .team-values {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
  }
  .team-value {
    padding: 0 var(--s8);
  }
  .team-value:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .team-value:first-child { padding-left: 0; }
  .team-value:last-child  { padding-right: 0; }
}

/* ============================================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--s24) 0;
  background: var(--cream-100);
}
.testimonials-header {
  text-align: center;
  margin-bottom: var(--s16);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.testimonial__stars {
  color: var(--gold);
  font-size: var(--fs-lg);
  letter-spacing: 2px;
  margin-bottom: var(--s5);
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: var(--s6);
}
.testimonial__footer {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.testimonial__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.testimonial__author {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
}
.testimonial__company {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: var(--s1);
}
.testimonial__company a {
  color: var(--forest-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.testimonial__company a:hover {
  color: var(--forest-600);
}

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

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: var(--s24) 0;
  background: var(--white);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s16);
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-50);
  transition: border-color var(--t-fast) var(--ease);
}
.faq-item.active { border-color: var(--forest-300); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}
.faq-question:hover { color: var(--forest-800); }
.faq-question__icon {
  width: 28px; height: 28px;
  background: var(--forest-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--forest-700);
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease), background var(--t-fast) var(--ease);
}
.faq-item.active .faq-question__icon {
  transform: rotate(45deg);
  background: var(--forest-900);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer__inner {
  padding: 0 var(--s6) var(--s5);
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: var(--s4);
  margin: 0 var(--s6);
}

@media (min-width: 900px) {
  .faq-inner { grid-template-columns: 1fr 1.6fr; }
  .faq-answer__inner { margin: 0 var(--s6); }
}

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--forest-900);
  padding: var(--s24) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(231,83,12,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-5xl));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--s6);
}
.cta-banner__text {
  font-size: var(--fs-md);
  color: var(--forest-300);
  line-height: 1.7;
  margin-bottom: var(--s8);
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--s6);
}
.cta-banner__email {
  font-size: var(--fs-sm);
  color: var(--forest-400);
}
.cta-banner__email a {
  color: var(--forest-300);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-banner__email a:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--s16) 0 var(--s8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  margin-bottom: var(--s12);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: var(--s2);
}
.footer__brand span { color: var(--forest-400); }
.footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--s4);
}
.footer__address {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.footer__col-title {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast) var(--ease);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
}
.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.3);
}
.footer__social {
  display: flex;
  gap: var(--s3);
}
.footer__social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--t-fast) var(--ease);
}
.footer__social a:hover {
  background: var(--forest-800);
  color: var(--white);
}

@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(90px + var(--s16)) 0 var(--s16);
  background: var(--cream-100);
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow { margin-bottom: var(--s5); }
.page-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: var(--s5);
  max-width: 700px;
}
.page-hero__sub {
  font-size: var(--fs-md);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  margin-bottom: var(--s16);
}
.about-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
}
.about-block__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--s4);
}
.about-block__text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .about-blocks { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  margin-bottom: var(--s16);
}
.contact-steps { display: flex; flex-direction: column; gap: var(--s4); margin-bottom: var(--s8); }
.contact-step {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.contact-step__num {
  width: 36px; height: 36px;
  background: var(--forest-900);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 600;
  flex-shrink: 0;
}
.contact-step__text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
  padding-top: 0.35rem;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8);
}
.contact-form-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--s6);
}
.contact-form { display: flex; flex-direction: column; gap: var(--s4); }
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--charcoal);
  background: var(--cream-50);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  transition: border-color var(--t-fast) var(--ease);
  outline: none;
}
.contact-form__input:focus,
.contact-form__textarea:focus { border-color: var(--forest-600); background: var(--white); }
.contact-form__textarea { resize: vertical; min-height: 120px; }
.contact-form__success {
  font-size: var(--fs-sm);
  color: var(--forest-700);
  background: var(--forest-100);
  border-radius: var(--r-md);
  padding: var(--s3) var(--s4);
  display: none;
}
.contact-form__success.visible { display: block; }
.contact-info-card {
  background: var(--forest-900);
  border-radius: var(--r-xl);
  padding: var(--s8);
  color: var(--white);
}
.contact-info-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--s6);
}
.contact-info-item {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  margin-bottom: var(--s5);
}
.contact-info-item__icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-300);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item__text {
  font-size: var(--fs-sm);
  color: var(--forest-300);
  line-height: 1.6;
}
.contact-info-item__text a { color: var(--white); }
.contact-info-item__text a:hover { text-decoration: underline; }

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  padding: var(--s16) var(--s6);
  max-width: var(--max-w-narrow);
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--charcoal);
  margin: var(--s8) 0 var(--s3);
}
.legal-content p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--s3);
}

/* ============================================================
   RESPONSIVE — Shared
   ============================================================ */
@media (min-width: 768px) {
  .section { padding: var(--s24) 0; }
}

/* ============================================================
   PAGE BASE
   ============================================================ */
.page { padding-top: 0; }
#app { padding-top: 0; }
