/* ============================================================
   FÄH CONSULTING — STYLESHEET VARIANTE D
   Aesthetic: warm paper · human · narrative
   Tokens: paper · panel · ink · accent(green) · warm(ochre)
   Fonts: DM Serif Display + Inter + Caveat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@400;600&display=swap');

/* ── TOKENS ── */
:root {
  --paper:    #f7f2ea;
  --panel:    #ede5d5;
  --ink:      #21201c;
  --mute:     rgba(33,32,28,0.62);
  --rule:     rgba(33,32,28,0.16);
  --accent:   #3f7a4c;
  --warm:     #c28a3f;

  /* Legacy aliases — sub-page components */
  --navy:     #21201c;
  --navy2:    #2e2d28;
  --navy3:    #3a3930;
  --gold:     #3f7a4c;
  --gold2:    #4d9060;
  --white:    #ffffff;
  --off:      #f7f2ea;
  --gray50:   #f0ede8;
  --gray200:  #e5ddd0;
  --gray400:  #a09b92;
  --gray600:  rgba(33,32,28,0.68);
  --text:     #21201c;
  --max:      1360px;
  --nav-h:    72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
h1,h2,h3,h4,h5 { margin: 0; }
button { cursor: pointer; border: none; background: none; padding: 0; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ── TYPOGRAPHY ── */
.t-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}
.t-h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(56px, 7.5vw, 104px);
  font-weight: 400; color: var(--ink); line-height: 1.0; letter-spacing: -0.02em;
}
.t-h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 400; color: var(--ink); line-height: 1.02; letter-spacing: -0.02em;
}
.t-h2--white { color: var(--paper); }
.t-h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em;
}
.t-lead { font-size: 19px; line-height: 1.55; color: var(--ink); }
.t-body { font-size: 16px; line-height: 1.6; color: var(--mute); }
.t-small { font-size: 15px; line-height: 1.75; color: var(--mute); }
.t-hand {
  font-family: 'Caveat', cursive;
  font-size: clamp(22px, 2vw, 30px);
  color: var(--accent);
}

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 14px;
  padding: 15px 26px;
  border-radius: 999px;
  transition: all .2s ease; cursor: pointer;
}
.btn--primary {
  background: var(--ink); color: var(--paper);
  border: 1.5px solid var(--ink);
}
.btn--primary:hover { opacity: .85; }

.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--rule);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--cta {
  background: var(--accent); color: var(--paper);
  border: 1.5px solid var(--accent);
}
.btn--cta:hover { opacity: .88; }

.btn--paper {
  background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--paper);
}
.btn--paper:hover { opacity: .9; }

/* Legacy button aliases */
.btn--gold  { background: var(--accent); color: #fff; border: 1.5px solid var(--accent); border-radius: 999px; }
.btn--gold:hover { opacity: .85; }
.btn--navy  { background: var(--ink); color: var(--paper); border: 1.5px solid var(--ink); border-radius: 999px; }
.btn--navy:hover { opacity: .85; }
.btn--ghost-w { background: transparent; color: rgba(247,242,234,.85); border: 1.5px solid rgba(247,242,234,.3); border-radius: 999px; }
.btn--ghost-w:hover { border-color: var(--paper); color: var(--paper); }
.btn--ghost-n { background: transparent; color: var(--ink); border: 1.5px solid var(--rule); border-radius: 999px; }
.btn--ghost-n:hover { border-color: var(--ink); }
.btn svg { flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section--navy  { background: var(--ink); }
.section--off   { background: var(--panel); }
.section--white { background: var(--paper); }
.section--gold  { background: var(--accent); }

.section-hd { text-align: center; margin-bottom: 56px; }
.section-hd .t-h2 { margin-bottom: 14px; }
.section-hd .t-body { max-width: 520px; margin: 0 auto; }

/* ── GOLD BAR (legacy; used on sub-pages) ── */
.gold-bar { width: 44px; height: 3px; background: var(--accent); }


/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(33,32,28,.08); }

.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  height: var(--nav-h); display: flex; align-items: center; gap: 32px;
}
@media (max-width: 640px) { .nav__inner { padding: 0 20px; } }

/* Logo */
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; white-space: nowrap;
}
.nav__logo-badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 17px;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; letter-spacing: -0.01em;
  color: var(--ink);
}

/* Menu */
.nav__menu { flex: 1; display: flex; justify-content: center; align-items: center; gap: 0; }
.nav__item { position: relative; }
.nav__link {
  display: block; padding: 8px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--mute); transition: color .2s ease; white-space: nowrap;
}
.nav__link:hover,
.nav__item.active > .nav__link { color: var(--ink); }

/* Nav Dropdown */
.nav__sub {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--paper); border: 1px solid var(--rule);
  min-width: 220px; padding: 12px 0 8px;
  box-shadow: 0 16px 48px rgba(33,32,28,.12); z-index: 100;
  border-radius: 8px;
}
.nav__sub::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav__item:hover .nav__sub { display: block; }
.nav__sub a {
  display: block; padding: 10px 20px;
  font-size: 13px; color: var(--mute); transition: all .2s ease;
}
.nav__sub a:hover { color: var(--ink); background: var(--panel); }

/* Nav CTA */
.nav__cta { flex-shrink: 0; font-size: 13px; padding: 10px 20px; }

/* Language Switcher */
.lang-switcher { display:flex; align-items:center; gap:1px; margin-right:8px; flex-shrink:0; }
.lang-btn {
  background:none; border:1px solid transparent; cursor:pointer;
  font-family:'Inter',sans-serif; font-size:12px; font-weight:600;
  letter-spacing:.06em; color: var(--mute);
  padding:4px 7px; border-radius:3px; line-height:1;
  transition:color .2s, border-color .2s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { color: var(--ink); border-color: var(--rule); font-weight:700; }

/* Burger */
.nav__burger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; padding: 8px; margin-left: auto;
  width: 44px; height: 44px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: all .25s ease; transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════
   HERO — VARIANTE D (two-column)
   ═══════════════════════════════════════════════ */
.hero {
  background: var(--paper);
  padding: 40px 0 72px;
  position: relative;
}
.hero .container { max-width: var(--max); }

.hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.hero__left { padding-top: 40px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 10px;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 12px; color: var(--ink);
  margin-bottom: 32px;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

.hero__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(56px, 7.5vw, 104px);
  font-weight: 400; color: var(--ink);
  line-height: 1.0; letter-spacing: -0.022em;
  margin: 0;
}

/* Underline on "Zukunft" */
.hero__underline {
  position: relative; display: inline-block;
}
.hero__underline svg {
  position: absolute; left: -6px; bottom: 6px;
  width: calc(100% + 12px); height: 18px;
  z-index: 0;
}
.hero__underline span { position: relative; z-index: 1; }

.hero__lead {
  font-size: 19px; line-height: 1.55;
  color: var(--ink); margin-top: 36px; max-width: 560px;
}

.hero__ctas {
  display: flex; gap: 16px; margin-top: 40px;
  align-items: center; flex-wrap: wrap;
}
.hero__annotation {
  font-family: 'Caveat', cursive;
  font-size: 22px; color: var(--accent);
  transform: rotate(-4deg);
  display: inline-block; margin-left: 4px;
}

.hero__stats {
  display: flex; gap: 40px;
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.hero__stat-n {
  font-family: 'DM Serif Display', serif;
  font-size: 44px; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__stat-l {
  font-size: 13px; color: var(--mute); margin-top: 6px;
}

/* Portrait column */
.hero__right { position: relative; }

.hero__portrait-wrap {
  width: 100%; height: 640px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--rule);
  transform: rotate(1.5deg);
  box-shadow: 0 20px 60px -20px rgba(33,32,28,0.18);
}
.hero__portrait-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Sticky note */
.hero__sticky {
  position: absolute; top: 40px; left: -32px;
  width: 190px; padding: 14px 16px;
  background: #fef4a8;
  font-family: 'Caveat', cursive; font-size: 18px;
  color: #5a4a2a; line-height: 1.3;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transform: rotate(-6deg);
  z-index: 2;
}

/* Signature card */
.hero__sig {
  position: absolute; bottom: 24px; right: -20px;
  padding: 14px 20px;
  background: var(--paper); border-radius: 12px;
  border: 1px solid var(--rule);
  transform: rotate(-2deg);
  box-shadow: 0 8px 24px rgba(33,32,28,.08);
  z-index: 2;
}
.hero__sig-name {
  font-family: 'Caveat', cursive; font-size: 32px;
  color: var(--ink); line-height: 0.9; margin-bottom: 6px;
}
.hero__sig-role { font-size: 13px; color: var(--mute); }


/* ═══════════════════════════════════════════════
   SERVICES — VARIANTE D
   ═══════════════════════════════════════════════ */
.services {
  padding: 80px 0;
  background: var(--panel);
}

.services__header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px;
}
.services__header-left { max-width: 720px; }
.services__eyebrow {
  font-family: 'Caveat', cursive; font-size: 28px;
  color: var(--accent); margin-bottom: 6px;
}
.services__sub {
  font-size: 15px; color: var(--mute);
  max-width: 340px; line-height: 1.5;
}

.services__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}

.service-card {
  padding: 32px 30px 36px;
  background: var(--paper); border-radius: 20px;
  border: 1px solid var(--rule);
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.service-card:nth-child(1) { transform: rotate(-0.8deg); }
.service-card:nth-child(2) { transform: rotate(0deg); }
.service-card:nth-child(3) { transform: rotate(0.8deg); }
.service-card:hover { box-shadow: 0 16px 48px rgba(33,32,28,.1); transform: rotate(0) translateY(-4px) !important; }

.service-card__num {
  position: absolute; top: -14px; right: 22px;
  padding: 4px 12px;
  background: var(--ink); color: var(--paper);
  font-size: 11px; letter-spacing: .08em;
  border-radius: 999px;
}
.service-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  margin-bottom: 22px;
}
.service-card__icon--warm { background: var(--warm); }
.service-card__icon--accent { background: var(--accent); }
.service-card__icon--ink { background: var(--ink); }

.service-card__title {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 28px; letter-spacing: -0.02em;
  line-height: 1.1; color: var(--ink); margin-bottom: 14px;
}
.service-card__text {
  font-size: 15px; line-height: 1.55; color: var(--mute);
  margin-bottom: 20px;
}
.service-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.service-card__tag {
  padding: 6px 12px;
  background: var(--panel); border-radius: 999px;
  font-size: 12px; color: var(--ink);
}
.service-card__more {
  padding-top: 16px;
  border-top: 1px dashed var(--rule);
  font-size: 13px; color: var(--accent); font-weight: 500;
}

/* Legacy card classes for sub-pages */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  background: var(--paper); padding: 40px 32px 36px;
  border-radius: 16px; border: 1px solid var(--rule);
  position: relative; overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(33,32,28,.1); }
.card__num {
  font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 18px; display: block;
}
.card__icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 20px; }
.card__title {
  font-family: 'DM Serif Display', serif; font-size: 22px;
  font-weight: 400; color: var(--ink); margin-bottom: 12px; line-height: 1.2;
}
.card__text { font-size: 15px; line-height: 1.75; color: var(--mute); margin-bottom: 24px; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.card__tag {
  font-size: 12px; font-weight: 500; color: var(--ink);
  background: var(--panel); padding: 6px 13px; border-radius: 999px;
}


/* ═══════════════════════════════════════════════
   IMAGE BANNERS
   ═══════════════════════════════════════════════ */
.img-banner {
  position: relative; height: 380px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.img-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(33,32,28,0.52);
}
.img-banner__inner {
  position: relative; z-index: 2; text-align: center; padding: 0 48px;
}
.img-banner__quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.4vw, 34px);
  color: var(--paper); font-style: italic; line-height: 1.4;
  max-width: 820px; margin: 0 auto 20px;
}
.img-banner__author {
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(247,242,234,0.75);
}
.img-banner--alps {
  background-image: url('../images/banner-alps.jpg');
  background-position: center 65%;
}
.img-banner--future {
  background-image: url('../images/banner-future.jpg');
  background-position: center top;
}
@media (max-width: 640px) {
  .img-banner { height: 240px; }
  .img-banner__inner { padding: 0 24px; }
}


/* ═══════════════════════════════════════════════
   WHY FÄH (light section — Variante D)
   ═══════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-lead { font-size: 17px; line-height: 1.8; color: var(--mute); margin-top: 16px; }

.features { display: flex; flex-direction: column; }
.feature { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--rule); }
.feature:last-child { border-bottom: 1px solid var(--rule); }
.feature__icon { width: 32px; height: 32px; flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.feature__name { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.feature__desc { font-size: 14px; line-height: 1.65; color: var(--mute); }


/* ═══════════════════════════════════════════════
   PROCESS — VARIANTE D
   ═══════════════════════════════════════════════ */
.process {
  padding: 96px 0;
  background: var(--paper);
}
.process__eyebrow {
  font-family: 'Caveat', cursive; font-size: 28px;
  color: var(--warm); margin-bottom: 6px;
}
.process__title {
  font-family: 'DM Serif Display', serif; font-size: clamp(28px, 4vw, 56px);
  font-weight: 400; letter-spacing: -0.02em; color: var(--ink);
  margin: 0 0 48px; max-width: 720px;
}

.process__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 32px; position: relative;
}
.process__grid-wave {
  position: absolute; top: 36px; left: 16%; width: 68%; height: 30px; z-index: 0;
}

.process-step { position: relative; z-index: 1; }
.process-step__circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 32px;
  color: var(--ink); margin-bottom: 22px;
}
.process-step__title {
  font-family: 'DM Serif Display', serif; font-size: 28px;
  font-weight: 400; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 10px;
}
.process-step__text {
  font-size: 15px; line-height: 1.55; color: var(--mute); max-width: 360px;
}

/* Legacy steps for sub-pages */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 35px;
  left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 1px; background: var(--rule);
}
.step { text-align: center; padding: 0 16px; }
.step__circle {
  width: 70px; height: 70px; border-radius: 50%; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
}
.step__n {
  font-family: 'DM Serif Display', serif; font-size: 24px;
  font-weight: 400; color: var(--paper);
}
.step__title {
  font-family: 'DM Serif Display', serif; font-size: 20px;
  font-weight: 400; color: var(--ink); margin-bottom: 12px;
}
.step__text { font-size: 15px; line-height: 1.75; color: var(--mute); }


/* ═══════════════════════════════════════════════
   ABOUT / PHOTO
   ═══════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }

.photo-wrap { position: relative; }
.photo-box {
  background: var(--panel);
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  border-radius: 16px;
}
.photo-box img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.photo-box__svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(transparent, rgba(33,32,28,.75)); z-index: 1; }
.photo-label { position: absolute; bottom: 24px; left: 24px; z-index: 2; }
.photo-label__name {
  font-family: 'DM Serif Display', serif; font-size: 20px;
  font-weight: 400; color: var(--paper); margin-bottom: 4px;
}
.photo-label__role { font-size: 11px; color: rgba(247,242,234,.75); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.photo-gold { position: absolute; bottom: -16px; right: -16px; width: 80px; height: 80px; background: var(--warm); opacity: .2; z-index: -1; border-radius: 8px; }

.about-body { font-size: 16px; line-height: 1.85; color: var(--mute); margin-bottom: 18px; }
.quote-block {
  border-left: 3px solid var(--accent); padding: 20px 24px; margin: 24px 0;
  background: var(--panel);
  font-family: 'DM Serif Display', serif; font-size: 18px; line-height: 1.6;
  color: var(--ink); font-style: italic;
}

.creds { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.cred { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--ink); }
.cred__check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff; font-size: 11px; font-weight: 700;
}


/* ═══════════════════════════════════════════════
   CTA CARD — VARIANTE D (dark, rounded)
   ═══════════════════════════════════════════════ */
.cta-card-wrap {
  padding: 0 48px 72px;
}
.cta-card {
  padding: 64px;
  background: var(--ink); color: var(--paper);
  border-radius: 28px;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; overflow: hidden;
  gap: 40px;
}
.cta-card__deco {
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%; background: var(--accent); opacity: 0.6;
  pointer-events: none;
}
.cta-card__left { position: relative; }
.cta-card__eyebrow {
  font-family: 'Caveat', cursive; font-size: 30px;
  color: var(--warm); margin-bottom: 6px;
}
.cta-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 72px); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--paper); margin: 0; max-width: 700px;
}
.cta-card__sub {
  margin-top: 24px; font-size: 16px;
  color: rgba(247,242,234,0.72); max-width: 520px; line-height: 1.55;
}
.cta-card__btn { position: relative; flex-shrink: 0; }

/* Legacy CTA banner */
.cta-banner { padding: 80px 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px,3vw,36px); font-weight: 400; color: var(--paper);
  margin-bottom: 8px; line-height: 1.2;
}
.cta-banner__sub { font-size: 16px; color: rgba(247,242,234,.9); }


/* ═══════════════════════════════════════════════
   FOOTER — VARIANTE D
   ═══════════════════════════════════════════════ */
.footer { background: var(--paper); border-top: 1px solid var(--rule); }
.footer__main { padding: 64px 0; }
.footer__inner {
  display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start;
}
.footer__logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo-badge {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 13px;
}
.footer__logo {
  font-family: 'DM Serif Display', serif; font-size: 18px;
  font-weight: 400; color: var(--ink); display: block; margin-bottom: 0;
}
.footer__logo em { font-style: normal; }
.footer__tagline { font-size: 14px; font-weight: 500; color: var(--mute); margin: 0 0 12px; line-height: 1.5; }
.footer__desc { font-size: 13px; line-height: 1.8; color: var(--mute); margin: 0 0 24px; }
.footer__contact { margin-bottom: 24px; }
.footer__contact a { font-size: 14px; color: var(--mute); transition: color .2s; }
.footer__contact a:hover { color: var(--ink); }

.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; padding-top: 4px; }
.footer__col-title {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 16px;
}
.footer__col a { display: block; font-size: 13px; color: var(--mute); margin-bottom: 9px; transition: color .2s; }
.footer__col a:hover { color: var(--ink); }

.footer__bottom { border-top: 1px solid var(--rule); padding: 20px 0; }
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--mute); gap: 20px; flex-wrap: wrap;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--mute); transition: color .2s; }
.footer__legal a:hover { color: var(--ink); }


/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════ */
.page-hero {
  background: var(--panel);
  padding: 72px 0; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; }
.page-hero__breadcrumb {
  font-size: 12px; color: var(--mute); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: var(--mute); transition: color .2s; }
.page-hero__breadcrumb a:hover { color: var(--ink); }
.page-hero__title {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 52px); color: var(--ink);
  letter-spacing: -0.02em; margin-bottom: 18px;
}
.page-hero__sub { font-size: 18px; line-height: 1.6; color: var(--mute); max-width: 540px; margin: 0 auto; }


/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; }
.quote-card { background: var(--paper); padding: 40px 36px; position: relative; border: 1px solid var(--rule); border-radius: 12px; }
.quote-card--dark { background: var(--ink); }
.quote-card::before {
  content: '"'; font-family: 'DM Serif Display', serif; font-size: 96px;
  color: var(--accent); opacity: .15; position: absolute; top: 8px; left: 28px; line-height: 1;
}
.quote-card__text {
  font-family: 'DM Serif Display', serif; font-size: 17px; line-height: 1.7;
  color: var(--ink); font-style: italic; margin-bottom: 24px; position: relative; z-index: 1;
}
.quote-card--dark .quote-card__text { color: var(--paper); }
.quote-card__author { display: flex; align-items: center; gap: 14px; }
.quote-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--panel);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 17px; font-weight: 400;
  color: var(--ink); flex-shrink: 0;
}
.quote-card--dark .quote-card__avatar { background: rgba(247,242,234,.1); color: var(--paper); }
.quote-card__name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.quote-card--dark .quote-card__name { color: var(--paper); }
.quote-card__role { font-size: 12px; color: var(--mute); letter-spacing: .02em; }
.quote-card--dark .quote-card__role { color: rgba(247,242,234,.55); }
.quote-card__result {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(63,122,76,0.2); position: relative; z-index: 1;
}
.testi-grid .quote-card:last-child:nth-child(odd) { grid-column: 1 / -1; }


/* ═══════════════════════════════════════════════
   CREDENTIALS GRID
   ═══════════════════════════════════════════════ */
.creds-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.cred-card {
  background: var(--paper); padding: 36px 32px;
  border-radius: 16px; border: 1px solid var(--rule);
  transition: box-shadow .25s;
}
.cred-card:hover { box-shadow: 0 8px 32px rgba(33,32,28,.08); }
.cred-card__icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 18px; }
.cred-card__title {
  font-family: 'DM Serif Display', serif; font-size: 19px;
  font-weight: 400; color: var(--ink); margin-bottom: 10px;
}
.cred-card__text { font-size: 14px; line-height: 1.75; color: var(--mute); }


/* ═══════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════ */
.timeline { display: flex; flex-direction: column; }
.tl-item {
  display: grid; grid-template-columns: 180px 1fr; gap: 40px;
  padding: 28px 0; border-top: 1px solid var(--rule);
}
.tl-item:last-child { border-bottom: 1px solid var(--rule); }
.tl-year { font-size: 13px; font-weight: 600; color: var(--warm); letter-spacing: .04em; padding-top: 3px; }
.tl-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.tl-text { font-size: 15px; line-height: 1.75; color: var(--mute); }


/* ═══════════════════════════════════════════════
   TOOL BLOCKS (tools.html)
   ═══════════════════════════════════════════════ */
.tool-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 64px 0; border-top: 1px solid var(--rule);
}
.tool-block:first-of-type { padding-top: 0; border-top: none; }
.tool-block--reverse { direction: rtl; }
.tool-block--reverse > * { direction: ltr; }
.tool-visual {
  background: var(--panel);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  border-radius: 16px; border: 1px solid var(--rule);
  position: relative; overflow: hidden; text-decoration: none;
}
a.tool-visual { cursor: pointer; }
a.tool-visual::after {
  content: 'Tool öffnen →';
  position: absolute; inset: 0;
  background: rgba(33,32,28,.82);
  color: var(--paper); display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  opacity: 0; transition: opacity .3s ease;
  border-radius: 16px;
}
a.tool-visual:hover::after { opacity: 1; }
.tool-visual__label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  background: rgba(33,32,28,.8); padding: 18px 22px; border-radius: 0 0 16px 16px;
}
.tool-visual__name {
  font-family: 'DM Serif Display', serif; font-size: 17px;
  font-weight: 400; color: var(--paper); margin-bottom: 3px;
}
.tool-visual__type { font-size: 11px; color: var(--warm); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.tool-body__num { font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--accent); text-transform: uppercase; margin-bottom: 14px; display: block; }
.tool-body__title {
  font-family: 'DM Serif Display', serif; font-size: 28px;
  font-weight: 400; color: var(--ink); margin-bottom: 14px; line-height: 1.2;
}
.tool-body__text { font-size: 16px; line-height: 1.8; color: var(--mute); margin-bottom: 22px; }
.tool-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.tool-feat { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink); font-weight: 500; }
.tool-feat__check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff; font-size: 10px; font-weight: 700; margin-top: 2px;
}


/* ═══════════════════════════════════════════════
   SECTORS
   ═══════════════════════════════════════════════ */
.sectors-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.sector {
  background: var(--paper); padding: 28px 20px; text-align: center;
  border-radius: 12px; border: 1px solid var(--rule);
  transition: box-shadow .25s;
}
.sector:hover { box-shadow: 0 6px 24px rgba(33,32,28,.07); }
.sector__icon { width: 36px; height: 36px; color: var(--accent); margin: 0 auto 12px; }
.sector__name { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: .02em; }


/* ═══════════════════════════════════════════════
   SERVICE DETAIL BLOCKS (Angebot page)
   ═══════════════════════════════════════════════ */
.svc-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 64px 0; border-top: 1px solid var(--rule);
}
.svc-block:first-of-type { padding-top: 0; border-top: none; }
.svc-block--alt { direction: rtl; }
.svc-block--alt > * { direction: ltr; }
.svc-visual {
  background: var(--panel);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 16px; border: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.svc-visual--gold { background: linear-gradient(135deg, var(--accent) 0%, #4d9060 100%); }
.svc-visual__num {
  font-family: 'DM Serif Display', serif; font-size: 100px; font-weight: 400;
  color: rgba(33,32,28,.06); position: absolute; bottom: -10px; right: 16px; line-height: 1;
}
.svc-body__num { font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--accent); text-transform: uppercase; margin-bottom: 14px; display: block; }
.svc-body__title {
  font-family: 'DM Serif Display', serif; font-size: clamp(22px,2.5vw,32px);
  font-weight: 400; color: var(--ink); margin-bottom: 16px; line-height: 1.2;
}
.svc-body__text { font-size: 15px; line-height: 1.8; color: var(--mute); margin-bottom: 24px; }
.svc-body__feats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.svc-body__feat { display: flex; gap: 14px; }
.svc-body__feat-ico { width: 28px; height: 28px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.svc-body__feat-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.svc-body__feat-desc { font-size: 13px; line-height: 1.6; color: var(--mute); }


/* ═══════════════════════════════════════════════
   DISCRETION NOTE
   ═══════════════════════════════════════════════ */
.note-box { display: flex; gap: 20px; align-items: flex-start; max-width: 700px; margin: 0 auto; }
.note-box__icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.note-box__title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.note-box__text { font-size: 15px; line-height: 1.8; color: var(--mute); }


/* ═══════════════════════════════════════════════
   IMPRESSUM
   ═══════════════════════════════════════════════ */
.impressum-body { max-width: 720px; }
.impressum-body h2 {
  font-family: 'DM Serif Display', serif; font-size: 22px;
  font-weight: 400; color: var(--ink); margin: 36px 0 12px;
}
.impressum-body h2:first-child { margin-top: 0; }
.impressum-body p, .impressum-body li { font-size: 15px; line-height: 1.8; color: var(--mute); margin-bottom: 12px; }
.impressum-body a { color: var(--accent); }


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav__menu, .nav__cta { display: none !important; }
  .nav__burger { display: flex !important; }

  .nav.mobile-open .nav__menu {
    display: flex !important; flex-direction: column; align-items: stretch;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--paper); padding: 24px 24px 120px; overflow-y: auto; z-index: 999;
    border-top: 1px solid var(--rule);
  }
  .nav.mobile-open .nav__menu .nav__link {
    font-size: 17px; padding: 18px 0; letter-spacing: 0;
    border-bottom: 1px solid var(--rule); color: var(--ink);
  }
  .nav.mobile-open .nav__sub {
    position: static; display: block; box-shadow: none; border: none;
    background: transparent; padding: 0 0 8px 20px; min-width: 0;
  }
  .nav.mobile-open .nav__sub a { padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--rule); }
  .lang-switcher { margin-right: 6px; }
  .nav.mobile-open::after {
    content: 'Termin buchen →'; display: block; position: fixed;
    bottom: 24px; left: 24px; right: 24px; background: var(--accent); color: var(--paper);
    text-align: center; padding: 16px; font-size: 14px; font-weight: 600;
    letter-spacing: .04em; z-index: 1000; border-radius: 999px;
  }

  /* Hero responsive */
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__right { order: -1; }
  .hero__portrait-wrap { height: 480px; transform: none; }
  .hero__sticky { top: 20px; left: 16px; transform: rotate(-4deg); }
  .hero__sig { right: 16px; bottom: 16px; }
  .hero__stats { flex-direction: column; gap: 20px; }

  /* Services */
  .services__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) { transform: none; }

  /* General */
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .process__grid { grid-template-columns: 1fr; gap: 32px; }
  .process__grid-wave { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .tool-block, .tool-block--reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .svc-block, .svc-block--alt { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .sectors-grid { grid-template-columns: repeat(2,1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }

  /* CTA card */
  .cta-card { flex-direction: column; align-items: flex-start; padding: 40px 32px; }
  .cta-card-wrap { padding: 0 20px 48px; }
}

@media (max-width: 768px) {
  .hero__title { font-size: clamp(48px, 12vw, 72px); }
  .hero__portrait-wrap { height: 360px; }
  .hero__sticky { display: none; }
}

@media (max-width: 500px) {
  .hero { padding: 24px 0 56px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__annotation { margin-left: 0; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .services__grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
