/* ============================================================
   FELT & FOUND — styles.css FINAL
   Newsreader 500 + Quicksand.
   Hero: simple block layout — cannot clip.
   No cursor:none. Scroll progress. Parallax. Float images.
   ============================================================ */

:root {
  --ff-wine:        #7D2027;
  --ff-wine-deep:   #5A1519;
  --ff-juniper:     #4D4828;
  --ff-candle:      #ECE6D8;
  --ff-candle-warm: #D9C4B1;
  --ff-cinereous:   #A39670;
  --ff-dark:        #372713;
  --ff-dark-deep:   #1a110a;
  --ff-text:        #2a1f1a;

  --ff-serif: 'Newsreader', Georgia, serif;
  --ff-body:  'Quicksand', sans-serif;

  --ff-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ff-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ff-slow: cubic-bezier(0.77, 0, 0.175, 1);

  --ff-container:     920px;
  --ff-gap:           clamp(4.5rem, 10vw, 8rem);
  --ff-float-overlap: 6rem;
  --ff-nav-h:         68px;
}

/* ── RESET ───────────────────────────────────────────────── */
.ff-html  { scroll-behavior: smooth; font-size: 16px; }
.ff-body-root {
  font-family: var(--ff-body);
  background: #F5F0E8;
  color: var(--ff-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html {
  overflow-x: hidden;
}

/* ── GRAIN ───────────────────────────────────────────────── */
.ff-grain::after {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── SCROLL PROGRESS BAR ─────────────────────────────────── */
.ff-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--ff-wine);
  transform-origin: left; transform: scaleX(0);
  z-index: 9000; pointer-events: none;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.ff-h1 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.0; letter-spacing: -0.04em;
}
.ff-h2 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1; letter-spacing: -0.04em;
}
.ff-h3 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(1.44rem, 3vw, 2.04rem);
  line-height: 1.2; letter-spacing: -0.04em;
}
.ff-italic  { font-style: italic; }
.ff-eyebrow { font-family: var(--ff-body); font-size: 0.65rem; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600; }

/* ── COLORS ──────────────────────────────────────────────── */
.ff-bg-dark-deep   { background: var(--ff-dark-deep); }
.ff-bg-dark        { background: var(--ff-dark); }
.ff-bg-juniper     { background: var(--ff-juniper); }
.ff-bg-candle      { background: var(--ff-candle); }
.ff-bg-candle-warm { background: var(--ff-candle-warm); }
.ff-bg-wine        { background: var(--ff-wine); }
.ff-bg-wine-deep   { background: var(--ff-wine-deep); }
.ff-bg-ivory       { background: #F5F0E8; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.ff-section         { position: relative; }
.ff-section-pad     { padding: var(--ff-gap) 0; }
.ff-overflow-hidden { overflow: hidden; }
.ff-container {
  max-width: var(--ff-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── SECTION LABEL ───────────────────────────────────────── */
.ff-section-label {
  font-family: var(--ff-body); font-size: 0.55rem;
  letter-spacing: 0.45em; text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 3.5rem;
}
.ff-section-label::after {
  content: ''; display: block; height: 1px; width: 0;
  background: var(--ff-wine); flex-shrink: 0;
  transition: width 0.8s var(--ff-expo);
}
.ff-section-label--drawn::after { width: 2rem; }
.ff-section-label--light { color: rgba(255,255,255,0.4); }
.ff-section-label--mid   { color: var(--ff-cinereous); }
.ff-section-label--dark  { color: rgba(42,31,26,0.38); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.ff-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 160;
  height: var(--ff-nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  transition: background 0.4s var(--ff-ease), backdrop-filter 0.4s var(--ff-ease);
  /* Extend bg colour into iOS status bar */
  padding-top: env(safe-area-inset-top, 0px);
  height: calc(var(--ff-nav-h) + env(safe-area-inset-top, 0px));
  background-color: #F5F0E8;
}
.ff-nav--scrolled {
  background: rgba(23,13,8,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(125,32,39,0.2);
}
.ff-nav__logo {
  font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 500;
  color: var(--ff-text); letter-spacing: -0.02em; text-decoration: none;
  transition: color 0.4s ease;
}
.ff-nav__logo-amp { color: var(--ff-wine); transition: color 0.4s ease; }
.ff-nav--scrolled .ff-nav__logo { color: #ffffff; }
.ff-nav--scrolled .ff-nav__logo-amp { color: var(--ff-wine); }
.ff-nav__anchors  { display: none; gap: 2rem; list-style: none; }
.ff-nav__anchor-link {
  font-family: var(--ff-body); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: rgba(42,31,26,0.55); transition: color 0.4s ease; text-decoration: none;
}
.ff-nav__anchor-link:hover { color: var(--ff-text); }
.ff-nav--scrolled .ff-nav__anchor-link { color: rgba(255,255,255,0.6); }
.ff-nav--scrolled .ff-nav__anchor-link:hover { color: #ffffff; }
.ff-nav__right { display: flex; align-items: center; gap: 1rem; }
.ff-nav__cta {
  display: none; font-family: var(--ff-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ff-text); border: 1px solid rgba(42,31,26,0.4); padding: 0.5rem 1.2rem;
  border-radius: 2px; transition: all 0.4s ease; text-decoration: none;
}
.ff-nav__cta:hover { background: var(--ff-wine); color: #ffffff; border-color: var(--ff-wine); }
.ff-nav--scrolled .ff-nav__cta { color: #ffffff; border-color: var(--ff-wine); }
.ff-nav--scrolled .ff-nav__cta:hover { background: var(--ff-wine); }

/* ── HAMBURGER ───────────────────────────────────────────── */
.ff-hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 6px; background: none; border: none;
}
.ff-hamburger__line {
  display: block; width: 22px; height: 1.5px;
  background: var(--ff-text); transition: all 0.35s; transform-origin: center;
}
.ff-nav--scrolled .ff-hamburger__line { background: #ffffff; }
.ff-mobile-menu--open ~ * .ff-hamburger__line,
.ff-nav--menu-open .ff-hamburger__line { background: #ffffff; }
.ff-nav--menu-open { background: rgba(23,13,8,0.97) !important; backdrop-filter: blur(14px); }
.ff-nav--menu-open .ff-nav__logo { color: #ffffff; }
.ff-nav--menu-open .ff-nav__logo-amp { color: var(--ff-wine); }
.ff-nav--menu-open .ff-nav__cta { color: #ffffff; border-color: var(--ff-wine); }
.ff-nav--menu-open .ff-nav__anchor-link { color: rgba(255,255,255,0.6); }
.ff-hamburger--open .ff-hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ff-hamburger--open .ff-hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ff-hamburger--open .ff-hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────────── */
.ff-mobile-menu {
  position: fixed; inset: 0; background: var(--ff-dark-deep);
  z-index: 150; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  transform: translateX(100%); transition: transform 0.55s var(--ff-slow);
  border-top: 2px solid var(--ff-wine);
}
.ff-mobile-menu--open { transform: translateX(0); }
.ff-mobile-menu__label {
  font-family: var(--ff-body); font-size: 0.58rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 1.4rem;
}
.ff-mobile-menu__link {
  font-family: var(--ff-serif); font-size: clamp(1.3rem, 4vw, 1.9rem); font-weight: 500;
  color: #ffffff; padding: 0.3rem 0; opacity: 0.75;
  transition: opacity 0.3s, color 0.3s; text-decoration: none; letter-spacing: -0.02em;
}
.ff-mobile-menu__link:hover { opacity: 1; color: var(--ff-wine); }
.ff-mobile-menu__logo-link:hover { color: #ffffff; }
.ff-mobile-menu__logo-link:hover span { color: var(--ff-wine) !important; }
.ff-mobile-menu__divider { width: 1px; height: 2rem; background: rgba(255,255,255,0.1); margin: 0.8rem 0; }
.ff-mobile-menu__cta {
  margin-top: 1.5rem; font-family: var(--ff-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #ffffff; background: var(--ff-wine); border: 1px solid var(--ff-wine);
  padding: 0.8rem 2rem; border-radius: 2px; text-decoration: none; transition: background 0.3s;
}
.ff-mobile-menu__cta:hover { background: var(--ff-wine-deep); }

/* ── SECTION TRANSITIONS ─────────────────────────────────── */
/*
  Soft gradient at top of light sections following dark ones.
  Creates a visual bleed rather than a hard cut.
*/
#situationen::before,
#wie-es-funktioniert::before,
#ueber-mich::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, rgba(26,17,10,0.12) 0%, transparent 100%);
  pointer-events: none; z-index: 2;
}
/* Light → dark: subtle light vignette at top */
#investition::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, rgba(236,230,216,0.06) 0%, transparent 100%);
  pointer-events: none; z-index: 2;
}

/* ── BUTTONS — sliding fill from left ───────────────────── */
.ff-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; text-decoration: none;
  padding: 1rem 2.2rem; border: 1px solid transparent;
  position: relative; overflow: hidden; isolation: isolate;
  transition: border-color 0.4s var(--ff-ease), color 0.4s ease;
}
/* Sliding fill layer */
.ff-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--ff-wine);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ff-expo);
  z-index: -1;
}
.ff-btn:hover::before { transform: translateX(0); }
.ff-btn:hover { border-color: var(--ff-wine); }
.ff-btn svg { transition: transform 0.45s var(--ff-expo); position: relative; z-index: 1; }
.ff-btn:hover svg { transform: translateX(5px); }

.ff-btn--outline { color: #ffffff; border-color: rgba(255,255,255,0.35); background: transparent; }
.ff-btn--outline:hover { color: #ffffff; }

.ff-hero .ff-btn--outline { color: var(--ff-text); border-color: rgba(42,31,26,0.3); }
.ff-hero .ff-btn--outline:hover { color: #ffffff; }

.ff-btn--wine {
  color: #ffffff; background: var(--ff-wine); border-color: var(--ff-wine);
}
.ff-btn--wine::before { background: var(--ff-wine-deep); }
.ff-btn--wine:hover { border-color: var(--ff-wine-deep); }

.ff-btn--ghost  { color: var(--ff-text); border-color: rgba(42,31,26,0.25); background: transparent; }
.ff-btn--ghost:hover { color: #ffffff; }
.ff-btn--centered { display: flex; margin: 0 auto; width: fit-content; }

/* ════════════════════════════════════════════════════════════
   HERO — BULLETPROOF BLOCK LAYOUT
   No flex, no grid, no height/overflow tricks.
   Background (position:absolute) follows content height.
   Content flows naturally — cannot be clipped.
   ════════════════════════════════════════════════════════════ */
.ff-hero {
  position: relative;
  min-height: 100vh;
  background: #F5F0E8;
  z-index: 3;
  overflow: hidden;
}
/* Background absolutely fills whatever height the hero reaches */
.ff-hero__bg-wrap {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}
.ff-hero__bg       { display: none; }
.ff-hero__overlay  { display: none; }
.ff-hero__overlay-dark { display: none; }
.ff-hero__glow     { display: none; }

/* All hero content: single flow div, relative so it's above the bg */
.ff-hero__inner {
  position: relative; z-index: 2;
  max-width: 100%;
  padding: calc(var(--ff-nav-h) + env(safe-area-inset-top, 0px) + 2.5rem) 3vw 0 3vw;
}

/* H1 block: scrolls and drifts */
.ff-hero__h1-block {
  position: relative;
  z-index: 2;
  padding-bottom: 2rem;
}

/* Sticky text block: stays put while H1 drifts away */
.ff-hero__sticky-block {
  position: sticky;
  bottom: 0;
  z-index: 3;
  padding: 2rem 3vw 3.5rem;
  background: linear-gradient(to top, #F5F0E8 70%, transparent 100%);
  pointer-events: auto;
}

/* Hero content elements */
.ff-hero__eyebrow {
  display: block; color: var(--ff-wine); margin-bottom: 2rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ff-hero--animate .ff-hero__eyebrow { opacity: 1; transform: translateY(0); }

/* H1 line-by-line reveal */
.ff-hero__h1 {
  font-size: clamp(3.2rem, 8.5vw, 8rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
  line-height: 1.0;
}
.ff-hero__line {
  display: block;
  overflow: visible;
  line-height: 1.08;
  margin-bottom: 0.04em;
}
.ff-hero__line > span { display: block; transform: translateY(110%); opacity: 0; color: var(--ff-text); will-change: transform, opacity; }
.ff-hero__h1-accent { color: var(--ff-wine); }
.ff-hero--animate .ff-hero__line > span {
  animation: ff-line-up 0.9s var(--ff-expo) forwards;
}
.ff-hero--animate .ff-hero__line:nth-child(2) > span { animation-delay: 0.1s; }
.ff-hero--animate .ff-hero__line:nth-child(3) > span { animation-delay: 0.2s; }
.ff-hero--animate .ff-hero__line:nth-child(4) > span { animation-delay: 0.3s; }
@keyframes ff-line-up { to { transform: translateY(0); opacity: 1; } }

.ff-hero__h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-style: italic; color: var(--ff-text);
  line-height: 1.2; letter-spacing: -0.03em; font-weight: 500;
  overflow: hidden; margin-bottom: clamp(1.2rem, 3vh, 2.5rem);
}
.ff-hero__h2 > span { display: block; transform: translateY(110%); opacity: 0; color: var(--ff-text); }
.ff-hero--animate .ff-hero__h2 > span {
  animation: ff-line-up 0.9s var(--ff-expo) 0.3s forwards;
}

.ff-hero__divider { display: none; }

.ff-hero__recognition {
  margin-bottom: 1.6rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(42,31,26,0.12);
  position: relative;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}
.ff-hero--animate .ff-hero__recognition { opacity: 1; transform: translateY(0); }
/* Small wine ornament above */
.ff-hero__recognition::before { display: none; }
.ff-hero__recognition p {
  font-family: var(--ff-body);
  color: rgba(42,31,26,0.72);
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  line-height: 1.85; font-weight: 400;
}
.ff-hero__recognition-em {
  font-family: var(--ff-serif); font-style: italic; font-weight: 500;
  color: var(--ff-text); font-size: 1.06em;
}
.ff-hero__tagline {
  font-family: var(--ff-serif); font-style: italic; font-weight: 500; color: var(--ff-text);
  font-size: clamp(1.2rem, 2.64vw, 1.56rem);
  margin-bottom: 0.6rem; line-height: 1.5; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.6s ease 0.55s, transform 0.6s ease 0.55s;
}
.ff-hero--animate .ff-hero__tagline { opacity: 1; transform: translateY(0); }
.ff-hero__sub {
  font-family: var(--ff-body);
  font-size: clamp(0.92rem, 1.8vw, 1rem); /* matches site body */
  color: rgba(42,31,26,0.55); line-height: 1.8;
  margin-bottom: 1.8rem; max-width: 560px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.6s ease 0.62s, transform 0.6s ease 0.62s;
}
.ff-hero--animate .ff-hero__sub { opacity: 1; transform: translateY(0); }
.ff-hero__btn-wrap {
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.6s ease 0.72s, transform 0.6s ease 0.72s;
}
.ff-hero--animate .ff-hero__btn-wrap { opacity: 1; transform: translateY(0); }

.ff-hero__scroll {
  position: absolute; bottom: 1.5rem; right: 1.8rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; opacity: 0.3; z-index: 2;
}
.ff-hero__scroll-label {
  font-family: var(--ff-body); font-size: 0.55rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ff-text); writing-mode: vertical-rl;
}
.ff-hero__scroll-line {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, var(--ff-wine), transparent);
  animation: ff-scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes ff-scroll-pulse {
  0%,100% { transform: scaleY(1); opacity: 0.3; }
  50%      { transform: scaleY(0.4); opacity: 0.1; }
}

/* ── SECTION Z-INDEX SYSTEM ──────────────────────────────── */
/*
  Descending z-index: each section is BELOW the one before it.
  When float negative-margins pull a later section upward,
  it can never paint over an earlier section (earlier = higher z-index).
*/
.ff-hero             { z-index: 12; }
#problem             { z-index: 10; }
#situationen         { z-index: 9;  }
#was-wir-machen      { z-index: 8;  }
#wie-es-funktioniert { z-index: 7;  }
#investition         { z-index: 6;  }
#faq                 { z-index: 5;  }
#ueber-mich          { z-index: 4;  }
#cta                 { z-index: 3;  }

/* Floats always above all sections */
.ff-float { z-index: 15; }
.ff-float {
  position: relative;
  width: 100%; height: clamp(220px, 38vw, 400px); overflow: hidden;
  opacity: 0; transform: scale(0.96);
  transition: opacity 0.9s var(--ff-expo), transform 0.9s var(--ff-expo);
}
.ff-float--visible { opacity: 1; transform: scale(1); }
.ff-float__rect { width: 100%; height: 100%; overflow: hidden; }
.ff-float__img {
  width: 100%; height: 130%; object-fit: cover; object-position: center;
  transform: translateY(-10%); will-change: transform; display: block;
  filter: sepia(8%) contrast(1.04);
}
@media (min-width: 1024px) {
  .ff-float {
    height: 0; overflow: visible;
    margin-top: calc(var(--ff-float-overlap) * -1);
    margin-bottom: calc(var(--ff-float-overlap) * -1);
  }
  .ff-float--right { display: flex; justify-content: flex-end; align-items: flex-start; padding-right: clamp(1.5rem, 3vw, 4rem); }
  .ff-float--left  { display: flex; justify-content: flex-start; align-items: flex-start; padding-left: clamp(1.5rem, 3vw, 4rem); }
  .ff-float__rect {
    width: clamp(280px, 34vw, 480px);
    height: clamp(360px, 58vh, 680px); overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
    flex-shrink: 0;
  }
}

/* ── PROBLEM SECTION ─────────────────────────────────────── */
.ff-problem__lead {
  font-family: var(--ff-serif); font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-style: italic; font-weight: 500; color: #ffffff; line-height: 1.55;
  margin-bottom: 2rem; letter-spacing: -0.03em;
}
.ff-problem__body {
  font-family: var(--ff-body); color: rgba(255,255,255,0.72);
  margin-bottom: 1.4rem; font-size: clamp(0.92rem, 1.8vw, 1rem); line-height: 1.85;
}
.ff-problem__strong { color: #ffffff; font-weight: 600; }
.ff-problem__pull {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
/* Large decorative opening quote */
.ff-problem__pull::before {
  content: '\201C';
  font-family: var(--ff-serif);
  font-size: 7rem;
  line-height: 0.6;
  color: rgba(125,32,39,0.25);
  position: absolute;
  top: 1.5rem;
  left: -0.5rem;
  pointer-events: none;
}
.ff-problem__pull p {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic; font-weight: 500; color: #ffffff;
  line-height: 1.65; letter-spacing: -0.03em;
  padding-left: 3rem; /* clear the decorative quote */
}
.ff-problem__cols { display: grid; gap: 1.4rem; }

/* ── SITUATION ITEMS ─────────────────────────────────────── */
.ff-situation-grid { display: grid; gap: 0; }
.ff-situation {
  padding: 3.5rem 0; border-bottom: 1px solid rgba(42,31,26,0.1);
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.ff-situation:last-child { border-bottom: none; }
.ff-situation--visible { opacity: 1; transform: translateY(0); }
.ff-situation__number {
  font-family: var(--ff-body); font-size: 0.6rem; letter-spacing: 0.22em;
  color: var(--ff-wine); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem; font-weight: 600;
}
.ff-situation__number::after { content: ''; display: block; height: 1px; width: 1.5rem; background: var(--ff-wine); }
.ff-situation__h3    { color: var(--ff-wine-deep); margin-bottom: 1.2rem; }
.ff-situation__body  { font-family: var(--ff-body); color: var(--ff-text); margin-bottom: 0.9rem; font-size: clamp(0.92rem, 1.8vw, 1rem); line-height: 1.8; }
.ff-situation__close {
  font-family: var(--ff-serif); font-style: italic; font-weight: 500; color: var(--ff-wine);
  font-size: clamp(1rem, 2vw, 1.15rem); margin-top: 1.6rem;
  padding-top: 1.2rem; border-top: 1px solid rgba(125,32,39,0.25);
  display: block; letter-spacing: -0.02em;
}

/* ── WAS WIR MACHEN ──────────────────────────────────────── */
.ff-what__h2   { color: #ffffff; margin-bottom: 2rem; }
.ff-what__body { font-family: var(--ff-body); color: rgba(255,255,255,0.72); margin-bottom: 1.4rem; font-size: clamp(0.92rem, 1.8vw, 1rem); line-height: 1.85; }
.ff-what__strong { color: #ffffff; font-weight: 600; }
.ff-what__result {
  margin-top: 3.5rem;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  position: relative;
}
.ff-what__result::before {
  content: '✦';
  display: block;
  color: var(--ff-wine);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.4rem;
  opacity: 0.6;
}
.ff-what__result p {
  font-family: var(--ff-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #ffffff; line-height: 1.6; letter-spacing: -0.03em;
}

/* ── PROCESS ─────────────────────────────────────────────── */
.ff-process__h2  { color: var(--ff-text); margin-bottom: 3rem; }
.ff-process__grid { display: grid; gap: 0; }
.ff-process__step { padding: 3.5rem 0; border-top: 1px solid rgba(42,31,26,0.1); }
.ff-process__step:last-of-type { border-bottom: 1px solid rgba(42,31,26,0.1); }
.ff-process__header { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 1.2rem; }
.ff-process__num { font-family: var(--ff-serif); font-size: 3.5rem; font-weight: 500; color: rgba(42,31,26,0.07); line-height: 1; flex-shrink: 0; margin-top: -0.4rem; letter-spacing: -0.04em; }
.ff-process__title-group h3 { color: var(--ff-wine-deep); margin-bottom: 0.35rem; }
.ff-process__badge { font-family: var(--ff-body); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--ff-cinereous); }
.ff-process__body { font-family: var(--ff-body); color: var(--ff-text); margin-bottom: 0.9rem; font-size: clamp(0.92rem, 1.8vw, 1rem); line-height: 1.8; }
.ff-process__note { font-family: var(--ff-serif); font-style: italic; font-weight: 500; color: var(--ff-cinereous); font-size: 1rem; letter-spacing: -0.02em; }

/* ── PRICING ─────────────────────────────────────────────── */
.ff-pricing__h2  { color: #ffffff; margin-bottom: 3rem; }
.ff-pricing__grid { display: grid; gap: 1.5rem; }

.ff-pricing__card {
  padding: 2.4rem 2.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  transition: border-color 0.4s ease, transform 0.4s var(--ff-ease), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0.82;
}
.ff-pricing__card:hover { opacity: 1; }
/* Gradient top shimmer line */
.ff-pricing__card::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  border-radius: 50%;
  transition: opacity 0.4s ease;
}
.ff-pricing__card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), 0 0 40px rgba(125,32,39,0.08);
}
.ff-pricing__card:hover::before { opacity: 0; }

.ff-pricing__card--featured {
  border-color: rgba(236,230,216,0.25);
  background: #F5F0E8;
  padding: 3.2rem 2.8rem;
  opacity: 1;
}
/* Override all white text to dark inside the beige card */
.ff-pricing__card--featured .ff-pricing__title { color: var(--ff-text); }
.ff-pricing__card--featured .ff-pricing__desc  { color: rgba(42,31,26,0.6); }
.ff-pricing__card--featured .ff-pricing__list li { color: rgba(42,31,26,0.65); border-bottom-color: rgba(42,31,26,0.07); }
.ff-pricing__card--featured .ff-pricing__list li::before { background: var(--ff-wine); }
.ff-pricing__card--featured .ff-pricing__price { color: var(--ff-text); }
.ff-pricing__card--featured:hover .ff-pricing__price { color: var(--ff-wine); }
.ff-pricing__card--featured .ff-pricing__note  { color: rgba(42,31,26,0.42); }
/* Remove wine glow on featured, use beige shimmer instead */
.ff-pricing__card--featured::after {
  content: 'Empfohlen';
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-family: var(--ff-body);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ff-wine);
  border: 1px solid rgba(125,32,39,0.25);
  padding: 0.28rem 0.7rem;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}
.ff-pricing__card--featured::before {
  background: linear-gradient(to right, transparent, rgba(42,31,26,0.06), transparent);
}
.ff-pricing__card--featured:hover {
  border-color: rgba(236,230,216,0.45);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35), 0 0 40px rgba(236,230,216,0.06);
}
/* All children above the glow pseudo */
.ff-pricing__card > * { position: relative; z-index: 1; }

.ff-pricing__tag {
  font-family: var(--ff-body); font-size: 0.58rem; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 600; color: var(--ff-wine);
  margin-bottom: 1.4rem; display: block;
}
.ff-pricing__title {
  font-family: var(--ff-serif); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500;
  color: #ffffff; margin-bottom: 1rem; line-height: 1.15; letter-spacing: -0.04em;
}
.ff-pricing__desc {
  font-family: var(--ff-serif); font-style: italic; font-weight: 500;
  color: rgba(255,255,255,0.48); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 2rem; letter-spacing: -0.02em;
}
.ff-pricing__list { list-style: none; margin-bottom: 2.5rem; }
.ff-pricing__list li {
  font-family: var(--ff-body); font-size: 0.82rem;
  color: rgba(255,255,255,0.52); padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 0.9rem;
}
/* Elegant small dot instead of line */
.ff-pricing__list li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ff-wine);
  flex-shrink: 0;
  opacity: 0.8;
}
.ff-pricing__price {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(1.25rem, 2.75vw, 1.75rem);
  color: #ffffff; margin-bottom: 0.4rem;
  letter-spacing: -0.05em; line-height: 1;
  transition: color 0.3s ease;
}
.ff-pricing__card:hover .ff-pricing__price { color: var(--ff-wine); }
.ff-pricing__note {
  font-family: var(--ff-body); font-size: 0.75rem;
  color: rgba(255,255,255,0.3); font-style: italic;
  line-height: 1.6; margin-bottom: 2.2rem;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.ff-faq__h2   { color: #ffffff; margin-bottom: 3rem; }
.ff-faq__grid { display: grid; gap: 0; }
.ff-faq__item { border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.ff-faq__item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.ff-faq__trigger { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.6rem 0; text-align: left; }
.ff-faq__question { font-family: var(--ff-serif); font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 500; color: #ffffff; line-height: 1.3; letter-spacing: -0.03em; }
.ff-faq__icon { flex-shrink: 0; width: 28px; height: 28px; border: 1px solid rgba(125,32,39,0.45); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.35s; color: var(--ff-wine); }
.ff-faq__item--open .ff-faq__icon { background: var(--ff-wine); border-color: var(--ff-wine); color: #ffffff; transform: rotate(45deg); }
.ff-faq__body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.ff-faq__item--open .ff-faq__body { max-height: 400px; }
.ff-faq__answer { font-family: var(--ff-body); color: rgba(255,255,255,0.65); font-size: clamp(0.88rem, 1.8vw, 0.96rem); line-height: 1.8; padding-bottom: 1.6rem; }

/* ── ABOUT ───────────────────────────────────────────────── */
.ff-about__grid { display: grid; gap: 4rem; align-items: start; }
.ff-about__image-wrap { position: relative; }
.ff-about__image-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; filter: sepia(22%) contrast(1.08) brightness(0.97); display: block; }
/* More dramatic offset frame */
.ff-about__image-frame { position: absolute; top: 20px; right: -20px; bottom: -20px; left: 20px; border: 1px solid rgba(125,32,39,0.3); pointer-events: none; z-index: -1; }
/* Hide old tag */
.ff-about__image-tag { display: none; }
/* Name overlay at bottom of portrait */
.ff-about__image-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 4rem 1.5rem 1.8rem; background: linear-gradient(to top, rgba(26,17,10,0.78) 0%, transparent 100%); }
.ff-about__image-overlay-name { font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; letter-spacing: -0.03em; color: #ffffff; line-height: 1.1; display: block; }
.ff-about__image-overlay-role { font-family: var(--ff-body); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--ff-wine); display: block; margin-top: 0.5rem; }
.ff-about__name  { color: var(--ff-text); margin-bottom: 0.3rem; }
.ff-about__role  { font-family: var(--ff-body); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--ff-wine); margin-bottom: 2.5rem; display: block; }
.ff-about__body  { font-family: var(--ff-body); color: var(--ff-text); margin-bottom: 1.5rem; font-size: clamp(0.92rem, 1.8vw, 1rem); line-height: 1.8; }
.ff-about__closing { font-family: var(--ff-serif); font-style: italic; font-weight: 500; color: var(--ff-wine-deep); font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.6; margin-top: 0.5rem; letter-spacing: -0.03em; }
.ff-about__skills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.ff-skill-tag { font-family: var(--ff-body); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ff-text); border: 1px solid rgba(42,31,26,0.18); padding: 0.35rem 0.85rem; border-radius: 2px; transition: all 0.3s; }
.ff-skill-tag:hover { background: var(--ff-wine); border-color: var(--ff-wine); color: #ffffff; }

/* ── CTA ─────────────────────────────────────────────────── */
.ff-cta__radial { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(148,114,104,0.1) 0%, transparent 65%); pointer-events: none; }
.ff-cta__wine-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--ff-wine), transparent); }
.ff-cta__h2  { color: #ffffff; margin-bottom: 1.5rem; }
.ff-cta__body { font-family: var(--ff-body); color: rgba(255,255,255,0.62); max-width: 520px; margin: 0 auto 3rem; font-size: 0.95rem; line-height: 1.8; }

/* ── FOOTER ──────────────────────────────────────────────── */
.ff-footer__inner { max-width: var(--ff-container); margin: 0 auto; padding: 3rem 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; border-top: 1px solid rgba(125,32,39,0.2); }
.ff-footer__logo { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.28); letter-spacing: -0.02em; }
.ff-footer__logo-amp { color: var(--ff-wine); opacity: 0.55; }
.ff-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; list-style: none; }
.ff-footer__link { font-family: var(--ff-body); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,0.18); transition: color 0.3s; text-decoration: none; }
.ff-footer__link:hover { color: rgba(255,255,255,0.52); }
.ff-footer__copy { font-family: var(--ff-body); font-size: 0.62rem; color: rgba(255,255,255,0.1); letter-spacing: 0.06em; }

/* ── REVEAL ──────────────────────────────────────────────── */
.ff-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s ease, transform 0.85s ease; }
.ff-reveal--visible { opacity: 1; transform: translateY(0); }
.ff-reveal--delay-1 { transition-delay: 0.1s; }
.ff-reveal--delay-2 { transition-delay: 0.22s; }
.ff-reveal--delay-3 { transition-delay: 0.36s; }

/* ── MOBILE HERO TYPOGRAPHY ──────────────────────────────── */
@media (max-width: 767px) {
  /* ── Hero ── */
  .ff-hero__h1 { font-size: 3.2rem !important; }
  .ff-hero__h2 { font-size: 1.4rem; }
  .ff-hero__inner { padding: calc(var(--ff-nav-h) + 1.8rem) 1.2rem 0; }
  .ff-hero__sticky-block { padding: 1.4rem 1.2rem 2.5rem; }

  /* ── Eyebrow: no wrap on mobile ── */
  .ff-hero__eyebrow { font-size: 0.48rem; letter-spacing: 0.18em; }

  /* ── Section padding ── */
  :root { --ff-gap: clamp(2.5rem, 7vw, 4rem); }
  .ff-section-pad { padding: clamp(2.5rem, 7vw, 4rem) 0; }
  .ff-container { padding: 0 1.2rem; }

  /* ── Process step padding ── */
  .ff-process__step { padding: 2rem 0; }

  /* ── Pricing: stack cards ── */
  .ff-pricing__grid { grid-template-columns: 1fr; }
  .ff-pricing__card--featured { padding: 2.4rem 2rem; }

  /* ── FAQ: stack columns ── */
  .ff-faq__grid { grid-template-columns: 1fr; }
  .ff-faq__col + .ff-faq__col { margin-top: 0; }
  .ff-faq__col .ff-faq__item:first-child { border-top: none; }

  /* ── About: stack image + text ── */
  .ff-about__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* ── Situation: single column borders ── */
  .ff-situation { border-right: none !important; padding: 1.4rem 0 !important; }

  /* ── Process: reset desktop offset ── */
  .ff-section--float-left .ff-container {
    margin-right: auto;
    max-width: 100%;
    transform: none;
  }
  .ff-section--float-right .ff-container {
    margin-left: auto;
    max-width: 100%;
  }

  /* ── Hero scroll drift: reduce on mobile ── */
  .ff-hero__h1-block { min-height: 55vw; }
}

@media (max-width: 400px) {
  .ff-hero__h1 { font-size: 2.8rem !important; }
  .ff-hero__eyebrow { font-size: 0.44rem; letter-spacing: 0.14em; }
}

/* ── DESKTOP 768px ───────────────────────────────────────── */
@media (min-width: 768px) {
  .ff-nav__anchors { display: flex; }
  .ff-nav__cta     { display: inline-flex; }
  .ff-nav          { padding: 0 2.5rem; }
  .ff-hero__inner  { padding: calc(var(--ff-nav-h) + 3rem) 3rem 5rem; }
  .ff-container    { padding: 0 2.5rem; }
  .ff-problem__cols { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ff-situation-grid { grid-template-columns: repeat(3, 1fr); gap: 0 1.5rem; }
  .ff-situation { border-bottom: none; border-right: 1px solid rgba(42,31,26,0.1); padding: 0 2rem 0 0; }
  .ff-situation:last-child { border-right: none; padding-right: 0; }
  .ff-situation:first-child { padding-left: 0; }
  .ff-process__grid { grid-template-columns: 1fr 1fr; gap: 0 4rem; align-items: start; }
  .ff-process__grid .ff-process__step { border-bottom: none; }
  .ff-pricing__grid { grid-template-columns: 1fr 1.25fr; align-items: start; }
  .ff-faq__grid { grid-template-columns: 1fr 1fr; gap: 0 5rem; }
  .ff-faq__col .ff-faq__item { border-top: none; }
  .ff-faq__col .ff-faq__item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
  .ff-about__grid { grid-template-columns: 1fr 1.6fr; gap: 5rem; }
}

/* ── DESKTOP 1024px ──────────────────────────────────────── */
@media (min-width: 1024px) {
  .ff-nav          { padding: 0 3.5rem; }
  .ff-hero__inner  { padding: calc(var(--ff-nav-h) + 3.5rem) 4rem 5.5rem; }
  .ff-container    { padding: 0 3.5rem; }

  /* Situationen: wider container */
  #situationen .ff-container {
    max-width: 80%;
    padding: 0 2rem;
    margin: 0 auto;
  }
  /* Float-adjacent sections: text pushed to non-float side */
  /* Section 02: wider, less left margin, 2-col body text */
  .ff-section--float-right .ff-container {
    margin-left: 2rem; margin-right: auto;
    max-width: 700px; padding: 0 1.5rem;
  }
  /* Section 05: mittig + 10% nach rechts */
  .ff-section--float-left .ff-container {
    margin-left: auto;
    margin-right: 3rem;
    max-width: 680px;
    padding: 0 1.5rem;
    transform: none;
  }
  /* Section 02: allow 2-col problem text in wider container */
  .ff-section--float-right .ff-problem__cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ff-section--float-left  .ff-problem__cols { grid-template-columns: 1fr; }
  /* Restore 2-col for process in float-left section */
  .ff-section--float-left  .ff-process__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    align-items: start;
  }
  .ff-section--float-left .ff-process__grid .ff-process__step { border-bottom: none; }
  .ff-section--pad-top-float { padding-top: calc(var(--ff-gap) + var(--ff-float-overlap)); }
}

/* ── HERO STICKY BLOCK ENTER ──────────────────────────────── */
.ff-hero__sticky-block {
  opacity: 0;
  transition: opacity 0.7s ease 0.5s;
}
.ff-hero--animate .ff-hero__sticky-block {
  opacity: 1;
}
/* Neutralise the old per-element JS-driven transitions on sticky children */
.ff-hero__sticky-block .ff-hero__h2,
.ff-hero__sticky-block .ff-hero__recognition,
.ff-hero__sticky-block .ff-hero__tagline,
.ff-hero__sticky-block .ff-hero__sub,
.ff-hero__sticky-block .ff-hero__btn-wrap,
.ff-hero__sticky-block .ff-hero__divider {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ── FAQ on wine background ───────────────────────────────── */
#faq .ff-section-label { color: rgba(255,255,255,0.45); }
#faq .ff-faq__h2 { color: #ffffff; }
#faq .ff-faq__item { border-bottom-color: rgba(255,255,255,0.12); }
#faq .ff-faq__item:first-child,
#faq .ff-faq__col .ff-faq__item:first-child { border-top-color: rgba(255,255,255,0.12); }
#faq .ff-faq__question { color: #ffffff; }
#faq .ff-faq__answer { color: rgba(255,255,255,0.72); }
#faq .ff-faq__icon { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
#faq .ff-faq__item--open .ff-faq__icon { background: rgba(255,255,255,0.15); border-color: transparent; color: #ffffff; }


100% { transform: translateX(-50%); }
}

/* ── SITUATIONEN on wine background ──────────────────────── */
/* situationen wine overrides removed */


/* ── CTA on ivory background ──────────────────────────────── */
#cta .ff-section-label { color: var(--ff-wine); }
#cta .ff-cta__h2 { color: var(--ff-text); }
#cta .ff-cta__body { color: rgba(42,31,26,0.65); }
#cta .ff-btn--outline { color: var(--ff-text); border-color: rgba(42,31,26,0.3); }
#cta .ff-btn--outline:hover { background: var(--ff-wine); color: #ffffff; border-color: var(--ff-wine); }
#cta .ff-cta__radial { display: none; }
#cta .ff-cta__wine-bar { display: none; }

/* ── ABOUT on ivory background ────────────────────────────── */
#ueber-mich .ff-section-label { color: var(--ff-wine); }
#ueber-mich .ff-about__name   { color: var(--ff-text); }
#ueber-mich .ff-about__role   { color: var(--ff-cinereous); }
#ueber-mich .ff-about__body   { color: rgba(42,31,26,0.72); }
#ueber-mich .ff-about__closing { color: var(--ff-wine-deep); }

/* ── BEWERBUNGS-MODAL ─────────────────────────────────────── */
.ff-modal {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.ff-modal--open {
  opacity: 1; pointer-events: all;
}
.ff-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(26,17,10,0.65);
  backdrop-filter: blur(6px);
}
.ff-modal__box {
  position: relative; z-index: 1;
  background: #F5F0E8;
  border-radius: 20px;
  padding: 3rem 2.8rem;
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.35s ease;
  border: 1px solid rgba(42,31,26,0.08);
}
.ff-modal--open .ff-modal__box {
  transform: translateY(0);
}
.ff-modal__close {
  position: absolute; top: 1.4rem; right: 1.4rem;
  background: none; border: none; cursor: pointer;
  color: rgba(42,31,26,0.4); padding: 4px;
  transition: color 0.2s;
}
.ff-modal__close:hover { color: var(--ff-text); }
.ff-modal__eyebrow {
  font-family: var(--ff-body); font-size: 0.55rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600; color: var(--ff-wine);
  display: block; margin-bottom: 1rem;
}
.ff-modal__title {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--ff-text); line-height: 1.1;
  letter-spacing: -0.04em; margin-bottom: 0.8rem;
}
.ff-modal__desc {
  font-family: var(--ff-body); font-size: 0.9rem;
  color: rgba(42,31,26,0.6); line-height: 1.7;
  margin-bottom: 2rem;
}
.ff-modal__form { display: flex; flex-direction: column; gap: 1.2rem; }
.ff-modal__field { display: flex; flex-direction: column; gap: 0.4rem; }
.ff-modal__label {
  font-family: var(--ff-body); font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(42,31,26,0.5);
}
.ff-modal__input {
  font-family: var(--ff-body); font-size: 0.92rem;
  color: var(--ff-text); background: rgba(42,31,26,0.04);
  border: 1px solid rgba(42,31,26,0.15);
  border-radius: 6px; padding: 0.75rem 1rem;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.ff-modal__input:focus { border-color: var(--ff-wine); }
.ff-modal__input::placeholder { color: rgba(42,31,26,0.3); }
.ff-modal__textarea { min-height: 120px; resize: vertical; }
.ff-modal__submit {
  font-family: var(--ff-body); font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #ffffff;
  background: var(--ff-wine); border: none;
  padding: 0.9rem 2rem; border-radius: 2px;
  cursor: pointer; display: flex; align-items: center;
  gap: 0.6rem; transition: background 0.2s; margin-top: 0.4rem;
}
.ff-modal__submit:hover { background: var(--ff-wine-deep); }
.ff-modal__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.ff-modal__privacy {
  font-family: var(--ff-body); font-size: 0.72rem;
  color: rgba(42,31,26,0.35); line-height: 1.6; margin-top: 0.2rem;
}
.ff-modal__success {
  display: none; flex-direction: column;
  align-items: center; text-align: center; padding: 2rem 0;
  gap: 1rem;
}
.ff-modal__success-icon {
  font-size: 2rem; color: var(--ff-wine); margin-bottom: 0.5rem;
}
.ff-modal__field-error {
  font-family: var(--ff-body); font-size: 0.72rem;
  color: var(--ff-wine); display: block; margin-top: 0.2rem;
}
.ff-modal__error {
  font-family: var(--ff-body); font-size: 0.82rem;
  color: var(--ff-wine); margin-bottom: 1rem;
  padding: 0.6rem 1rem;
  background: rgba(125,32,39,0.06);
  border-radius: 6px; border: 1px solid rgba(125,32,39,0.15);
}
.ff-modal__input[aria-invalid="true"] { border-color: var(--ff-wine); }

/* ── LUXURIOUS SCRIPT LOGO ────────────────────────────────── */
.ff-nav__logo--script,
.ff-footer__logo--script {
  font-family: 'Luxurious Script', cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  font-size: 1.5rem;
}
.ff-nav__logo--script { font-size: 1.6rem; }
.ff-footer__logo--script { font-size: 1.3rem; }
.ff-nav__logo--script .ff-nav__logo-amp,
.ff-footer__logo--script .ff-footer__logo-amp { color: var(--ff-wine); }

/* Abbreviated logo f&f variant */
.ff-logo--abbr {
  font-family: 'Luxurious Script', cursive;
  font-weight: 400;
  letter-spacing: -0.08em;
  color: var(--ff-wine);
}


/* ── SITUATIONEN: ivory background ───────────────────────── */
#situationen.ff-bg-wine-deep,
#situationen.ff-bg-wine {
  background: #F5F0E8 !important;
}
#situationen .ff-section-label { color: var(--ff-wine); }
#situationen .ff-situation { border-bottom-color: rgba(42,31,26,0.1); border-right-color: rgba(42,31,26,0.1); }
#situationen .ff-situation__number { color: rgba(42,31,26,0.08); }
#situationen .ff-situation__h3 { color: var(--ff-wine-deep); }
#situationen .ff-situation__body { color: rgba(42,31,26,0.72); }
#situationen .ff-situation__close { color: var(--ff-wine-deep); }
/* ── ABOUT MORE LINK ──────────────────────────────────────── */
.ff-about__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-wine);
  margin-top: 1.5rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(125,32,39,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.ff-about__more-link:hover { color: var(--ff-wine-deep); border-color: var(--ff-wine-deep); }
/* ── WARUM: accordion body overflow fix on mobile ────────── */
@media (max-width: 767px) {
  .dp-acc-item--open .dp-acc-body { max-height: 2400px; }
  .dp-acc-body__inner { grid-template-columns: 1fr; }
  .dp-acc-result { padding-bottom: 2rem; }
}

/* ── SITUATIONEN 2x2 GRID ─────────────────────────────────── */
#situationen .ff-situation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  #situationen .ff-situation-grid {
    grid-template-columns: 1fr 1fr;
  }
  #situationen .ff-situation:nth-child(odd) {
    border-right: 1px solid rgba(42,31,26,0.1);
  }
  #situationen .ff-situation:nth-child(1),
  #situationen .ff-situation:nth-child(2) {
    border-bottom: 1px solid rgba(42,31,26,0.1);
  }
}

/* ── SITUATIONEN TYPOGRAFISCHES LAYOUT ───────────────────── */
.ff-typ-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.ff-typ-divider { height: 1px; background: rgba(42,31,26,0.08); }
.ff-typ-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 0;
}
.ff-typ-num {
  font-family: var(--ff-body);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ff-wine);
  display: block;
  margin-bottom: 0.6rem;
}
.ff-typ-h {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
  color: var(--ff-text);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.ff-typ-body {
  font-family: var(--ff-body);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: rgba(42,31,26,0.62);
  line-height: 1.85;
  margin-bottom: 0.7rem;
}
.ff-typ-close {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: var(--ff-wine);
  display: block;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .ff-typ-item {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    padding: 2.5rem 0;
  }
}

/* ── S4 WAS WIR MACHEN ────────────────────────────────────── */
.ff-s4-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 720px;
}
.ff-s4-body {
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(42,31,26,0.72);
  line-height: 1.9;
}
@media (min-width: 768px) {
  .ff-s4-cols { grid-template-columns: 1fr 1fr; gap: 3rem; }
}