/* ══════════════════════════════════════════════════════════════════
   v16/clean.css — Startseiten-Reduktion + neue Unterseiten.

   Die Startseite zeigt nur noch Kern-Elemente; Pakete und FAQ leben
   auf eigenen Seiten (pakete.html, faq.html) und werden auf der
   Startseite durch je EINE visuelle Teaser-Box vertreten.
   Geladen von: index.html, pakete.html, faq.html.
   ══════════════════════════════════════════════════════════════════ */

/* Section-Titel ohne Unterzeile braucht mehr Luft zum Inhalt darunter
   (.sec-sub traegt sonst die 52px Abstand). */
.sec-title.solo { margin-bottom: 40px; }

/* ── Teaser-Container ── */
.tease { max-width: 1100px; margin: 0 auto; }

/* Weiterfuehrender Link unter jeder Teaser-Box */
.tease-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.25s var(--ease), color 0.2s;
}
.tease-more:hover { gap: 16px; color: var(--dark); }

/* ── Pakete-Teaser: zwei typografische Kacheln ──
   Der Anker ist das grosse Wort („Laufend." / „Einmalig."), nicht ein
   Icon — das ist die Entscheidung, die die Box menschlich macht. */
.tease-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.tease-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 32px 40px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  text-decoration: none;
  color: var(--dark);
  overflow: hidden;
}
.tease-tile.hl {
  background: linear-gradient(145deg, rgba(160, 120, 48, 0.09) 0%, #fff 60%);
  border-color: rgba(160, 120, 48, 0.32);
}
.tease-tile::after {
  content: '→';
  position: absolute;
  right: 32px;
  bottom: 28px;
  font-size: 1.3rem;
  color: var(--gold);
  opacity: 0.45;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.tease-tile:hover { border-color: rgba(160, 120, 48, 0.45); }
.tease-tile:hover::after { transform: translateX(6px); opacity: 1; }
.tease-tile-word {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--gold);
  margin-bottom: 24px;
}
.tease-tile-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 8px;
}
.tease-tile-sub {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--mid);
  max-width: 36ch;
}

/* ── FAQ-Teaser: grosses Fragezeichen links, drei Fragen rechts ── */
.tease-faq {
  display: grid;
  grid-template-columns: minmax(140px, 0.55fr) 2fr;
  gap: 48px;
  align-items: start;
}
.tease-faq-mark {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(9rem, 20vw, 15rem);
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.16;
  user-select: none;
  margin-top: -8px;
}
.tease-qs { list-style: none; margin: 8px 0 0; padding: 0; }
.tease-qs li { border-top: 1px solid rgba(0, 0, 0, 0.09); }
.tease-qs li:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.09); }
.tease-qs a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  text-decoration: none;
  color: var(--dark);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.tease-qs a::after {
  content: '→';
  color: var(--gold);
  opacity: 0.45;
  transition: opacity 0.2s, transform 0.25s var(--ease);
}
.tease-qs a:hover { color: var(--gold); padding-left: 8px; }
.tease-qs a:hover::after { opacity: 1; transform: translateX(4px); }

@media (max-width: 768px) {
  .tease-faq { grid-template-columns: 1fr; gap: 8px; }
  .tease-faq-mark { font-size: 6rem; margin-top: 0; }
}

/* ── Partner: Logoleiste statt drei Textkarten ── */
#partner.partner-sec { padding-top: 56px; padding-bottom: 56px; }
.partner-strip {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-strip .label { margin: 0; flex-shrink: 0; }
.partner-logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px 48px;
  flex-wrap: wrap;
}
.partner-logos img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.partner-logos img:hover { filter: none; opacity: 1; }

/* Deeplinks (pakete.html#laufend, faq.html#kosten): Ziel nicht unter
   der fixen Nav verstecken. */
.pkg-card[id], .faq-item[id] { scroll-margin-top: calc(var(--nav-h) + 24px); }

/* „Klingt gut?"-Box auf hellem Grund: Fliesstext lesbar (Basisregel ist
   fuer den dunklen Grund gedacht). */
.light-body .pkg-individual p { color: var(--text); }

/* ── FAQ-Akkordeon (vorher inline in index.html, jetzt auf faq.html) ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 0; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  color: var(--white);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(160, 120, 48, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(160, 120, 48, 0.15); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 28px;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 62ch;
}

/* ══════════════════════════════════════════════════════════════════
   DREI HEBEL — das Schaufenster direkt unter dem Hero.
   Anker je Kachel ist das Ergebnis in Kundensprache („Mehr Aufträge."),
   nicht der Leistungsname. Mittlere Kachel sitzt tiefer (Asymmetrie).
   ══════════════════════════════════════════════════════════════════ */
.hebel-sec { background: var(--dark); }
.hebel-inner { max-width: 1100px; margin: 0 auto; }
.hebel-head { margin-bottom: 48px; }
.hebel-head .sec-title { margin-bottom: 0; }
.hebel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.hebel-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 40px 32px 32px;
  justify-content: flex-end;     /* Text unten, oben bleibt Raum fuer das Bild */
  background: linear-gradient(165deg, #313131 0%, #262626 100%);
  border: 1px solid rgba(160, 120, 48, 0.16);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.hebel-tile:nth-child(2) { margin-top: 48px; }
.hebel-tile:hover {
  border-color: rgba(201, 168, 76, 0.55);
  background: linear-gradient(165deg, #35302a 0%, #262626 100%);
}
/* Bild-Layer (KI-Motive, assets/hebel/*.jpg). Liegt unter dem Text,
   oben und unten abgedunkelt, damit Gold-Anker und Text lesbar bleiben.
   Fehlt die Datei, entfernt sich das <img> selbst (onerror). */
.hebel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  z-index: 0;
  transition: opacity 0.4s, transform 0.7s var(--ease);
}
.hebel-tile:has(.hebel-img)::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    /* Schleier von unten links: legt sich unter den Textblock, laeuft
       nach oben rechts ins Bild aus */
    linear-gradient(28deg,
      rgba(24, 24, 24, 0.97) 0%,
      rgba(24, 24, 24, 0.86) 38%,
      rgba(24, 24, 24, 0.50) 64%,
      rgba(24, 24, 24, 0.12) 86%,
      rgba(24, 24, 24, 0) 100%),
    /* Grundverlauf: oben leicht, unten satt dunkel */
    linear-gradient(180deg,
      rgba(28, 28, 28, 0.40) 0%,
      rgba(28, 28, 28, 0.10) 20%,
      rgba(28, 28, 28, 0.30) 40%,
      rgba(28, 28, 28, 0.92) 58%,
      #242424 100%);
}
/* KI-Kachel: Tablet-Licht und Abendsonne sitzen genau hinter dem Text,
   deshalb hier ein deutlich dichterer Schleier. */
.hebel-tile[href="ai.html"]:has(.hebel-img)::before {
  background:
    linear-gradient(28deg,
      rgba(22, 22, 22, 0.99) 0%,
      rgba(22, 22, 22, 0.96) 50%,
      rgba(22, 22, 22, 0.80) 70%,
      rgba(22, 22, 22, 0.35) 88%,
      rgba(22, 22, 22, 0) 100%),
    linear-gradient(180deg,
      rgba(28, 28, 28, 0.40) 0%,
      rgba(28, 28, 28, 0.10) 20%,
      rgba(28, 28, 28, 0.40) 40%,
      rgba(28, 28, 28, 0.95) 58%,
      #202020 100%);
}
/* KI-Bild: leicht aus der oberen rechten Ecke vergroessern, damit das
   leuchtende Tablet nach unten links unter den Schleier rutscht statt
   hinter dem Goldanker zu sitzen. */
.hebel-tile[href="ai.html"] .hebel-img {
  opacity: 0.7;
  transform: scale(1.18);
  transform-origin: 100% 0;
}
.hebel-tile[href="ai.html"]:hover .hebel-img { opacity: 0.8; transform: scale(1.22); }
/* Goldanker bekommt einen weichen Schatten, damit er auch auf hellen
   Bildstellen (Tablet-Screen) steht. */
.hebel-anchor { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65); }
.hebel-tile:hover .hebel-img { opacity: 0.95; transform: scale(1.04); }
.hebel-tile > span { position: relative; z-index: 1; }
.hebel-tile > .hebel-num { position: absolute; }   /* bleibt oben rechts, siehe .hebel-num */
.hebel-num {
  position: absolute;
  top: 28px;
  right: 32px;
  font: 700 0.72rem/1 'Roboto Condensed', sans-serif;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
}
.hebel-anchor {
  font: 700 clamp(2.2rem, 3.3vw, 2.9rem)/0.95 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 12px;
}
/* Ergebnis in Kundensprache — zweite Ebene unter dem Thema */
.hebel-outcome {
  font: 700 1.5rem/1.1 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 12px;
}
.hebel-sub {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 30ch;
  margin-bottom: 28px;
}
.hebel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 0.78rem/1 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  transition: gap 0.25s var(--ease), color 0.2s;
}
.hebel-cta svg { width: 14px; height: 14px; }
.hebel-tile:hover .hebel-cta { gap: 16px; color: var(--gold-l); }
@media (max-width: 900px) {
  .hebel-grid { grid-template-columns: 1fr; }
  .hebel-tile:nth-child(2) { margin-top: 0; }
  .hebel-tile { min-height: 420px; padding: 32px 24px; }
}

/* ══════════════════════════════════════════════════════════════════
   LÖSUNGSFINDER (#loesung) — fuenf Klicks, keine E-Mail, Ergebnis.
   Links Einordnung, rechts die Karte (Enpal-Muster: eine Frage pro
   Schritt, Klick = weiter, Fortschritt startet nicht bei null).
   ══════════════════════════════════════════════════════════════════ */
#loesung { background: var(--cream); }
.lf-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.lf-intro .sec-title { margin-bottom: 16px; }
.lf-intro-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid);
  max-width: 40ch;
  margin-bottom: 32px;
}
.lf-gets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lf-gets li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: var(--text); }
.lf-gets li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.lf-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.06);
  min-height: 460px;           /* Hoehe bleibt zwischen den Schritten stabil */
}
/* Jeder Schritt gleitet kurz ein statt hart zu wechseln */
.lf-step { animation: lfIn 0.28s var(--ease) both; }
@keyframes lfIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lf-opt:active { transform: scale(0.98); }
.lf-opt.sel::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 14px;
  color: var(--gold);
  font-weight: 700;
}
.lf-opt { position: relative; }
.lf-prog { height: 4px; background: rgba(160, 120, 48, 0.15); border-radius: 2px; overflow: hidden; margin-bottom: 24px; }
.lf-prog i { display: block; height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.4s var(--ease); }
.lf-count, .lf-eyebrow {
  font: 700 0.68rem/1 'Roboto Condensed', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.lf-q {
  font: 700 clamp(1.3rem, 2.4vw, 1.7rem)/1.15 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
  outline: none;
}
.lf-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lf-opts.cols3 { grid-template-columns: repeat(3, 1fr); }
.lf-opts.cols4 { grid-template-columns: repeat(4, 1fr); }
.lf-opt {
  text-align: left;
  background: var(--cream);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.lf-opt:hover { border-color: rgba(160, 120, 48, 0.5); background: #fff; transform: translateY(-2px); }
.lf-opt.sel { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(160, 120, 48, 0.15); }
.lf-opt svg { width: 26px; height: 26px; color: var(--gold); margin-bottom: 8px; }
.lf-opt b { font: 700 1rem/1.2 'Roboto Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }
.lf-opt small { font-size: 0.82rem; color: var(--mid); line-height: 1.4; }
.lf-back, .lf-restart {
  margin-top: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: 700 0.7rem/1 'Roboto Condensed', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.lf-back:hover, .lf-restart:hover { color: var(--gold); }
.lf-fallback { font-size: 0.92rem; color: var(--text); line-height: 1.6; }
.lf-fallback a { color: var(--gold); }

/* Ergebnis */
.lf-res-title {
  font: 700 clamp(1.6rem, 3vw, 2.2rem)/1.05 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 20px;
  outline: none;
}
.lf-badge {
  display: inline-block;
  font: 700 0.68rem/1 'Roboto Condensed', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.lf-res-form p { font-size: 0.92rem; color: var(--text); line-height: 1.6; margin: 0 0 24px; max-width: 52ch; }
.lf-res-form a { color: var(--gold); font-weight: 500; }
.lf-res-list { list-style: none; margin: 0 0 32px; padding: 0; border-top: 1px solid rgba(0, 0, 0, 0.08); }
.lf-res-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--dark);
  display: flex;
  gap: 12px;
}
.lf-res-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.lf-res-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.lf-res-actions .btn { text-align: center; }
.lf-res-actions .lf-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
  font: 700 0.78rem/1 'Roboto Condensed', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.lf-res-actions .lf-link:hover { color: var(--dark); }

@media (max-width: 900px) {
  .lf-wrap { grid-template-columns: 1fr; gap: 32px; }
  .lf-opts, .lf-opts.cols3 { grid-template-columns: 1fr; }
  .lf-opts.cols4 { grid-template-columns: 1fr 1fr; }
  .lf-card { padding: 24px; min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .lf-step { animation: none; }
  .hebel-tile:hover .hebel-img { transform: none; }
}

/* ══════════════════════════════════════════════════════════════════
   ANSPRECHPARTNER (#jannis) — das Gesicht hinter der Firma, gross.
   Foto ist der Anker, das Zitat traegt den Ansatz, Kontakt direkt drunter.
   ══════════════════════════════════════════════════════════════════ */
.jannis-sec { background: var(--dark2); overflow: hidden; }
.jannis-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: 64px;
  align-items: center;
}
.jannis-photo {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #2a2a2a;
}
.jannis-photo::before {           /* Gold-Rahmen, leicht versetzt: bricht das Raster */
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(160, 120, 48, 0.45);
  border-radius: 16px;
  pointer-events: none;
  z-index: 2;
}
.jannis-photo::after {            /* unten in den Grund abdunkeln */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 37, 37, 0) 55%, rgba(37, 37, 37, 0.85) 100%);
  z-index: 1;
}
.jannis-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.85) contrast(1.05);
}
.jannis-body .sec-title { margin-bottom: 8px; }
.jannis-role {
  font: 500 0.82rem/1.4 'Roboto', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
}
.jannis-quote {
  margin: 0 0 24px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font: 700 clamp(1.4rem, 2.6vw, 1.9rem)/1.15 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  color: var(--gold-l);
}
.jannis-quote span {
  display: block;
  margin-top: 10px;
  font: 400 0.98rem/1.65 'Roboto', sans-serif;
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
  max-width: 48ch;
}
.jannis-text { font-size: 0.98rem; line-height: 1.7; color: rgba(255, 255, 255, 0.55); max-width: 52ch; margin: 0 0 32px; }
.jannis-contact { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.jannis-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(160, 120, 48, 0.4);
  border-radius: 999px;
  background: rgba(160, 120, 48, 0.06);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font: 700 0.78rem/1 'Roboto Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.jannis-pill svg { width: 16px; height: 16px; color: var(--gold-l); }
.jannis-pill:hover { background: rgba(160, 120, 48, 0.18); border-color: var(--gold-l); transform: translateY(-2px); }
.jannis-socials { display: flex; align-items: center; gap: 10px; }
.jannis-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-l);
  transition: border-color 0.2s, background 0.2s;
}
.jannis-socials a:hover { border-color: var(--gold-l); background: rgba(160, 120, 48, 0.14); }
.jannis-socials svg { width: 16px; height: 16px; }
.jannis-soc-label { margin-left: 6px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }

@media (max-width: 900px) {
  .jannis-wrap { grid-template-columns: 1fr; gap: 40px; }
  .jannis-photo { max-width: 420px; aspect-ratio: 4 / 4.6; }
  .jannis-photo::before { inset: 12px -12px -12px 12px; }
}
@media (max-width: 540px) {
  .jannis-pill { width: 100%; justify-content: center; }
}
