/* =========================================
   Root-Setup (lokal je Seite)
   Diese Variablen definieren Farben, Typo,
   Spacing und Komponentenoptik.
   ========================================= */

:root {
  /* --------- Farb-Tokens --------- */
  --brand: #49a5a2;           /* Primärfarbe – bei Bedarf seitenweise ändern */
  --ink-h: #3c3c3c;           /* Überschriften */
  --ink-t: #4a4a4a;           /* Fließtext */
  --muted: #6b7280;           /* sekundärer Text */
  --bg: #ffffff;              /* Standard-Hintergrund */
  --card-bg: #ffffff;
  --border: rgba(0, 0, 0, .08);

  /* --------- Typografie-Skala --------- */
  /* Basis: mobil-first, wächst fluid */
  --fs-body: clamp(1rem, 0.95rem + 0.2vw, 1.05rem);
  --lh-body: 1.6;
  --lh-title: 1.25;

  /* Headings */
  --fs-h1: clamp(2.2rem, 1.4rem + 2.5vw, 3.2rem);
  --fs-h2: clamp(1.7rem, 1.2rem + 1.8vw, 2.4rem);
  --fs-h3: clamp(1.35rem, 1.05rem + 1.2vw, 1.8rem);
  --fs-h4: clamp(1.15rem, 1.0rem + 0.6vw, 1.35rem);

  /* Section title + body tokens (unified) */
  --fs-h2: clamp(1.6rem, 3.0vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2.4vw, 1.6rem);
  --fs-lead: clamp(1rem, 1.6vw, 1.08rem);           /* Intro text under h2 */
  --fs-info: clamp(13px, 1.5vw, 17px);              /* Information text size */

  /* Hero-Text (hell auf dunklem Hintergrund) */
  --hero-h1-size: clamp(2rem, 5.4vw, 3.2rem);
  --hero-h1-weight: 400;
  --hero-h1-color: #ffffff;
  --hero-p-size: clamp(1rem, 1.2vw, 1.1rem);
  --hero-p-weight: 100;
  --hero-p-color: #ffffff;
  --hero-eyebrow-color: #d6d6d6;

  /* Eyebrows (Standard / nicht Hero) */
  --eyebrow-color: var(--brand);
  --eyebrow-size: clamp(0.9rem, 1.6vw, 1.1rem);
  --eyebrow-letterspace: .12em;

  /* Cards */
  --card-title-size: clamp(1.5rem, 1.8vw, 1.6rem);
  --card-title-weight: 300;
  --card-title-color: var(--ink-h);
  --card-text-size: clamp(.98rem, 1.2vw, 1.05rem);
  --card-text-weight: 200;
  --card-text-color: var(--ink-t);
  --card-lineheight: 1.65;

  /* --------- Font Weights --------- */
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* --------- Spacing & Radius --------- */
  --space-2: .5rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-14: clamp(2.5rem, 2rem + 2vw, 4rem);
  --radius-l: 1rem;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .06);
}

/* =========================================
   Globale Grundtypografie (optional)
   Greift automatisch, wenn du willst.
   ========================================= */
body {
  color: var(--ink-t);
  background: var(--bg);
  font-weight: var(--fw-400);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
}

h1, h2, h3, h4 {
  color: var(--ink-h);
  line-height: var(--lh-title);
  font-weight: var(--fw-600);
}

a { color: var(--brand); text-decoration: none; }

/* Eyebrow */
.eyebrow {
  color: var(--eyebrow-color, var(--brand));
  text-transform: uppercase;
  letter-spacing: var(--eyebrow-letterspace);
  font-size: var(--eyebrow-size);
  font-weight: var(--fw-200);
  text-align: center;
  margin: 0 0 6px;
}

/* Hero-Spezialfälle */
.hero h1 {
  font-size: var(--hero-h1-size);
  font-weight: var(--hero-h1-weight);
  color: var(--hero-h1-color);
}

.hero p {
  font-size: var(--hero-p-size);
  line-height: var(--lh-body);
  color: var(--hero-p-color);
  font-weight: var(--hero-p-weight);
}

/* Cards */
.card .title {
  font-size: var(--card-title-size);
  font-weight: var(--card-title-weight);
  color: var(--card-title-color);
}

.card p {
  font-size: var(--card-text-size);
  font-weight: var(--card-text-weight);
  line-height: var(--card-lineheight);
  color: var(--card-text-color);
}


body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ===== Variablen / Basics ===== */
:root {
  --brand: #49a5a2;;
  --line: #e7e7e7;
  --text: #4a4a4a;
  --muted: #71757d;
  --card-bg: #ffffff;
  --radius: 6px;
  --hero-img: url("/assets/images/h3.png");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.mini-divider{
  display:flex;
  justify-content:center;
  padding: clamp(20px, 4vw, 36px) 0; /* Abstand oben/unten */
}

.hero-underline{
  display:block;
  width: clamp(36px, 6vw, 85px);
  height: 2px;
  background: var(--brand, #989898); /* Brandfarbe oder fallback */
  border-radius: 3px;
}

/* =========================
   Hero – Grundlayout
   ========================= */
.about-hero {
  --hero-min-h: 100vh;

  position: relative;
  height: var(--heroFixedH);
  min-height: var(--heroFixedH);
  display: grid;
  place-items: center;
  overflow: clip;
  background: transparent;
}

/* Bildebene */
.ah-media {
  position: absolute;
  inset: 0;
  background-color: #dfe7ee;
  background-image: var(--hero-img);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 24%;
  z-index: 0;                   /* Hintergrund */
}
.ah-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 60% 25%,
    rgba(0,0,0,.4),
    rgba(0,0,0,.65) 60%
  );
  z-index: 1;
}

/* Ebenen korrekt sortieren */
.ah-media { z-index: 0; }     /* Bild */
.ah-overlay { z-index: 1; }   /* Overlay */
.ah-content { z-index: 2; }   /* Text */
/* Optionale Glas-Scrim, falls Text drauf soll
.ah-scrim { position:absolute; inset:0; background:linear-gradient(to bottom, rgba(255,255,255,.15), rgba(255,255,255,.35)); z-index:1; }
*/

/* Inhalt im Hero */
.ah-content {
  position: relative;
  z-index: 2;                   /* über dem Bild */
  text-align: center;
  padding: 24px 0;
}

.ah-content h1 {
  margin: 0 0 10px 0;
  font-size: clamp(1.4rem, 3.4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.12);
  font-family: "Kaisei Tokumin", serif;
}

.ah-kicker {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 200;
  letter-spacing: .02em;
  color: #d1d1d1;
}

/* =========================
   Abschnitt "About" unter dem Hero
   ========================= */
.about-lead {
  position: relative;
  background: #fff;
  padding-top: clamp(28px, 6vw, 48px);
  padding-bottom: clamp(28px, 6vw, 56px);
  margin-top: -28px;            /* Linie leicht in den Hero „hineinziehen“ */
}

/* Vertikale Linie in der Mitte */
.about-divider {
  width: 2px;
  height: clamp(36px, 6vw, 56px);
  background: #3aa6a0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
  margin-top: -75px;
}

/* ===== About Section (wie Value Style) ===== */
.about-lead {
  background: #fff;
  padding: clamp(48px, 8vw, 120px) 0;
  color: var(--text);
}

.about-wrap {
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.about-eyebrow {
  text-transform: uppercase;
  letter-spacing: var(--eyebrow-letterspace);
  font-size: var(--eyebrow-size);
  color: var(--brand);
  text-align: center;
  margin: 0 0 6px;
  font-weight: var(--fw-200);
}

/* Headline */
.about-title {
  margin: 0 0 12px 0;
  font-family: "Kaisei Tokumin", serif;
  font-weight: var(--fw-500);
  line-height: var(--lh-title);
  font-size: var(--fs-h2);
  color: var(--ink-h);
  text-align: center;
}

/* Introtext */
.about-intro {
  margin: 0 auto clamp(22px, 3vw, 34px);
  max-width: 70ch;
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--ink-t);
  font-weight: var(--fw-200);
  text-align: center;
}



@media (min-width: 840px) {

  .about-lead {
  position: relative;
  background: #fff;
  padding-top: clamp(28px, 6vw, 48px);
  padding-bottom: clamp(28px, 6vw, 56px);
  margin-top: -28px;
}

  .about-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
    /* sorgt für „Mitte frei lassen“ */
  .about-col:first-child {
    padding-right: 20px;
  }

  .about-col:last-child {
    padding-left: 20px;
  }
}


/* Section shell */
.arcshow {
  padding: clamp(48px, 7vw, 96px) 0;
  background: #faf6ef; /* warm cream like your reference; change if needed */
  color: #2b2b2b;
}
.arcshow-head { text-align: center; margin-bottom: clamp(28px, 4.5vw, 48px); }
.arcshow-title {
  margin: 0 0 8px;
  font: 500 clamp(1.8rem, 3.6vw, 3rem)/1.1 "Kaisei Tokumin", serif;
}
.arcshow-intro {
  margin: 0 auto;
  max-width: 70ch;
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  color: #5a5f66;
}

/* ---------- Curved lane ---------- */
.arc {
  /* Tweak these to taste */
  --radius: clamp(340px, 46vw, 640px);  /* arc size */
  --item-w: clamp(140px, 18.5vw, 220px);
  --item-h: clamp(200px, 26vw, 320px);
  --gap-deg: 12deg;                     /* angular spacing between items */
  --tilt: 0deg;                         /* extra aesthetic tilt if you want */
  --offset: 0deg;                       /* parallax-controlled base angle */

  position: relative;
  width: min(1200px, 92%);
  margin: 0 auto clamp(36px, 6vw, 56px);
  height: calc(var(--radius) * .83);    /* visible arc height */
  display: grid;
  place-items: end center;              /* we build from bottom center */
  perspective: 1200px;                  /* subtle 3D */
}

/* Each card is positioned by polar transform:
   rotate(angle) translate(radius) rotate(-angle) */
.arc-item {
  --count: attr(data-count number, 8); /* fallback for safety */
  position: absolute;
  bottom: 0;
  left: 50%;
  width: var(--item-w);
  height: var(--item-h);
  transform-origin: 50% calc(100% + var(--radius));
  /* angle for this index (centered around 0) */
  --mid: calc((var(--n) - 1) / 2);
  /* JS sets --n = number of items; --i = index on each item.
     We compute angle purely with CSS math below: */
  --angle: calc(
    ( (var(--i) - ( (var(--n) - 1) / 2 ) ) * var(--gap-deg) ) + var(--offset) + var(--tilt)
  );
  transform:
    rotate(var(--angle))
    translateY(calc(-1 * var(--radius)))
    rotate(calc(-1 * var(--angle)));

  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 18px 40px rgba(0,0,0,.12),
    0 2px 8px rgba(0,0,0,.06);
  display: grid;
  grid-template-rows: 1fr auto;
  backdrop-filter: saturate(1.05);
  transition: transform .35s ease, box-shadow .35s ease;
}

.arc-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.arc-item figcaption{
  padding: 10px 12px 12px;
  font-size: .9rem;
  color: #333;
  background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.85));
}

.arc-item:hover{
  box-shadow: 0 26px 60px rgba(0,0,0,.18), 0 6px 12px rgba(0,0,0,.10);
  transform:
    rotate(var(--angle))
    translateY(calc(-1 * var(--radius)))
    rotate(calc(-1 * var(--angle)))
    translateY(-6px) scale(1.02);
}

/* ---------- Features under arc ---------- */
.arcshow-features{
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}
.arcshow-features .feat h3{
  margin: 0 0 6px;
  font: 600 1.05rem/1.2 "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}
.arcshow-features .feat p{
  margin: 0;
  color: #5a5f66;
  line-height: 1.55;
  font-weight: 300;
}

/* ---------- Responsive: flatten on small screens ---------- */
@media (max-width: 900px){
  .arc {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
  }
  .arc-item{
    position: relative;
    left: auto; bottom: auto; transform: none;
    width: 100%; height: clamp(180px, 40vw, 220px);
  }
  .arcshow-features{ grid-template-columns: 1fr; }
}


/* =========================
   Cards
   ========================= */

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1; 
  pointer-events: none;
  background-image: url("assets/ui/grain-128.png");
  background-repeat: repeat;
  background-size: 140px 140px;
  opacity: 0.12;
}


/* ===== Intro ===== */
.intro {
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  padding: 18px 0 8px;
  padding-left: 5%;
  padding-right: 5%;
}

.intro h2 {
  margin: 0 0 6px;
  font-size: var(--fs-h2);
  font-family: "Kaisei Tokumin", serif;
  color: var(--ink-h);
  font-weight: var(--fw-500);
  line-height: var(--lh-title);
  text-align: center;
}

.intro p {
  margin: 0 auto clamp(22px, 3vw, 34px);
  max-width: 70ch;
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--ink-t);
  font-weight: var(--fw-200);
  text-align: center;
}

/* ===== Team Grid ===== */
.team {
  padding: 14px 0 30px;
  margin-top: 50px;
  width: min(1400px, 94%);
  margin-inline: auto;
}

.team-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 18px 18px; /* row-gap | column-gap */
  overflow: visible;
  align-items: stretch;
  grid-auto-rows: 1fr;
}


/* Team Card kompakter */
.team-card {
  position: relative;
  background-color: #3f787827;   /* dezentes hellgrau / mint */
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 14px;

  padding: 10px 14px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);

  height: 100%;
}



/* Eltern-Container der Cards */
.team-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;                    /* wichtig: nicht stretchen */
  gap: 32px 32px;                             /* Spalten- + Reihenabstand */
}



/* Bild-Container mit Akzentfläche */
.avatar {
  position: relative;
  margin: 0 auto;
  width: 350px !important;
  height: 350px !important;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: visible;
  flex-shrink: 0 !important;
}



/* Bild */
.avatar img {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .25s ease;
  display: block;
}
/* Divider unter dem Bild */
.avatar::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin: 0; /* Abstand: Bild → Linie → Text */
  background-color: rgba(73, 165, 162, 0.3); /* Brand #49a5a2 mit 30% */
  border-radius: 1px;
}


/* Textbereich breiter und flex column */
.card-body {
  width: min(360px, 100%);
  margin: 0 auto;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.name {
  margin: 0;
  font-size: 29px;                    /* etwas größer */
  font-weight: 400;
  font-family: "Kaisei Tokumin", serif;
  text-align: center;
  margin-bottom: 12px;
}

.team-label {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.role {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
}

.role-block {
  margin-top: auto;
}



.contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 5px;
  text-align: center;
}
.contact a {
  display: block;
  width: 100%;
  color: #777;
  font-size: 14px;
  text-decoration: none;
}

.contact a:hover {
  color: #555;                 /* etwas dunkler beim Hover */
  border-bottom-color: rgba(0,0,0,.28);
}



/* ===== Zeitstrahl / Roadmap ===== */
/* ===== Zeitstrahl / Roadmap (Light Theme, cleaned) ===== */
.zeitstrahl {
  --z-bg: #ffffff;
  --z-card: #f7f7f8;
  --z-accent: var(--brand, #3aa6a0);
  --z-line: color-mix(in srgb, var(--z-accent) 60%, #ccc);
  --z-ink: #3c3c3c;   /* Titel */
  --z-muted: #4a4a4a; /* Text */
  --z-radius: 8px;
  --z-gap: clamp(18px, 2.6vw, 28px);
  --z-width: min(1000px, 92vw);

  background: var(--z-bg);
  color: var(--z-ink);
  padding: clamp(48px, 8vw, 80px) 0;
  position: relative;
  isolation: isolate;
}

.zeitstrahl .z-wrap {
  width: var(--z-width);
  margin: 0 auto;
}

/* Head */
.z-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.z-eyebrow {
  text-transform: uppercase;
  letter-spacing: var(--eyebrow-letterspace);
  font-size: var(--eyebrow-size);
  color: var(--brand);
  margin: 0 0 6px;
  text-align: center;
  font-weight: var(--fw-200);
}

.z-title {
  margin: 0;
  font-size: var(--fs-h2);
  font-family: "Kaisei Tokumin", serif;
  line-height: var(--lh-title);
  color: var(--ink-h);
  font-weight: var(--fw-500);
  text-align: center;
}

.z-intro {
  margin: .6rem auto 0;
  max-width: 62ch;
  color: var(--ink-t);
  font-weight: var(--fw-200);
  line-height: var(--lh-body);
  font-size: var(--fs-lead);
  text-align: center;
}

.z-underline {
  display: block;
  width: clamp(60px, 10vw, 120px);
  height: 2px;
  background: var(--z-accent);
  border-radius: 2px;
  margin: 18px auto 0;
}

/* Timeline core */
.z-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--z-gap);
  align-items: start;
}

/* Mittel-Linie */
.z-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--z-line);
}

.z-track::before,
.z-track::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--z-accent);
}

.z-track::before { top: -2px; }
.z-track::after  { bottom: -2px; }

/* Cards */
.z-item {
  position: relative;
  background: var(--z-card);
  border: 1px solid #e5e7eb;
  border-radius: var(--z-radius);
  padding: 16px 18px;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}

.z-item.left  { grid-column: 1 / 2; margin-right: 30px; }
.z-item.right { grid-column: 2 / 3; margin-left: 30px; margin-top: 50px; }

/* Verbindung zur Mittelachse */
.z-item.left::after,
.z-item.right::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 14px;
  height: 2px;
  background: var(--z-line);
}

.z-item.left::after  { right: -30px; }
.z-item.right::after { left:  -30px; }

/* Punkte (abgeschaltet) */
.z-item.left::before,
.z-item.right::before {
  display: none !important;
  content: none !important;
}

/* Typografie in Cards */
.z-year {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 8px;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--z-accent);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

.z-item-title {
  margin: .1rem 0 .35rem;
  font-size: clamp(1.2rem, 1.8vw, 1.15rem);
  font-family: "Kaisei Tokumin", serif;
  font-weight: 500;
  color: #3c3c3c;
}

.z-item-text {
  margin: 0;
  color: #4a4a4a;
  font-weight: 300;
  line-height: 1.55;
}

/* Responsive: einspaltig mit Track links */
@media (max-width: 900px) {
  .z-timeline { grid-template-columns: 1fr; }
  .z-track    { left: 24px; transform: none; }
  .z-item     { margin: 0 0 0 36px; }
  .z-item.right { margin-top: 0; }
  .z-item::after { left: -18px !important; right: auto !important; width: 18px; }
}







/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-media {
    aspect-ratio: 16 / 9;
  }

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

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













/* ========== Über uns – Mobile & Tablet Optimierung ========== */

/* Tablet (≤ 1199px): Headline/Kicker begrenzen */
@media (max-width: 1199px){
  .about-hero{ --cut-depth: 16%; }
  .ah-content{ padding-inline: 24px; }
  .ah-content h1{
    max-width: 22ch;        /* keine Vollbreite */
    margin-inline: auto;
  }
  .ah-kicker{
    max-width: 54ch;
    margin-inline: auto;
  }

  .about-title{ font-size: var(--fs-h2); }
  .about-intro{ max-width: 64ch; }
  .about-intro{ font-size: var(--fs-lead); line-height: var(--lh-body); }
  .about-cols{ gap: 24px; padding-inline: 24px; }
}

/* Phone (≤ 680/767px): noch schmaler, luftiger, bessere Zeilenlänge */
@media (max-width: 767px){

  /* Hero */
  .about-hero{
    --cut-depth: 14%;
  }
  .ah-content{
    padding-inline: 16px;
    width: min(92vw, 640px);
    text-align: center;
  }
  .ah-content h1{
    font-size: clamp(1.6rem, 7.2vw, 2.2rem);
    line-height: 1.15;
    max-width: 20ch;              /* schöne Zeilenlänge */
    margin: 0 auto 8px;
  }
  .ah-kicker{
    font-size: .95rem;
    font-weight: 200;
    color: rgba(200, 200, 200, .9);
    max-width: 30ch;
    margin: 0 auto;
  }

  /* Abschnitt unter dem Hero */
  .about-lead{
    padding-top: clamp(18px, 5vw, 28px);
    padding-bottom: clamp(22px, 6vw, 36px);
    margin-top: -18px;
  }
  .about-divider{
    height: 40px;
    margin-top: -46px;          /* sitzt näher unter dem Hero-Cut */
  }
  .about-title{
    padding-inline: 16px;
    font-size: var(--fs-h2);
    margin-top: 12px;
  }
  .about-intro{
    padding-inline: 16px;
    max-width: 58ch;
    font-size: var(--fs-lead);
    line-height: var(--lh-body);
    margin-bottom: 10px;
  }

  /* Textblöcke (2 Spalten → 1 Spalte, angenehme Lesbarkeit) */
  .about-cols{
    grid-template-columns: 1fr;
    gap: 18px;
    padding-inline: 16px;
    max-width: 720px;           /* nicht Vollbreite laufen lassen */
  }
  .about-col p{
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* Sehr klein (≤ 360px): etwas kompakter */
@media (max-width: 360px){
  .ah-content h1{ font-size: 1.5rem; }
  .ah-kicker{ font-size: .9rem; }
}

/* === Hero image framing tweaks: keep heads in frame === */
@media (min-width: 1400px){
  .ah-media{ background-position: center 18%; }
}
@media (max-width: 1199px){
  .ah-media{ background-position: center 26%; }
}
@media (max-width: 767px){
  .ah-media{ background-position: center 34%; }
}

/* === FIX: Disable all unintended scaling in Hero on Brave/Chrome iOS === */
.ah-media {
  transform: none !important;
}


.about-lead {
  margin-top: 0 !important;
}