/* hochzwei · Über uns
 * Page-spezifische Styles. Erbt aus mw.css.
 * Persönlich, ruhig, vertrauensbildend.
 *
 * Neu hier:
 *   - Photo-Band direkt unter Hero (Voll-Breiten-Streifen mit Team-Foto)
 *   - Founder-Karten (2-up) mit Portraits und Bio
 *   - Team-Mosaik (3 Fotos in unregelmäßiger Anordnung)
 *   - Drei Prinzipien als 3-Spalten-Grid mit dünnen Trennlinien
 */
@import url("mw.css?v=20260526");

/* ======================================================
 * Photo-Band (unter dem Hero)
 * Voll-Breiten-Foto-Streifen, der Hero und Master-Pitch
 * trennt. Persönlicher Ton ab erster Sekunde.
 * ====================================================== */
.photo-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: 320px;
  overflow: hidden;
  background: var(--hz-navy-50);
}
@media (min-width: 720px)  { .photo-band { height: 400px; } }
@media (min-width: 1024px) { .photo-band { height: 480px; } }

.photo-band-item {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-band-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hz-white);
  background: rgba(0, 30, 53, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
@media (min-width: 720px) {
  .photo-band-caption { bottom: 24px; left: 24px; }
}

/* ======================================================
 * Founder-Karten (2-up mit Portrait)
 * Zwei Karten nebeneinander, jede mit großem Foto oben
 * und Bio darunter. Mono-Eyebrow „Co-Founder".
 * ====================================================== */
.founder-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .founder-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.founder-card {
  background: var(--hz-white);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.founder-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.founder-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--hz-green);
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 187, 105, 0.08), transparent 60%),
    var(--hz-navy-50);
}
.founder-photo-placeholder .marks {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
}
.founder-photo-placeholder .name-mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.founder-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 720px) {
  .founder-body { padding: 28px 32px 32px; }
}
.founder-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hz-green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.founder-eyebrow::before {
  content: "";
  width: 24px;
  height: 1.75px;
  background: var(--hz-green);
}
.founder-name {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--hz-navy);
}
.founder-bio {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--fg-2);
  text-wrap: pretty;
}
.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--hz-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--hz-navy);
  padding-bottom: 2px;
  align-self: flex-start;
  margin-top: 4px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.founder-link:hover {
  color: var(--hz-green);
  border-bottom-color: var(--hz-green);
}
.founder-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.18s ease;
}
.founder-link:hover svg { transform: translate(2px, -2px); }

/* ======================================================
 * Team-Mosaic (3-Foto-Reihe in eigener Section)
 * Drei gleich grosse Fotos in 4:3, mobil gestapelt,
 * ab 600px in einer Reihe.
 * ====================================================== */
.team-mosaic {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 600px) {
  .team-mosaic {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 720px) {
  .team-mosaic { margin-top: 48px; }
}
.team-mosaic-item {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 4 / 3;
}
.team-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-mosaic-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hz-white);
  background: rgba(0, 30, 53, 0.7);
  padding: 5px 9px;
  border-radius: 3px;
  max-width: max-content;
}

/* ======================================================
 * Drei Prinzipien (3-Spalten statt 4)
 * Bewusstes Anti-Cliché-Statement: drei Säulen, nicht fünf.
 * ====================================================== */
.principles {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border-1);
}
@media (min-width: 860px) {
  .principles { grid-template-columns: repeat(3, 1fr); border-top: none; }
}

.principle {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 860px) {
  .principle {
    padding: 40px 28px;
    border-bottom: none;
    border-right: 1px solid var(--border-1);
    border-top: 1px solid var(--border-1);
  }
  .principle:first-child { padding-left: 0; }
  .principle:last-child  { padding-right: 0; border-right: none; }
}
.principle-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--hz-green);
  text-transform: uppercase;
}
.principle h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--hz-navy);
  line-height: 1.25;
  text-wrap: balance;
}
.principle p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  text-wrap: pretty;
}
.principle-tags {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.principle-tags li {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--bg-2);
  color: var(--hz-navy);
  border: 1px solid var(--border-1);
}

/* ======================================================
 * Map-Block (Standort)
 * Schlichte SVG-Karte als visuelle Andeutung des Standorts.
 * ====================================================== */
.map-marks {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-mono);
  text-align: center;
  padding: 32px;
}
.map-marks .pin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hz-green);
}
.map-marks .pin::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hz-green);
  box-shadow: 0 0 0 4px rgba(0, 187, 105, 0.18);
}
.map-marks .coord {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-3);
}
.map-marks .region {
  margin-top: 8px;
  display: flex;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.map-marks .region span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.map-marks .region span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg-3);
}

/* ======================================================
 * Master-Pitch-Block (identisch zur Home-Variante)
 * Hier auf Über uns als Selbstverständnis-Anker, nicht
 * als Hero-Echo. Bracket-Frame, zentrierter Text.
 * ====================================================== */
.pitch {
  background: var(--bg-1);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.pitch-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 96px var(--page-pad);
}
@media (max-width: 719px) {
  .pitch-inner { padding: 64px var(--page-pad); }
}
.pitch-inner > .eyebrow { margin: 0 0 24px; }
.pitch-frame {
  position: relative;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 28px;
}
@media (min-width: 720px) {
  .pitch-frame { padding: 72px 56px; }
}
@media (min-width: 1024px) {
  .pitch-frame { padding: 88px 72px; }
}
.pitch-frame::before,
.pitch-frame::after,
.pitch-frame > .corner-tl,
.pitch-frame > .corner-br {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 0 solid var(--hz-green);
  pointer-events: none;
}
@media (min-width: 720px) {
  .pitch-frame::before,
  .pitch-frame::after,
  .pitch-frame > .corner-tl,
  .pitch-frame > .corner-br { width: 56px; height: 56px; }
}
.pitch-frame::before { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.pitch-frame::after  { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }
.pitch-text {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--hz-navy);
  text-align: center;
  text-wrap: balance;
}
.pitch-text strong {
  font-weight: 600;
  color: var(--hz-navy);
  background: linear-gradient(transparent 70%, rgba(164,202,98,0.32) 70%);
  padding: 0 2px;
}

/* ======================================================
 * Hero-Variante: ruhiger, persönlicher Ton
 * Auf Über uns ist die Headline kürzer und die Aside
 * trägt ein persönliches Foto statt nur den Stamp.
 * ====================================================== */
.hero--quiet h1 {
  max-width: 720px;
}
