/* ===========================================================
   Denny Brandes – Persönliche Website
   Farbwelt: Teal (#15779b) + Violett-Akzent (#a692ed)
   =========================================================== */

/* ---------- Schriftart: Inter (lokal gehostet, Variable Font) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --teal: #15779b;
  --teal-dark: #11607d;
  --teal-darker: #0d4d65;
  --accent: #a692ed;
  --accent-dark: #8a72e0;
  --ink: #1b2733;
  --ink-soft: #4a5763;
  --muted: #6b7884;
  --line: #e4e9ee;
  --bg: #ffffff;
  --bg-soft: #f5f8fa;
  --bg-tint: #eef5f8;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(13, 77, 101, 0.10);
  --shadow-lg: 0 24px 60px rgba(13, 77, 101, 0.16);
  --maxw: 1120px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-dark); }

h1, h2, h3 { line-height: 1.2; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.18rem; font-weight: 700; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent { background: var(--accent); color: #1f1640; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.14); color:#fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background:#fff; color: var(--teal-dark); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.brand .dot { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--accent)); display:grid; place-items:center; color:#fff; font-size:.95rem; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: .98rem; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { padding: .55rem 1.2rem; }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(166,146,237,.22), transparent 60%),
    linear-gradient(160deg, var(--teal-darker), var(--teal) 65%);
  color: #fff;
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #d7eef6;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}
.hero h1 { color: #fff; margin-bottom: .3rem; }
.hero .lead {
  font-size: 1.18rem;
  color: #e3f1f6;
  max-width: 36ch;
  margin: 1rem 0 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-figure {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0;
}
.hero-figure img {
  width: 320px; height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow-lg);
}
.hero-figure .badge {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: .7rem 1.1rem;
  box-shadow: var(--shadow);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
.hero-figure .badge b { color: var(--teal); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.tint { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
}
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--bg-tint); color: var(--teal);
  display: grid; place-items: center; margin-bottom: 16px;
  font-size: 1.3rem;
}
.value-card h3 { margin-bottom: .35rem; }
.value-card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Digital / Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service .num { font-size: .8rem; font-weight: 700; color: var(--accent-dark); letter-spacing: .1em; }
.service h3 { margin: .4rem 0 .5rem; }
.service p { color: var(--muted); margin: 0; font-size: .98rem; }
.service ul { margin: .8rem 0 0; padding-left: 1.1rem; color: var(--ink-soft); font-size: .94rem; }
.service ul li { margin-bottom: .25rem; }

.digital-banner {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--teal-darker), var(--teal));
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 38px;
  box-shadow: var(--shadow);
}
.digital-banner h3 { color: #fff; font-size: 1.5rem; margin-bottom: .3rem; }
.digital-banner p { color: #dceef5; margin: 0; max-width: 52ch; }

/* ---------- Book ---------- */
.book {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.book-visual {
  background: linear-gradient(150deg, var(--accent), var(--teal));
  border-radius: var(--radius);
  min-height: 320px;
  display: grid; place-items: center;
  color: #fff; text-align: center; padding: 40px;
  box-shadow: var(--shadow-lg);
}
.book-visual .tag { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; opacity: .85; }
.book-visual .title { font-size: 1.9rem; font-weight: 800; margin: .4rem 0; line-height: 1.15; }
.book-visual .sub { opacity: .9; font-size: .95rem; }
.book blockquote {
  margin: 0 0 1.2rem; font-size: 1.25rem; font-weight: 600; color: var(--ink);
  border-left: 4px solid var(--accent); padding-left: 1rem;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter ul { list-style: none; margin: 1rem 0 0; padding: 0; }
.newsletter ul li { position: relative; padding-left: 1.8rem; margin-bottom: .6rem; color: var(--ink-soft); }
.newsletter ul li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 14px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); display: block; margin-bottom: .3rem; }
.form input, .form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .98rem;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(21,119,155,.15);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .hint { font-size: .82rem; color: var(--muted); }

/* ---------- Contact layout ---------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.contact-info p { color: var(--ink-soft); }
.contact-info .item { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1.1rem; }
.contact-info .item .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-tint); color: var(--teal); display: grid; place-items: center; flex: none; }
.contact-info .item b { display: block; color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #c7d2dc;
  padding: 56px 0 28px;
}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; }
.site-footer h4 { color: #fff; margin: 0 0 .8rem; font-size: 1.05rem; }
.site-footer a { color: #c7d2dc; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .88rem; color: #9aa9b5;
}
.footer-bottom a { color: #9aa9b5; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .book, .newsletter, .contact-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-figure img { width: 240px; height: 240px; }
  .newsletter { padding: 32px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 18px 24px; gap: 1rem;
    transform: translateY(-150%);
    transition: transform .3s ease;
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .section { padding: 60px 0; }
  .form .row { grid-template-columns: 1fr; }
}

/* ===========================================================
   Buch-Seite – ergänzende Stile
   =========================================================== */

/* Hero mit Cover */
.hero-figure img.cover {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

/* Über das Buch: Text + Zitat */
.about-book { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: center; }
.about-book blockquote {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  border-left: 4px solid var(--accent);
  padding-left: 1.2rem;
}
.about-book blockquote cite { display: block; margin-top: .8rem; font-size: .95rem; font-weight: 600; font-style: normal; color: var(--teal); }

/* Über den Autor */
.author { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.author .author-card {
  background: linear-gradient(150deg, var(--teal), var(--accent));
  border-radius: var(--radius);
  color: #fff;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.author .author-card .big { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.author .author-card .lbl { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; margin-top: .4rem; }
.author .author-card hr { border: 0; border-top: 1px solid rgba(255,255,255,.3); margin: 22px 0; }

/* Lesungen / Termine */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.event {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.event:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.event .date {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; color: var(--teal);
  background: var(--bg-tint);
  padding: .35rem .8rem; border-radius: 999px;
  font-size: .9rem; align-self: flex-start; margin-bottom: 14px;
}
.event h3 { margin-bottom: .4rem; }
.event p { color: var(--muted); font-size: .96rem; flex: 1; }
.event .btn { align-self: flex-start; margin-top: 16px; }

.events-empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}
.events-empty p { color: var(--ink-soft); max-width: 56ch; margin: 0 auto 1.4rem; }

/* Kauf-CTA */
.buy-cta {
  background: linear-gradient(135deg, var(--teal-darker), var(--teal));
  color: #fff;
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.buy-cta h2 { color: #fff; }
.buy-cta p { color: #dceef5; max-width: 52ch; margin: 0 auto 1.8rem; }
.buy-cta .actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .about-book, .author { grid-template-columns: 1fr; }
  .author .author-card { order: -1; }
  .hero-figure img.cover { max-width: 360px; }
}

/* ---------- Buch kaufen ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(166,146,237,.22), transparent 60%),
    linear-gradient(160deg, var(--teal-darker), var(--teal) 65%);
  color: #fff;
  padding: 64px 0 72px;
  text-align: center;
  overflow: hidden;
}
.page-hero-cover {
  width: 260px;
  max-width: 60%;
  margin: 0 auto 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #d7eef6;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero p {
  color: #e3f1f6;
  font-size: 1.12rem;
  max-width: 60ch;
  margin: 0 auto;
}

.retailers { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; align-items: start; }
.retailer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.retailer h3 { margin-bottom: .25rem; }
.retailer-sub { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.retailer-address { font-style: normal; color: var(--ink-soft); margin-bottom: 18px; flex: 1; }

.price-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; flex: 1; align-content: start; }
.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}
.price-list .pl-text { display: flex; flex-direction: column; line-height: 1.3; }
.price-list .fmt { font-weight: 700; }
.price-list .price { color: var(--teal); font-weight: 700; font-size: .95rem; white-space: nowrap; }
.price-list .btn { flex-shrink: 0; padding: .5rem 1.1rem; font-size: .9rem; white-space: nowrap; }

.editions-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

/* ---------- Rechtliche Seiten ---------- */
.legal-hero {
  background: linear-gradient(160deg, var(--teal-darker), var(--teal) 70%);
  color: #fff;
  padding: 52px 0;
}
.legal-hero .eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #d7eef6;
  margin-bottom: .5rem;
}
.legal-hero h1 { color: #fff; margin: 0; }

.legal { max-width: 760px; }
.legal h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2.2rem 0 .5rem;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.4rem 0 .4rem;
}
.legal p { color: var(--ink-soft); }
.legal ul { color: var(--ink-soft); margin: 0 0 1rem; padding-left: 1.3rem; }
.legal ul li { margin-bottom: .3rem; }
.legal a { color: var(--teal); font-weight: 600; }
.legal a:hover { color: var(--teal-dark); }

/* ---------- Hilfe-Seite ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 0; }
.prose p { color: var(--ink-soft); }
.prose ul { color: var(--ink-soft); margin: 0 0 1.2rem; padding-left: 1.3rem; }
.prose ul li { margin-bottom: .5rem; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.intro-grid .prose { max-width: none; }
.intro-figure { margin: 0; }
.intro-figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.pullquote {
  margin: 1.8rem 0 0;
  padding: .4rem 0 .4rem 1.4rem;
  border-left: 4px solid var(--accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
}

.check-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .6rem 1.5rem; }
.check-list li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); margin-bottom: 0; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--teal);
  font-weight: 800;
}

.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.help-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.help-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.help-card h3 { margin: 18px 20px 0; }
.help-card p { color: var(--muted); font-size: .96rem; margin: .5rem 20px 22px; }

.faq { display: grid; gap: 12px; margin-top: 8px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--teal); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); margin: 0 0 16px; }

.muted-note { color: var(--muted); font-size: .92rem; margin-top: 1.6rem; }

/* ---------- Interview (Chatverlauf) ---------- */
.interview-intro { max-width: 820px; margin: 0 auto 28px; font-size: 1.15rem; color: var(--ink-soft); text-align: center; }
.chat { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.chat-row { display: flex; flex-direction: column; max-width: 80%; }
.chat-row.q { align-self: flex-start; align-items: flex-start; }
.chat-row.a { align-self: flex-end; align-items: flex-end; }
.chat .who {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin: 0 .8rem .3rem;
}
.chat .bubble { padding: 15px 20px; border-radius: 18px; line-height: 1.65; }
.chat-row.q .bubble {
  background: #fff; border: 1px solid var(--line);
  border-top-left-radius: 4px; color: var(--ink); font-weight: 600;
}
.chat-row.a .bubble {
  background: var(--teal); color: #fff;
  border-top-right-radius: 4px; box-shadow: var(--shadow);
}
@media (max-width: 760px) { .chat-row { max-width: 92%; } }

/* Interview-Teaser (Startseite) */
.interview-teaser {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.interview-teaser img { width: 100%; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.interview-teaser h2 { margin: .4rem 0 .6rem; }
.interview-teaser p { color: var(--ink-soft); margin-bottom: 1.4rem; }
@media (max-width: 760px) {
  .interview-teaser { grid-template-columns: 1fr; text-align: left; }
  .interview-teaser img { max-width: 200px; }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-figure { order: -1; max-width: 420px; }
}
