/* ==========================================================================
   Beyond Hands-On — Workshop Landingpage
   Selbst gehostete Schriften, keine externen CDNs (DSGVO-konform).
   ========================================================================== */

/* ---- Fonts (selbst gehostet) ------------------------------------------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter-800.woff2") format("woff2");
}

/* ---- Design Tokens ------------------------------------------------------ */
:root {
  --ink: #181a2e;          /* Überschriften, Primärbuttons */
  --body: #44475f;         /* Fließtext */
  --muted: #71748c;        /* sekundär */
  --bg: #ffffff;
  --bg-alt: #f7f8fc;       /* abwechselnde Sektionen */
  --line: #e9eaf2;         /* Rahmen */
  --accent: #4f46e5;       /* Indigo-Akzent, sparsam */
  --accent-soft: #eef0fb;  /* Pills, Badges, Icon-Flächen */

  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(24, 26, 46, .05), 0 1px 3px rgba(24, 26, 46, .04);
  --shadow-md: 0 6px 24px rgba(24, 26, 46, .07), 0 2px 6px rgba(24, 26, 46, .04);
  --shadow-lg: 0 18px 50px rgba(24, 26, 46, .12), 0 4px 14px rgba(24, 26, 46, .06);

  --container: 1120px;
  --header-h: 70px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---- Reset / Base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Layout-Helfer ------------------------------------------------------ */
.container {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.container--narrow { width: min(760px, 100% - 40px); }

section { scroll-margin-top: calc(var(--header-h) + 16px); }

.section {
  padding: clamp(64px, 9vw, 116px) 0;
}
.section--alt { background: var(--bg-alt); }

.section-head {
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  text-wrap: balance;
}
.section-head p {
  margin-top: 16px;
  font-size: 1.075rem;
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---- Badges / Chips / Buttons ------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
}
.chip svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: #262a4d; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--bg-alt); transform: translateY(-1px); }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; border-radius: 13px; }
.btn--block { width: 100%; }

/* ---- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(24,26,46,.02);
}
.site-header .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-size: .95rem; font-weight: 800;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
}
.nav__links a {
  font-size: .96rem;
  font-weight: 500;
  color: var(--body);
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #edeffb 0%, #f5f6fc 42%, #ffffff 100%);
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(40px, 6vw, 64px);
  overflow: hidden;
}
.hero__inner { text-align: center; max-width: 860px; margin-inline: auto; }
.hero h1 {
  font-size: clamp(2.45rem, 6.4vw, 4.4rem);
  margin-top: 22px;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero__lead {
  margin-top: 20px;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--body);
  font-weight: 400;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.hero__audience {
  margin-top: 22px;
  color: var(--muted);
  font-size: .98rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.hero__figure {
  margin-top: clamp(44px, 6vw, 70px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
  aspect-ratio: 16 / 8.5;
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

/* ---- "Warum" / Ansatz --------------------------------------------------- */
.why__lead {
  max-width: 760px;
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.why__lead strong { color: var(--accent); font-weight: 600; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 72px);
}
.split__text h3 { font-size: 1.5rem; margin-bottom: 14px; }
.split__text p + p { margin-top: 16px; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; height: auto; display: block; }

.takeaways {
  margin-top: clamp(56px, 7vw, 88px);
}
.takeaways h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 36px;
}
.takeaways__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}
.takeaway {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.takeaway__check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-top: 1px;
}
.takeaway__check svg { width: 16px; height: 16px; }
.takeaway span { font-weight: 500; color: var(--ink); font-size: .99rem; line-height: 1.45; }

/* ---- Module ------------------------------------------------------------- */
.modules__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.module {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.module:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #dcdef0; }
.module__num {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.module h3 { font-size: 1.13rem; margin-bottom: 9px; letter-spacing: -0.015em; }
.module p { font-size: .94rem; color: var(--muted); line-height: 1.55; }

/* ---- Tagesablauf -------------------------------------------------------- */
.schedule__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.day {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
}
.day__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1.2rem;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.day__title span { color: var(--accent); font-size: .9rem; font-weight: 600; }
.slot {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.slot:last-child { border-bottom: 0; }
.slot__time {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--ink);
  font-size: .92rem;
}
.slot__label { color: var(--body); font-size: .97rem; }
.slot--break .slot__label { color: var(--muted); }

/* ---- Testimonials ------------------------------------------------------- */
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote__mark {
  font-size: 3.4rem;
  line-height: .6;
  color: var(--accent-soft);
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}
.quote__text {
  margin: 10px 0 20px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.6;
}
.quote__author { color: var(--muted); font-size: .9rem; font-weight: 500; }

/* ---- Pricing ------------------------------------------------------------ */
.pricing__card {
  max-width: 720px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pricing__head {
  padding: clamp(30px, 4vw, 44px);
  background: linear-gradient(180deg, #f5f6fc, #ffffff);
  border-bottom: 1px solid var(--line);
}
.pricing__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px 26px;
}
.price-now {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-now small { color: var(--accent); font-weight: 600; font-size: .9rem; }
.price-now .amount { font-size: clamp(2.6rem, 6vw, 3.4rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.price-later {
  color: var(--muted);
  font-size: .95rem;
  padding-bottom: 6px;
}
.price-later .amount { text-decoration: line-through; font-weight: 600; }
.pricing__hint {
  margin-top: 16px;
  font-size: .92rem;
  color: var(--accent);
  font-weight: 600;
}
.pricing__body { padding: clamp(28px, 4vw, 40px); }
.pricing__list { list-style: none; padding: 0; display: grid; gap: 13px; margin-bottom: 24px; }
.pricing__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.pricing__list svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }
.pricing__limit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff5ed;
  color: #c2541b;
  border: 1px solid #f6dcc6;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.pricing__trust {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: var(--muted);
  font-size: .85rem;
}
.pricing__trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: none;
  border: 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
}
.faq__q svg { width: 20px; height: 20px; color: var(--accent); flex: none; transition: transform .25s ease; }
.faq__item.is-open .faq__q svg { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq__a-inner { padding: 0 24px 22px; color: var(--body); line-height: 1.62; }
.faq__todo {
  display: inline-block;
  margin-top: 6px;
  font-size: .82rem;
  color: #c2541b;
  background: #fff5ed;
  border: 1px solid #f6dcc6;
  padding: 3px 10px;
  border-radius: 7px;
  font-weight: 600;
}

/* ---- Kontakt ------------------------------------------------------------ */
.contact { text-align: center; }
.contact h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.contact p { margin: 16px auto 28px; max-width: 520px; color: var(--muted); }

/* ---- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #c7c9da;
  padding: clamp(52px, 7vw, 80px) 0 32px;
}
.site-footer a { color: #c7c9da; transition: color .15s ease; }
.site-footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.footer__brand .brand { color: #fff; }
.footer__brand .brand__mark { background: #fff; color: var(--ink); }
.footer__brand p { margin-top: 14px; color: #9a9cb4; max-width: 320px; font-size: .95rem; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; font-weight: 700; letter-spacing: 0; }
.footer__col p, .footer__col a { font-size: .94rem; line-height: 1.8; display: block; }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: .88rem;
  color: #82849c;
}
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---- Legal-Seiten ------------------------------------------------------- */
.legal { padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 600; margin-bottom: 28px; font-size: .95rem; }
.legal__back svg { width: 18px; height: 18px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 8px; }
.legal h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--body); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal .todo {
  background: #fff5ed;
  border: 1px solid #f6dcc6;
  color: #a8460f;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .92em;
}
.legal__note {
  background: var(--accent-soft);
  border: 1px solid #dfe2f6;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: .95rem;
}

/* ---- Scroll-Reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Skip-Link ---------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  z-index: 100;
}
.skip-link:focus { left: 16px; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 960px) {
  .modules__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px 20px 18px;
    transform: translateY(-120%);
    transition: transform .28s ease;
  }
  body.nav-open .nav__links { transform: translateY(0); }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .nav__cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .schedule__grid { grid-template-columns: 1fr; }
  .quotes__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .takeaways__grid { grid-template-columns: 1fr; }
  .modules__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .slot { grid-template-columns: 96px 1fr; gap: 12px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}

/* ---- Reduced Motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---- Team ---- */
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-card__photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; background: var(--bg-alt); }
.team-card__body { padding: 22px 24px 26px; }
.team-card__name { font-size: 1.2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.team-card__role { font-size: .78rem; font-weight: 700; color: var(--accent); margin-top: 5px; text-transform: uppercase; letter-spacing: .05em; }
.team-card__bio { margin-top: 12px; font-size: .95rem; color: var(--body); line-height: 1.62; }
.team-card__bio a { color: var(--accent); text-decoration: underline; }

/* ---- Einblick-Band ---- */
.band { display: block; }
.band img { width: 100%; height: clamp(260px, 40vw, 500px); object-fit: cover; object-position: center 45%; display: block; }

/* ---- Veranstaltungsort / Karte ---- */
.venue__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 28px); align-items: stretch; max-width: 940px; margin-inline: auto; }
.venue__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3 / 2; display: block; }
.venue__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.venue__map:hover img { transform: scale(1.04); }
.venue__foot { text-align: center; margin-top: clamp(22px, 3vw, 34px); }
.venue__foot .venue__addr { color: var(--ink); font-weight: 500; margin-bottom: 16px; }
.venue__attrib { font-size: .72rem; color: var(--muted); margin-top: 14px; text-align: center; }
@media (max-width: 820px) {
  .team__grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .venue__grid { grid-template-columns: 1fr; }
}

/* ---- Header-Logo ---- */
.brand__logo { height: 48px; width: auto; display: block; }
.footer__brand .brand__logo { height: 48px; }
@media (max-width: 560px) { .brand__logo { height: 40px; } }

/* ---- Hero: zwei Praxis-Fotos nebeneinander ---- */
.hero__duo { margin-top: clamp(40px, 6vw, 66px); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hero__duo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
@media (max-width: 620px) { .hero__duo { grid-template-columns: 1fr; gap: 14px; } }
