/* ============================================================
   ABOUT PAGE — Editorial Design
   Alle Klassen mit about- prefixed um Konflikte mit
   globaler style.css zu vermeiden.
   Referenz: consent.css (gleiches Editorial-System)
   ============================================================ */

/* --- Tokens (nur fuer About-Seite) --- */
:root {
  --about-bg-2:      #1c1d20;
  --about-bg-3:      #232427;
  --about-ink-dim:   rgba(250, 243, 241, 0.65);
  --about-ink-ghost: rgba(250, 243, 241, 0.35);
  --about-hair:      rgba(250, 243, 241, 0.10);
}

/* ============================================================
   FLOAT-RESET
   Neutralisiert die globale `section { float:left }`-Regel aus
   style.css, die sonst Layout-Kollaps / Leerraum erzeugt.
   ============================================================ */
.about-hero,
.about-section,
.about-closer {
  float: none !important;
  clear: both;
}

/* ============================================================
   HERO
   ============================================================ */
.about-hero {
  position: relative;
  padding: clamp(72px, 12vw, 140px) 0 clamp(60px, 10vw, 120px);
  border-bottom: 1px solid var(--about-hair);
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(237,110,43,.10), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(237,110,43,.06), transparent 60%);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ed6e2b;
  margin-bottom: 28px;
}

.about-hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #ed6e2b;
}

.about-hero__title {
  font-size: clamp(44px, 9vw, 120px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 36px;
  text-wrap: balance;
  color: #faf3f1;
}

.about-hero__title em {
  font-style: normal;
  color: #ed6e2b;
  display: block;
}

.about-hero__lede {
  max-width: 660px;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 300;
  color: #faf3f1;
  line-height: 1.55;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.about-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 13px;
  color: var(--about-ink-dim);
  padding-top: 22px;
  border-top: 1px solid var(--about-hair);
  max-width: 660px;
}

.about-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-hero__meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ed6e2b;
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.about-section {
  float: none;
  width: 100%;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--about-hair);
}

.about-section:last-of-type {
  border-bottom: none;
}

.about-sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--about-ink-dim);
  font-weight: 500;
  margin-bottom: 18px;
}

.about-sec-label .n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ed6e2b;
  color: #ed6e2b;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  padding-left: 2px;
}

.about-h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(30px, 4.2vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
  margin: 0 0 24px !important;
  text-wrap: balance;
  color: #faf3f1 !important;
}

.about-section em.accent {
  font-style: normal;
  color: #ed6e2b;
  font-weight: 500;
}

/* Two-column layout */
.about-two-col {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.about-two-col p {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 300;
  color: #faf3f1;
  line-height: 1.65;
  margin: 0 0 20px;
  text-wrap: pretty;
}

.about-two-col p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .about-two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   VALUE CARDS (Werte)
   ============================================================ */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

.about-value {
  position: relative;
  background: var(--about-bg-2);
  border: 1px solid var(--about-hair);
  border-radius: 4px;
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}

.about-value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ed6e2b;
}

.about-value:hover {
  transform: translateY(-3px);
  border-color: #ed6e2b;
}

.about-value__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, #ed6e2b 14%, transparent);
  margin-bottom: 22px;
}

.about-value__icon i {
  font-size: 22px;
  color: #ed6e2b;
  line-height: 1;
}

.about-value__headline {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.25;
  color: #faf3f1;
}

.about-value p {
  font-size: 15.5px;
  color: #faf3f1;
  opacity: .85;
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   PERSON / PROJEKT
   ============================================================ */
/* === 03 — Person / Projekt === */
.about-person {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.about-person__photo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #1d1f22;
    aspect-ratio: 1 / 1;
    max-width: 260px;
}

.about-person__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    /*filter: grayscale(100%) contrast(1.02); */
}

.about-person__body p {
    color: #faf3f1;
    opacity: .85;
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.about-person__pull {
    display: block;
    color: #faf3f1;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.25rem;
}

.about-person__titles {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.5rem;
}

.about-person__titles .chip {
    display: inline-flex;
    align-items: center;
    padding: .4rem .9rem;
    border: 1px solid rgba(237, 110, 43, .4);
    border-radius: 999px;
    color: #ed6e2b;
    font-size: .85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-person {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .about-person__photo {
        max-width: 220px;
        aspect-ratio: 1 / 1;
    }
}

/* ============================================================
   LINK CARDS (Verweise)
   ============================================================ */
.about-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .about-links {
    grid-template-columns: 1fr;
  }
}

.about-link {
  display: flex;
  flex-direction: column;
  background: var(--about-bg-2);
  border: 1px solid var(--about-hair);
  border-radius: 4px;
  padding: 28px 26px;
  transition: border-color .25s, transform .25s;
  color: #faf3f1 !important;
}

.about-link:hover {
  transform: translateY(-3px);
  border-color: #ed6e2b;
  color: #faf3f1 !important;
}

.about-link__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--about-ink-dim);
  margin-bottom: 14px;
  font-weight: 500;
}

.about-link__title {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.25;
  color: #faf3f1;
}

.about-link p {
  font-size: 14.5px;
  color: #faf3f1;
  opacity: .8;
  margin: 0 0 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.about-link__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ed6e2b;
}

.about-link__arrow::after {
  content: "\2192";
  transition: transform .2s;
}

.about-link:hover .about-link__arrow::after {
  transform: translateX(4px);
}

/* ============================================================
   CLOSER
   ============================================================ */
.about-closer {
  float: none;
  width: 100%;
  padding: clamp(60px, 9vw, 110px) 0;
  background:
    linear-gradient(180deg, transparent, rgba(237,110,43,.05) 50%, transparent),
    #151618;
  text-align: center;
  border-bottom: none;
}

.about-closer__h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 5.5vw, 70px) !important;
  font-weight: 700 !important;
  max-width: 16ch;
  margin: 0 auto 24px !important;
  line-height: 1.05;
  color: #faf3f1 !important;
}

.about-closer__h2 em {
  font-style: normal;
  color: #ed6e2b;
}

.about-closer p {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: clamp(17px, 1.6vw, 19px);
  color: #faf3f1;
  opacity: .9;
}

.about-closer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #ed6e2b;
  color: #151618 !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: transform .2s, background .2s;
}

.about-closer__cta:hover {
  transform: translateY(-2px);
  background: #d55e23;
  color: #151618 !important;
}

.about-closer__cta i {
  font-size: 16px;
  line-height: 1;
  transition: transform .2s;
}

.about-closer__cta:hover i {
  transform: translateX(3px);
}