/* ─────────────────────────────────────────────────────────────────────────
   Mod² — Das Moderationsduo
   Tokens: --ink #1f3a5f · --warm #43302E · --accent #fff1b5 · --sky #c1dbe8
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --ink: #1f3a5f;
  --warm: #43302E;
  --accent: #fff1b5;
  --sky: #c1dbe8;
  --bg: #faf6ec;
  --line: rgba(31, 58, 95, 0.18);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 56px);

  --serif: 'Bebas Neue', 'Impact', sans-serif;
  --sans: 'Montserrat', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --sans-body: 'Montserrat', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }

/* ── Inline Wortmarke ─ "Mod²" wie auf dem Logo ─────────────────────── */
.wm {
  font-family: 'Playfair Display', 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  display: inline-block;
}
.wm sup {
  font-family: 'Playfair Display', 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.18em;
  color: var(--warm);
}
.section--contact .wm sup { color: var(--accent); }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

/* ── Typography ────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--warm);
}
.section-title--light { color: var(--accent); }
.section-title--light em { color: var(--sky) !important; }
.section--contact .section-title em { color: var(--sky) !important; }

.section-lead {
  font-family: var(--sans-body);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
  color: rgba(31, 58, 95, 0.75);
  text-wrap: pretty;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans-body, var(--sans));
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--primary { background: var(--ink); color: #ffffff; }
.btn--primary:hover { background: var(--warm); color: #ffffff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #ffffff; }
.btn--block { width: 100%; justify-content: center; }

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gutter);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 241, 181, 0.15);
}
.brand { display: block; }
.brand svg { height: 72px; width: auto; }
@media (max-width: 760px) {
  .brand svg { height: 56px; }
}

.nav { display: flex; gap: 32px; }
.nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: var(--accent);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav a:nth-child(2) { color: var(--accent); }
.nav a:nth-child(3) { color: var(--accent); }
.nav a:nth-child(4) { color: var(--sky); }
.nav a:hover { color: #ffffff; }
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 241, 181, 0.15);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 18px var(--gutter); border-top: 1px solid rgba(255, 241, 181, 0.12); }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 4px;
    width: 36px; height: 36px;
    align-items: center; justify-content: center;
    background: transparent; border: 0;
  }
  .nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--accent);
  }
}

/* ── Hero — common ─────────────────────────────────────────────────────── */
/* ── Hero ─ Logo + Text links, Foto rechts ────────────────────────── */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 100px) var(--gutter) clamp(64px, 9vw, 130px);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

/* ── Hero ─ Statement Variante (Text oben, Foto unten) ─────────── */
.hero--statement {
  display: block;
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.hero-statement-top {
  max-width: 920px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-statement-top .hero-wordmark {
  width: clamp(260px, 30vw, 380px);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.hero-wordmark--img img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-statement-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 clamp(20px, 2.4vw, 28px);
  text-wrap: balance;
}
.hero-statement-sub {
  font-family: var(--sans-body);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 clamp(24px, 2.6vw, 32px);
  text-wrap: pretty;
}
.hero--statement .hero-ctas {
  justify-content: center;
}
.hero-statement-photo {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #f4eee4;
}
.hero-statement-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .hero-statement-photo { aspect-ratio: 4 / 5; border-radius: 14px; }
  .hero-statement-headline { font-size: clamp(34px, 8vw, 48px); }
}
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-logo { width: 100%; max-width: 320px; margin-bottom: 8px; }
.hero-logo svg { width: 100%; height: auto; display: block; }
.hero-tagline {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 20px;
}
.hero-tagline-warm { color: var(--warm); }
.hero-wordmark {
  width: clamp(180px, 22vw, 260px);
  margin: 0 0 8px;
}
.hero-wordmark svg { width: 100%; height: auto; display: block; }
.hero-quote-band {
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(20px, 3vw, 32px);
  background: transparent;
}
.hero-quote-band .hero-quote {
  margin: 0 auto;
  max-width: 880px;
}
.hero-quote {
  margin: 4px 0 24px;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--warm);
  max-width: 52ch;
}
.hero-quote p {
  font-family: var(--serif, Georgia, serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: rgba(31, 58, 95, 0.86);
  margin: 0;
  text-wrap: pretty;
}
.hero-sub {
  font-family: var(--sans-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 44ch;
  margin: 0 0 32px;
  color: rgba(31, 58, 95, 0.78);
  text-wrap: pretty;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-image {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sky);
  box-shadow: 0 24px 60px rgba(31, 58, 95, 0.18);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image::after {
  content: "";
  position: absolute; inset: auto -8% -8% auto;
  width: 36%; aspect-ratio: 1;
  background: var(--accent);
  border-radius: 50%;
  z-index: -1;
}

/* Sprechblasen-Akzente um das Hero-Foto */
.hero-image--bubbles {
  overflow: visible;
  aspect-ratio: 4 / 5;
}
.hero-image--bubbles img {
  border-radius: 4px;
}
.hero-image--bubbles::after { display: none; }

/* Kombi-Layout: Bühnen-Foto groß, Portrait überlappt unten rechts */
.hero-image--combo {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.hero-image--combo::after { display: none; }
.hero-combo-stage,
.hero-combo-portrait {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sky);
}
.hero-combo-stage img,
.hero-combo-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-combo-stage {
  top: 0; left: 0;
  width: 78%;
  aspect-ratio: 3 / 2;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(31, 58, 95, 0.22);
}
.hero-combo-portrait {
  bottom: 0; right: 0;
  width: 50%;
  aspect-ratio: 3 / 4;
  z-index: 2;
  box-shadow: 0 18px 44px rgba(31, 58, 95, 0.2);
}
.hero-bubble {
  position: absolute;
  width: 22%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(31, 58, 95, 0.18));
  z-index: 3;
}
.hero-bubble--a {
  top: -8%;
  left: -6%;
  width: 22%;
  transform: rotate(-12deg);
  z-index: 4;
}
.hero-bubble--b {
  top: 38%;
  right: -8%;
  width: 18%;
  transform: rotate(14deg);
  z-index: 4;
}

/* Sprechblasen-Paar als ein Element (wie im Logo) */
.hero-bubbles-pair {
  position: absolute;
  top: -10%;
  left: -8%;
  width: 38%;
  height: auto;
  z-index: 4;
  filter: drop-shadow(0 10px 22px rgba(31, 58, 95, 0.2));
  transform: rotate(-6deg);
}

/* Sprechblasen als sheer Hintergrund hinter den Fotos */
.hero-bubbles-bg {
  position: absolute;
  top: -12%;
  left: -15%;
  width: 140%;
  height: auto;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: multiply;
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 3 / 4; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-image--combo { aspect-ratio: 1 / 1.1; max-width: 520px; }
}

/* (alte Hero-Varianten entfernt — nur noch Statement-Layout aktiv) */
.hero-title__accent {
  font-style: italic;
  font-weight: 400;
  color: var(--warm);
}
.hero-title__duo { color: var(--ink); }
.hero-title__duo sup {
  font-size: 0.45em;
  vertical-align: super;
  margin-left: 8px;
  color: var(--warm);
}
.hero-sub {
  font-family: var(--sans-body);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  max-width: 50ch;
  margin: 0 0 36px;
  color: rgba(31, 58, 95, 0.78);
  text-wrap: pretty;
}
.hero-sub--lg { font-size: clamp(20px, 2vw, 28px); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero — Split variant */
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: clamp(20px, 3vw, 60px);
  align-items: center;
  background: linear-gradient(180deg, var(--sky) 0%, var(--bg) 100%);
}
.hero-split-side { text-align: center; }
.portrait {
  width: clamp(140px, 18vw, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(60px, 9vw, 120px);
  color: var(--accent);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.portrait--miriam { background: var(--warm); }
.portrait--joshua { background: var(--ink); }
.portrait::after {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 30% 30%, transparent 50%, rgba(255, 241, 181, 0.2) 70%);
  pointer-events: none;
}
.hero-split-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  margin: 0;
  color: var(--ink);
}
.hero-split-center { text-align: center; }
.hero-title--split {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.9;
  margin: 12px 0 18px;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.hero-title--split sup {
  font-size: 0.5em;
  color: var(--warm);
}

@media (max-width: 760px) {
  .hero--split {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
  }
  .hero-split-side { order: 2; }
  .hero-split-center { order: 1; }
}

/* Hero — Matisse variant */
.hero--matisse {
  background: var(--accent);
  text-align: center;
}
.hero-title--script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 1;
  margin: 20px 0 30px;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.hero-title--script .superscript {
  font-style: normal;
  font-size: 0.4em;
  vertical-align: super;
  color: var(--warm);
  margin-left: 6px;
}

/* ── Sections (general) ────────────────────────────────────────────────── */
.section {
  padding: clamp(80px, 10vw, 160px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.section-head { max-width: 800px; margin: 0 0 64px; }
.section-head--inline {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; max-width: var(--container);
}

/* ── Leistungen — Hauptleistung + Sub-Leistungen ─────────────────────── */
.leistung-feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  margin-bottom: clamp(80px, 10vw, 140px);
}
.leistung-feature-media {
  border-radius: 6px;
  overflow: hidden;
  background: var(--sky);
  aspect-ratio: 4 / 5;
  position: relative;
}
.leistung-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leistung-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leistung-feature-kicker {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--warm);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.leistung-feature-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.leistung-feature-text {
  font-family: var(--sans-body, var(--sans));
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 32px;
  color: rgba(31, 58, 95, 0.82);
  max-width: 56ch;
}
.leistung-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.leistung-sub-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink);
}
.leistung-sub-text {
  font-family: var(--sans-body, var(--sans));
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: rgba(31, 58, 95, 0.78);
}

/* ── Prozess — So läuft die Zusammenarbeit ab ─────────────────────────── */
.prozess {
  background: var(--accent);
  border-radius: 8px;
  padding: clamp(40px, 5vw, 72px);
  position: relative;
}
.prozess-head { margin-bottom: clamp(32px, 4vw, 56px); max-width: 700px; }
.prozess-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 8px 0 0;
}
.prozess-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--warm);
}
.prozess-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  counter-reset: step;
}
.prozess-step {
  position: relative;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prozess-step-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--warm);
  font-feature-settings: "tnum";
}
.prozess-step-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.prozess-step-text {
  font-family: var(--sans-body, var(--sans));
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0;
  color: rgba(31, 58, 95, 0.8);
}
@media (max-width: 980px) {
  .leistung-feature { grid-template-columns: 1fr; }
  .leistung-feature-media { aspect-ratio: 4 / 3; max-height: 420px; }
  .prozess-steps { grid-template-columns: repeat(2, 1fr); }
}
.about-quote-top--leistungen {
  margin: clamp(240px, 26vw, 340px) auto 0;
  background: var(--bg);
  border-left-color: var(--ink);
}
.section--leistungen { padding-bottom: clamp(40px, 5vw, 64px); }
@media (max-width: 600px) {
  .leistung-sub-grid { grid-template-columns: 1fr; }
  .prozess-steps { grid-template-columns: 1fr; }
  .prozess { padding: 32px 24px; }
}

.service-tags {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.service-tags li {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 241, 181, 0.4);
}
.service-shape {
  width: clamp(56px, 7vw, 96px);
  height: clamp(56px, 7vw, 96px);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.service:hover .service-shape { transform: rotate(20deg) scale(1.05); }

@media (max-width: 720px) {
  .service { grid-template-columns: auto 1fr; }
  .service-shape { grid-column: 1 / -1; justify-self: end; margin-top: -12px; }
}

/* ── Galerie ───────────────────────────────────────────────────────────── */
.section--gallery {
  max-width: none;
  padding-left: var(--gutter);
  padding-right: 0;
  overflow: hidden;
}
.section--gallery .section-head {
  max-width: var(--container);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}
.section--gallery .section-head--inline { padding-right: var(--gutter); }
.gallery-controls { display: flex; gap: 8px; }
.gallery-controls--below {
  justify-content: center;
  padding: clamp(20px, 2.4vw, 32px) var(--gutter) 0;
}
.gctrl {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  display: grid; place-items: center;
  transition: background 0.2s, color 0.2s;
}
.gctrl:hover { background: var(--ink); color: var(--accent); }

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 32vw, 460px);
  gap: 24px;
  padding: 16px 24px 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.shot {
  scroll-snap-align: start;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.shot-frame {
  aspect-ratio: 6 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sky);
  box-shadow: 0 12px 32px rgba(31, 58, 95, 0.12);
}
.shot-svg { width: 100%; height: 100%; }
.shot figcaption {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding: 0 4px;
}
.shot-cap {
  font-family: var(--sans-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
}
.shot-venue {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm);
}

.gallery-dots {
  display: flex; gap: 8px; justify-content: center;
  padding: 0 var(--gutter);
}
.dot {
  width: 8px; height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  transition: width 0.25s, background 0.25s;
}
.dot.is-active { width: 28px; border-radius: 4px; background: var(--ink); }

/* ── Über uns ──────────────────────────────────────────────────────────── */
.section--about { background: linear-gradient(180deg, transparent 0%, var(--sky) 100%); border-radius: 0; }
.about-head { max-width: 760px; margin: 0 0 40px; text-align: left; }
.about-head--left { text-align: left; }
.about-head--left .eyebrow { justify-content: flex-start; }

.section--leistungen-quote {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(48px, 7vw, 96px);
  display: flex;
  justify-content: flex-start;
}
.section--leistungen-quote .about-quote-top {
  margin: 0;
  width: 100%;
  text-align: left;
}

/* Großes Zitat — über den Steckbriefen */
.about-quote-top {
  margin: 0 0 clamp(48px, 6vw, 80px);
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  background: var(--bg);
  border-left: 4px solid var(--warm);
  border-radius: 4px;
  max-width: 920px;
}
.about-quote-top p {
  font-family: var(--sans-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  letter-spacing: -0.01em;
}
.about-quote-meta {
  margin: 24px 0 0 !important;
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: rgba(31, 58, 95, 0.7) !important;
  letter-spacing: 0.02em;
}
.about-quote-meta b {
  color: var(--warm);
  font-weight: 600;
}

/* Steckbriefe nebeneinander */
.about-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.profile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.profile-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sky);
  margin-bottom: 8px;
}
.profile-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Gallery photos */
.shot-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot-frame img[src*="miriam-stage"],
.shot-frame img[src*="joshua-stage"] { object-position: center 25%; }
.shot-frame img[src*="miriam-conference"] { object-position: center 20%; }

.profile-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  margin: 8px 0 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.profile-role {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm);
  margin: 0 0 6px;
  font-weight: 600;
}
.profile-bio {
  font-family: var(--sans-body, var(--sans));
  font-size: 15px;
  line-height: 1.6;
  color: rgba(31, 58, 95, 0.82);
  margin: 4px 0 0;
  text-wrap: pretty;
}
.profile-bullets {
  font-family: var(--sans-body, var(--sans));
  font-size: 15px;
  line-height: 1.55;
  color: rgba(31, 58, 95, 0.82);
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.profile-bullets li {
  position: relative;
  padding-left: 18px;
  text-wrap: pretty;
}
.profile-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--accent, #1F3A5F);
}

@media (max-width: 760px) {
  .about-pair { grid-template-columns: 1fr; }
  .about-quote-top { padding: 28px 24px; }
}

/* ── Kontakt ───────────────────────────────────────────────────────────── */
.section--contact {
  background: var(--ink);
  color: var(--accent);
  max-width: none;
  margin: 0;
}
.section--contact .eyebrow { color: var(--sky); }
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}
.contact-copy { color: var(--accent); }
.contact-lead {
  font-family: var(--sans-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 36px;
  color: rgba(255, 241, 181, 0.8);
  max-width: 38ch;
}
.contact-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.contact-list li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 241, 181, 0.2);
}
.contact-list li:last-child { border-bottom: 1px solid rgba(255, 241, 181, 0.2); }
.contact-list span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
}
.contact-list a, .contact-list b {
  font-family: var(--sans-body);
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
  text-decoration: none;
}
.contact-list a:hover { color: var(--sky); }

.contact-form {
  background: var(--accent);
  color: var(--ink);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 6px;
  display: flex; flex-direction: column; gap: 18px;
  align-self: start;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  padding: 8px 0;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--warm); }

.contact-form .btn--primary { background: var(--warm); color: #ffffff; margin-top: 10px; }
.contact-form .btn--primary:hover { background: var(--ink); color: #ffffff; }

.contact-sent {
  text-align: center;
  padding: 32px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.contact-sent h3 {
  font-family: var(--serif); font-weight: 600; font-size: 28px; margin: 0;
}
.contact-sent p { margin: 0; color: var(--warm); }
.contact-error { margin: 8px 0 0; font-size: 14px; color: #c0392b; }
.contact-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.5;
  margin: 4px 0 0;
}
.contact-privacy input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--ink);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.contact-privacy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-privacy a:hover { opacity: 0.7; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--warm);
  color: var(--accent);
  padding: 60px var(--gutter) 40px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.footer-logo { width: 160px; }
.footer-logo svg { height: 64px; width: auto; }
.footer-tag {
  font-family: var(--sans-body);
  font-style: italic;
  font-size: 16px;
  margin: 4px 0 0;
}
.footer-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 12px 0 0;
  color: rgba(255, 241, 181, 0.65);
}
.footer-legal {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 18px 0 0;
}
.footer-legal a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 241, 181, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-legal a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* ── Color Scheme — Dark / accent variants applied via [data-scheme] ──── */
[data-scheme="warm"] {
  --ink: #43302E;
  --warm: #1f3a5f;
}
[data-scheme="dark"] {
  --bg: #1f3a5f;
  --ink: #fff1b5;
  --warm: #c1dbe8;
  --accent: #fff1b5;
  --sky: #43302E;
  --line: rgba(255, 241, 181, 0.18);
}
[data-scheme="dark"] .section--contact {
  background: var(--warm);
  color: var(--bg);
}
[data-scheme="dark"] .section--contact .section-title--light { color: var(--bg); }
[data-scheme="dark"] .section--contact .section-title--light em { color: var(--accent); }
[data-scheme="dark"] .contact-form { background: var(--accent); color: var(--bg); }
[data-scheme="dark"] .contact-form input,
[data-scheme="dark"] .contact-form textarea { color: var(--bg); border-bottom-color: var(--bg); }
[data-scheme="dark"] .site-header { background: rgba(31, 58, 95, 0.85); }
[data-scheme="dark"] .site-footer { background: #2a4a72; }

/* ── Reveal-on-scroll subtle animation ─────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .section {
    animation: rise 0.8s ease both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cleaner sections — remove gallery & about decorative gradients */
.section--about { background: transparent; }
.section--gallery .shot-frame { box-shadow: 0 4px 20px rgba(31, 58, 95, 0.08); border-radius: 2px; }
