/* ════════════════════════════════════════════════════════
   TempGroup Suisse — Über uns
   Founder-Portrait, Werte, Produkte-Kurzblock
   ════════════════════════════════════════════════════════ */

/* ─── Founder section ─── */
.founder-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
@media (max-width: 940px) {
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Portrait (Platzhalter → später Foto) */
.founder-portrait { position: relative; }

.fp-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-l);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 18% 0%, rgba(46, 117, 182, 0.85), transparent 62%),
    radial-gradient(90% 70% at 100% 100%, rgba(216, 35, 42, 0.16), transparent 55%),
    linear-gradient(165deg, var(--blue) 0%, var(--blue-deep) 80%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-float);
  display: grid;
  place-items: center;
}
/* feines Linienraster für Tiefe */
.fp-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.fp-monogram {
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 26px 52px -22px rgba(0, 0, 0, 0.5);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 6vw, 78px);
  letter-spacing: 0.02em;
  color: #fff;
  transform: translateY(-8%);
  position: relative;
  z-index: 1;
}

/* Foto (aktivieren, sobald assets/arlind-gashi.jpg vorliegt) */
.fp-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* Namensplakette am unteren Rand — bleibt auch über dem Foto */
.fp-plate {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px 15px;
  border-radius: 14px;
  background: rgba(10, 22, 36, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.fp-plate::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 34px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.fp-plate .fp-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.2;
}
.fp-plate .fp-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* Standort-Badge, schwebt über der Kante */
.fp-badge {
  position: absolute;
  top: 26px;
  right: -14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  white-space: nowrap;
}
@media (max-width: 1120px) { .fp-badge { right: 6px; } }

/* Text rechts */
.founder-copy .founder-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 16px 0 6px;
}
.founder-copy .founder-role {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 22px;
}
.founder-copy .founder-story p {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.7;
  max-width: 56ch;
}
.founder-copy .founder-story p + p { margin-top: 16px; }

/* Hervorgehobenes Zitat */
.founder-quote {
  margin: 28px 0 0;
  padding: 22px 26px 20px;
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  background: var(--bg-soft);
}
.founder-quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: pretty;
}
.founder-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}

/* ─── Werte ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 940px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px 30px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
html[data-theme="dark"] .value-card { background: var(--bg-soft); }
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
  border-color: var(--line-strong);
}
.value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.value-card:hover::after { transform: scaleX(1); }

.value-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.value-ico svg { width: 26px; height: 26px; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.value-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ─── Produkte-Kurzblock ─── */
.prodmini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 940px) { .prodmini-grid { grid-template-columns: 1fr; } }

.prodmini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 26px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
html[data-theme="dark"] .prodmini { background: var(--bg-soft); }
.prodmini:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
  border-color: var(--line-strong);
}
.prodmini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.prodmini-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--blue);
  line-height: 1.1;
}
html[data-theme="dark"] .prodmini-name { color: #fff; }
.prodmini-name .accent { color: var(--red); }
.prodmini p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  flex-shrink: 0;
  padding: 4px 11px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.badge-live {
  color: #15794F;
  background: rgba(34, 160, 107, 0.1);
  border: 1px solid rgba(34, 160, 107, 0.32);
}
.badge-live .badge-dot {
  background: #22A06B;
  box-shadow: 0 0 0 3px rgba(34, 160, 107, 0.16);
}
html[data-theme="dark"] .badge-live { color: #6FD3A6; }
.badge-soon {
  color: var(--blue);
  background: var(--blue-tint);
  border: 1px solid color-mix(in oklab, var(--blue) 26%, transparent);
}
.badge-soon .badge-dot { background: var(--blue-mid); }
html[data-theme="dark"] .badge-soon { color: #9CC4E8; }

.prodmini-more { text-align: center; margin-top: 36px; }
