/* ================================================
   iRise — Boutique Brand & Web Studio
   style.css — Optimierte Version
   ================================================ */

/* --- FONTS --- */
@font-face {
  font-family: 'Playfair';
  src: url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'RobotoSC';
  src: url('../fonts/Roboto_SemiCondensed-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'RobotoSC';
  src: url('../fonts/Roboto_SemiCondensed-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'RobotoSC';
  src: url('../fonts/Roboto_SemiCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DM-Sans-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DM-Sans-300-italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DM-Sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DM-Sans-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DM-Sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --- TOKENS --- */
:root {
  --bg:          #F8F7F4;
  --bg-alt:      #EEECEA;
  --bg-dark:     #141312;
  --bg-dark2:    #1E1C1B;
  --surface:     #FFFFFF;
  --ink:         #1A1818;
  --ink-soft:    #5A5856;
  --ink-muted:   #9A9694;
  --accent:      #C8366A;
  --accent-h:    #A82A58;
  --accent-pale: rgba(200,54,106,0.09);
  --line:        rgba(26,24,24,0.10);
  --line-dark:   rgba(255,255,255,0.10);

  --f-display: 'Playfair', Georgia, serif;
  --f-body:    'DM Sans', 'RobotoSC', -apple-system, sans-serif;

  --nav-h: 76px;
  --max-w: 1200px;
  --ease:  cubic-bezier(0.25,0.46,0.45,0.94);
  --easex: cubic-bezier(0.16,1,0.3,1);
}

/* --- RESET --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; font: inherit; cursor: pointer; }
select,input,textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }



/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) { .container { padding: 0 1.25rem; } }

/* --- REVEAL ANIMATIONS --- */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0.1s);
}
.reveal-up.visible, .reveal-scale.visible { opacity: 1; transform: none; }

/* --- SECTION LABELS & HEADS --- */
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.section-title em { font-style: italic; color: var(--ink-soft); }
.section-head { margin-bottom: 3.5rem; }
.section-head-row {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
}
.section-intro {
  max-width: 38ch;
  font-size: 1.078rem;
  color: var(--ink-soft);
  line-height: 1.65;
  padding-bottom: 0.2rem;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,54,106,0.28);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

/* ================================================
   COOKIE BANNER
   ================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  max-width: 540px;
  background: var(--ink);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 1000;
  font-size: 0.8125rem;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  transform: translateY(130%);
  transition: transform 0.55s var(--easex);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { flex: 1; line-height: 1.5; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-cookie-accept, .btn-cookie-decline {
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-cookie-accept { background: var(--accent); color: #fff; }
.btn-cookie-accept:hover { background: var(--accent-h); }
.btn-cookie-decline { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); }
.btn-cookie-decline:hover { background: rgba(255,255,255,0.2); }

/* ================================================
   NAVIGATION
   ================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 800;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(248,247,244,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-container {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.brand-logo { height: 50px; width: auto; object-fit: contain; }
.brand-logo--footer { height: 50px; filter: brightness(0) invert(1); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  z-index: 1310;
  position: relative;
}
.toggle-line {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--accent);
  transition: transform 0.35s var(--ease), opacity 0.2s;
  transform-origin: center;
}
.site-header.scrolled .toggle-line { background: var(--accent); }
.nav-toggle.open .toggle-line:first-child { transform: rotate(45deg) translate(4px,4px); }
.nav-toggle.open .toggle-line:last-child  { transform: rotate(-45deg) translate(4px,-4px); }

/* Nav menu — fullscreen overlay with slide-in panel */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 100dvh;
  background: rgba(20,19,18,0.28);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.7rem;
  padding: calc(var(--nav-h) + 1.2rem) 1.2rem 1.4rem;
  pointer-events: none;
  opacity: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.35s var(--ease);
  z-index: 1300;
}
.nav-menu::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: min(90vw, 24rem);
  height: 100dvh;
  background: rgba(248,247,244,0.995);
  box-shadow: -18px 0 40px rgba(20,19,18,0.18);
  transform: translateX(100%);
  transition: transform 0.4s var(--easex);
}
.nav-menu.open { pointer-events: auto; opacity: 1; }
.nav-menu.open::before { transform: translateX(0); }
.nav-menu li {
  width: min(100%, 20.5rem);
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  margin-left: auto;
}

.nav-link {
  display: inline-block;
  text-align: left;
  width: 100%;
  line-height: 1.05;
  text-wrap: balance;
}

.site-header .nav-link.active { color: var(--accent); }
.site-header .nav-link.active::after { width: 100%; }

body.nav-open { overflow: hidden; }

.nav-cta-slot {
  margin-top: auto;
  padding-top: 0.55rem;
}

.nav-link--subtle {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(26,24,24,0.72);
}

.nav-link--subtle::after {
  display: none;
}

.nav-link--subtle:hover {
  color: var(--accent);
}

.nav-link {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.3vw, 1.85rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  position: relative;
  transition: color 0.2s;
  padding: 0.15rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }

.nav-link--cta {
  font-family: var(--f-body);
  font-size: 0.82rem !important;
  background: var(--ink);
  color: var(--bg) !important;
  padding: 11px 18px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-link--cta::after { display: none !important; }
.nav-link--cta.active { color: var(--bg) !important; }
.nav-link--cta.active::after { display: none !important; }
.nav-link--cta:hover { background: var(--accent) !important; color: #fff !important; transform: translateY(-2px); }

/* ================================================
   HERO
   ================================================ */
/* ── HERO — Full-bleed background image layout ── */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
}

/* Full-bleed background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
  z-index: 0;
}

/* Gradient overlay: opaque on left for text, fade to transparent right */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(248,247,244,0.96) 0%,
    rgba(248,247,244,0.90) 30%,
    rgba(248,247,244,0.55) 52%,
    rgba(248,247,244,0.10) 72%,
    rgba(248,247,244,0.00) 100%
  );
}

/* Text content — left half, above overlays */
.hero-left {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Constrain text to left ~52% */
.hero-left > * {
  max-width: 52%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.eyebrow-dot {
  display: block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.22em;
  align-items: baseline;
  max-width: 56%;
}
.hero-word { display: inline-block; }
.hero-break { width: 100%; height: 0; flex-basis: 100%; }
.hero-word--em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.hero-rule {
  width: 48px; height: 1px;
  background: var(--accent);
  opacity: 0.5;
  margin-bottom: 1.25rem;
}
.hero-body {
  font-size: 1.078rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }

/* Scroll hint — bottom right */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  z-index: 2;
  color: var(--ink);
}
.scroll-bar {
  width: 1px; height: 36px;
  background: var(--ink);
  display: block;
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
.scroll-text { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; writing-mode: vertical-rl; }

/* ================================================
   STATEMENT
   ================================================ */
.statement {
  background: var(--bg-dark);
  padding: 5rem 0 0;
  overflow: hidden;
}
.statement-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.statement-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.statement-quote {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 70ch;
}
.statement-quote em { color: var(--accent); font-style: normal; }

.statement-marquee-wrap {
  border-top: 1px solid var(--line-dark);
  padding: 1.25rem 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee-run 28s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  font-style: italic;
  color: rgba(255,255,255,0.22);
  will-change: transform;
  flex-shrink: 0;
  min-width: max-content;
}
.marquee-track .dot { color: var(--accent); opacity: 0.6; }
@keyframes marquee-run { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@media (max-width: 768px) {
  .statement-marquee-wrap { padding: 1rem 0; }
  .marquee-track { font-size: 1.078rem; gap: 1.5rem; animation-duration: 18s; }
}

/* ================================================
   LEISTUNGEN
   ================================================ */
.leistungen { padding: 5.5rem 0; background: var(--bg); }

.leistungen-list {
  border-top: 1px solid var(--line);
}
.leistung-row {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.leistung-row:hover { background: var(--surface); }

.leistung-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  text-align: left;
  transition: color 0.2s;
}
.leistung-trigger:hover .l-title { color: var(--accent); }

.l-num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.22;
  line-height: 1;
  transition: opacity 0.3s;
}
.leistung-trigger:hover .l-num,
.leistung-row[data-open] .l-num { opacity: 0.55; }

.l-title {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 0.2s;
}
.l-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.leistung-trigger:hover .l-toggle { border-color: var(--accent); background: var(--accent-pale); }
.l-toggle::before, .l-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.l-toggle::before { width: 10px; height: 1.5px; }
.l-toggle::after  { width: 1.5px; height: 10px; }
.leistung-row[data-open] .l-toggle::after { transform: rotate(90deg); opacity: 0; }
.leistung-row[data-open] .l-toggle { border-color: var(--accent); background: var(--accent-pale); }

.leistung-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--easex);
}
.leistung-panel[data-open] { max-height: 400px; }
.l-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 0 0 2rem 80px;
}
.l-panel-inner p {
  font-size: 1.078rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.l-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
}
.l-list li {
  font-size: 0.875rem;
  color: var(--ink-muted);
  padding-left: 1rem;
  position: relative;
}
.l-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ================================================
   STATS
   ================================================ */
.stats {
  background: var(--bg-dark);
  padding: 4.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 2rem;
}
.stat-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0.6rem;
}
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-sfx {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: var(--line-dark);
  flex-shrink: 0;
}

/* ================================================
   PROZESS
   ================================================ */
.prozess { padding: 5.5rem 0; background: var(--bg-alt); }
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.prozess-step {
  padding: 2.5rem 2rem 2.5rem 0;
  border-top: 2px solid var(--line);
  transition: border-color 0.3s;
  position: relative;
}
.prozess-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: 0;
  width: 1px;
  height: 40px;
  background: var(--line);
}
.prozess-step:hover { border-color: var(--accent); }
.p-num {
  display: block;
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.45;
  margin-bottom: 1.25rem;
}
.p-title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.p-desc { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }

/* ================================================
   FÜR WEN
   ================================================ */
.fuerwen { padding: 5.5rem 0; background: var(--bg); }
.fuerwen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 3rem;
  align-items: start;
}
.fuerwen-lead {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.fuerwen-body { font-size: 1.078rem; color: var(--ink-soft); line-height: 1.75; }
.fuerwen-list { display: flex; flex-direction: column; gap: 0; }
.fuerwen-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.078rem;
  color: var(--ink-soft);
  line-height: 1.6;
  transition: color 0.2s;
}
.fuerwen-item:first-child { border-top: 1px solid var(--line); }
.fuerwen-item:hover { color: var(--ink); }
.fw-arrow {
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform 0.2s;
}
.fuerwen-item:hover .fw-arrow { transform: translateX(4px); }
.fuerwen-cta { margin-top: 3rem; }

/* ================================================
   PROJEKTE
   ================================================ */
.projekte { padding: 5.5rem 0 0; background: var(--bg); }
.projekte .section-head { padding: 0 2rem; max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.projekte-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  margin-top: 3rem;
  background: var(--bg-alt);
}

.projekt { overflow: hidden; background: var(--bg); }
.projekt-link { display: flex; flex-direction: column; height: 100%; }
.projekt--a { grid-column: 1; grid-row: 1 / 3; }
.projekt--b { grid-column: 2; grid-row: 1; }
.projekt--c { grid-column: 1; grid-row: 3; }
.projekt--d { grid-column: 2; grid-row: 2 / 4; }

.projekt-img {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.proj-ph {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  transition: transform 0.6s var(--ease);
}
.projekt-link:hover .proj-ph { transform: scale(1.03); }
.proj-ph span {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.3);
  font-style: italic;
  max-width: 26ch;
  line-height: 1.5;
}
.ph--warm  { background: linear-gradient(145deg, #ECEAE6, #E0DDD8); }
.ph--cool  { background: linear-gradient(145deg, #ECEAE6, #E0DDD8); }
.ph--slate { background: linear-gradient(145deg, #ECEAE6, #E0DDD8); }
.ph--rose  { background: linear-gradient(145deg, #ECEAE6, #E0DDD8); }

.projekt--a .proj-ph { min-height: 580px; }
.projekt--b .proj-ph { min-height: 280px; }
.projekt--c .proj-ph { min-height: 260px; }
.projekt--d .proj-ph { min-height: 560px; }

.proj-hover {
  position: absolute;
  inset: 0;
  background: rgba(20,19,18,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.projekt-link:hover .proj-hover { opacity: 1; }

.projekt-info {
  padding: 1.5rem 1.75rem 1.75rem;
}
.proj-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.proj-name {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.proj-desc { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }

/* ================================================
   STUDIO
   ================================================ */
.studio { padding: 5.5rem 0; background: var(--bg-alt); }
.studio-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.studio-img-wrap {
  position: relative;
}
.studio-img {
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  background: var(--bg-alt);
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
}
.studio-img-deco {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(200,54,106,0.2);
  border-radius: 18px;
  pointer-events: none;
  transform: rotate(1.5deg);
}
.studio-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
}
.studio-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.078rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.studio-vals {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.val-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.val-row:last-child { border-bottom: 1px solid var(--line); }
.val-key {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.val-val { font-size: 0.875rem; color: var(--ink-soft); }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { padding: 5.5rem 0; background: #ffffff; }
.testimonials .section-label { margin-bottom: 2.5rem; }
.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.25rem 2.5rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.test-mark {
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 0.25rem;
  display: block;
}
.test-text {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.test-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.test-role {
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--ink-muted);
}

/* ================================================
   CTA BAND
   ================================================ */
.cta-band {
  background: var(--bg-dark);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 3px solid var(--accent);
}
.cta-band-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-band-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.cta-band-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 44ch;
}
.btn-cta-band {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 15px 32px;
  border-radius: 100px;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-cta-band:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,54,106,0.3);
}

/* ================================================
   KONTAKT
   ================================================ */
.kontakt { padding: 5.5rem 0; background: var(--bg-alt); }
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.kontakt-body {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.kontakt-email {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent);
  display: block;
  transition: opacity 0.2s;
}
.kontakt-email:hover { opacity: 0.7; }

/* Form */
.kontakt-form {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.opt { text-transform: none; letter-spacing: 0; font-weight: 300; color: var(--ink-muted); }
input[type=text], input[type=email], select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  font-size: 0.875rem;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-pale);
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--ink-muted); }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9694' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 110px; }
.form-error { font-size: 0.75rem; color: #C0392B; min-height: 15px; }
input.error, textarea.error, select.error { border-color: #C0392B; }

.form-privacy { display: flex; flex-direction: column; gap: 6px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.55;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
}
.checkbox-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg);
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-label input:checked + .checkbox-box {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox-label input:checked + .checkbox-box::after {
  content: '';
  display: block;
  width: 10px; height: 6px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.checkbox-label a { color: var(--accent); text-decoration: underline; }
.btn-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-success {
  padding: 1rem 1.25rem;
  background: var(--accent-pale);
  border: 1px solid rgba(200,54,106,0.2);
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--ink);
  text-align: center;
}
.form-success[hidden] { display: none; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer { background: var(--bg-dark); padding: 5rem 0 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 2rem;
}
.footer-tagline { font-size: 0.8125rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.footer-col-head {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left {
    padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
    max-width: 100%;
  }
  .hero-right { height: 420px; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .stat-sep { display: none; }
  .stat-item { padding: 2.5rem 1.5rem; }

  .prozess-grid { grid-template-columns: repeat(2,1fr); }
  .prozess-step::after { display: none; }

  .fuerwen-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .projekte-grid { grid-template-columns: 1fr 1fr; }
  .projekt--a { grid-column: 1 / 3; grid-row: 1; }
  .projekt--b { grid-column: 1;   grid-row: 2; }
  .projekt--c { grid-column: 2;   grid-row: 2; }
  .projekt--d { grid-column: 1 / 3; grid-row: 3; }
  .projekt--a .proj-ph { min-height: 380px; }
  .projekt--d .proj-ph { min-height: 320px; }

  .studio-inner { grid-template-columns: 1fr; gap: 3rem; }
  .studio-badge { left: 1rem; }
  .studio-img { aspect-ratio: 16/7; }

  .test-grid { grid-template-columns: 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .l-panel-inner { grid-template-columns: 1fr; padding-left: 0; }
}

/* ================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  body { cursor: auto; }

  .hero-left { padding: calc(var(--nav-h) + 2rem) 1.25rem 2.5rem; }
  .nav-menu { gap: 0.58rem; padding-top: calc(var(--nav-h) + 1rem); padding-right: 1rem; padding-left: 1rem; }
  .nav-link { font-size: clamp(1.02rem, 4.6vw, 1.28rem); }
  .nav-link--submenu { font-size: 0.76rem; }
  .nav-link--cta { margin-top: 0.7rem; }
  .hero-left > * { max-width: 100%; }
  .hero-headline { font-size: clamp(2.8rem, 10vw, 4rem); max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(248,247,244,0.97) 0%,
      rgba(248,247,244,0.92) 55%,
      rgba(248,247,244,0.70) 75%,
      rgba(248,247,244,0.40) 100%
    );
  }
  .hero-bg-img { object-position: 70% center; }
  .hero-est-badge { z-index: 2; font-size: 0.7rem; padding: 10px 18px; bottom: 1rem; right: 1rem; }

  .section-head-row { flex-direction: column; gap: 1rem; }

  .leistung-trigger { grid-template-columns: 48px 1fr auto; gap: 1rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .kontakt-form { padding: 1.25rem; border-radius: 10px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-nav { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-wrap: wrap; gap: 1rem; }

  .val-row { grid-template-columns: 1fr; gap: 4px; }
  .studio-badge { left: 1rem; bottom: 1rem; }

  .cta-band { padding: 3.5rem 1.5rem; }
  .leistungen, .prozess, .fuerwen, .studio, .testimonials, .kontakt, .faq { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .section-title { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  .stats-grid { grid-template-columns: 1fr; }
  .projekte-grid { grid-template-columns: 1fr; }
  .projekt--a, .projekt--b, .projekt--c, .projekt--d {
    grid-column: 1; grid-row: auto;
  }
  .projekt--a .proj-ph { min-height: 280px; }
  .projekt--d .proj-ph { min-height: 280px; }
}

/* Print */
@media print {
  .site-header, .cookie-banner, .cta-band { display: none; }
}

/* ── FOOTER CONTACT ICONS ── */
.footer-contact-list { gap: 12px !important; }
.footer-icon-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-icon-link:hover { color: #fff; }
.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-icon-link:hover .footer-icon { opacity: 1; }


/* ── PROJEKT REAL IMAGES ── */
.proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.projekt-link:hover .proj-img { transform: scale(1.04); }

/* Keep min-heights on the projekt-img wrapper */
.projekt--a .projekt-img,
.projekt--a .proj-img { min-height: 580px; }
.projekt--b .projekt-img,
.projekt--b .proj-img { min-height: 280px; }
.projekt--c .projekt-img,
.projekt--c .proj-img { min-height: 260px; }
.projekt--d .projekt-img,
.projekt--d .proj-img { min-height: 560px; }

@media (max-width: 1024px) {
  .projekt--a .proj-img { min-height: 380px; }
  .projekt--d .proj-img { min-height: 320px; }
}
@media (max-width: 480px) {
  .projekt--a .proj-img,
  .projekt--b .proj-img,
  .projekt--c .proj-img,
  .projekt--d .proj-img { min-height: 260px; }
}

/* ── HERO EST. BADGE ── */
.hero-est-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 100px;
  z-index: 3;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
}
.hero-est-badge:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ── TESTIMONIALS SLIDER ── */
.test-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.test-nav {
  display: flex;
  gap: 8px;
}
.test-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.test-btn svg { width: 16px; height: 16px; color: var(--ink); }
.test-btn:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
}
.test-btn:hover:not(:disabled) svg { color: #fff; }
.test-btn:active:not(:disabled) { transform: scale(0.94); }
.test-btn:disabled { opacity: 0.3; cursor: default; }

.test-slider-wrap {
  overflow: hidden;
}
.test-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 0.75rem);
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  align-items: stretch;
}

/* Override old test-grid */
.test-grid { display: none; }

.testimonials .testimonial {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  position: relative;
  min-width: 0;
  box-sizing: border-box;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
  border-top: 2px solid var(--accent);
}
.testimonials .testimonial:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.test-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1.5rem;
}
.test-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.test-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .test-slider {
    grid-auto-columns: calc(100% - 1rem);
    gap: 1rem;
  }
}

/* ── FOOTER QUOTE ── */
.footer-quote {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 28ch;
}
.footer-quote-text {
  font-family: var(--f-display);
  font-size: 1.078rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 0.4rem;
}
.footer-quote-cite {
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}

/* ── SKIP-TO-CONTENT ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 var(--radius, 6px) 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── FORM HONEYPOT (invisible spam trap) ── */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════
   PHASE 1 — VERTRAUEN (Persönliche Sektion)
════════════════════════════════════════════════════════ */
.vertrauen {
  padding: 5.5rem 0;
  background: var(--bg);
}
.vertrauen-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.vertrauen-img-wrap {
  position: relative;
}
.vertrauen-img-deco {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(200,54,106,0.2);
  border-radius: 18px;
  pointer-events: none;
  transform: rotate(1.5deg);
}
.vertrauen-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #EDE8E6 0%, #D8D0CC 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}
.vertrauen-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
}
.vertrauen-initials,
.vertrauen-studio-mark {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.05em;
  opacity: 0.28;
}
.vertrauen-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
}
.vertrauen-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.078rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.vertrauen-quote {
  border-left: 2px solid var(--accent);
  padding: 1rem 0 1rem 1.5rem;
  margin: 0;
}
.vertrauen-quote p {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.vertrauen-quote footer {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}
.vertrauen-quote cite { font-style: normal; }

/* ── KONTAKT — Fit & Hint Blocks ── */
.kontakt-fit,
.kontakt-hint {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.kontakt-fit-head,
.kontakt-hint-head {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.kontakt-fit-list,
.kontakt-hint-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kontakt-fit-list li,
.kontakt-hint-list li {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.kontakt-fit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}
.kontakt-hint-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ink-muted);
  font-size: 0.75rem;
}

/* ── RESPONSIVE — Vertrauen ── */
@media (max-width: 1024px) {
  .vertrauen-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vertrauen-badge { left: 0.75rem; right: auto; }
  .vertrauen-img-placeholder,
  .vertrauen-img { aspect-ratio: 16 / 7; }
}
@media (max-width: 768px) {
  .vertrauen { padding: 3.5rem 0; }
  .vertrauen-badge { left: 0.75rem; bottom: 0.75rem; }
}

/* ════════════════════════════════════════════════════════
   PHASE 2 — PROJEKT FACTS
════════════════════════════════════════════════════════ */
.proj-facts {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.proj-fact {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.proj-fact:last-child { border-bottom: none; }
.proj-fact dt {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.proj-fact dd {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* ── FAQ SECTION ── */
.faq { padding: 5.5rem 0; background: var(--bg-alt); }
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }

.faq-q-text {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  transition: color 0.2s;
}
.faq-question:hover .faq-q-text { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s, background 0.2s, transform 0.35s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
  top: 50%; left: 50%;
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 10px; transform: translate(-50%,-50%); }

.faq-item[open] .faq-icon {
  background: var(--accent-pale);
  border-color: var(--accent);
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%,-50%) rotate(90deg);
  opacity: 0;
}
.faq-item[open] .faq-q-text { color: var(--accent); }

.faq-answer {
  padding: 0 0 1.75rem;
  animation: faq-open 0.3s var(--ease);
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-answer p {
  font-size: 1.078rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 72ch;
}

/* ── PHASE 2 RESPONSIVE ── */
@media (max-width: 768px) {
  .faq { padding: 4rem 0; }
  .faq-q-text { font-size: 1.05rem; }
  .proj-fact { grid-template-columns: 80px 1fr; }
}

/* ── INSIGHTS TEASER (Startseite) ── */
.insights-teaser {
  padding: 5rem 0 5.5rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.insights-teaser-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.insights-teaser-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.insights-teaser-link:hover { opacity: 0.7; }
.insights-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .insights-teaser-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .insights-teaser { padding: 3.5rem 0; }
  .insights-teaser-grid { grid-template-columns: 1fr; }
}


.nav-mobile-divider {
  display: none;
}

.nav-item--group {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.38rem;
}

.nav-submenu {
  width: 100%;
  margin: 0;
  padding: 0.1rem 0 0 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.nav-submenu li {
  width: 100%;
  margin-left: 0;
}

.nav-link--submenu {
  font-size: 0.78rem;
  line-height: 1.25;
  color: rgba(26, 24, 24, 0.68);
}

.nav-link--submenu:hover,
.nav-link--submenu:focus-visible {
  color: var(--accent);
}

@media (max-width: 960px) {
  .nav-mobile-divider {
    display: block;
    width: min(100%, 20.5rem);
    height: 1px;
    margin: 0.2rem 0 0.15rem auto;
    background: rgba(17, 17, 17, 0.1);
  }
}
