/* =============================================================
   Fidesa Finanz — Editorial Web Platform
   ============================================================= */

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

html, body {
  background: var(--ff-bg);
  font-family: var(--ff-sans);
  color: var(--fg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

img { max-width: 100%; display: block; }

/* ============================================================
   HEADER
   ============================================================ */
.ff-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245, 247, 250, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.ff-header-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 16px 40px;
  display: flex; align-items: center; gap: 36px;
}
.ff-logo { display: flex; align-items: center; height: 42px; cursor: pointer; }
.ff-logo img { height: 100%; width: auto; }
.ff-nav { display: flex; gap: 30px; margin-left: auto; align-items: center; }
.ff-nav-item {
  font-size: 13.5px; font-weight: 600;
  color: var(--ff-ink-700);
  padding: 6px 0; position: relative;
  transition: color 0.15s ease;
  letter-spacing: 0.005em;
  cursor: pointer;
}
.ff-nav-item:hover { color: var(--ff-navy-700); }
.ff-nav-item.active { color: var(--ff-navy-800); }
.ff-nav-item.active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--ff-gold-500);
}
.ff-cta {
  background: var(--ff-navy-800); color: #fff;
  border-radius: 6px; font-weight: 700; font-size: 13px;
  padding: 12px 22px; letter-spacing: 0.01em;
  transition: background 0.15s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.ff-cta:hover { background: var(--ff-navy-700); }
.ff-cta-arrow { font-size: 16px; line-height: 1; }

/* ============================================================
   HERO — Editorial split with hanseatic motif
   ============================================================ */
.ff-hero {
  background: var(--ff-bg);
  position: relative;
  overflow: hidden;
}
.ff-hero-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 56px 40px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  position: relative;
}

.ff-hero-meta {
  font-family: var(--ff-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ff-ink-400);
  display: flex; gap: 22px; align-items: center;
  margin-bottom: 32px;
}
.ff-hero-meta::before {
  content: ''; width: 28px; height: 1px;
  background: var(--ff-gold-500);
}
.ff-hero-meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%; background: var(--ff-navy-800);
  display: inline-block;
}

/* Generic hero title (non-parallax variants) — boost contrast on light bg */
.ff-hero-title {
  font-size: clamp(56px, 7.2vw, 110px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.005em;
  word-spacing: 0.02em;
  color: var(--ff-navy-900);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}
.ff-hero-title-line {
  display: block;
  position: relative;
}
.ff-hero-title em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ff-gold-600);
  letter-spacing: -0.01em;
  font-size: 0.9em;
}
.ff-hero-amp {
  display: inline-block;
  width: 56px; height: 1px;
  background: var(--ff-navy-800);
  vertical-align: middle;
  margin: 0 18px 0 8px;
  position: relative; top: -0.18em;
}

.ff-hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ff-ink-700);
  max-width: 520px;
  margin-top: 36px;
  text-wrap: pretty;
}

.ff-hero-actions {
  display: flex; gap: 14px;
  margin-top: 36px;
  align-items: center;
}

.ff-hero-actions .ff-link-arrow {
  font-size: 14px;
  color: var(--ff-navy-700);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.02em;
  word-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  border-bottom: 0;
  padding-bottom: 0;
}
.ff-hero-actions .ff-link-arrow > span[aria-hidden] {
  text-decoration: none;
  display: inline-block;
}

/* ----- Hero layout: PARALLAX (city background, parallax effect) ----- */
.ff-hero-parallax {
  position: relative;
  height: clamp(640px, 92vh, 880px);
  overflow: hidden;
  background: var(--ff-navy-900);
  isolation: isolate;
}
.ff-hero-parallax-bg {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
  will-change: transform;
}
.ff-hero-parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.ff-hero-parallax-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 32, 64, 0.70) 0%, rgba(8, 32, 64, 0.45) 35%, rgba(8, 32, 64, 0.40) 60%, rgba(8, 32, 64, 0.92) 100%),
    linear-gradient(95deg, rgba(8, 32, 64, 0.75) 0%, rgba(8, 32, 64, 0.30) 55%, rgba(8, 32, 64, 0.10) 100%);
  pointer-events: none;
}
.ff-hero-parallax-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.ff-hero-parallax-inner {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 40px 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform;
}
.ff-hero-parallax-inner::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: clamp(640px, 70%, 1100px);
  height: 100%;
  background: radial-gradient(ellipse at left center, rgba(8, 32, 64, 0.55) 0%, rgba(8, 32, 64, 0.30) 40%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}
.ff-hero-meta-on-image {
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.ff-hero-meta-on-image::before {
  background: var(--ff-gold-300);
}
.ff-hero-meta-on-image .ff-hero-meta-dot {
  background: var(--ff-gold-300);
}
.ff-hero-parallax-title {
  font-size: clamp(54px, 7.4vw, 112px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.005em;
  word-spacing: 0.02em;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.55),
    0 4px 24px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(0, 0, 0, 0.35);
  max-width: 1100px;
}
.ff-hero-parallax-title em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ff-gold-300);
  letter-spacing: -0.01em;
  font-size: 0.92em;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.65),
    0 4px 28px rgba(0, 0, 0, 0.6);
}
.ff-hero-meta-on-image {
  color: rgba(255,255,255,0.95);
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.ff-hero-parallax-meta-row {
  margin-top: 44px;
  display: flex;
  align-items: stretch;
  max-width: 720px;
}
.ff-hero-parallax-quote {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 26px 32px;
  background: rgba(8, 32, 64, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 2px solid var(--ff-gold-500);
}
.ff-hero-parallax-quote-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 48px;
  font-weight: 600;
  color: var(--ff-gold-300);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.ff-hero-parallax-quote-text {
  font-size: 17px;
  line-height: 1.65;
  color: #ffffff;
  text-wrap: pretty;
  font-weight: 500;
  letter-spacing: 0.005em;
  word-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.ff-hero-actions-on-image {
  margin-top: 36px;
}
.ff-link-arrow-on-image {
  color: rgba(255,255,255,0.95) !important;
  text-decoration-color: rgba(255,255,255,0.6) !important;
  border-color: transparent !important;
}
.ff-hero-parallax-thread {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 4;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.ff-hero-parallax-thread .ff-thread-label {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--ff-navy-900);
  padding: 0 16px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

/* ----- Hero layout: LOGO (logo-centered, no portrait) ----- */
.ff-hero-logo {
  background: var(--ff-bg);
  position: relative;
  overflow: hidden;
}
.ff-hero-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(8, 48, 96, 0.04), transparent 70%),
    linear-gradient(180deg, var(--ff-bg) 0%, var(--ff-navy-50, #f4f7fb) 100%);
  pointer-events: none;
}
.ff-hero-logo-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 40px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ff-hero-meta-center {
  margin-bottom: 48px;
  justify-content: center;
}
.ff-hero-meta-center::before {
  display: none;
}
.ff-hero-logo-mark {
  width: min(420px, 60vw);
  margin: 0 auto 56px;
  position: relative;
}
.ff-hero-logo-mark::before,
.ff-hero-logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px; height: 1px;
  background: var(--ff-gold-500);
  opacity: 0.5;
}
.ff-hero-logo-mark::before { right: 100%; margin-right: 32px; }
.ff-hero-logo-mark::after  { left: 100%;  margin-left: 32px; }
.ff-hero-logo-mark img {
  width: 100%;
  height: auto;
  display: block;
}
.ff-hero-logo-title {
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.005em;
  word-spacing: 0.02em;
  color: var(--ff-navy-900);
  max-width: 900px;
  text-wrap: balance;
}
.ff-hero-logo-title em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ff-gold-600);
  letter-spacing: -0.01em;
}
.ff-hero-logo-quote {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 720px;
  padding: 22px 28px;
  border-top: 1px solid var(--ff-gold-500);
  border-bottom: 1px solid var(--ff-gold-500);
}
.ff-hero-logo-quote-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 44px;
  font-weight: 600;
  color: var(--ff-gold-600);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.ff-hero-logo-quote-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ff-ink-700);
  text-align: left;
  text-wrap: pretty;
  letter-spacing: 0.005em;
  word-spacing: 0.05em;
}
.ff-hero-actions-center {
  margin-top: 44px;
  justify-content: center;
}

/* Right column — portrait + city motif */
.ff-hero-visual {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
  min-height: 560px;
}
.ff-hero-portrait {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--ff-navy-100);
  box-shadow: 0 24px 60px rgba(8, 48, 96, 0.18);
  aspect-ratio: 4 / 5;
  align-self: end;
  width: 78%;
  justify-self: end;
}

/* ----- Hero layout: STACKED (portrait above, card below) ----- */
.ff-hero[data-hero="stacked"] .ff-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}
.ff-hero[data-hero="stacked"] .ff-hero-portrait {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  align-self: stretch;
  justify-self: stretch;
}
.ff-hero[data-hero="stacked"] .ff-hero-impact-card {
  position: static;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 28px;
  align-items: end;
  padding: 26px 28px 24px;
}
.ff-hero[data-hero="stacked"] .ff-hero-impact-card .label {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}
.ff-hero[data-hero="stacked"] .ff-hero-impact-card .num {
  margin-top: 0;
  font-size: 76px;
}
.ff-hero[data-hero="stacked"] .ff-hero-impact-card .desc {
  margin-top: 0;
  padding-bottom: 8px;
  max-width: 320px;
}

/* ----- Hero layout: SIDE-BY-SIDE (card left of portrait) ----- */
.ff-hero[data-hero="side-by-side"] .ff-hero-visual {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: stretch;
  min-height: 540px;
}
.ff-hero[data-hero="side-by-side"] .ff-hero-portrait {
  width: 100%;
  aspect-ratio: auto;
  align-self: stretch;
  justify-self: stretch;
  height: 100%;
}
.ff-hero[data-hero="side-by-side"] .ff-hero-impact-card {
  position: static;
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px 24px;
}
.ff-hero[data-hero="side-by-side"] .ff-hero-impact-card .num {
  font-size: 96px;
  margin-top: 24px;
}
.ff-hero[data-hero="side-by-side"] .ff-hero-impact-card .desc {
  margin-top: auto;
  padding-top: 18px;
}

/* ----- Hero layout: OVERLAY (default — but fixed positioning) ----- */
.ff-hero[data-hero="overlay"] .ff-hero-impact-card {
  left: -28px;
  top: auto;
  bottom: 8%;
  z-index: 2;
}
.ff-hero[data-hero="overlay"] .ff-hero-portrait {
  width: 84%;
}
.ff-hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.ff-hero-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 48, 96, 0.55) 100%);
  pointer-events: none;
}
.ff-hero-portrait-cap {
  position: absolute; left: 22px; bottom: 22px;
  color: #fff;
}
.ff-hero-portrait-cap .name {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.005em;
}
.ff-hero-portrait-cap .role {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-transform: uppercase;
}

.ff-hero-impact-card {
  position: absolute;
  left: 0; top: 18%;
  background: var(--ff-navy-800);
  color: #fff;
  padding: 28px 28px 24px;
  width: 280px;
  border-bottom: 3px solid var(--ff-gold-500);
  box-shadow: 0 16px 40px rgba(8, 48, 96, 0.32);
}
.ff-hero-impact-card .label {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ff-gold-300);
  font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.ff-hero-impact-card .label::before {
  content: ''; width: 24px; height: 1px;
  background: var(--ff-gold-500);
}
.ff-hero-impact-card .num {
  font-size: 88px; font-weight: 800;
  line-height: 1; letter-spacing: -0.02em;
  margin-top: 18px;
}
.ff-hero-impact-card .num small {
  font-size: 38px; color: var(--ff-gold-300);
  font-weight: 600;
}
.ff-hero-impact-card .desc {
  font-size: 14.5px; line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-top: 14px;
  font-weight: 400;
}

/* ============================================================
   GOLD THREAD — the visual leitmotif
   The 50/50 split that connects everything
   ============================================================ */
.ff-thread {
  height: 1px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  background: var(--ff-ink-200);
}
.ff-thread::before {
  content: '';
  position: absolute;
  left: 40px; right: 50%;
  top: 0; bottom: 0;
  background: var(--ff-gold-500);
  height: 2px;
  margin-top: -0.5px;
}
.ff-thread-label {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--ff-bg);
  padding: 0 16px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ff-navy-800);
  font-weight: 700;
}
.ff-thread-label .gold-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--ff-gold-500); border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
  position: relative; top: -1px;
}

/* ============================================================
   SECTION FRAME
   ============================================================ */
.ff-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 40px;
}
.ff-section.tight { padding: 56px 40px; }
.ff-section.bottom-pad { padding-bottom: 120px; }

.ff-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ff-gold-600);
}
.ff-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--ff-gold-500);
}
.ff-eyebrow.on-dark { color: var(--ff-gold-300); }

.ff-section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  margin-bottom: 64px;
  align-items: end;
}
.ff-section-head h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ff-navy-900);
  text-wrap: balance;
}
.ff-section-head h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ff-gold-600);
}
.ff-section-head .left-col p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ff-ink-500);
  margin-top: 18px;
  max-width: 280px;
}
.ff-section-head .right-col .lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ff-ink-700);
  margin-top: 28px;
  max-width: 620px;
  text-wrap: pretty;
}

/* ============================================================
   POSITIONING — Two pillars
   ============================================================ */
.ff-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--border-soft);
  position: relative;
}
.ff-pillar {
  padding: 56px 48px 52px;
  position: relative;
}
.ff-pillar:first-child {
  border-right: 1px solid var(--border-soft);
}
.ff-pillar-key {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ff-ink-400);
  margin-bottom: 24px;
}
.ff-pillar-key strong {
  color: var(--ff-navy-800);
}
.ff-pillar h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ff-navy-900);
  margin-bottom: 18px;
}
.ff-pillar h3 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ff-gold-600);
}
.ff-pillar p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ff-ink-700);
  margin-bottom: 32px;
}
.ff-pillar-stat {
  display: flex; align-items: baseline; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.ff-pillar-stat-num {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ff-navy-800);
  line-height: 1;
}
.ff-pillar-stat-num.gold { color: var(--ff-gold-600); }
.ff-pillar-stat-lbl {
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--ff-ink-500);
  font-weight: 600;
  line-height: 1.4;
}
.ff-pillars-divider {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--ff-bg);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 11px;
  color: var(--ff-navy-800);
  letter-spacing: 0.04em;
}

/* ============================================================
   SERVICES — Numbered editorial
   ============================================================ */
.ff-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-soft);
}
.ff-service {
  padding: 36px 32px 32px;
  border-bottom: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ff-service:nth-child(3n) { border-right: 0; }
.ff-service:hover { background: var(--ff-navy-050); }
.ff-service:hover .ff-service-arrow { transform: translateX(4px); color: var(--ff-navy-800); }
.ff-service-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ff-gold-600);
  font-weight: 700;
}
.ff-service h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ff-navy-900);
  margin-top: 14px;
  line-height: 1.2;
}
.ff-service p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ff-ink-700);
  margin-top: 14px;
  margin-bottom: 28px;
}
.ff-service-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 22px;
}
.ff-service-tag {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--ff-ink-500);
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border-hair);
  border-radius: 4px;
}
.ff-service-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ff-navy-700);
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* ============================================================
   IMPACT — Provisions visualizer
   ============================================================ */
.ff-impact-section {
  background: var(--ff-navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ff-impact-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--ff-gold-500);
}
.ff-impact-section .ff-section-head h2 { color: #fff; }
.ff-impact-section .ff-section-head h2 em { color: var(--ff-gold-300); }
.ff-impact-section .ff-section-head .left-col p { color: rgba(255,255,255,0.55); }
.ff-impact-section .ff-section-head .right-col .lead { color: rgba(255,255,255,0.78); }

.ff-visualizer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 56px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.ff-visualizer h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.ff-visualizer-meta {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ff-gold-300);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ff-visualizer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 360px;
}
.ff-slider-block {
  margin-top: 28px;
}
.ff-slider-row {
  display: flex; justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.ff-slider-row .label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.ff-slider-row .val {
  font-size: 22px; font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}
.ff-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
}
.ff-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ff-gold-500);
  border: 3px solid var(--ff-navy-900);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ff-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ff-gold-500);
  border: 3px solid var(--ff-navy-900);
  cursor: pointer;
}
.ff-slider-marks {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

.ff-vis-result {
  background: var(--ff-navy-800);
  padding: 40px 36px;
  border-left: 3px solid var(--ff-gold-500);
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.ff-vis-result-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ff-vis-result-row:last-child { border-bottom: 0; }
.ff-vis-result-row .name {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.ff-vis-result-row .name strong {
  color: #fff; font-weight: 700;
}
.ff-vis-result-row .num {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.ff-vis-result-row .num.gold { color: var(--ff-gold-300); }
.ff-vis-result-foot {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 18px;
  line-height: 1.5;
}

/* ============================================================
   IMPACT GALLERY
   ============================================================ */
.ff-impact-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ff-impact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.ff-impact-card:hover {
  border-color: var(--ff-gold-500);
  transform: translateY(-3px);
}
.ff-impact-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--ff-navy-700), var(--ff-navy-900));
  position: relative;
  overflow: hidden;
}
.ff-impact-img.green { background: linear-gradient(135deg, #2a9d6f, #1f6b4d); }
.ff-impact-img.warm  { background: linear-gradient(135deg, #c59c5f, #6b4a1f); }
.ff-impact-img.orange { background: linear-gradient(135deg, #e07b3a, #8a3f12); }
.ff-impact-img.blue { background: linear-gradient(135deg, #3a7ba6, #0a4e78); }
.ff-impact-img-label {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  padding: 24px;
  text-align: center;
}
.ff-impact-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.3) 100%);
}
.ff-impact-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(8, 48, 96, 0.85);
  backdrop-filter: blur(8px);
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ff-gold-300);
  font-weight: 700;
  padding: 5px 10px;
  border-left: 2px solid var(--ff-gold-500);
  z-index: 2;
}
.ff-impact-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.ff-impact-body h4 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.ff-impact-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  flex: 1;
}
.ff-impact-meta-row {
  display: flex; justify-content: space-between;
  align-items: baseline;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ff-impact-meta-row .amount {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ff-gold-300);
  font-variant-numeric: tabular-nums;
}
.ff-impact-meta-row .place {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  font-weight: 600;
}

.ff-impact-disclosure {
  margin-top: 56px;
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--ff-gold-500);
}
.ff-impact-disclosure p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  line-height: 1.6;
}
.ff-impact-disclosure a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ff-gold-300);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ============================================================
   ABOUT QUOTE
   ============================================================ */
.ff-about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.ff-about-photo {
  aspect-ratio: 4 / 5;
  background-image: url('assets/portrait_rusch_street.png');
  background-size: cover;
  background-position: center 25%;
  position: relative;
  box-shadow: 0 20px 50px rgba(8, 48, 96, 0.18);
}
.ff-about-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 48, 96, 0.4) 100%);
}
.ff-about-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.2;
  color: var(--ff-navy-900);
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.ff-about-quote-mark {
  font-family: var(--ff-serif);
  font-size: 80px;
  font-style: italic;
  color: var(--ff-gold-500);
  line-height: 0.6;
  margin-bottom: 8px;
  display: block;
}
.ff-about-attr {
  margin-top: 32px;
  display: flex; align-items: center; gap: 16px;
  font-size: 13px;
}
.ff-about-attr-line {
  width: 40px; height: 1px;
  background: var(--ff-gold-500);
}
.ff-about-attr strong {
  color: var(--ff-navy-900); font-weight: 700;
  display: block; font-size: 14px;
}
.ff-about-attr span { color: var(--ff-ink-500); }
.ff-about-cred {
  display: flex; gap: 36px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.ff-about-cred-item .num {
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ff-navy-800);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ff-about-cred-item .lbl {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ff-ink-500);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 8px;
  max-width: 140px;
  line-height: 1.4;
}

/* ============================================================
   PROCESS
   ============================================================ */
.ff-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: #fff;
}
.ff-process-step {
  padding: 32px 24px 36px;
  border-right: 1px solid var(--border-soft);
  position: relative;
}
.ff-process-step:last-child { border-right: 0; }
.ff-process-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--ff-gold-500);
  letter-spacing: -0.02em;
}
.ff-process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ff-navy-900);
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin-top: 22px;
}
.ff-process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ff-ink-600, var(--ff-ink-700));
  margin-top: 10px;
}

/* ============================================================
   USP STRIP
   ============================================================ */
.ff-usp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.ff-usp-item {
  border-top: 2px solid var(--ff-navy-800);
  padding-top: 22px;
}
.ff-usp-item:nth-child(4) { border-top-color: var(--ff-gold-500); }
.ff-usp-item .key {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ff-ink-400);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ff-usp-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ff-navy-900);
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.ff-usp-item p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ff-ink-700);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.ff-cta-strip {
  background: var(--ff-navy-800);
  color: #fff;
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 56px;
  align-items: center;
  position: relative;
  border-bottom: 4px solid var(--ff-gold-500);
}
.ff-cta-strip h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: #fff;
  line-height: 1.1;
  margin-top: 16px;
  text-wrap: balance;
}
.ff-cta-strip h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--ff-gold-300);
  font-weight: 500;
}
.ff-cta-strip p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  max-width: 480px;
  line-height: 1.6;
}
.ff-cta-strip-actions {
  display: flex; flex-direction: column; gap: 14px;
  align-items: stretch;
  min-width: 260px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ff-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  transition: all 0.15s ease;
  text-align: center;
  white-space: nowrap;
}
.ff-btn-primary { background: var(--ff-navy-800); color: #fff; }
.ff-btn-primary:hover { background: var(--ff-navy-700); }
.ff-btn-gold { background: var(--ff-gold-500); color: var(--ff-navy-900); }
.ff-btn-gold:hover { background: var(--ff-gold-600); }
.ff-btn-ghost {
  background: transparent;
  color: var(--ff-navy-800);
  border: 1.5px solid var(--ff-navy-800);
}
.ff-btn-ghost:hover { background: var(--ff-navy-800); color: #fff; }
.ff-btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.ff-btn-ghost-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   FORM (Multi-step Anfrage)
   ============================================================ */
.ff-form-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.ff-form {
  background: #fff;
  padding: 48px;
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--ff-gold-500);
}
.ff-form-stepbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 36px;
}
.ff-form-step {
  padding: 14px 0 12px;
  border-top: 2px solid var(--border-hair);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ff-ink-400);
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s ease;
}
.ff-form-step .num {
  margin-right: 8px;
}
.ff-form-step.active {
  color: var(--ff-navy-900);
  border-top-color: var(--ff-gold-500);
}
.ff-form-step.done {
  color: var(--ff-gold-600);
  border-top-color: var(--ff-gold-500);
}

.ff-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ff-navy-900);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.ff-form-step-desc {
  font-size: 14px;
  color: var(--ff-ink-500);
  margin-bottom: 28px;
  line-height: 1.5;
}

.ff-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ff-field { display: flex; flex-direction: column; gap: 8px; }
.ff-field-full { grid-column: 1 / -1; }
.ff-field label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ff-ink-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ff-field label .req { color: var(--ff-gold-600); }
.ff-field input,
.ff-field textarea,
.ff-field select {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--ff-navy-900);
  background: var(--ff-bg);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 13px 14px;
  outline: none;
  transition: all 0.15s ease;
  font-weight: 500;
}
.ff-field input:focus,
.ff-field textarea:focus,
.ff-field select:focus {
  border-color: var(--ff-gold-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(197, 156, 95, 0.18);
}
.ff-field textarea { resize: vertical; min-height: 110px; }
.ff-field-error input, .ff-field-error textarea {
  border-color: var(--ff-orange-600);
}
.ff-field .err-msg {
  font-size: 12px;
  color: var(--ff-orange-600);
  font-weight: 600;
}

.ff-radio-row { display: flex; gap: 8px; flex-wrap: wrap; }
.ff-chip {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 4px;
  border: 1px solid var(--border-hair);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ff-ink-700);
  cursor: pointer;
  transition: all 0.15s ease;
  background: #fff;
}
.ff-chip:hover { border-color: var(--ff-navy-700); color: var(--ff-navy-800); }
.ff-chip.on {
  background: var(--ff-navy-800);
  color: #fff;
  border-color: var(--ff-navy-800);
}

.ff-form-legal {
  font-size: 13.5px;
  color: var(--ff-ink-500);
  line-height: 1.55;
  background: var(--ff-bg-tint);
  padding: 14px 16px;
  border-radius: 4px;
  border-left: 2px solid var(--ff-gold-500);
}
.ff-form-legal a { color: var(--ff-navy-700); text-decoration: underline; }

.ff-form-actions {
  display: flex; justify-content: space-between;
  margin-top: 32px;
  gap: 12px;
}

.ff-form-success {
  background: #fff;
  padding: 64px 48px;
  text-align: center;
  border-top: 3px solid var(--ff-green-600);
  border: 1px solid var(--border-soft);
}
.ff-form-success-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ff-green-600);
  color: #fff;
  font-size: 28px;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
}
.ff-form-success h3 {
  font-size: 24px;
  color: var(--ff-navy-900);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.ff-form-success p {
  font-size: 15px;
  color: var(--ff-ink-700);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto;
}

/* Contact sidebar */
.ff-contact-aside {
  background: var(--ff-navy-900);
  color: #fff;
  padding: 40px 36px;
  position: sticky; top: 100px;
}
.ff-contact-aside h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 6px;
}
.ff-contact-aside .desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 28px;
}
.ff-contact-row {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ff-contact-row:last-of-type { border: 0; }
.ff-contact-row .label {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 700;
}
.ff-contact-row .value {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}
.ff-contact-aside .ff-btn {
  width: 100%;
  margin-top: 18px;
}
.ff-contact-aside-note {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-align: center;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ff-footer {
  background: var(--ff-navy-900);
  color: rgba(255,255,255,0.78);
  border-top: 4px solid var(--ff-gold-500);
}
.ff-footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 40px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 36px;
}
.ff-footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 22px;
}
.ff-footer-brand p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ff-gold-300);
  line-height: 1.4;
  max-width: 240px;
}
.ff-footer-brand .legal-id {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-top: 22px;
  line-height: 1.6;
  text-transform: uppercase;
}
.ff-footer-col h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ff-gold-300);
  margin-bottom: 18px;
  font-family: var(--ff-mono);
}
.ff-footer-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.ff-footer-col li { font-size: 13.5px; }
.ff-footer-col a {
  color: rgba(255,255,255,0.78);
  transition: color 0.15s ease;
}
.ff-footer-col a:hover { color: var(--ff-gold-300); }
.ff-footer-contact strong { color: #fff; font-weight: 700; }
.ff-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  max-width: 1320px;
  margin: 0 auto;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 14px;
}
.ff-footer-nav { display: flex; gap: 22px; }
.ff-footer-nav a:hover { color: var(--ff-gold-300); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.ff-cookie {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--ff-gold-500);
  box-shadow: 0 16px 48px rgba(8, 48, 96, 0.18);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  z-index: 100;
  max-width: 980px;
  margin: 0 auto;
  animation: ff-cookie-in 0.4s ease-out;
}
@keyframes ff-cookie-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.ff-cookie h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ff-navy-900);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.ff-cookie p {
  font-size: 14px;
  color: var(--ff-ink-700);
  line-height: 1.55;
  max-width: 580px;
}
.ff-cookie-actions { display: flex; gap: 10px; }

/* ============================================================
   PAGE TRANSITIONS
   ============================================================ */
.ff-page { animation: ff-fade-in 0.32s ease-out both; }
@keyframes ff-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LEISTUNGEN PAGE
   ============================================================ */
.ff-leistungen-hero {
  background: var(--ff-bg);
  padding: 80px 0 32px;
}
.ff-leistungen-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}
.ff-leistungen-hero h1 {
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--ff-navy-900);
}
.ff-leistungen-hero h1 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--ff-gold-600);
  font-weight: 500;
  font-size: 0.85em;
}
.ff-leistungen-hero .lead {
  font-size: 17px;
  color: var(--ff-ink-700);
  line-height: 1.65;
}
.ff-leistungen-toc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: #fff;
  margin-top: 64px;
}
.ff-toc-item {
  padding: 24px 24px 22px;
  border-right: 1px solid var(--border-soft);
  display: flex; flex-direction: column;
  gap: 8px;
  transition: background 0.15s ease;
  cursor: pointer;
}
.ff-toc-item:last-child { border-right: 0; }
.ff-toc-item:hover { background: var(--ff-navy-050); }
.ff-toc-item .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ff-gold-600);
  font-weight: 700;
}
.ff-toc-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ff-navy-900);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.ff-leistung-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 96px 40px;
  max-width: 1320px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-soft);
  align-items: start;
}
.ff-leistung-detail:last-child { border-bottom: 0; }
.ff-leistung-detail .left-col {
  position: sticky; top: 100px;
}
.ff-leistung-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 88px;
  line-height: 0.85;
  color: var(--ff-gold-500);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.ff-leistung-detail h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ff-navy-900);
  margin-top: 24px;
  text-wrap: balance;
}
.ff-leistung-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 28px;
}
.ff-leistung-detail .lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ff-ink-700);
  margin-bottom: 32px;
}
.ff-leistung-bullets {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.ff-leistung-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-left: 18px;
  border-left: 2px solid var(--ff-gold-500);
}
.ff-leistung-bullets li .key {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ff-gold-600);
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  min-width: 40px;
  margin-top: 4px;
}
.ff-leistung-bullets li .body strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ff-navy-900);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.ff-leistung-bullets li .body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ff-ink-700);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .ff-hero-inner,
  .ff-section-head,
  .ff-form-section,
  .ff-pillars,
  .ff-cta-strip,
  .ff-about,
  .ff-leistungen-hero-inner,
  .ff-leistung-detail,
  .ff-visualizer { grid-template-columns: 1fr; gap: 40px; }
  .ff-services-grid,
  .ff-impact-gallery,
  .ff-usp { grid-template-columns: repeat(2, 1fr); }
  .ff-process { grid-template-columns: repeat(3, 1fr); }
  .ff-process-step:nth-child(3) { border-right: 0; }
  .ff-process-step { border-bottom: 1px solid var(--border-soft); }
  .ff-footer-top { grid-template-columns: 1fr 1fr; }
  .ff-leistungen-toc { grid-template-columns: repeat(2, 1fr); }
  .ff-toc-item { border-bottom: 1px solid var(--border-soft); }
  .ff-nav { display: none; }
  .ff-pillars { display: flex; flex-direction: column; }
  .ff-pillar:first-child { border-right: 0; border-bottom: 1px solid var(--border-soft); }
  .ff-pillars-divider { display: none; }
  .ff-leistung-detail .left-col { position: static; }
}
@media (max-width: 720px) {
  .ff-services-grid,
  .ff-impact-gallery,
  .ff-usp,
  .ff-process { grid-template-columns: 1fr; }
  .ff-process-step { border-right: 0; border-bottom: 1px solid var(--border-soft); }
  .ff-footer-top { grid-template-columns: 1fr; }
  .ff-form-grid { grid-template-columns: 1fr; }
  .ff-section { padding: 56px 24px; }
  .ff-form { padding: 28px 22px; }
  .ff-cta-strip { padding: 48px 28px; }
  .ff-cookie { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; grid-template-columns: 1fr; gap: 16px; }
}


/* ============================================================
   POSITIONING — logo card + headline (replaces section head)
   ============================================================ */
.ff-positioning-head {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.ff-positioning-logo-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--ff-navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(8, 48, 96, 0.18);
}
.ff-positioning-logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 75% at 50% 50%, rgba(197, 156, 95, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ff-positioning-logo-card img {
  width: 78%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s ease;
  will-change: transform, opacity;
}
.ff-positioning-copy { padding-top: 16px; }
.ff-positioning-copy .ff-eyebrow { margin-bottom: 18px; }
.ff-positioning-copy h2 {
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.005em;
  word-spacing: 0.02em;
  color: var(--ff-navy-900);
  margin: 0 0 24px;
}
.ff-positioning-copy h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ff-gold-600);
}
.ff-positioning-copy .lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ff-ink-700);
  max-width: 620px;
  text-wrap: pretty;
}
@media (max-width: 1080px) {
  .ff-positioning-head { grid-template-columns: 1fr; gap: 32px; }
  .ff-positioning-logo-card { max-width: 320px; }
}

/* ============================================================
   IMPACT INTENSITY — body class drives prominence (v1 + v2)
   ============================================================ */
body.impact-subtle .ff-hero-impact-card {
  transform: scale(0.86);
  transform-origin: bottom left;
  opacity: 0.88;
}
body.impact-subtle .ff-hero-impact-card .num { font-size: 56px !important; }
body.impact-subtle .ff-impact-section { padding-top: 64px !important; padding-bottom: 64px !important; }
body.impact-subtle .ff-impact-section .ff-section-head h2 { font-size: 34px !important; }
body.impact-subtle .ff-cta-strip { padding-top: 48px !important; padding-bottom: 48px !important; }
body.impact-subtle .ff-ledger-amount-total { font-size: 24px !important; }
body.impact-subtle .ff-ledger-row { padding: 18px 0 !important; }

body.impact-prominent .ff-hero-impact-card {
  transform: scale(1.06);
  transform-origin: bottom left;
  box-shadow: 0 22px 56px rgba(8, 48, 96, 0.42) !important;
}
body.impact-prominent .ff-hero-impact-card .num { font-size: 104px !important; }
body.impact-prominent .ff-impact-section { padding-top: 120px !important; padding-bottom: 120px !important; }
body.impact-prominent .ff-impact-section .ff-section-head h2 { font-size: 56px !important; }
body.impact-prominent .ff-cta-strip { border-bottom: 6px solid var(--ff-gold-500) !important; }
body.impact-prominent .ff-ledger-amount-total { font-size: 36px !important; }
body.impact-prominent .ff-ledger-row::before { width: 3px !important; }
