/* ============================================================
   H&S Werbefotografie — soft but firm
   Warm ivory, confident type, photography first.
   Gold = real / warm · Teal = KI / protective calm.
   Thin pen doodles, gentle and professional.
   ============================================================ */

:root {
  --ivory:     #faf7f1;
  --ivory-2:   #f1ece1;
  --ink:       #25211a;
  --ink-soft:  #4d473c;
  --muted:     #8b8273;
  --hairline:  #e2dbcc;

  --gold:      #c98e3f;   /* warm, optimistic — Real World */
  --gold-soft: #f3e3c8;
  --teal:      #2e6a60;   /* caring, protective — KI-Hybrid */
  --teal-soft: #ddeae6;

  --display: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  --body:    "Figtree", "Avenir Next", "Segoe UI", sans-serif;

  --shell-max: 1280px;
  --shell-pad: clamp(20px, 5vw, 64px);
  --radius: 16px;

  --t-fast: 180ms ease;
  --t-mid:  340ms cubic-bezier(.22,.68,.32,1.02);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ol, ul { list-style: none; }

::selection { background: var(--gold-soft); color: var(--ink); }

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding-left: var(--shell-pad);
  padding-right: var(--shell-pad);
}

/* ============================================================
   TYPE
   ============================================================ */
.kicker {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 17em;
}
.section-title em { font-style: normal; color: var(--gold); }

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  margin-bottom: clamp(28px, 4vh, 44px);
}
.sec-no { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--gold); }
.sec-label { font-weight: 700; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* thin pen underline (gentle) */
.u-pen { position: relative; white-space: nowrap; }
.u-pen svg {
  position: absolute;
  left: 0;
  bottom: -0.14em;
  width: 100%;
  height: 0.22em;
  color: var(--gold);
  overflow: visible;
}

.doodle-path {
  stroke-dasharray: var(--len, 600);
  stroke-dashoffset: var(--len, 600);
  transition: stroke-dashoffset 1s cubic-bezier(.45,.05,.35,1) 0.2s;
}
.in-view .doodle-path { stroke-dashoffset: 0; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.22,.68,.32,1.02);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

section { position: relative; }
.section-pad { padding: clamp(72px, 11vh, 130px) 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px var(--shell-pad);
  background: color-mix(in srgb, var(--ivory) 90%, transparent);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--hairline); }

.logo { display: flex; align-items: center; gap: 14px; }
.logo img { height: 62px; width: auto; }
.logo-word { display: flex; flex-direction: column; line-height: 1.05; }
.logo-word strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-word span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 3px;
}

.primary-nav { display: flex; gap: 2px; font-size: 14.5px; font-weight: 600; }
.primary-nav a {
  opacity: 0.6;
  padding: 6px 13px;
  border-radius: 999px;
  transition: opacity var(--t-fast), background var(--t-mid);
}
.primary-nav a:hover { opacity: 1; }
.primary-nav a.nav-active { opacity: 1; background: var(--ivory-2); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1.5px solid var(--ink);
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background var(--t-fast);
}
.lang-toggle:hover { background: var(--ivory-2); }
.lang-opt { opacity: 0.35; transition: opacity var(--t-fast); }
.lang-opt.is-active { opacity: 1; color: var(--gold); }
.lang-sep { opacity: 0.35; }

/* buttons — confident pills */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.cta-primary {
  background: var(--ink);
  color: var(--ivory);
  padding: 14px 28px;
  box-shadow: 0 10px 24px -12px rgba(37, 33, 26, 0.55);
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(37, 33, 26, 0.55); background: #16130e; }
.cta-ghost {
  border: 1.5px solid var(--ink);
  padding: 13px 27px;
}
.cta-ghost:hover { background: var(--ivory-2); }
.cta-small { padding: 9px 19px; font-size: 13.5px; }

/* ============================================================
   HERO — photography first
   ============================================================ */
.hero {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(108px, 13vh, 150px) var(--shell-pad) clamp(40px, 6vh, 64px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.hero-copy .kicker { display: block; margin-bottom: 22px; }

.hero-title {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(40px, 5.8vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.hero-title .accent { color: var(--gold); }

.hero-lede {
  margin-top: 26px;
  max-width: 30em;
  font-size: clamp(16.5px, 1.5vw, 19px);
  color: var(--ink-soft);
}
.hero-lede strong { color: var(--ink); }

.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-personal {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.hero-personal .faces { display: flex; }
.hero-personal .faces img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ivory);
}
.hero-personal .faces img + img { margin-left: -10px; }

/* hero image */
.hero-visual { position: relative; }
.hero-visual .hero-img {
  position: relative;
  height: clamp(420px, 66vh, 640px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(37, 33, 26, 0.45);
}
.hero-visual .hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-visual .hero-img img.is-active { opacity: 1; }
.hero-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* gentle sun doodle */
.hero-sun {
  position: absolute;
  top: -34px;
  right: -22px;
  width: clamp(70px, 7vw, 100px);
  color: var(--gold);
}

/* ============================================================
   TRUST BAR (soft marquee)
   ============================================================ */
.trustbar {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 14px 0;
  background: var(--ivory);
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 44s linear infinite;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.trust-track .spark { color: var(--gold); font-size: 15px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   01 — HALTUNG
   ============================================================ */
.haltung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.haltung-copy p + p { margin-top: 1.1em; }
.haltung-copy .big {
  font-family: var(--display);
  font-weight: 550;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
}
.haltung-copy p { color: var(--ink-soft); }
.haltung-copy p.big { color: var(--ink); }

.values { display: grid; gap: 16px; }
.value-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -24px rgba(37, 33, 26, 0.35); }
.value-card .v-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
}
.value-card:nth-child(2) .v-icon { background: var(--teal-soft); color: var(--teal); }
.value-card:nth-child(3) .v-icon { background: var(--ivory-2); color: var(--ink); }
.value-card .v-icon svg { width: 28px; height: 28px; }
.value-card h3 { font-family: var(--display); font-weight: 650; font-size: 17.5px; margin-bottom: 4px; }
.value-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ============================================================
   02 — QUELLE & VIELFALT
   ============================================================ */
.wege { background: var(--ivory-2); }

.duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
  margin-top: clamp(36px, 6vh, 56px);
}
.duo-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 30px 28px;
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--gold);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.duo-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(37, 33, 26, 0.4); }
.duo-card.is-hybrid { border-top-color: var(--teal); }
.duo-role {
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.is-hybrid .duo-role { color: var(--teal); }
.duo-card h3 {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(21px, 2.2vw, 27px);
  margin: 8px 0 10px;
}
.duo-card p { font-size: 15px; color: var(--ink-soft); }
.duo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
}
.is-hybrid .duo-badge { border-color: var(--teal); color: var(--teal); }

.duo-link {
  display: grid;
  place-items: center;
  gap: 8px;
  min-width: clamp(90px, 10vw, 140px);
  text-align: center;
}
.duo-link svg { width: 100%; max-width: 120px; color: var(--gold); overflow: visible; }
.duo-link .link-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  max-width: 16em;
}
.duo-return {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.duo-return .return-icon { color: var(--teal); display: inline-block; vertical-align: -3px; width: 17px; margin-right: 6px; }

/* spec table — soft */
.spec-wrap { overflow-x: auto; margin-top: clamp(40px, 6vh, 60px); }
.spec {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14.5px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec th, .spec td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hairline);
}
.spec tbody tr:last-child th, .spec tbody tr:last-child td { border-bottom: none; }
.spec thead th {
  font-family: var(--display);
  font-weight: 650;
  font-size: 15px;
  background: var(--ink);
  color: var(--ivory);
}
.spec thead th .col-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 8px; vertical-align: 1px; }
.spec thead th .dot-real { background: var(--gold); }
.spec thead th .dot-hybrid { background: var(--teal); }
.spec thead th .dot-ki { background: var(--ivory); opacity: 0.5; }
.spec tbody th {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--ivory);
  width: 16%;
}
.spec td { color: var(--ink-soft); }
.spec td strong { color: var(--ink); }
.spec .yes { color: var(--teal); font-weight: 800; }
.spec .meh { color: var(--muted); }

/* ============================================================
   FULL-BLEED IMAGE SECTION
   ============================================================ */
.showcase {
  position: relative;
  height: clamp(420px, 78vh, 760px);
  overflow: clip;
}
.showcase img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.showcase-card {
  position: absolute;
  left: var(--shell-pad);
  bottom: clamp(24px, 5vh, 48px);
  max-width: 420px;
  background: color-mix(in srgb, var(--ivory) 94%, transparent);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.45);
}
.showcase-card .tagline {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.showcase-card h3 { font-family: var(--display); font-weight: 650; font-size: 20px; margin: 6px 0 4px; }
.showcase-card p { font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   03 — FORMATE
   ============================================================ */
.fmt-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.6vw, 32px);
  align-items: start;
  margin-top: clamp(36px, 6vh, 56px);
}
.fmt { position: relative; cursor: zoom-in; }
.fmt-img {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px -22px rgba(37, 33, 26, 0.4);
}
.fmt-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-mid);
}
.fmt:hover .fmt-img img { transform: scale(1.03); }

.fmt-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  font-size: 12.5px;
}
.fmt-ratio { font-family: var(--display); font-weight: 700; font-size: 13.5px; }
.fmt-medium { color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 10.5px; font-weight: 700; }
.fmt-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.fmt-tag.is-real { background: var(--gold-soft); color: #8a5c1d; }
.fmt-tag.is-hybrid { background: var(--teal-soft); color: var(--teal); }

.r-9x16  .fmt-img { aspect-ratio: 9 / 16; }
.r-1x1   .fmt-img { aspect-ratio: 1 / 1; }
.r-4x5   .fmt-img { aspect-ratio: 4 / 5; }
.r-16x9  .fmt-img { aspect-ratio: 16 / 9; }
.r-21x9  .fmt-img { aspect-ratio: 21 / 9; }
.r-a4    .fmt-img { aspect-ratio: 210 / 297; }
.r-3x4   .fmt-img { aspect-ratio: 3 / 4; }
.r-18-1  .fmt-img { aspect-ratio: 356 / 252; }

.f-a { grid-column: 1 / span 3; }
.f-b { grid-column: 4 / span 5; margin-top: 54px; }
.f-c { grid-column: 9 / span 4; margin-top: 20px; }
.f-d { grid-column: 1 / span 4; margin-top: 26px; }
.f-e { grid-column: 5 / span 8; margin-top: 48px; }
.f-f { grid-column: 1 / span 5; margin-top: 36px; }
.f-g { grid-column: 6 / span 3; margin-top: 62px; }
.f-h { grid-column: 9 / span 4; margin-top: 22px; }

.fmt-note {
  margin-top: clamp(30px, 5vh, 44px);
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}
.fmt-note strong { color: var(--ink); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  background: rgba(28, 25, 19, 0.86);
  padding: 5vmin;
  cursor: zoom-out;
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto; height: auto;
  border-radius: 10px;
}

/* ============================================================
   04 — FÜR WEN (Branchen)
   ============================================================ */
.branch-lede {
  max-width: 640px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}
.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: clamp(32px, 5vh, 48px);
}
.branch {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 18px 38px -22px rgba(37, 33, 26, 0.4);
}
.branch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.branch:hover img { transform: scale(1.04); }
.branch figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
}
.branch-note {
  margin-top: clamp(26px, 4vh, 38px);
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   05 — TEAM
   ============================================================ */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(36px, 6vh, 56px);
}
.founder {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.founder:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(37, 33, 26, 0.4); }
.founder img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: center 20%; }
.founder-body { padding: 24px 26px 26px; }
.founder-body h3 { font-family: var(--display); font-weight: 650; font-size: 21px; }
.founder-role {
  display: inline-block;
  margin: 6px 0 12px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.founder:nth-child(2) .founder-role { color: var(--teal); }
.founder-body blockquote {
  font-size: 14.5px;
  color: var(--ink-soft);
  border-left: 3px solid var(--gold-soft);
  padding-left: 14px;
}
.founder:nth-child(2) .founder-body blockquote { border-left-color: var(--teal-soft); }

.team-grid {
  margin-top: clamp(36px, 6vh, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.member { text-align: left; }
.member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 30px -20px rgba(37, 33, 26, 0.4);
  transition: transform var(--t-mid);
}
.member:hover img { transform: translateY(-4px) rotate(-0.5deg); }
.member h4 { font-family: var(--display); font-weight: 650; font-size: 16px; margin-top: 12px; }
.member span { font-size: 12.5px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; }

.team-note {
  margin-top: clamp(28px, 4vh, 40px);
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}

/* ============================================================
   05 — GARANTIE (protective band)
   ============================================================ */
.guarantee { background: var(--teal); color: #eef5f2; }
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.stamp {
  position: relative;
  width: clamp(170px, 18vw, 230px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.stamp svg.stamp-ring { position: absolute; inset: 0; animation: spin 26s linear infinite; }
.stamp svg.stamp-ring text {
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  fill: #cfe2dc;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stamp-core {
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid #cfe2dc;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(13.5px, 1.3vw, 16px);
  text-align: center;
  line-height: 1.25;
  padding: 10px;
}
.guarantee h2 {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 18em;
}
.guarantee h2 em { font-style: normal; color: #f0c987; }
.guarantee p { margin-top: 16px; max-width: 46em; font-size: 15.5px; color: #cfe2dc; }
.guarantee p strong { color: #fff; }

/* ============================================================
   06 — ABLAUF
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
  margin-top: clamp(36px, 6vh, 56px);
}
.step {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.step:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -24px rgba(37, 33, 26, 0.35); }
.step-no {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
}
.step h3 { font-family: var(--display); font-weight: 650; font-size: 17.5px; margin: 8px 0 8px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact { text-align: center; background: var(--ivory-2); border-top: 1px solid var(--hairline); }
.contact .doodle-sun-small { width: 56px; margin: 0 auto 22px; color: var(--gold); }
.contact-title {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.contact-title em { font-style: normal; color: var(--gold); }
.contact-lede { max-width: 32em; margin: 22px auto 0; font-size: 17px; color: var(--ink-soft); }
.contact-row { margin-top: 36px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; justify-content: center; }
.contact-alt { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.contact-alt a { font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #b5ad9d; padding: 60px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 24em; }
.footer-block h4 {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 12px;
}
.footer-block p { font-size: 14px; line-height: 1.8; }
.footer-block a:hover { color: var(--ivory); text-decoration: underline; }
.footer-base {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 247, 241, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--ivory); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .primary-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-visual .hero-img { height: clamp(320px, 48vh, 460px); }
  .hero-sun { top: -26px; right: 4px; }
  .haltung-grid { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .duo-link { transform: rotate(90deg); min-height: 80px; }
  .duo-link .link-label { transform: rotate(-90deg); display: none; }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; justify-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-a { grid-column: 1 / span 5; }
  .f-b { grid-column: 6 / span 7; margin-top: 36px; }
  .f-c { grid-column: 1 / span 6; }
  .f-d { grid-column: 7 / span 6; }
  .f-e { grid-column: 1 / span 12; }
  .f-f { grid-column: 1 / span 6; }
  .f-g { grid-column: 7 / span 6; margin-top: 26px; }
  .f-h { grid-column: 1 / span 7; }
}

@media (max-width: 640px) {
  .logo img { height: 48px; }
  .logo-word strong { font-size: 17px; }
  .logo-word span { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .fmt-wall > .fmt { grid-column: 1 / span 12 !important; margin-top: 0 !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .showcase-card { left: 16px; right: 16px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .stamp svg.stamp-ring, .trust-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .doodle-path { stroke-dashoffset: 0; transition: none; }
}
