/* ============================================================
   schickinger. – Design-System v2 „Editorial Bold"
   Referenz-Messlatte: knoblauch.eu — riesige Statement-Typo,
   keine Cards, Underline-Links, asymmetrische Bilder, Marquee.
   Farben: Creme #F6F2EC · Espresso #2B2320 · Bordeaux #5C1822
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: "Poppins"; src: url("/assets/fonts/poppins-latin-300-normal.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/poppins-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/poppins-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/poppins-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/poppins-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --creme: #F6F2EC;
  --creme-bright: #FDFBF8;
  --espresso: #2B2320;
  --espresso-deep: #1E1815;
  --espresso-soft: #4A3F39;
  --bordeaux: #5C1822;
  --bordeaux-on-dark: #D9A0A8;
  --taupe: #8B7A75;
  --taupe-dark: #6E605B;
  --taupe-on-dark: #A99C94;
  --beige: #D6CBBD;
  --line: #E3DCD1;
  --line-dark: #3D342F;

  --font: "Poppins", "Segoe UI", system-ui, sans-serif;

  /* Statement-Typo: groß, fett, eng */
  --fs-giant: clamp(2.15rem, 7.5vw, 6.2rem);      /* Hero / Seitentitel */
  --fs-state: clamp(1.7rem, 4.2vw, 3.6rem);      /* Statement-Absätze */
  --fs-list:  clamp(1.9rem, 4.6vw, 4.2rem);      /* Riesige Leistungs-Listen */
  --fs-h3: clamp(1.15rem, 1.8vw, 1.45rem);
  --fs-lead: clamp(1.02rem, 1.4vw, 1.18rem);

  --space-xl: clamp(7rem, 14vw, 13rem);
  --space-l: clamp(5rem, 10vw, 9rem);
  --space-m: clamp(3rem, 6vw, 5rem);
  --pad-x: clamp(1.25rem, 3.2vw, 3rem);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--creme);
  color: var(--espresso);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--bordeaux); color: var(--creme); }
:focus-visible { outline: 2px solid var(--bordeaux); outline-offset: 3px; }

h1, h2, h3 { font-weight: 700; line-height: 1.04; letter-spacing: -0.03em; overflow-wrap: break-word; hyphens: auto; }
h3 { font-size: var(--fs-h3); line-height: 1.3; letter-spacing: -0.01em; }
p { max-width: 62ch; }

.wrap { padding-inline: var(--pad-x); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--espresso); color: var(--creme); padding: .6rem 1rem; z-index: 300; }
.skip-link:focus { left: 0; }

/* ---------- Typo-Bausteine ---------- */
.giant { font-size: var(--fs-giant); font-weight: 700; line-height: 1.02; letter-spacing: -0.035em; max-width: 14ch; overflow-wrap: break-word; hyphens: auto; }
.statement { font-size: var(--fs-state); font-weight: 700; line-height: 1.12; letter-spacing: -0.03em; max-width: 24ch; }
.statement .dim { color: var(--taupe); }
.lead { font-size: var(--fs-lead); line-height: 1.7; color: var(--espresso-soft); max-width: 52ch; }
.on-dark .lead { color: var(--beige); }

.micro {
  font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--espresso-soft);
}
.on-dark .micro { color: var(--taupe-on-dark); }
.micro.accent { color: var(--bordeaux); }
.on-dark .micro.accent { color: var(--bordeaux-on-dark); }

/* Underline-Link (ersetzt Buttons) */
.ulink {
  display: inline-block; position: relative;
  font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 7px;
  transition: color .25s var(--ease);
  cursor: pointer; background: none; font-family: var(--font);
}
.ulink:hover { color: var(--bordeaux); }
.on-dark .ulink:hover, .u-invert .ulink:hover { color: var(--bordeaux-on-dark); }
.ulink.big { font-size: .92rem; }

/* Solider Button – nur für Formular-Submit */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 1.15rem 2.4rem; border: 1px solid var(--espresso); border-radius: 0;
  background: var(--espresso); color: var(--creme); cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.btn:hover { background: var(--bordeaux); border-color: var(--bordeaux); }
.btn[disabled] { opacity: .6; cursor: wait; }

/* ---------- Header: Claim links · Wortmarke Mitte · MENÜ rechts ---------- */
.site-header { position: fixed; inset-inline: 0; top: 0; z-index: 100; transition: background .35s var(--ease), box-shadow .35s var(--ease); }
.site-header .bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 1.3rem var(--pad-x); transition: padding .35s var(--ease);
}
.site-header.is-solid { background: rgba(246,242,236,.94); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.site-header.is-solid .bar { padding-block: .85rem; }

.claim { font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--espresso); justify-self: start; }
.wordmark { font-size: clamp(1.5rem, 2vw, 1.8rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--espresso); justify-self: center; }
.wordmark .dot { color: var(--bordeaux); }
.menu-btn {
  justify-self: end; display: inline-flex; align-items: center; gap: .6rem;
  background: none; border: 0; cursor: pointer; font-family: var(--font);
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--espresso);
  padding: .5rem 0; z-index: 220; position: relative;
}
.menu-btn .lines { display: inline-block; width: 22px; height: 12px; position: relative; }
.menu-btn .lines::before, .menu-btn .lines::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor;
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.menu-btn .lines::before { top: 1px; }
.menu-btn .lines::after { top: 9px; }
body.menu-open .menu-btn { color: var(--creme); }
body.menu-open .menu-btn .lines::before { top: 5px; transform: rotate(45deg); }
body.menu-open .menu-btn .lines::after { top: 5px; transform: rotate(-45deg); }

.site-header.is-light:not(.is-solid) .claim,
.site-header.is-light:not(.is-solid) .wordmark,
.site-header.is-light:not(.is-solid) .menu-btn { color: var(--creme); }
.site-header.is-light:not(.is-solid) .wordmark .dot { color: var(--bordeaux-on-dark); }
body.menu-open .site-header .claim, body.menu-open .site-header .wordmark { color: var(--creme); }
body.menu-open .site-header .wordmark .dot { color: var(--bordeaux-on-dark); }
body.menu-open .site-header.is-solid { background: transparent; box-shadow: none; backdrop-filter: none; }

/* Menü-Overlay (Desktop + Mobile) */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200; background: var(--espresso-deep); color: var(--creme);
  display: grid; grid-template-rows: 1fr auto; padding: clamp(5.5rem, 12vh, 8rem) var(--pad-x) 2.5rem;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.menu-overlay nav { align-self: center; }
.menu-overlay nav a {
  display: flex; align-items: baseline; gap: 1.2rem;
  font-size: clamp(2rem, 5.4vh, 3.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.3;
  color: var(--creme); opacity: 0; transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
  width: fit-content;
}
.menu-overlay nav a .no { font-size: .72rem; font-weight: 600; letter-spacing: .2em; color: var(--taupe-on-dark); }
.menu-overlay nav a:hover, .menu-overlay nav a[aria-current="page"] { color: var(--bordeaux-on-dark); }
body.menu-open .menu-overlay nav a { opacity: 1; transform: none; transition-delay: calc(.05s * var(--i, 0) + .12s); }
.menu-overlay .menu-foot {
  display: flex; flex-wrap: wrap; gap: 1rem 3rem; justify-content: space-between; align-items: end;
  border-top: 1px solid var(--line-dark); padding-top: 1.6rem; font-size: .85rem; color: var(--taupe-on-dark);
}
.menu-overlay .menu-foot a { color: var(--beige); }
.menu-overlay .menu-foot a:hover { color: var(--creme); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--creme); overflow: hidden; background: var(--espresso-deep);
}
.hero video, .hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,24,21,.5) 0%, rgba(30,24,21,.22) 45%, rgba(30,24,21,.86) 100%); }
.hero .inner { position: relative; width: 100%; padding: 7rem var(--pad-x) clamp(2.5rem, 6vh, 4.5rem); }
.hero .micro { color: var(--beige); margin-bottom: 1.4rem; display: block; }
.hero h1 { font-size: var(--fs-giant); letter-spacing: -0.035em; line-height: 1.0; color: var(--creme); max-width: 13ch; }
.hero .hero-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-top: 2.2rem; }
.hero .hero-sub { font-size: var(--fs-lead); max-width: 44ch; color: rgba(246,242,236,.85); }
.hero .hero-links { display: flex; gap: 2.5rem; color: var(--creme); flex: 0 0 auto; }
.hero--page { min-height: 72svh; }
.hero--page .veil { background: linear-gradient(to bottom, rgba(30,24,21,.55) 0%, rgba(30,24,21,.45) 50%, rgba(30,24,21,.88) 100%); }
.hero--short { min-height: 58svh; }

/* ---------- Sektionen ---------- */
.sec { padding-block: var(--space-l); }
.sec--xl { padding-block: var(--space-xl); }
.sec--m { padding-block: var(--space-m); }
.on-dark { background: var(--espresso); color: var(--creme); }
.on-dark--deep { background: var(--espresso-deep); color: var(--creme); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--creme); }

/* Statement voll breit */
.full-statement { max-width: none; }
.full-statement .statement { max-width: 30ch; }

/* ---------- Bild-Bausteine ---------- */
.imgframe { overflow: hidden; background: var(--beige); position: relative; }
.imgframe img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
a:hover .imgframe img { transform: scale(1.04); }

/* Bild mit Titel-Overlay unten links (Knoblauch-Muster) */
.pic-block { display: block; }
.pic-block .imgframe::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,24,21,.62) 0%, rgba(30,24,21,.12) 42%, rgba(30,24,21,0) 65%); }
.pic-block .cap {
  position: absolute; left: clamp(1.2rem, 2.5vw, 2rem); right: clamp(1.2rem, 2.5vw, 2rem); bottom: clamp(1.1rem, 2.4vw, 1.8rem);
  z-index: 2; color: var(--creme);
  font-size: clamp(1.5rem, 2.8vw, 2.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em;
}
.pic-block .under { display: inline-block; margin-top: .9rem; }
.pic-block .under .ulink { color: var(--espresso); }
.on-dark .pic-block .under .ulink { color: var(--creme); }

/* Asymmetrischer Zweier: links breit tief, rechts hoch versetzt */
.stagger { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem); align-items: start; }
.stagger .txt { grid-column: 1 / span 5; grid-row: 1; padding-top: clamp(1rem, 3vw, 3rem); }
.stagger .a { grid-column: 1 / span 7; grid-row: 2; margin-top: clamp(1rem, 3vw, 2.5rem); }
.stagger .a .imgframe { aspect-ratio: 4 / 3; }
.stagger .b { grid-column: 8 / span 5; grid-row: 1 / span 2; }
.stagger .b .imgframe { aspect-ratio: 3 / 4; }
.stagger.flip .a { grid-column: 7 / span 6; }
.stagger.flip .b { grid-column: 1 / span 4; grid-row: 1; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; white-space: nowrap; border-block: 1px solid var(--line); padding-block: 1.15rem; }
.on-dark .marquee, .marquee.dark { border-color: var(--line-dark); }
.marquee .track { display: inline-block; animation: marq 38s linear infinite; }
.marquee span {
  font-size: clamp(1rem, 1.6vw, 1.35rem); font-weight: 600; letter-spacing: .06em; text-transform: lowercase;
  color: var(--taupe-dark); padding-inline: 1.4rem;
}
.on-dark .marquee span { color: var(--taupe-on-dark); }
.marquee .dot { color: var(--bordeaux); }
.on-dark .marquee .dot { color: var(--bordeaux-on-dark); }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Riesige Leistungs-Liste ---------- */
.mega-list { }
.mega-list a {
  display: flex; align-items: baseline; gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(.9rem, 1.8vw, 1.4rem) 0; border-bottom: 1px solid var(--line);
  font-size: var(--fs-list); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--espresso); transition: color .3s var(--ease), padding-left .35s var(--ease);
}
.mega-list a:first-child { border-top: 1px solid var(--line); }
.mega-list a .no { font-size: .74rem; font-weight: 600; letter-spacing: .2em; color: var(--taupe-dark); flex: 0 0 3ch; }
.mega-list a .arr { margin-left: auto; font-size: clamp(1.3rem, 2.4vw, 2rem); font-weight: 400; color: var(--bordeaux); opacity: 0; transform: translateX(-14px); transition: opacity .3s, transform .35s var(--ease); }
.mega-list a:hover { color: var(--bordeaux); padding-left: clamp(.4rem, 1.4vw, 1.2rem); }
.mega-list a:hover .arr { opacity: 1; transform: none; }
.on-dark .mega-list a { color: var(--creme); border-color: var(--line-dark); }
.on-dark .mega-list a:hover { color: var(--bordeaux-on-dark); }
.on-dark .mega-list a .arr { color: var(--bordeaux-on-dark); }

/* ---------- Stats: riesig ---------- */
.stats-giant { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 6vw, 6rem); }
.stats-giant .stat { border-top: 1px solid var(--line-dark); padding-top: 1.2rem; }
.stats-giant .num {
  font-size: clamp(3.6rem, 8.5vw, 8rem); font-weight: 700; letter-spacing: -0.04em; line-height: .95;
  color: var(--creme); font-variant-numeric: tabular-nums;
}
.stats-giant .num .suffix { font-size: .38em; font-weight: 600; color: var(--taupe-on-dark); letter-spacing: 0; }
.stats-giant .lbl { margin-top: .8rem; font-size: .74rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--taupe-on-dark); }

/* ---------- Projekte: versetztes Grid ---------- */
.proj-flow { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem); }
.proj-flow .p-big { grid-column: 1 / span 7; }
.proj-flow .p-big .imgframe { aspect-ratio: 4 / 3; }
.proj-flow .p-small { grid-column: 9 / span 4; margin-top: clamp(3rem, 8vw, 7rem); }
.proj-flow .p-small .imgframe { aspect-ratio: 3 / 4; }
.proj-flow.flip .p-big { grid-column: 6 / span 7; }
.proj-flow.flip .p-small { grid-column: 1 / span 4; grid-row: 1; }
.proj-meta { margin-top: 1rem; display: flex; align-items: baseline; gap: 1rem; }
.proj-meta .t { font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; max-width: 30ch; }
.proj-meta .k { font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe-dark); flex: 0 0 auto; }

/* ---------- Zitat riesig ---------- */
.quote-giant blockquote {
  font-size: clamp(1.5rem, 3.2vw, 2.7rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.02em;
  max-width: 26ch; color: var(--espresso);
}
.quote-giant .who { margin-top: 1.6rem; }
.quotes-ed { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(2rem, 4vw, 4rem) clamp(1rem, 2.5vw, 2rem); align-items: start; }
.quotes-ed .qg { grid-column: 1 / span 7; }
.quotes-ed .qs { grid-column: 9 / span 4; display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); margin-top: var(--space-m); }
.quote-row blockquote { font-size: 1.02rem; line-height: 1.7; color: var(--espresso-soft); max-width: 44ch; }
.quote-row .who { margin-top: 1rem; }
.who .n { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.who .r { font-size: .78rem; color: var(--taupe-dark); letter-spacing: .06em; margin-left: .8rem; }

/* ---------- Prozess: nummerierte Zeilen ---------- */
.steps-rows { }
.steps-rows .row {
  display: grid; grid-template-columns: 6ch 1fr 1.2fr; gap: clamp(1rem, 3vw, 3rem); align-items: baseline;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0; border-bottom: 1px solid var(--line);
}
.steps-rows .row:first-child { border-top: 1px solid var(--line); }
.on-dark .steps-rows .row { border-color: var(--line-dark); }
.steps-rows .no { font-size: .78rem; font-weight: 600; letter-spacing: .2em; color: var(--bordeaux); }
.on-dark .steps-rows .no { color: var(--bordeaux-on-dark); }
.steps-rows h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 700; letter-spacing: -0.02em; }
.steps-rows p { font-size: .95rem; color: var(--taupe-dark); max-width: 52ch; }
.on-dark .steps-rows p { color: var(--beige); }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.1rem, 2vw, 1.5rem) 0; cursor: pointer; list-style: none;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem); font-weight: 700; letter-spacing: -0.015em; transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--bordeaux); }
.faq summary .ic { flex: 0 0 auto; font-size: 1.4em; font-weight: 400; line-height: 1; color: var(--bordeaux); transition: transform .3s var(--ease); }
.faq details[open] summary .ic { transform: rotate(45deg); }
.faq .a { padding: 0 3rem 1.5rem 0; color: var(--taupe-dark); max-width: 62ch; }

/* ---------- Formular (brutalist) ---------- */
.b-form { display: grid; grid-template-columns: 1fr 1fr; }
.b-form .cell { position: relative; border: 1px solid var(--espresso); margin: 0 -1px -1px 0; }
.b-form .cell.full { grid-column: 1 / -1; }
.b-form label {
  position: absolute; top: .7rem; left: .9rem; z-index: 1; pointer-events: none;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--espresso-soft);
}
.b-form input, .b-form select, .b-form textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--espresso);
  background: transparent; border: 0; border-radius: 0;
  padding: 2.1rem .9rem .8rem;
}
.b-form textarea { min-height: 170px; resize: vertical; }
.b-form input:focus, .b-form select:focus, .b-form textarea:focus { outline: none; background: var(--creme-bright); }
.b-form select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.b-form .cell.sel::after { content: "↓"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--bordeaux); pointer-events: none; }
.check { display: flex; gap: .8rem; align-items: flex-start; font-size: .88rem; color: var(--taupe-dark); }
.check input { width: 26px; height: 26px; margin-top: .1rem; accent-color: var(--bordeaux); flex: 0 0 auto; }
.form-note { font-size: .85rem; color: var(--taupe-dark); }
.form-status { padding: 1rem 1.2rem; font-size: .95rem; display: none; border: 1px solid; }
.form-status.ok { display: block; border-color: #2F4A2A; color: #2F4A2A; background: #EAF2E8; }
.form-status.err { display: block; border-color: var(--bordeaux); color: var(--bordeaux); background: #F6E6E6; }

/* ---------- Galerie versetzt ---------- */
.gal { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2.5vw, 2rem); align-items: start; }
.gal .g1 { grid-column: 1 / span 5; grid-row: 1; }
.gal .g1, .gal .g1 .imgframe { aspect-ratio: 3 / 4; }
.gal .g2 { grid-column: 6 / span 7; grid-row: 1; margin-top: clamp(3rem, 7vw, 6rem); }
.gal .g2, .gal .g2 .imgframe { aspect-ratio: 16 / 10; }
.gal .g3 { grid-column: 2 / span 6; grid-row: 2; margin-top: clamp(1rem, 2.5vw, 2rem); }
.gal .g3, .gal .g3 .imgframe { aspect-ratio: 4 / 3; }
.gal .g4 { grid-column: 9 / span 4; grid-row: 2; margin-top: clamp(3rem, 6vw, 5rem); }
.gal .g4, .gal .g4 .imgframe { aspect-ratio: 3 / 4; }

/* ---------- Kopfzonen ---------- */
.page-head { padding: clamp(8rem, 18vh, 12rem) var(--pad-x) var(--space-m); }
.page-head .micro { display: block; margin-bottom: 1.2rem; }
.page-head h1 { font-size: var(--fs-giant); letter-spacing: -0.035em; max-width: 14ch; }
.page-head .lead { margin-top: 1.8rem; }

.head-flex { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: var(--space-m); }
.head-flex .statement { margin-top: .8rem; }
.head-flex .ulink { flex: 0 0 auto; margin-bottom: .6rem; }

/* Editorial Split (Text | Text oder Text | Bild) */
.ed { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.ed .l6 { grid-column: span 6; }
.ed .l5 { grid-column: span 5; }
.ed .l7 { grid-column: span 7; }
.ed .off1 { grid-column-start: 2; }
.ed .push { grid-column-start: 8; }
.ed .push5 { grid-column-start: 8; grid-column-end: span 5; }

/* Prose */
.prose { max-width: 66ch; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 2em; letter-spacing: -0.02em; }
.prose h3 { margin-top: 1.8em; }
.prose strong { font-weight: 700; }
.prose a { color: var(--bordeaux); text-decoration: underline; text-underline-offset: 3px; }
.prose ul li { position: relative; padding-left: 1.4rem; margin-top: .5em; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 2px; background: var(--bordeaux); }
.prose ol { list-style: decimal; padding-left: 1.4rem; }
.prose blockquote { border-left: 2px solid var(--bordeaux); padding-left: 1.4rem; color: var(--espresso-soft); font-size: 1.08rem; }
.cinema { aspect-ratio: 21 / 9; }

/* ---------- CTA ---------- */
.cta-sec { }
.cta-sec .giant { max-width: 16ch; }
.cta-sec { padding-block: clamp(4.5rem, 9vw, 8rem); }
.cta-sec .row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2.5rem; }
.cta-sec .side { max-width: 46ch; }
.cta-sec .links { display: flex; gap: 3rem; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso-deep); color: var(--beige); font-size: .95rem; border-top: 1px solid var(--line-dark); }
.site-footer .fm { font-size: clamp(3rem, 8vw, 7rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--creme); padding: var(--space-m) var(--pad-x) 0; }
.site-footer .fm .dot { color: var(--bordeaux-on-dark); }
.site-footer .cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem);
  padding: var(--space-m) var(--pad-x);
}
.site-footer .cols h2 { font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--taupe-on-dark); margin-bottom: 1.1rem; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: var(--beige); transition: color .25s; }
.site-footer a:hover { color: var(--creme); }
.site-footer address { font-style: normal; }
.site-footer .about { max-width: 34ch; color: var(--taupe-on-dark); }
.site-footer .bottom {
  border-top: 1px solid var(--line-dark); margin-inline: var(--pad-x); padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .78rem; letter-spacing: .04em; color: var(--taupe-on-dark);
}
.site-footer .bottom a { color: var(--taupe-on-dark); }
.site-footer .bottom a:hover { color: var(--creme); }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .imgframe img { transition: none; }
  .marquee .track { animation: none; }
}

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.mb-m { margin-bottom: var(--space-m); }
.right { text-align: right; }

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .stats-giant { grid-template-columns: repeat(2, 1fr); }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .steps-rows .row { grid-template-columns: 5ch 1fr; }
  .steps-rows .row p { grid-column: 2; }
}
@media (max-width: 767px) {
  .claim { display: none; }
  .site-header .bar { grid-template-columns: auto 1fr; }
  .wordmark { justify-self: start; }
  .stagger .a, .stagger .b, .stagger .txt, .stagger.flip .a, .stagger.flip .b { grid-column: 1 / -1; grid-row: auto; margin-top: 0; }
  .quotes-ed .qg, .quotes-ed .qs { grid-column: 1 / -1; }
  .stagger .b { width: 78%; margin-left: auto; }
  .stagger.flip .b { margin-left: 0; margin-right: auto; }
  .proj-flow .p-big, .proj-flow .p-small, .proj-flow.flip .p-big, .proj-flow.flip .p-small { grid-column: 1 / -1; grid-row: auto; margin-top: 0; }
  .proj-flow .p-small { width: 82%; }
  .proj-flow:not(.flip) .p-small { margin-left: auto; }
  .gal .g1, .gal .g2, .gal .g3, .gal .g4 { grid-column: 1 / -1; margin-top: 0; }
  .gal .g4 { width: 78%; margin-left: auto; }
  .ed .l5, .ed .l6, .ed .l7, .ed .push, .ed .push5, .ed .off1 { grid-column: 1 / -1; }
  .quote-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-giant { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.4rem; }
  .stats-giant .num { font-size: 2.9rem; }
  .b-form { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 2rem; }
  .cta-sec .links { flex-direction: column; gap: 1.4rem; align-items: flex-start; }
  .hero .hero-links { gap: 1.6rem; flex-wrap: wrap; }
  .steps-rows .row { grid-template-columns: 1fr; gap: .4rem; }
  .head-flex { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ---------- Motion-Paket v2 ---------- */
/* Wort-Reveal */
[data-split] .w { display: inline-block; opacity: 0; transform: translateY(.55em) rotate(1.5deg); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-split].in .w { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-split] .w { opacity: 1; transform: none; transition: none; } }

/* Bild-Aufdeckung */
/* Aufdeckung liegt auf dem BILD, nicht auf dem beobachteten Rahmen –
   ein voll geclipptes Element meldet dem IntersectionObserver 0 % Sichtbarkeit
   und würde nie einblenden (Chrome). */
.rv-img img { clip-path: inset(0 0 100% 0); transform: scale(1.12); transition: clip-path 1.1s var(--ease), transform 1.4s var(--ease); transition-delay: var(--d, 0s); }
.rv-img.in img { clip-path: inset(0 0 0 0); transform: scale(1); }
a:hover .rv-img.in img { transform: scale(1.05); }
.rv-img .cap { opacity: 0; transition: opacity .8s var(--ease) .45s; }
.rv-img.in .cap { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .rv-img img { clip-path: none; transition: none; transform: none; } }

/* Parallax-Bühne */
.plx-stage { overflow: hidden; position: relative; }
.plx-stage > [data-plx] { will-change: transform; }

/* Video-Band (full bleed) */
.video-band { position: relative; min-height: 78svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--espresso-deep); color: var(--creme); }
.video-band video { position: absolute; inset: -12% 0; width: 100%; height: 124%; object-fit: cover; }
.video-band .veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,24,21,.82) 0%, rgba(30,24,21,.25) 55%, rgba(30,24,21,.35) 100%); }
.video-band .inner { position: relative; width: 100%; padding: var(--space-l) var(--pad-x); }
.video-band .statement { color: var(--creme); }
.video-band .micro, .video-band .micro.accent { color: var(--beige); }

/* Hover-Bildvorschau */
.hover-pic {
  position: fixed; left: 0; top: 0; z-index: 90; pointer-events: none;
  width: clamp(220px, 24vw, 360px); aspect-ratio: 4 / 3; overflow: hidden;
  opacity: 0; transition: opacity .35s var(--ease);
}
.hover-pic img { width: 100%; height: 100%; object-fit: cover; }
.hover-pic.on { opacity: 1; }

/* Mobile: Wort-Spans inline lassen, damit lange Woerter trennen koennen */
@media (max-width: 767px) {
  [data-split] .w { display: inline; transform: none; }
  [data-split] .w { transition: opacity .6s var(--ease); }
}

/* ============================================================
   v2.1 „Premium Dense" – Moodboard-Elemente + dichtere Layouts
   ============================================================ */

/* Kreise (Moodboard-Motiv: große Kreise Taupe/Bordeaux) */
.orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.orb.line { border: 1px solid var(--beige); }
.orb.line-dark { border: 1px solid var(--line-dark); }
.orb.fill { background: radial-gradient(circle at 35% 30%, rgba(139,122,117,.16), rgba(139,122,117,.05)); }
.orb.bdx { background: radial-gradient(circle at 35% 30%, rgba(92,24,34,.1), rgba(92,24,34,.03)); }
.has-orbs { position: relative; overflow: clip; }
.has-orbs > .wrap, .has-orbs > .inner { position: relative; z-index: 1; }

/* Materialblöcke (Moodboard: rechteckige Materialflächen hinter Bildern) */
.matblock { position: relative; }
.matblock::before {
  content: ""; position: absolute; z-index: 0;
  inset: clamp(1.2rem, 3vw, 2.5rem) auto auto clamp(-2.5rem, -2vw, -1.2rem);
  width: 55%; height: 82%;
  background: var(--beige);
}
.matblock.tp::before { background: rgba(139,122,117,.28); }
.matblock.bx::before { background: rgba(92,24,34,.12); }
.matblock.right::before { inset: auto clamp(-2.5rem, -2vw, -1.2rem) clamp(-1.5rem, -1.5vw, -.8rem) auto; }
.matblock > .imgframe { position: relative; z-index: 1; }

/* Floating Detail-Bilder (Parallax) in Statement-Sektionen */
.float-pic { position: absolute; z-index: 0; overflow: hidden; }
.float-pic img { width: 100%; height: 100%; object-fit: cover; }
.statement-stage { position: relative; }
.statement-stage .wrap { position: relative; z-index: 1; }

/* Bordeaux-Statement-Block (Markenmoment) */
.bdx-block { background: var(--bordeaux); color: var(--creme); position: relative; overflow: clip; }
.bdx-block .statement, .bdx-block blockquote { color: var(--creme); }
.bdx-block .micro { color: var(--bordeaux-on-dark); }
.bdx-block .who .n { color: var(--creme); }
.bdx-block .who .r { color: var(--bordeaux-on-dark); }
.bdx-block .lead { color: rgba(246,242,236,.85); }

/* Mega-Liste mit Sticky-Seitenbild */
.mega-wrap { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.mega-wrap .mega-col { grid-column: 1 / span 7; }
.mega-wrap .mega-side { grid-column: 9 / span 4; position: sticky; top: 110px; }
.mega-wrap .mega-side .imgframe { aspect-ratio: 3 / 4; }
.mega-wrap .mega-side img { transition: opacity .4s var(--ease); }
.mega-wrap .mega-side .side-cap { margin-top: .8rem; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe-dark); }
.on-dark .mega-wrap .mega-side .side-cap { color: var(--taupe-on-dark); }

/* Header: schneller Kontakt-Link */
.head-cta { justify-self: end; display: inline-flex; align-items: center; gap: 1.8rem; }
.head-cta .ulink { font-size: .72rem; }
.site-header.is-light:not(.is-solid) .head-cta .ulink { color: var(--creme); }
body.menu-open .head-cta .ulink { color: var(--creme); }

/* Kompaktere Rhythmen */
.sec--xl { padding-block: clamp(6.5rem, 11.5vw, 10.5rem); }

@media (max-width: 1023px) {
  .mega-wrap .mega-col { grid-column: 1 / -1; }
  .mega-wrap .mega-side { display: none; }
}
@media (max-width: 767px) {
  /* Mobile behält Markenzeichen – nur dezenter statt versteckt */
  .float-pic { display: none; }
  .matblock::before { inset: .7rem auto auto -.55rem; height: 70%; }
  .matblock.right::before { inset: auto -.55rem -.55rem auto; }
  .head-cta .ulink { display: none; }
  .orb { opacity: .55; transform: scale(.7); }
}

/* ============================================================ v2.2 – Kino-Element */
.kino { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--espresso-deep); color: var(--creme); }
.kino video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kino .veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,24,21,.45), rgba(30,24,21,.28) 45%, rgba(30,24,21,.58)); }
.kino .c-inner { position: relative; display: flex; align-items: center; gap: clamp(1.8rem, 3.5vw, 3.6rem); padding: 0 var(--pad-x); }
.c-play { flex: none; width: clamp(96px, 10vw, 150px); aspect-ratio: 1; border-radius: 50%; border: 0; background: var(--creme); color: var(--espresso-deep); display: grid; place-items: center; cursor: pointer; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.c-play:hover { transform: scale(1.07); }
.c-play .ic { position: relative; width: 26%; height: 30%; }
.c-play .ic::before, .c-play .ic::after { content: ""; position: absolute; top: 0; bottom: 0; width: 30%; background: currentColor; }
.c-play .ic::before { left: 0; }
.c-play .ic::after { right: 0; }
.kino.paused .c-play .ic::before { left: 20%; width: 0; background: transparent; border-left: 1.15rem solid currentColor; border-top: .8rem solid transparent; border-bottom: .8rem solid transparent; }
.kino.paused .c-play .ic::after { display: none; }
.c-lines { font-weight: 700; font-size: clamp(2.1rem, 4.8vw, 4.4rem); line-height: 1.12; letter-spacing: -0.02em; max-width: 13ch; text-wrap: balance; }
.c-micro { position: absolute; left: var(--pad-x); bottom: 2.2rem; color: var(--beige); }
@media (max-width: 767px) {
  .kino { min-height: 84svh; }
  .kino .c-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .c-play { width: 76px; }
  .c-micro { bottom: 1.4rem; }
}

/* ============================================================ v2.4 – Signature-Elemente */
/* Kontur-Typo (Hero-Akzent + Marquee) */
/* Kontur-Typo im Hero entfernt (v2.7.1): Haarlinie über Bewegtbild war schlecht lesbar.
   Der Zweiklang kommt jetzt über Farbe statt über Umriss. */
.hero h1 .outl, .hero h1 .w.outl { color: var(--beige); -webkit-text-stroke: 0; -webkit-text-fill-color: currentColor; }
.hero h1 { font-size: clamp(2.9rem, 7.2vw, 6.6rem); line-height: 1.02; letter-spacing: -0.025em; max-width: 15ch; }
.marquee .outl { -webkit-text-stroke: 1px currentColor; -webkit-text-fill-color: transparent; }
.marquee .outl .dot { -webkit-text-stroke: 0; -webkit-text-fill-color: var(--bordeaux); }

/* Horizontaler Projekt-Streifen: Fallback = nativer Querscroll, mit JS = gepinnt + scrollgesteuert */
.hscroll { background: var(--creme); padding: var(--space-l) 0; }
.hs-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(1.6rem, 4vh, 3rem); }
.hs-track { display: flex; gap: clamp(1.2rem, 2.4vw, 2.4rem); padding: 0 var(--pad-x); overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
.hs-track::-webkit-scrollbar { display: none; }
.hs-card { flex: none; width: clamp(280px, 33vw, 540px); scroll-snap-align: start; }
.hs-card .imgframe { aspect-ratio: 4/3; }
.hs-card.lift { transform: translateY(clamp(1.2rem, 3.5vh, 2.8rem)); }
.hs-no { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .2em; color: var(--taupe-dark); margin-bottom: .7rem; }
.hs-card .t { display: block; margin-top: .9rem; font-weight: 600; line-height: 1.35; }
.hs-card:hover .imgframe img { transform: scale(1.045); }
.hs-card .imgframe img { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.hs-more { display: grid; place-items: center; align-self: center; width: clamp(220px, 22vw, 360px); aspect-ratio: 4/3; background: var(--espresso-deep); color: var(--creme); font-weight: 700; font-size: clamp(1.1rem, 1.6vw, 1.5rem); }
.hs-more .arr { color: var(--bordeaux-on-dark); }
.hs-more:hover { background: var(--bordeaux); }
.hscroll.js-pin { height: 280vh; padding: 0; }
.hscroll.js-pin .hs-pin { position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.hscroll.js-pin .hs-track { overflow: visible; width: max-content; will-change: transform; }

/* Prozess-Schritte: riesige Konturziffern statt klassischer Liste */
.steps-rows.steps-num .row .no { font-size: clamp(3.2rem, 6.5vw, 6rem); font-weight: 700; line-height: .85; letter-spacing: 0; -webkit-text-stroke: 1.5px var(--taupe-on-dark); -webkit-text-fill-color: transparent; transition: -webkit-text-fill-color .4s; }
.steps-rows.steps-num .row { align-items: center; grid-template-columns: clamp(6rem, 9vw, 10rem) 1fr 1.2fr; }
@media (max-width: 1023px) { .steps-rows.steps-num .row { grid-template-columns: clamp(5rem, 11vw, 7rem) 1fr; } }
@media (max-width: 767px) { .steps-rows.steps-num .row { grid-template-columns: 1fr; } }
.steps-rows.steps-num .row:hover .no { -webkit-text-fill-color: var(--bordeaux-on-dark); -webkit-text-stroke-color: transparent; }

/* ============================================================ v2.5 – Feinschliff & Mobile */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 150; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; background: var(--bordeaux); transform-origin: 0 50%; transform: scaleX(0); }
.hs-bar { height: 1px; background: var(--line); margin: clamp(1.4rem, 3vh, 2.4rem) var(--pad-x) 0; }
.hs-bar span { display: block; height: 3px; margin-top: -1px; background: var(--bordeaux); transform-origin: 0 50%; transform: scaleX(0); }
.c-play, .hs-more { will-change: transform; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
@media (max-width: 767px) {
  .kino { min-height: 92svh; }
  /* Galerien werden mobil zu Wisch-Streifen (horizontales Scrollen als durchgängiges Motiv) */
  .gal { display: flex; overflow-x: auto; gap: .9rem; scroll-snap-type: x mandatory; margin-inline: calc(-1 * var(--pad-x)); padding-inline: var(--pad-x); scrollbar-width: none; }
  .gal::-webkit-scrollbar { display: none; }
  .gal .g1, .gal .g2, .gal .g3, .gal .g4 { flex: none; width: 78vw; margin: 0; scroll-snap-align: start; }
}

/* ============================================================ v2.6 – Team-Kreise & Luft */
.team-circles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 5vw, 5rem); justify-items: center; text-align: center; }
.tc { max-width: 300px; }
.tc.lift { transform: translateY(clamp(1.5rem, 4vh, 3rem)); }
.tc .ring { width: clamp(170px, 18vw, 260px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--beige); box-shadow: 0 0 0 10px var(--creme), 0 0 0 11px var(--line); transition: box-shadow .4s var(--ease); margin-inline: auto; }
.tc:hover .ring { box-shadow: 0 0 0 10px var(--creme), 0 0 0 12px var(--bordeaux); }
.tc .ring img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tc:hover .ring img { transform: scale(1.06); }
.tc .n { display: block; margin-top: 1.4rem; font-weight: 700; font-size: 1.05rem; }
.tc .r { display: block; margin-top: .25rem; font-size: .85rem; color: var(--taupe-dark); }
@media (max-width: 767px) {
  .team-circles { grid-template-columns: 1fr; gap: 2.8rem; }
  .tc.lift { transform: none; }
}

/* Statement-Bühnen: Textbreite kappen, damit schwebende Bilder nie in den Text laufen (Poppins-ch ist breit) */
.statement-stage .statement { max-width: 19ch; }

/* ============================================================ v2.7 – Effekt-Paket */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
/* 14: Sanfte Seitenübergänge */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .3s; }
/* 1: Team-Wand – Marken-Kreise für die weiteren Portraits */
.team-wall { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 2.6vw, 2.4rem); align-items: flex-end; justify-content: center; }
.team-wall .wc { display: block; border-radius: 50%; background: var(--beige); }
.team-wall .wc.w1 { width: clamp(56px, 6vw, 92px); aspect-ratio: 1; background: repeating-linear-gradient(45deg, var(--beige) 0 6px, var(--creme) 6px 12px); }
.team-wall .wc.w2 { width: clamp(72px, 8vw, 120px); aspect-ratio: 1; border: 1px solid var(--taupe); background: transparent; transform: translateY(-14px); }
.team-wall .wc.w3 { width: clamp(48px, 5vw, 80px); aspect-ratio: 1; background: var(--bordeaux); opacity: .85; }
.team-wall .wc.w4 { width: clamp(80px, 9vw, 132px); aspect-ratio: 1; background: repeating-linear-gradient(-45deg, rgba(139,122,117,.35) 0 7px, var(--creme) 7px 14px); transform: translateY(10px); }
.team-wall .wc.w5 { width: clamp(56px, 6vw, 96px); aspect-ratio: 1; border: 1px solid var(--line); background: var(--creme-bright); transform: translateY(-8px); }
.team-wall .wc.w6 { width: clamp(66px, 7vw, 110px); aspect-ratio: 1; background: var(--taupe); opacity: .55; }
.team-wall .wc.w7 { width: clamp(48px, 5vw, 84px); aspect-ratio: 1; border: 1px dashed var(--taupe); background: transparent; transform: translateY(-16px); }
.team-wall .wc.w8 { width: clamp(76px, 8.5vw, 126px); aspect-ratio: 1; background: repeating-linear-gradient(45deg, rgba(92,24,34,.16) 0 6px, var(--creme) 6px 12px); transform: translateY(6px); }
/* 7: Zahlen füllen sich beim Erscheinen */
.stats-giant .num { -webkit-text-stroke: 1.5px var(--creme); -webkit-text-fill-color: transparent; transition: -webkit-text-fill-color 1.5s var(--ease) .35s; }
.stat.in .num { -webkit-text-fill-color: var(--creme); }
/* 11: Custom Cursor */
.cur { position: fixed; left: 0; top: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--bordeaux); pointer-events: none; z-index: 400; transform: translate(-50%, -50%); transition: width .25s, height .25s, opacity .3s, background .3s; opacity: 0; }
.cur.on { opacity: .85; }
.cur.big { width: 40px; height: 40px; opacity: .22; }
@media (pointer: coarse) { .cur { display: none; } }
/* 15: Kontakt-Marquee vor dem Footer */
.cta-marquee { display: block; background: var(--espresso-deep); border-bottom: 1px solid var(--line-dark); overflow: hidden; white-space: nowrap; padding: clamp(1.4rem, 3vw, 2.4rem) 0; }
.cta-marquee .track { display: inline-block; animation: cmq 32s linear infinite; }
.cta-marquee span:not(.dot) { font-size: clamp(1.8rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; color: var(--creme); padding-right: 3rem; transition: color .3s; }
.cta-marquee .dot { color: var(--bordeaux-on-dark); }
.cta-marquee:hover span { color: var(--bordeaux-on-dark); }
@keyframes cmq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .cta-marquee .track { animation: none; } }


/* ============================================================ v2.7.1 – Hero aufgeräumt */
.hero h1 { text-wrap: balance; }
.hero .hero-sub { max-width: 40ch; }

/* Hero-Einstiege als echte Flächen statt dünner Textlinks */
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; flex: 0 0 auto; }
.hero-cta a {
  display: inline-flex; align-items: center; justify-content: center; min-height: 3rem;
  padding: .95rem 1.9rem; border: 1px solid rgba(246,242,236,.45); color: var(--creme);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; backdrop-filter: blur(2px); background: rgba(30,24,21,.22);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.hero-cta a:hover, .hero-cta a:focus-visible { background: var(--creme); border-color: var(--creme); color: var(--espresso); }
.hero-cta a.primary { background: var(--creme); border-color: var(--creme); color: var(--espresso); }
.hero-cta a.primary:hover, .hero-cta a.primary:focus-visible { background: var(--bordeaux); border-color: var(--bordeaux); color: var(--creme); }

@media (max-width: 767px) {
  /* Weniger Textlast, mehr Bild: Hero-Block kompakter stapeln */
  .hero .inner { padding-bottom: clamp(2rem, 4.5vh, 3rem); }
  .hero .micro { margin-bottom: .95rem; font-size: .68rem; letter-spacing: .13em; }
  .hero h1 { font-size: clamp(2.5rem, 11.5vw, 3.4rem); line-height: 1.06; max-width: none; }
  .hero .hero-row { margin-top: 1.5rem; gap: 1.4rem; }
  .hero .hero-sub { font-size: .96rem; line-height: 1.5; max-width: 34ch; }
  .hero-cta { width: 100%; gap: .6rem; }
  .hero-cta a { flex: 1 1 0; min-width: 0; padding: .95rem .6rem; font-size: .72rem; letter-spacing: .1em; }
}
@media (max-width: 359px) {
  .hero-cta { flex-direction: column; }
  .hero-cta a { flex: none; width: 100%; }
}


/* ============================================================ v2.7.2 – Menü schließbar */
/* .site-header ist position:fixed mit z-index:100 und bildet damit einen eigenen
   Stacking-Context. Der z-index:220 des Menü-Buttons konnte deshalb NIE über das
   Overlay (z-index:200) steigen – der Schließen-Button lag darunter und war tot.
   Beim geöffneten Menü wird der ganze Header angehoben. */
body.menu-open .site-header { z-index: 220; }

/* Größere Trefferfläche für den Schließen-Zustand (Touch) */
body.menu-open .menu-btn { padding: .75rem 0 .75rem .75rem; }



/* ============================================================ v2.7.3 – Abnahme-Fixes */
/* .ed behielt unter 768px die 12 Spalten samt 32px-Gap: 11 Lücken = 352px in einem
   320px-Container -> Spalten rechneten auf 0px, volle Spannweite ragte 12–21px heraus.
   Auf schmalen Screens ist eine Spalte richtig. */
@media (max-width: 767px) {
  .ed { grid-template-columns: 1fr; gap: clamp(2rem, 7vw, 3rem); }
  .b-form { grid-template-columns: 1fr; }
}

/* Textlinks waren mobil nur 21px hoch – unter dem 24px-Minimum (WCAG 2.5.8).
   Vertikales Padding vergrößert die Trefferfläche, ohne den Textfluss zu ändern. */
@media (max-width: 767px) {
  .ulink { padding-block: .62rem; }
  .site-footer .cols a, .menu-foot a { display: inline-block; padding-block: .3rem; }
}

/* Datenschutz-Checkbox: 20x20 ist zu klein zum Treffen */
.check input[type="checkbox"] { cursor: pointer; }

/* Footer-Kleinlinks und Kontaktlinks ebenfalls auf >=24px Trefferfläche */
@media (max-width: 767px) {
  .site-footer .bottom a, .site-footer address a, .menu-foot a, .b-form a { display: inline-block; padding-block: .34rem; }
}
/* Pfeil der Leistungsliste ragte auf sehr schmalen Screens heraus */
@media (max-width: 480px) { .mega-list a .arr { display: none; } }

/* Inline-Links in Fließtexten mobil ebenfalls auf sichere Trefferfläche */
@media (max-width: 767px) {
  .prose a, .check a, .b-form .form-note a, address a { display: inline-block; padding-block: .3rem; }
  .mega-list a .arr { display: none; }
}
/* Bildunterschrift bleibt lesbar, auch wenn ein Bild nicht lädt */
/* Platzhalterton bleibt das ruhige Beige – die Bildunterschriften sind über
   ihre eigenen Verläufe abgesichert, nicht über einen dunklen Rahmen. */
.proj-flow .imgframe::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(30,24,21,.6) 0%, rgba(30,24,21,.1) 46%, rgba(30,24,21,0) 68%);
}
.proj-flow .imgframe .cap { position: relative; z-index: 2; color: var(--creme); }

/* Überschriften brachen auf schmalen Screens mitten im Wort ohne Trennstrich
   ("Designoberfläc|hen"). lang="de" + hyphens:auto trennt korrekt mit Bindestrich. */
h1, h2, h3, .statement, .giant, .cap, .hero h1 {
  hyphens: auto; -webkit-hyphens: auto; overflow-wrap: break-word;
}
@media (min-width: 900px) { h1, h2, h3, .statement, .giant { hyphens: manual; -webkit-hyphens: manual; } }

/* hyphens:auto wirkt nur mit installiertem Trennmuster. Damit lange Komposita
   auf schmalen Screens sicher passen, zusätzlich die Schriftgröße begrenzen. */
@media (max-width: 767px) {
  .hero h1, .page-head h1 { font-size: clamp(1.95rem, 8.6vw, 3rem); }
  .statement, h2.statement { font-size: clamp(1.45rem, 6.4vw, 2.3rem); }
  .giant { font-size: clamp(1.9rem, 8vw, 2.8rem); }
}
@media (max-width: 400px) {
  .hero h1, .page-head h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
}

/* Bildunterschriften der Projekt-Karten waren dunkles Espresso direkt auf dem Foto,
   ohne Abdunklung – auf dunklen Bildern praktisch unlesbar (1,5:1).
   Gleiche Behandlung wie bei .pic-block: heller Text auf weichem Verlauf. */
.hs-card .imgframe::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(30,24,21,.66) 0%, rgba(30,24,21,.12) 46%, rgba(30,24,21,0) 68%);
}
.hs-card .imgframe .cap {
  position: absolute; left: clamp(1rem,2vw,1.5rem); right: clamp(1rem,2vw,1.5rem); bottom: clamp(.9rem,1.8vw,1.3rem);
  z-index: 2; color: var(--creme); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
}

/* Restlicher 2px-Überstand auf /handwerk/: clip statt hidden, damit sticky/pinning heil bleibt */
main { overflow-x: clip; }

/* Telefon-/Mail-Links im Kontaktbereich sicher über 24px */
@media (max-width: 767px) { .prose a, .check a, address a, .b-form a, .site-footer .bottom a { padding-block: .42rem; } }

@media (max-width: 767px) { aside li a, .push5 li a { display: inline-block; padding-block: .42rem; } }

/* Bei Bewegungsreduzierung stand der Lauftext still und war rechts abgeschnitten
   ("Lassen Sie uns über Ihr Proje…"). Statt nur die Animation zu stoppen,
   den Text umbrechen lassen und die Wiederholungen ausblenden. */
@media (prefers-reduced-motion: reduce) {
  .cta-marquee { white-space: normal; }
  .cta-marquee .track { display: block; text-align: center; }
  .cta-marquee .track > span:not(:first-child) { display: none; }
  .marquee { white-space: normal; }
  .marquee .track { display: block; text-align: center; }
  .marquee .track > span:nth-child(n+16) { display: none; }
}

/* Damit auch ein Bild ohne Reveal-Rahmen nicht hart einspringt */
.imgframe img { background: var(--beige); }

/* Bild-Einblendung. Nur bei aktivem JavaScript, damit ohne JS niemals
   unsichtbare Bilder zurückbleiben. */
@media (scripting: enabled) {
  .imgframe img, .shg-i img, .float-pic img { opacity: 0; transition: opacity .55s var(--ease); }
  .imgframe img.is-ld, .shg-i img.is-ld, .float-pic img.is-ld { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .imgframe img, .shg-i img, .float-pic img { opacity: 1; transition: none; }
}
