/* ============================================================
   lila.works — „Editorial Calm"
   Reispapier-Grund, Aubergine-Tinte, Logo-Lila als Akzent.
   Fraunces (Display-Serif) + Karla (Text). Keine Frameworks.
   ============================================================ */

:root {
  --paper: #FBF8F2;
  --paper-2: #F4EEE4;
  --lav: #EFE9F3;
  --lav-2: #E3D9EA;
  --ink: #2D2432;
  --ink-soft: #6B5F72;
  --plum: #7C4E8F;
  --plum-deep: #5B3A6C;
  --line: #E5DCD2;
  --ok: #4F7A5A;
  --err: #A8503F;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Karla', 'Segoe UI', sans-serif;
  --wrap: 1180px;
  --r: 14px;
  --shadow: 0 18px 50px -18px rgba(45, 36, 50, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Tap-Delay killen; kein 300ms-Verzug auf Touch */
a, button, input, select, textarea, summary, label { touch-action: manipulation; }
/* Sticky-Header verdeckt Anker-Ziele nicht */
[id] { scroll-margin-top: 92px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* Papierkorn */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

::selection { background: var(--plum); color: var(--paper); }
a { color: var(--plum-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--plum); }
:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; border-radius: 2px; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 420;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; }
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: max(clamp(20px, 4vw, 44px), env(safe-area-inset-left), env(safe-area-inset-right));
}

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--plum); color: #fff; padding: 8px 16px; border-radius: 999px;
}
.skip-link:focus { left: 8px; }

/* ------------------------------------------------ Kopf */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  padding-top: env(safe-area-inset-top);
}
.head-inner { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); min-height: 76px; }
.brand img { width: 104px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); margin-inline: auto; }
.main-nav > a, .nav-drop > button {
  font: inherit; font-weight: 600; font-size: .95rem;
  color: var(--ink); text-decoration: none;
  background: none; border: 0; padding: 6px 2px; cursor: pointer;
  letter-spacing: .01em;
}
.main-nav > a:hover, .main-nav > a.active, .nav-drop > button:hover { color: var(--plum); }
.drop-dots { color: var(--plum); letter-spacing: .12em; margin-left: 2px; }
.nav-drop { position: relative; }
.drop-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 6px;
  min-width: 220px; padding: 10px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow);
  display: grid;
  opacity: 0; visibility: hidden; transition: .22s ease;
}
.nav-drop:hover .drop-panel, .nav-drop:focus-within .drop-panel { opacity: 1; visibility: visible; translate: -50% 0; }
.drop-panel a {
  padding: 9px 14px; border-radius: 9px;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
}
.drop-panel a:hover { background: var(--lav); color: var(--plum-deep); }
.head-tools { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; align-items: center; gap: 4px; }
.lang-switch a {
  display: inline-flex; align-items: center; gap: 5px;
  min-height: 40px; padding: 6px 8px; border-radius: 9px;
  text-decoration: none; color: var(--ink-soft);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  opacity: .5; transition: opacity .18s ease, background .18s ease;
}
.lang-switch a svg { border-radius: 3px; box-shadow: 0 0 0 1px rgba(45,36,50,.08); display: block; }
.lang-switch a:hover { opacity: .85; background: var(--lav); }
.lang-switch a.on { opacity: 1; color: var(--ink); }
.lang-switch a.on svg { box-shadow: 0 0 0 1.5px var(--plum); }
.burger {
  display: none; background: none; border: 0; color: var(--ink); cursor: pointer;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  border-radius: 10px;
}
.burger:hover { background: var(--lav); color: var(--plum); }

/* ------------------------------------------------ Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font: inherit; font-weight: 700; font-size: .95rem;
  padding: 12px 24px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: .2s ease;
}
.btn svg { transition: translate .2s ease; }
.btn:hover svg { translate: 4px 0; }
.btn-solid { background: var(--plum); color: #fff; }
.btn-solid:hover { background: var(--plum-deep); color: #fff; }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--plum); color: var(--plum); }

/* ------------------------------------------------ Dekor */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--plum); margin-bottom: 18px;
}
.eyebrow::before { content: '· · ·'; letter-spacing: .3em; }
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 380; color: var(--plum-deep); }

/* Bogen-Bilder */
.arch { border-radius: 999px 999px var(--r) var(--r); overflow: hidden; }
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------ Hero */
.hero { padding: clamp(48px, 8vw, 110px) 0 clamp(40px, 6vw, 80px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero h1 { font-size: clamp(2.8rem, 6.5vw, 5.2rem); font-weight: 380; }
.hero h1 .line-i { font-style: italic; color: var(--plum); }
.hero-tag { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 46ch; }
.hero-dots { font-family: var(--serif); font-size: 1.4rem; letter-spacing: .5em; color: var(--plum); margin: 4px 0 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-fig { position: relative; }
.hero-fig .arch { aspect-ratio: 3 / 4; box-shadow: var(--shadow); position: relative; z-index: 1; }
.hero-fig::before {
  content: ''; position: absolute; inset: -7% -8% 10% auto; width: 70%;
  background: var(--lav-2); border-radius: 999px 999px var(--r) var(--r);
}
.hero-fig::after {
  content: '· · ·'; position: absolute; bottom: -14px; left: 12px;
  font-family: var(--serif); color: var(--plum); letter-spacing: .5em; font-size: 1.3rem;
}

/* ------------------------------------------------ Sektionen */
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section-tint { background: var(--paper-2); }
.section-lav { background: var(--lav); }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head p { color: var(--ink-soft); }

/* Angebots-Karten */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 30px); }
.card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; text-decoration: none; color: var(--ink);
  transition: .25s ease;
}
.card:hover { translate: 0 -5px; box-shadow: var(--shadow); border-color: var(--lav-2); color: var(--ink); }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--lav); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: scale .5s ease; }
.card:hover .card-img img { scale: 1.05; }
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body h3 { margin: 0; font-size: 1.35rem; }
.card-tag { font-family: var(--serif); font-style: italic; color: var(--plum-deep); font-size: 1rem; }
.card-more {
  margin-top: auto; padding-top: 14px;
  font-weight: 700; font-size: .9rem; color: var(--plum);
  display: inline-flex; align-items: center; gap: 8px;
}
.card:hover .card-more svg { translate: 4px 0; }
.card-more svg { transition: translate .2s ease; }

/* Zitat */
.quote { position: relative; max-width: 760px; margin-inline: auto; text-align: center; padding: 0 20px; }
.quote::before {
  content: '„'; position: absolute; top: -0.55em; left: 50%; translate: -50% 0;
  font-family: var(--serif); font-size: 7rem; line-height: 1; color: var(--lav-2); z-index: -1;
}
.quote blockquote {
  margin: 0; font-family: var(--serif); font-style: italic; font-weight: 380;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.4; color: var(--ink);
}
.quote figcaption { margin-top: 16px; color: var(--plum); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem; }

/* Zweispalter Text/Bild */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split .arch { aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.split-body h2 { margin-bottom: .4em; }
.split-body p { color: var(--ink-soft); }

/* ------------------------------------------------ Slider / Galerie */
.slider { position: relative; box-shadow: var(--shadow); background: var(--lav); }
.slider-track {
  display: flex; height: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-slide { flex: 0 0 100%; margin: 0; scroll-snap-align: center; }
.slider-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider-nav {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 2;
  width: 42px; height: 42px; border-radius: 999px; border: 0; cursor: pointer;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  color: var(--ink); backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px -4px rgba(45,36,50,.35);
  opacity: 0; transition: opacity .2s ease, background .2s ease;
}
.slider:hover .slider-nav, .slider:focus-within .slider-nav { opacity: 1; }
.slider-nav:hover { background: var(--paper); color: var(--plum); }
.slider-nav.prev { left: 12px; }
.slider-nav.next { right: 12px; }
.slider-dots {
  position: absolute; bottom: 14px; left: 50%; translate: -50% 0; z-index: 2;
  display: flex; gap: 8px; padding: 7px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 32%, transparent); backdrop-filter: blur(4px);
}
.slider-dot {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,.55); transition: background .2s ease, width .2s ease;
}
.slider-dot.on { background: #fff; width: 20px; }
@media (hover: none) { .slider-nav { display: none; } }

/* ------------------------------------------------ Prosa (Angebot, Rechtliches) */
.prose { max-width: 70ch; }
.prose ul { padding-left: 1.2em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .55em; }
.prose strong { color: var(--plum-deep); }
.page-hero { padding: clamp(44px, 6vw, 80px) 0 clamp(24px, 3vw, 40px); }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { max-width: 16ch; }
.page-hero .tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--plum-deep); max-width: 50ch; }

.angebot-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.angebot-aside { position: sticky; top: 100px; display: grid; gap: 18px; }
.angebot-aside .arch { aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.fact-box { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; }
.fact-box h3 { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 700; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--plum); margin-bottom: 10px; }
.fact-box p { margin-bottom: .6em; font-size: .97rem; }
.fact-box p:last-child { margin-bottom: 0; }
.note-box { background: var(--lav); border-radius: var(--r); padding: 18px 22px; font-size: .88rem; color: var(--ink-soft); }

/* ------------------------------------------------ Events */
.event-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; margin-bottom: 26px; transition: .25s ease;
}
.event-card:hover { box-shadow: var(--shadow); translate: 0 -3px; }
.event-card-img { background: var(--lav); min-height: 200px; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body { padding: 26px 30px; }
.event-card-body h2 { font-size: 1.6rem; margin-bottom: 6px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--ink-soft); font-size: .93rem; margin-bottom: 12px; }
.event-meta span { display: inline-flex; align-items: center; gap: 7px; }
.event-meta svg { color: var(--plum); }
.date-chip {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--lav); border-radius: 12px; padding: 8px 14px; margin: 0 10px 10px 0;
  font-size: .8rem; color: var(--ink-soft); line-height: 1.3;
}
.date-chip strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--ink); }
.date-chip.full { opacity: .5; }
.badge { display: inline-block; padding: 3px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.badge-frei { background: #E4EEE6; color: var(--ok); }
.badge-voll { background: #F4E3DE; color: var(--err); }

/* ------------------------------------------------ Featured-Event (Startseite) */
.event-featured {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 0;
  background: var(--paper); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 28px;
}
.event-featured-media { position: relative; min-height: 320px; }
.event-featured-media .slider,
.event-featured-media .arch { height: 100%; border-radius: 0; box-shadow: none; }
.event-featured-body { padding: clamp(26px, 3.5vw, 44px); display: flex; flex-direction: column; gap: 14px; align-self: center; }
.event-flag {
  align-self: flex-start;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--plum); background: var(--lav); padding: 5px 14px; border-radius: 999px;
}
.event-featured-body h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0; }
.date-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.date-chips .date-chip { margin: 0; }
.event-featured-body .btn { align-self: flex-start; margin-top: 6px; }

.event-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.event-mini {
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: .25s ease;
}
.event-mini:hover { translate: 0 -4px; box-shadow: var(--shadow); color: var(--ink); }
.event-mini-img { aspect-ratio: 16 / 10; background: var(--lav); overflow: hidden; }
.event-mini-img img { width: 100%; height: 100%; object-fit: cover; transition: scale .4s ease; }
.event-mini:hover .event-mini-img img { scale: 1.05; }
.event-mini-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.event-mini-body h3 { margin: 0; font-size: 1.2rem; }
.date-badge { font-size: .82rem; font-weight: 700; color: var(--plum); }

/* ------------------------------------------------ Formulare */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; }
label .req { color: var(--plum); }
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password],
input[type=date], input[type=time], select, textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 11px 14px; transition: border-color .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--plum); outline: none; }
textarea { min-height: 130px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--ink-soft); }
fieldset { border: 1px solid var(--line); border-radius: var(--r); padding: 20px; margin: 0 0 20px; }
legend { font-weight: 700; padding-inline: 8px; }

/* ------------------------------------------------ Toast & Dialog */
.toast {
  position: fixed; bottom: 24px; left: 50%; translate: -50% 0; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 14px 26px; border-radius: 999px; box-shadow: var(--shadow);
  font-weight: 600; max-width: min(92vw, 560px); text-align: center;
  animation: toast-in .35s ease;
}
.toast-success { background: var(--ok); }
.toast-error { background: var(--err); }
@keyframes toast-in { from { opacity: 0; translate: -50% 16px; } }
.toast.hide { opacity: 0; transition: opacity .4s ease; }

dialog {
  border: 0; border-radius: var(--r); padding: 30px 34px; max-width: 420px;
  background: var(--paper); color: var(--ink); box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(45, 36, 50, .45); backdrop-filter: blur(3px); }
.dialog-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 18px; }

/* ------------------------------------------------ Footer */
.site-foot { background: var(--ink); color: #CFC4D6; margin-top: clamp(48px, 7vw, 96px); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(28px, 5vw, 64px); padding-block: clamp(40px, 6vw, 72px) 32px; }
.foot-logo { font-family: var(--serif); font-size: 2.2rem; color: #fff; margin: 0 0 4px; }
.foot-logo span { color: var(--lav-2); font-style: italic; }
.foot-claim { color: #9E8FA8; }
.foot-insta { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-weight: 700; margin-top: 8px; }
.foot-insta:hover { color: var(--lav-2); }
.site-foot h3 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px; }
.site-foot a { color: #CFC4D6; }
.site-foot a:hover { color: #fff; }
.foot-line { border-top: 1px solid rgba(255,255,255,.12); padding-block: 18px; font-size: .85rem; color: #9E8FA8; }
.foot-line p { margin: 0; }

/* ------------------------------------------------ Reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; translate: 0 26px; transition: opacity .7s ease, translate .7s ease; transition-delay: var(--d, 0s); }
  .reveal.in { opacity: 1; translate: 0 0; }
}

/* ------------------------------------------------ Responsive */
@media (max-width: 1020px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .angebot-grid { grid-template-columns: 1fr; }
  .angebot-aside { position: static; grid-template-columns: 1fr 1fr; }
  .angebot-aside .arch { aspect-ratio: 16 / 10; grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .head-cta { display: none; }
  .burger { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 14px clamp(20px, 4vw, 44px) 22px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .nav-drop > button { padding: 11px 4px; text-align: left; font-size: 1.05rem; }
  .nav-drop .drop-panel {
    position: static; translate: 0; opacity: 1; visibility: visible;
    border: 0; box-shadow: none; background: transparent; padding: 0 0 0 18px;
  }
  .hero-grid, .split { grid-template-columns: 1fr; }
  /* Grid-/Flex-Kinder dürfen unter ihre Inhaltsbreite schrumpfen (kein Overflow) */
  .hero-grid > *, .split > *, .angebot-grid > * { min-width: 0; }
  .hero-tag { max-width: 100%; }
  .hero-fig { max-width: 440px; }
  .event-card { grid-template-columns: 1fr; }
  .event-card > * { min-width: 0; }
  /* min-height durfte via aspect-ratio die Breite aufziehen → stattdessen volle Spaltenbreite */
  .event-card-img { min-height: 0; width: 100%; aspect-ratio: 16 / 9; }
  .event-featured { grid-template-columns: 1fr; }
  .event-featured > * { min-width: 0; }
  .event-featured-media { min-height: 0; aspect-ratio: 3 / 2; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .card-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  /* Aside auf Phones einspaltig — Fact-Boxen volle Breite */
  .angebot-aside { grid-template-columns: 1fr; }
  .fact-box { overflow-wrap: break-word; }
}
@media (max-width: 560px) {
  /* Hero-Schrift so, dass die längste Zeile in den Viewport passt (kein Clipping) */
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  /* CTAs stapeln + volle Breite: bequem tappbar, kein Ausbrechen */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .quote::before { font-size: 5rem; }
}
