/* ============================================================
   HOF Sonderanlagenbau — "Dieser September wird cool" Cooldown
   Countdown / Aktionstag landing page. Vanilla CSS, no build step.
   Fonts (Archivo + Archivo Black) are loaded from <head>.
   ============================================================ */

:root {
  --blue: #0E52A8;        /* primary background            */
  --blue-deep: #0A3A7D;   /* darker shapes / footer / text */
  --navy: #0A1B33;        /* ink on light surfaces         */
  --yellow: #FFCC1B;      /* accent                        */
  --white: #ffffff;
  --ink-muted: #3a4a63;   /* secondary copy on light       */

  --maxw: 1200px;
  --pad: clamp(20px, 4.5vw, 60px);

  --ease-reveal: cubic-bezier(.16, .84, .3, 1);
  --ease-pop: cubic-bezier(.34, 1.3, .5, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--blue);
  color: var(--white);
  font-family: 'Archivo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--blue); }
a:hover { color: var(--blue-deep); }

/* ---------- Scroll reveal (activated only when JS is on) ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 1s var(--ease-reveal),
    transform 1.05s var(--ease-reveal);
}
html.js [data-reveal="left"]  { transform: translate3d(-80px, 0, 0); }
html.js [data-reveal="right"] { transform: translate3d(80px, 0, 0); }
html.js [data-reveal="scale"] { transform: scale(.82); }
[data-reveal][data-in] { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { transition-duration: .001ms; opacity: 1; transform: none; }
}

/* ---------- Keyframes ---------- */
@keyframes hof-marq { to { transform: translateX(-50%); } }
@keyframes hof-bob  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(9px); } }

/* ---------- Shared helpers ---------- */
.wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}
.skew { display: inline-block; transform: skewX(-8deg); }
.hl-y { color: var(--yellow); }
.hl-w { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--blue);
}
.hero__bg {
  position: absolute;
  inset: -12% -6% -6% -6%;
  background: var(--blue-deep);
  clip-path: polygon(0 20%, 50% 0, 100% 20%, 100% 100%, 0 100%);
  z-index: 0;
}
.hero__watermark {
  position: absolute;
  right: -4%;
  top: 26%;
  font-family: 'Archivo Black', sans-serif;
  font-size: min(46vw, 640px);
  line-height: .8;
  color: rgba(255, 255, 255, .045);
  transform: skewX(-8deg);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero__inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.hero__header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo { width: clamp(84px, 8vw, 120px); }
.logo img { width: 100%; height: auto; display: block; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hero__cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  background: var(--yellow);
  color: var(--blue-deep);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero__cal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10, 58, 125, .3);
}
.hero__cal-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 3px;
}
.lang__btn {
  border: 0;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: .08em;
  padding: 8px 13px;
  border-radius: 10px;
  /* active/inactive colours are driven inline by JS (setLang) */
  transition: background .2s ease, color .2s ease;
}
.lang__btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.hero__title-wrap {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
}
.hero__title {
  margin: 0;
  font-family: 'Archivo Black', sans-serif;
  color: var(--white);
  line-height: .82;
  font-size: clamp(2.5rem, 13vw, 10rem);
  letter-spacing: -.01em;
  text-transform: uppercase;
  transform: skewX(-8deg);
}
.hero__title > span { display: block; }

/* Countdown */
.cd {
  position: relative;
  z-index: 2;
  margin-top: clamp(26px, 4vw, 52px);
  max-width: 820px;
}
.cd__label {
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.15vw, 14px);
  margin-bottom: 14px;
}
.cd__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 14px);
}
.cd__card {
  flex: 1 1 110px;
  min-width: 92px;
  background: var(--white);
  border-radius: 16px;
  padding: clamp(12px, 1.7vw, 22px) clamp(12px, 1.5vw, 20px);
}
.cd__card--accent { background: var(--yellow); }
.cd__num {
  font-family: 'Archivo Black', sans-serif;
  color: var(--blue);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: .86;
}
.cd__num--navy { color: var(--blue-deep); }
.cd__unit {
  font-weight: 800;
  color: var(--blue-deep);
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: 8px;
}

.hero__scroll {
  position: relative;
  z-index: 2;
  margin-top: clamp(20px, 3vw, 34px);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero__arrow { display: inline-block; animation: hof-bob 1.6s ease-in-out infinite; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  z-index: 5;
  background: var(--yellow);
  transform: rotate(-2.2deg);
  margin: clamp(-30px, -3vw, -20px) -3vw;
  padding: clamp(12px, 1.6vw, 20px) 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: hof-marq 44s linear infinite;
  will-change: transform;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  padding-right: clamp(24px, 3vw, 48px);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 3.2vw, 42px);
  color: var(--blue-deep);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   UPDATE (white intro band)
   ============================================================ */
.update {
  position: relative;
  background: var(--white);
  color: var(--navy);
  padding: clamp(90px, 15vh, 170px) var(--pad);
  overflow: hidden;
}
.update__title {
  margin: 0 0 clamp(26px, 4.5vh, 44px);
  font-family: 'Archivo Black', sans-serif;
  color: var(--blue);
  text-transform: uppercase;
  line-height: .86;
  font-size: clamp(2rem, 7vw, 5.2rem);
}
.update__lead {
  margin: 0 0 clamp(18px, 3vh, 26px);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(19px, 2.4vw, 30px);
  line-height: 1.3;
  max-width: 42ch;
  transition-delay: .06s;
}
.update__sub {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.9vw, 22px);
  line-height: 1.55;
  max-width: 54ch;
  transition-delay: .12s;
}

/* ============================================================
   STIMMEN (voices / quotes)
   ============================================================ */
.voices {
  position: relative;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%);
  margin-top: clamp(-80px, -7vw, -52px);
  padding: clamp(120px, 16vh, 210px) var(--pad) clamp(80px, 15vh, 180px);
  overflow: hidden;
}
.voices__bg {
  position: absolute;
  left: -6%;
  top: 8%;
  width: 46%;
  height: 60%;
  background: var(--blue-deep);
  clip-path: polygon(0 12%, 100% 0, 86% 100%, 0 88%);
  z-index: 0;
}
.quote {
  margin: 0 0 clamp(60px, 11vh, 120px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  flex-wrap: wrap;
}
.quote--right { justify-content: flex-end; }
.quote--last { margin-bottom: 0; }
.quote__body {
  flex: 1 1 440px;
  min-width: min(100%, 300px);
  max-width: 820px;
}
.quote__body--right { text-align: right; }
.quote__num {
  font-family: 'Archivo Black', sans-serif;
  color: rgba(255, 255, 255, .18);
  font-size: clamp(44px, 7vw, 110px);
  line-height: .7;
  margin-bottom: 10px;
}
.quote__text {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: clamp(23px, 3.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -.01em;
  transition-delay: .06s;
}
.quote__attr {
  margin-top: clamp(16px, 2.4vh, 24px);
  color: var(--yellow);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: .14em;
  text-transform: uppercase;
  transition-delay: .12s;
}
.quote__emoji {
  flex: 0 0 auto;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.quote__emoji--first { order: -1; }
.quote__emoji span {
  display: block;
  font-size: clamp(115px, 14vw, 250px);
  line-height: 1;
}

/* ============================================================
   FOTO / EVENT
   ============================================================ */
.foto {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--blue-deep);
  clip-path: polygon(0 0, 100% 62px, 100% 100%, 0 100%);
  margin-top: clamp(-64px, -6.5vw, -40px);
  padding: clamp(20px, 4.5vw, 60px) clamp(20px, 4.5vw, 60px) clamp(84px, 11vw, 128px);
}
.foto__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  display: block;
}
.foto__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg,
    rgba(10, 58, 125, .15) 0%,
    rgba(10, 58, 125, 0) 22%,
    rgba(10, 58, 125, .72) 60%,
    rgba(10, 58, 125, .94) 100%);
}
.foto__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  pointer-events: none;
}
.foto__title {
  margin: 0 0 clamp(18px, 2.6vh, 28px);
  font-family: 'Archivo Black', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  line-height: .84;
  font-size: clamp(2.6rem, 10vw, 7.5rem);
  transition-delay: .06s;
}
.foto__lead {
  margin: 0 0 clamp(22px, 3.4vh, 34px);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.25;
  max-width: 34ch;
  transition-delay: .12s;
}
.foto__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 3.4vw, 52px);
  margin-bottom: clamp(26px, 3.8vh, 40px);
  transition-delay: .16s;
}
.foto__meta-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--yellow);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.foto__meta-val {
  font-family: 'Archivo Black', sans-serif;
  color: var(--white);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1;
}
.foto__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  background: var(--yellow);
  color: var(--blue-deep);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.foto__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .32);
}
.foto__btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  position: relative;
  background: var(--blue);
  color: var(--white);
  clip-path: polygon(0 0, 100% 66px, 100% 100%, 0 100%);
  margin-top: clamp(-52px, -6vw, -30px);
  padding: clamp(120px, 18vh, 220px) var(--pad) clamp(70px, 12vh, 140px);
  overflow: hidden;
}
.faq__bg {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 44%;
  height: 70%;
  background: var(--blue-deep);
  clip-path: polygon(14% 0, 100% 12%, 100% 100%, 0 90%);
  z-index: 0;
}
.faq__eyebrow {
  color: var(--yellow);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(13px, 1.5vw, 18px);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: clamp(14px, 3vh, 24px);
}
.faq__title {
  margin: 0 0 clamp(34px, 6vh, 64px);
  font-family: 'Archivo Black', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  line-height: .82;
  font-size: clamp(3.4rem, 13vw, 10rem);
}
.faq__item { border-top: 2px solid rgba(255, 255, 255, .22); }
.faq__item:last-of-type { border-bottom: 2px solid rgba(255, 255, 255, .22); }

.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  background: none;
  border: 0;
  text-align: left;
  color: var(--white);
  padding: clamp(20px, 3.2vh, 30px) 0;
}
.faq__btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
  border-radius: 8px;
}
.faq__q {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(19px, 2.6vw, 33px);
  line-height: 1.12;
  letter-spacing: -.01em;
}
.faq__ic {
  flex: none;
  position: relative;
  width: clamp(36px, 4vw, 48px);
  height: clamp(36px, 4vw, 48px);
  border-radius: 50%;
  background: var(--yellow);
  transition: transform .4s var(--ease-pop);
}
.faq__btn:hover .faq__ic { transform: scale(1.07); }
.faq__bar {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 2px;
  background: var(--blue-deep);
}
.faq__bar--h {
  width: clamp(15px, 1.7vw, 19px);
  height: 3px;
  transform: translate(-50%, -50%);
}
.faq__bar--v {
  width: 3px;
  height: clamp(15px, 1.7vw, 19px);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease-pop);
}
.faq__item[data-open] .faq__bar--v { transform: translate(-50%, -50%) rotate(90deg); }

.faq__wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.4, 0, .2, 1);
}
.faq__item[data-open] .faq__wrap { grid-template-rows: 1fr; }
.faq__clip { overflow: hidden; }
.faq__a {
  padding: 0 clamp(48px, 6vw, 74px) clamp(24px, 3.6vh, 34px) 0;
  max-width: 62ch;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.75vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--blue-deep);
  color: var(--white);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: clamp(-40px, -4vw, -24px);
  padding: clamp(64px, 9vh, 100px) var(--pad) clamp(44px, 7vh, 72px);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4.5vh, 44px);
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  justify-content: space-between;
}
.footer__logo { width: clamp(92px, 8vw, 120px); }
.footer__logo img { width: 100%; height: auto; display: block; }
.footer__note { max-width: 680px; }
.footer__note-strong {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--white);
  line-height: 1.4;
}
.footer__note-sub {
  margin-top: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
}
.footer__divider { height: 1px; background: rgba(255, 255, 255, .15); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
}
.footer__meta {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}
.footer__legal { display: flex; align-items: center; gap: 16px; }
.footer__legal-btn {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--yellow);
  padding: 0;
  letter-spacing: .02em;
  transition: opacity .2s ease;
}
.footer__legal-btn:hover { opacity: .68; }
.footer__legal-btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }
.footer__legal-sep { color: rgba(255, 255, 255, .3); font-size: 13px; }

/* ============================================================
   OVERLAYS / MODALS  (open/close animated inline via JS)
   ============================================================ */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  visibility: hidden;
}
.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 48, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background .42s ease, backdrop-filter .42s ease, -webkit-backdrop-filter .42s ease;
}
.overlay__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  color: var(--navy);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 34px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
  transform: translateY(20px) scale(.96);
  opacity: 0;
  transition: transform .4s var(--ease-reveal), opacity .34s ease;
}
.overlay__panel--wide {
  max-width: 560px;
  max-height: 88vh;
  padding: clamp(24px, 4vw, 38px);
}
.overlay__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(18px, 3vh, 24px);
}
.overlay__head--lg { margin-bottom: clamp(20px, 3.2vh, 28px); }
.overlay__title {
  margin: 0;
  font-family: 'Archivo Black', sans-serif;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.01em;
}
.overlay__title--sm { font-size: clamp(21px, 3vw, 28px); }
.overlay__title--lg { font-size: clamp(22px, 3.2vw, 32px); }
.overlay__sub {
  margin-top: 9px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1.3vw, 14px);
  color: #5a6b84;
}
.overlay__close {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: #F0F2F6;
  color: var(--navy);
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.overlay__close:hover { background: #E2E6EE; }
.overlay__close:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* Calendar chooser */
.cal-opts { display: flex; flex-direction: column; gap: 10px; }
.cal-opt {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  border: 2px solid #E6E9EF;
  background: #fff;
  cursor: pointer;
  border-radius: 14px;
  padding: 15px;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.cal-opt:hover { border-color: var(--blue); background: #F5F8FF; transform: translateY(-1px); }
.cal-opt:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.cal-opt__ic {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.cal-opt__ic--ics { background: var(--yellow); }
.cal-opt__ic--google { background: var(--blue); }
.cal-opt__body { min-width: 0; }
.cal-opt__title {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
}
.cal-opt__sub {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #5a6b84;
  margin-top: 2px;
}
.cal-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: clamp(18px, 3vh, 24px) 0;
}
.cal-divider__line { flex: 1; height: 1px; background: #E6E9EF; }
.cal-divider__label {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8695ab;
  white-space: nowrap;
}
.cal-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #F5F8FF;
  border-radius: 14px;
  padding: 16px;
}
.cal-info__ic { flex: none; font-size: 20px; line-height: 1.2; }
.cal-info__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.35;
}
.cal-info__sub {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #5a6b84;
  line-height: 1.35;
  margin-top: 2px;
}

/* Impressum / Datenschutz content */
.legal-block { margin-bottom: clamp(16px, 2.6vh, 22px); }
.legal-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 7px;
}
.legal-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.legal-text strong { font-weight: 800; color: var(--navy); }
.legal-credit {
  margin-top: clamp(8px, 1.5vh, 14px);
  padding-top: clamp(16px, 2.6vh, 20px);
  border-top: 1px solid #E6E9EF;
}
.legal-credit__label {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: #8695ab;
}
.legal-credit__val {
  margin-top: 5px;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: var(--ink-muted);
}
.legal-credit__val strong { font-weight: 800; color: var(--navy); }
.legal-p {
  margin: 0 0 clamp(12px, 2vh, 16px);
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-muted);
}
.legal-p--lead {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: clamp(14px, 2.4vh, 18px);
}
.legal-p--last { margin-bottom: 0; }
