/* ============================================================
   Praxis Dr. Sunja Christen — Zahnerhaltung Berlin
   Typography: Instrument Sans only (no serif, no italic)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --cream: #f5f0e6;
  --cream-soft: #ece4d2;
  --cream-warm: #faf6ec;
  --ink: #14100b;
  --ink-soft: #3b342b;
  --ink-muted: #6d6458;
  --forest: #1f3a2e;
  --forest-deep: #0f241c;
  --forest-soft: #2f5244;
  --gold: #b48a4a;
  --gold-soft: #d4b689;
  --red-mark: #d03838;
  --blush: #e8d4c2;
  --line: rgba(20, 16, 11, 0.14);
  --line-soft: rgba(20, 16, 11, 0.08);

  --f-body: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1380px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  max-width: 100%;
  min-width: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

/* Grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  font-style: normal;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 0.98; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.15; }
h4 { font-size: 1.05rem; letter-spacing: 0; font-weight: 600; }

strong, b { font-weight: 700; }
em { font-style: normal; font-weight: 500; color: var(--forest); }

.accent { color: var(--forest); }
.accent-gold { color: var(--gold); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 1.5rem; height: 1px; background: var(--ink-muted); }

p { font-size: 1rem; color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1.3vw, 1.25rem); line-height: 1.5; color: var(--ink-soft); max-width: 58ch; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; padding-block: clamp(4rem, 9vw, 7rem); z-index: 2; }
section.tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 0.4s var(--ease), border 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 0.875rem;
}

.brand {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: inline-grid;
  place-items: center;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0;
}
.brand strong { font-weight: 700; color: var(--forest); }

.nav-center {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.nav-center a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s var(--ease);
}
.nav-center a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--forest);
  transition: right 0.4s var(--ease);
}
.nav-center a:hover::after,
.nav-center a.current::after { right: 0; }
.nav-center a.current { color: var(--forest); font-weight: 600; }

.nav-right { display: flex; justify-content: flex-end; gap: 1rem; align-items: center; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  transition: background 0.3s var(--ease);
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), top 0.3s var(--ease);
}
.burger::before { top: 18px; }
.burger::after  { top: 24px; }
.burger.open::before { top: 21px; transform: rotate(45deg); }
.burger.open::after  { top: 21px; transform: rotate(-45deg); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--cream);
  padding: 6.5rem var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu-list { display: flex; flex-direction: column; gap: 0.1rem; }
.mobile-menu-list a {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.mobile-menu-list a .num {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
}
.mobile-menu.open .mobile-menu-list a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-list a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-menu-list a:nth-child(2) { transition-delay: 0.13s; }
.mobile-menu.open .mobile-menu-list a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu-list a:nth-child(4) { transition-delay: 0.23s; }
.mobile-menu.open .mobile-menu-list a:nth-child(5) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-menu-list a:nth-child(6) { transition-delay: 0.33s; }
.mobile-menu.open .mobile-menu-list a:nth-child(7) { transition-delay: 0.38s; }
.mobile-menu.open .mobile-menu-list a:nth-child(8) { transition-delay: 0.43s; }

.mobile-menu-foot {
  display: grid;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.mobile-menu-foot a { color: var(--forest); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.btn .arr { width: 1em; height: 1em; transition: transform 0.4s var(--ease); }
.btn:hover { background: var(--ink); color: var(--cream); }
.btn:hover .arr { transform: translateX(3px); }
.btn.primary { background: var(--forest); color: var(--cream-warm); border-color: var(--forest); }
.btn.primary:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
.btn.ghost { border-color: var(--line); }
.btn.ghost:hover { background: var(--cream-soft); color: var(--ink); border-color: var(--ink); }

.btn-arrow {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 0.3rem;
  transition: gap 0.3s var(--ease);
}
.btn-arrow:hover { gap: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 9rem var(--gutter) 3rem;
  min-height: 90vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(180, 138, 74, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(31, 58, 46, 0.07), transparent 60%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  padding-bottom: 0.5rem;
}
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 72vh;
  overflow: hidden;
  align-self: end;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 14s var(--ease-out) both;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.hero-title .accent { color: var(--forest); font-weight: 700; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.hero-marquee {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.hero-marquee dt {
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.hero-marquee dd {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* ---------- Section Heading ---------- */
.s-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.s-head .s-num {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.s-head h2 { max-width: 18ch; }
.s-head .s-lead { max-width: 54ch; }

/* ---------- Service Grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: background 0.4s var(--ease);
}
.service:hover { background: var(--cream-soft); }
.service .no {
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.service h3 { margin-top: 1.75rem; font-weight: 600; }
.service p { margin-top: 0.75rem; font-size: 0.95rem; }
.service .more {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.service .more::after { content: "→"; transition: transform 0.3s var(--ease); }
.service:hover .more::after { transform: translateX(4px); }

/* ---------- Feature / Image Block ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature-img {
  aspect-ratio: 4 / 5;
  background: var(--cream-soft);
  overflow: hidden;
  position: relative;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-img.wide { aspect-ratio: 16/11; }
.feature-body h2 { margin-bottom: 1.25rem; }
.feature-body p + p { margin-top: 1rem; }
.feature-body ul { margin-top: 1.5rem; display: grid; gap: 0.7rem; }
.feature-body ul li {
  display: grid; grid-template-columns: auto 1fr; gap: 0.9rem;
  padding-bottom: 0.7rem; border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.feature-body ul li::before {
  content: "●"; color: var(--gold); font-size: 0.5rem; padding-top: 0.55em;
}

/* ---------- Quote Block (as informational block, no italic) ---------- */
.quote {
  background: var(--forest);
  color: var(--cream-warm);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  position: relative;
  z-index: 2;
}
.quote-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}
.quote-inner .eyebrow { color: var(--gold-soft); }
.quote-inner .eyebrow::before { background: var(--gold-soft); }
.quote-inner blockquote {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-style: normal;
}
.quote-inner blockquote .accent { color: var(--gold-soft); font-weight: 600; }
.quote-inner cite {
  font-style: normal;
  display: block;
  margin-top: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ---------- Contact Card ---------- */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--cream-warm);
  border: 1px solid var(--line);
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; font-weight: 600; }
.contact-card h3.big { font-size: clamp(1.75rem, 2.5vw, 2.25rem); }
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0.45rem;
  column-gap: 1.2rem;
  font-size: 0.92rem;
}
.hours-grid dt { color: var(--ink-muted); font-variant-numeric: tabular-nums; }
.hours-grid dd { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
.contact-line { display: flex; gap: 0.6rem; align-items: baseline; font-size: 1rem; padding-block: 0.35rem; }
.contact-line .lbl {
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  width: 5rem;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
  position: relative;
  z-index: 2;
}
.site-footer a { transition: color 0.3s var(--ease); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(234, 227, 212, 0.15);
}
.footer-grid h4 {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-grid ul { display: grid; gap: 0.5rem; font-size: 0.92rem; }
.footer-big {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(234, 227, 212, 0.65);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .legal-links { display: flex; gap: 1.25rem; }

/* ---------- Page Header (non-home) ---------- */
.page-hero {
  padding: 9rem var(--gutter) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  border-bottom: 1px solid var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
}
.page-hero h1 { max-width: 16ch; }
.page-hero .crumb {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}
.page-hero .side { font-size: 1rem; color: var(--ink-soft); max-width: 42ch; padding-bottom: 0.5rem; }

/* ---------- Prose ---------- */
.prose {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.prose-intro {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(1.25rem, 1.75vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.prose-body p + p { margin-top: 1.1rem; }
.prose-body h3 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-weight: 600; }
.prose-body ul { margin-top: 1rem; display: grid; gap: 0.5rem; padding-left: 1rem; list-style: disc; }
.prose-body ul li { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Alt BG ---------- */
.alt-bg { background: var(--cream-soft); position: relative; z-index: 2; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}
.stat .num {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--forest);
}
.stat .lbl {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.6rem;
}

/* ---------- Process Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step {
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
}
.step .step-num {
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.7rem; font-weight: 600; }
.step p { font-size: 0.92rem; }

/* ---------- Specialty Stack ---------- */
.spec-stack { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
.spec {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 2.5rem) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.spec:last-child { border-bottom: 1px solid var(--line); }
.spec .n {
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  min-width: 3rem;
  padding-top: 0.4rem;
}
.spec h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 600;
}
.spec p { max-width: 60ch; font-size: 1rem; }
.spec .tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 0.5rem;
}

/* ---------- Team (no stock photos) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
.team-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  background: var(--cream-warm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 220px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.team-card:hover { background: #fff; transform: translateY(-2px); }
.team-card .team-initials {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream-warm);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  display: inline-grid;
  place-items: center;
}
.team-card .team-name { font-size: 1.2rem; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.team-card .team-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.1rem;
}
.team-card .team-bio { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Cinematic Image Band ---------- */
.image-band {
  position: relative;
  width: 100%;
  height: clamp(300px, 40vw, 480px);
  overflow: hidden;
  z-index: 2;
}
.image-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.image-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,36,28,0.35));
}
.image-band-caption {
  position: absolute;
  left: var(--gutter);
  bottom: 1.75rem;
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--cream-warm);
  z-index: 2;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.image-band-caption .ib-text {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.25vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 36ch;
}
.image-band-caption .ib-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- BEISPIEL FOTO placeholder ---------- */
.beispiel-foto {
  position: relative;
  background: repeating-linear-gradient(45deg, #f1e9d8 0 14px, #e8dcc5 14px 28px);
  border: 2px dashed var(--red-mark);
  color: var(--red-mark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  min-height: 200px;
  padding: 1rem;
}
.beispiel-foto::before {
  content: "BEISPIEL FOTO";
  display: block;
}
.beispiel-foto[data-label]::after {
  content: attr(data-label);
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-top: 0.6rem;
  color: var(--red-mark);
  opacity: 0.85;
  font-weight: 500;
  text-transform: none;
}

/* ---------- Responsive ---------- */

/* Safety: prevent any overflow from shifting layout */
.wrap, section, header, footer, aside, .hero, .page-hero, .image-band { max-width: 100%; }
section > * { max-width: 100%; }

@media (max-width: 1100px) {
  .nav-center { gap: 1.4rem; }
  .nav-center a { font-size: 0.78rem; }
}

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; padding: 1rem var(--gutter); }
  .nav-center { display: none; }
  .burger { display: block; }
  .nav-right { gap: 0.6rem; justify-self: end; }
  .hero { padding: 6.5rem var(--gutter) 2.5rem; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-image { order: -1; aspect-ratio: 5/4; max-height: 48vh; }
  .hero-marquee { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
  .image-band { height: clamp(260px, 55vw, 420px); }
  .image-band-caption { bottom: 1rem; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .services { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature.reverse .feature-img { order: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { grid-template-columns: 1fr; padding: 6.5rem var(--gutter) 2.5rem; }
  .prose { grid-template-columns: 1fr; }
  .s-head { grid-template-columns: 1fr; margin-bottom: 2rem; }
  .steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .spec { grid-template-columns: 1fr; gap: 1rem; padding-block: 1.75rem; }
  .spec .tag { order: -1; }
  h1, .hero-title { font-size: clamp(1.85rem, 7vw, 2.75rem); line-height: 1.05; letter-spacing: -0.02em; }
  h2 { font-size: clamp(1.5rem, 5.5vw, 2.25rem); line-height: 1.1; }
  h3 { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
  .lead, .prose-intro { font-size: clamp(1rem, 3.5vw, 1.15rem); }
  .service { min-height: 200px; padding: 1.5rem; }
  .spec h3 { font-size: clamp(1.25rem, 5vw, 1.6rem); }
  .spec p { font-size: 0.95rem; }
  .contact-card { padding: 1.75rem; }
  .contact-card h3.big { font-size: clamp(1.4rem, 5vw, 1.85rem); }
  .quote { padding: 3.5rem var(--gutter); }
  .quote-inner blockquote { font-size: clamp(1.2rem, 4.5vw, 1.75rem); line-height: 1.25; }
  .footer-big { font-size: clamp(1.35rem, 4.5vw, 1.8rem); }
  .mobile-menu-list a { font-size: clamp(1.5rem, 6.5vw, 2.2rem); }
  .hero-marquee dd { font-size: 0.88rem; }
  .image-band-caption .ib-text { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }
  /* Images inside features never bigger than viewport */
  .feature-img, .feature-img img { width: 100%; max-width: 100%; }
  /* Drop forced line breaks on headlines (except footer-big which is intentional) */
  .hero-title br, .page-hero h1 br, h2 br { display: none; }
  .footer-big br { display: inline; }
  /* Prose body list tighter */
  .prose-body ul { padding-left: 1.1rem; }
}

@media (max-width: 640px) {
  .site-header { padding: 0.875rem var(--gutter); }
  .site-header .btn.primary { display: none; }
  .burger { width: 42px; height: 42px; }
  .brand { font-size: 0.95rem; gap: 0.5rem; }
  .brand-mark { width: 26px; height: 26px; font-size: 0.78rem; }
  .hero { padding: 6rem var(--gutter) 2rem; }
  .hero-title { font-size: clamp(1.75rem, 8vw, 2.4rem); line-height: 1.05; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .hero-cta .btn { justify-content: center; width: 100%; padding: 0.85rem 1.25rem; }
  .hero-image { max-height: 40vh; aspect-ratio: 4/3; }
  .mobile-menu {
    padding: 5rem 1.25rem 1.5rem;
    justify-content: flex-start;
    gap: 1.25rem;
  }
  .mobile-menu-list { gap: 0; }
  .mobile-menu-list a { padding-block: 0.4rem; font-size: clamp(1.35rem, 6.5vw, 1.85rem); }
  .mobile-menu-cta { margin: 0.5rem 0 0 !important; }
  .mobile-menu-foot { padding-top: 1.25rem; font-size: 0.82rem; }
  .page-hero { padding: 5.5rem var(--gutter) 2rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); max-width: none; }
  .services { grid-template-columns: 1fr; }
  .service { min-height: 0; padding: 1.5rem; }
  .steps { grid-template-columns: 1fr; gap: 1.25rem; }
  .stats { grid-template-columns: 1fr; gap: 1rem; }
  .team-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-big br { display: inline; }
  .contact-card { padding: 1.5rem; gap: 1.75rem; }
  .contact-card h3.big { font-size: 1.4rem; }
  .contact-line { flex-wrap: wrap; gap: 0.2rem 0.5rem; }
  .contact-line .lbl { width: auto; }
  .hours-grid { grid-template-columns: auto 1fr; column-gap: 1rem; font-size: 0.9rem; }
  .hero-marquee { grid-template-columns: 1fr 1fr; gap: 1rem; font-size: 0.78rem; }
  .hero-marquee dd { font-size: 0.85rem; }
  .image-band { height: clamp(220px, 60vw, 340px); }
  .image-band-caption { left: 1rem; right: 1rem; bottom: 0.75rem; }
  .image-band-caption .ib-text { font-size: clamp(1rem, 4.5vw, 1.35rem); }
  .image-band-caption .ib-meta { font-size: 0.65rem; letter-spacing: 0.12em; }
  .quote { padding: 2.75rem var(--gutter); }
  .quote-inner blockquote { font-size: clamp(1.1rem, 5vw, 1.5rem); }
  .quote-inner cite { font-size: 0.7rem; margin-top: 1.25rem; }
  .feature-body ul li { font-size: 0.9rem; }
  .btn { padding: 0.8rem 1.2rem; font-size: 0.75rem; letter-spacing: 0.08em; }
  .btn-arrow { font-size: 0.75rem; letter-spacing: 0.08em; }
  section { padding-block: 3.5rem; }
  .feature-img { aspect-ratio: 4/3; }
  .beispiel-foto { min-height: 180px; font-size: 0.72rem; letter-spacing: 0.15em; }
  .beispiel-foto[data-label]::after { font-size: 0.62rem; }
  h1, .hero-title { word-break: normal; overflow-wrap: break-word; hyphens: auto; }
  h2, h3 { overflow-wrap: break-word; hyphens: auto; }
}

@media (max-width: 520px) {
  :root { --gutter: 1rem; }
  section { padding-block: 3rem; }
  .hero-marquee { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr !important; }
  .mobile-menu { padding: 4.5rem 1rem 1.25rem; }
  .mobile-menu-list a { font-size: 1.4rem; padding-block: 0.35rem; }
  .hero-title, .page-hero h1, h1 { font-size: clamp(1.65rem, 8vw, 2.1rem) !important; }
  .contact-card { padding: 1.25rem; }
  .beispiel-foto { min-height: 160px; }
}

@media (max-width: 380px) {
  :root { --gutter: 0.85rem; }
  .brand { font-size: 0.88rem; }
  .brand-mark { width: 24px; height: 24px; font-size: 0.72rem; }
  .burger { width: 38px; height: 38px; }
  .burger::before { top: 16px; } .burger::after { top: 22px; }
  .burger.open::before, .burger.open::after { top: 19px; }
  .hero-title, h1 { font-size: clamp(1.5rem, 8vw, 1.9rem) !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
