/* ==========================================================================
   MTB & Downhill Verein Tirol — statisches Design-System
   Ersetzt Divi/WooCommerce. Farben & Typo nah am Original, dezent modernisiert.
   ========================================================================== */

/* ---------- Design-Tokens ---------- */
:root {
  --teal: #006666;
  --teal-dark: #004e43;
  --teal-deep: #044;
  --green: #1ab567;
  --ink: #14201f;
  --text: #2b3534;
  --muted: #5c6b69;
  --paper: #ffffff;
  --grey: #f4f7f6;
  --grey-line: #dde5e3;
  --danger: #b3261e;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 6px 24px rgba(4, 42, 40, .10);
  --shadow-lift: 0 12px 34px rgba(4, 42, 40, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-head: 'Poppins', 'Segoe UI', system-ui, Arial, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', system-ui, Arial, sans-serif;
  --wrap: 1160px;
}

/* ---------- Fonts (selbst gehostet, DSGVO) ---------- */
@font-face { font-family: 'Poppins'; src: url('/assets/fonts/poppins-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/assets/fonts/poppins-medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/assets/fonts/poppins-semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/assets/fonts/poppins-bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }  /* Fallstrick 23: Off-Canvas darf keine Scrollbreite erzeugen */
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.22; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.5vw, 4.3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section--grey { background: var(--grey); }
.section--teal { background: var(--teal); color: #fff; }
.section--teal h2, .section--teal h3 { color: #fff; }
.center { text-align: center; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 2px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--teal); color: #fff; padding: 10px 18px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid #fff;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { background: var(--teal-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; }
.btn--green { background: var(--green); border-color: var(--green); }
.btn--green:hover { background: #128a4e; border-color: #128a4e; }

/* ---------- Topbar ---------- */
.topbar { background: var(--teal); color: #fff; font-size: .82rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 38px; }
.topbar a { color: #fff; opacity: .92; padding: 4px 0; }
.topbar a:hover { opacity: 1; color: #fff; }
.topbar__links { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__social { display: flex; gap: 14px; align-items: center; }
.topbar__social svg { width: 15px; height: 15px; fill: #fff; display: block; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--grey-line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 22px rgba(4,42,40,.12); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 84px; }
.nav__logo img { width: 210px; height: auto; }
.nav__list { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__list > li { position: relative; }
.nav__list a {
  font-family: var(--font-head); font-weight: 500; font-size: .98rem;
  color: var(--teal); padding: 8px 0; display: inline-block;
}
.nav__list a:hover { color: var(--teal-dark); }
.nav__list li.current > a { font-weight: 700; box-shadow: inset 0 -2px 0 var(--green); }
.has-sub > a::after { content: ""; display: inline-block; margin-left: 7px; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-3px); }
.sub {
  position: absolute; top: 100%; left: -14px; min-width: 265px;
  background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  list-style: none; margin: 0; padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .22s var(--ease);
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a { display: block; padding: 9px 14px; border-radius: var(--radius); font-weight: 500; }
.sub a:hover { background: var(--grey); }
.nav__burger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__burger span { display: block; width: 26px; height: 3px; background: var(--teal); margin: 5px 0; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }

/* Mobile Drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px); z-index: 150;
  background: var(--teal); color: #fff; padding: 26px 26px 40px;
  transform: translateX(100%); transition: transform .3s var(--ease);
  overflow-y: auto; visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer__close { background: none; border: 0; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; float: right; }
.drawer ul { list-style: none; margin: 40px 0 0; padding: 0; }
.drawer a { display: block; color: #fff; font-family: var(--font-head); font-weight: 500; font-size: 1.06rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.drawer .drawer__subitem a { padding-left: 18px; font-size: .96rem; opacity: .9; }
.drawer__backdrop { position: fixed; inset: 0; background: rgba(10,20,20,.5); z-index: 140; opacity: 0; visibility: hidden; transition: opacity .25s; }
.drawer__backdrop.open { opacity: 1; visibility: visible; }
body.drawer-locked { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: 62vh; padding: 110px 0 90px;
  background-color: var(--teal-deep);
  background-size: cover; background-position: center;
  color: #fff;
}
.hero--home { min-height: 78vh; }
.hero--slim { min-height: 34vh; padding: 80px 0 60px; }
.hero h1 { color: #fff; margin: 0 0 .35em; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.45rem); font-weight: 500; margin: 0 0 1.4em; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.hero .btn { border-color: #fff; }

/* ---------- Kachel-Grid (Anmeldungen) ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(270px,100%), 1fr)); gap: 18px; }
.tile {
  display: flex; flex-direction: column; gap: 2px;
  align-items: center; justify-content: center; text-align: center;
  min-height: 96px; padding: 22px 26px;
  background: var(--teal); color: #fff; border-radius: var(--radius-lg);
  font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; line-height: 1.35;
  box-shadow: var(--shadow);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); background: var(--teal-dark); color: #fff; }
.tile--green { background: var(--green); }
.tile--green:hover { background: #128a4e; }
.tile__price { display: block; font-size: .88rem; font-weight: 500; opacity: .92; margin-top: 6px; }

/* ---------- Stats-Band ---------- */
.stats { background: var(--teal); color: #fff; border-radius: var(--radius-lg); padding: 34px 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; text-align: center; }
.stats__label { font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; opacity: .92; }
.stats__value { font-family: var(--font-head); font-weight: 700; font-size: 2.7rem; color: var(--green); line-height: 1.1; }

/* ---------- Split (Text + Medium) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split__media img, .split__media video { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.split--media-left .split__media { order: -1; }
@media (max-width: 860px) {
  .split { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .split--media-left .split__media { order: 0; }
}

/* ---------- Blurbs ---------- */
.blurbs { display: grid; gap: 22px; }
.blurb { display: flex; gap: 14px; align-items: flex-start; }
.blurb__icon { width: 26px; flex: 0 0 26px; margin-top: 4px; }
.blurb__title { font-size: .92rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--teal); margin: 0 0 4px; }
.blurb__text { font-size: .95rem; margin: 0; }

/* ---------- Karten (News / Partner) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px,100%), 1fr)); gap: 26px; }
.card {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__meta { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.card__title { font-size: 1.12rem; font-weight: 600; margin: 0; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--teal); }
.card__more { margin-top: auto; font-weight: 600; font-size: .92rem; color: var(--teal); }

/* Partner-Logos */
.partners { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(210px,100%), 1fr)); gap: 22px; }
.partner {
  background: var(--paper); border: 1px solid var(--grey-line); border-radius: var(--radius-lg);
  padding: 26px 20px; display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center; transition: box-shadow .22s var(--ease), transform .22s var(--ease);
}
.partner:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.partner img { max-height: 74px; width: auto; object-fit: contain; }
.partner--dark { background: #101a19; border-color: #101a19; }
.partner__name { font-size: .9rem; font-weight: 600; color: var(--ink); }
.partner--dark .partner__name { color: #fff; }
.year-badge { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--teal); }

/* ---------- Galerie + Lightbox ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(240px,100%), 1fr)); gap: 14px; }
.gallery a { display: block; border-radius: var(--radius); overflow: hidden; }
.gallery img { aspect-ratio: 3 / 2; object-fit: cover; transition: transform .3s var(--ease); }
.gallery a:hover img { transform: scale(1.045); }
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(8, 14, 14, .93);
  display: none; align-items: center; justify-content: center; padding: 4vmin;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: rgba(255,255,255,.09); color: #fff; border: 0; cursor: pointer;
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.22); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ---------- Anmeldeseiten (ehem. Produkte) ---------- */
.product-head { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 46px; align-items: start; }
@media (max-width: 900px) { .product-head { grid-template-columns: minmax(0,1fr); } }
.date-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--teal); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  padding: 10px 18px; border-radius: 99px; margin: 12px 0 4px;
  box-shadow: var(--shadow);
}
.date-chip svg { flex: 0 0 18px; }
.price { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: var(--teal); margin: 6px 0 4px; }
.price small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.prose h2, .prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 1.25em; }
.prose li { margin-bottom: .45em; }
.badge { display: inline-block; background: var(--green); color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; border-radius: 99px; padding: 4px 13px; }

/* Formular */
.form { background: var(--grey); border: 1px solid var(--grey-line); border-radius: var(--radius-lg); padding: 30px 28px 34px; }
.form h2 { font-size: 1.35rem; margin-bottom: .8em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: minmax(0,1fr); } }
.form-section {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
  border-bottom: 2px solid var(--grey-line); padding-bottom: 7px; margin: 14px 0 0;
}
label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
label .req { color: var(--danger); }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number], select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--grey-line); border-radius: var(--radius);
  font: inherit; font-size: .96rem; color: var(--ink); background: var(--paper);
  transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--teal); outline: none; }
.field--error input, .field--error select { border-color: var(--danger); }
.field__hint { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; }
.checkline input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 18px; }
.checkline label { font-weight: 400; margin: 0; }
.form__note { font-size: .85rem; color: var(--muted); margin-top: 14px; }
.notice { border-radius: var(--radius); padding: 14px 18px; margin: 0 0 18px; font-size: .95rem; }
.notice--ok { background: #e7f6ee; border: 1px solid #bfe6d0; color: #14532d; }
#nachricht-gesendet { display: none; }
#nachricht-gesendet:target { display: block; margin-bottom: 18px; }
.notice--err { background: #fdecea; border: 1px solid #f5c6c2; color: #8a1c16; }
.payinfo { background: var(--paper); border: 1.5px dashed var(--teal); border-radius: var(--radius-lg); padding: 20px 22px; margin-top: 20px; font-size: .95rem; }
.payinfo strong { color: var(--teal); }

/* ---------- Video / Content-Blocker (Consent) ---------- */
.media-embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; background: #0c1514; box-shadow: var(--shadow); }
.media-embed iframe, .media-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-embed__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(2px) brightness(.55); }
.consent-blocker {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: center; text-align: center; padding: 22px;
  color: #fff; background: linear-gradient(rgba(5,20,19,.55), rgba(5,20,19,.8));
}
.consent-blocker p { max-width: 460px; font-size: .88rem; margin: 0; }
.consent-blocker .btn { border-color: #fff; font-size: .82rem; padding: 11px 22px; }
.consent-blocker__always { display: flex; gap: 8px; align-items: center; font-size: .8rem; opacity: .9; }
.consent-blocker a { color: #9fe8c6; text-decoration: underline; }

/* ---------- Consent-Dialog ---------- */
.consent-overlay { position: fixed; inset: 0; z-index: 400; background: rgba(8,16,15,.6); display: none; align-items: center; justify-content: center; padding: 18px; }
.consent-overlay.open { display: flex; }
.consent-modal {
  background: var(--paper); border-radius: var(--radius-lg); max-width: 560px; width: 100%;
  max-height: 88vh; overflow-y: auto; padding: 30px 30px 26px; box-shadow: var(--shadow-lift);
}
.consent-modal h2 { font-size: 1.3rem; }
.consent-modal p { font-size: .9rem; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.consent-actions .btn { font-size: .8rem; padding: 11px 18px; border-color: transparent; }
.consent-cats { margin: 16px 0 4px; display: none; }
.consent-cats.open { display: block; }
.consent-cat { border: 1px solid var(--grey-line); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 10px; }
.consent-cat__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.consent-cat__title { font-weight: 600; font-size: .95rem; }
.consent-cat__desc { font-size: .82rem; color: var(--muted); margin: 6px 0 0; }
.consent-cat details { margin-top: 8px; font-size: .8rem; }
.consent-cat summary { cursor: pointer; color: var(--teal); font-weight: 600; }
.consent-cat table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.consent-cat td { padding: 4px 6px; border-bottom: 1px solid var(--grey-line); vertical-align: top; }
.consent-cat td:first-child { font-weight: 600; white-space: nowrap; width: 38%; }
.switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: 0 0 46px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch i {
  position: absolute; inset: 0; background: #c9d4d2; border-radius: 99px; transition: background .2s; cursor: pointer;
}
.switch i::after { content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .2s; }
.switch input:checked + i { background: var(--green); }
.switch input:checked + i::after { transform: translateX(20px); }
.switch input:disabled + i { background: var(--teal); opacity: .55; cursor: not-allowed; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal); color: #eaf4f2; margin-top: 90px; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #bfe9d8; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 38px; padding: 60px 0 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: minmax(0,1fr); } }
.footer-grid h3 { color: #fff; font-size: .9rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; font-size: .93rem; }
.site-footer .logo { width: 220px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 14px; margin-top: 6px; }
.footer-social a { display: flex; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.12); align-items: center; justify-content: center; }
.footer-social a:hover { background: rgba(255,255,255,.25); }
.footer-social svg { width: 17px; height: 17px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); padding: 18px 0 22px; font-size: .82rem; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Instagram-Grid ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 760px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-grid a { display: block; border-radius: var(--radius); overflow: hidden; position: relative; }
.ig-grid img { aspect-ratio: 1; object-fit: cover; transition: transform .3s var(--ease), filter .3s; }
.ig-grid a:hover img { transform: scale(1.05); filter: brightness(.82); }

/* ---------- News-Beitrag ---------- */
.post-body { max-width: 960px; }
.post-body .prose { font-size: 1.05rem; }
.post-meta { color: var(--muted); font-size: .88rem; margin-bottom: 26px; }
.post-body img { border-radius: var(--radius-lg); margin: 20px 0; width: 100%; object-fit: cover; }

/* ---------- Kontakt ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px,100%), 1fr)); gap: 24px; }
.contact-card { background: var(--grey); border-radius: var(--radius-lg); padding: 26px 26px 30px; }
.contact-card h3 { color: var(--teal); }
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px,100%), 1fr)); gap: 26px; }
.team-member { text-align: center; }
.team-member img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; margin-bottom: 14px; box-shadow: var(--shadow); }
.team-member h3 { margin-bottom: 2px; }
.team-member .pos { font-size: .85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faqs { display: grid; gap: 12px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg); padding: 0; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink);
  padding: 16px 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--teal); font-weight: 400; line-height: 1; flex: 0 0 auto; }
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { color: var(--teal); }
.faq-item p { margin: 0; padding: 0 20px 18px; font-size: .95rem; }

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

/* ---------- Sonstiges ---------- */
.arrow-down { text-align: center; font-size: 2rem; color: var(--teal); margin: -10px 0 10px; }
hr.sep { border: 0; border-top: 1px solid var(--grey-line); margin: 40px 0; }
.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.error-hero { min-height: 55vh; display: flex; align-items: center; text-align: center; }

@media (max-width: 1010px) {
  .nav__list { display: none; }
  .nav__burger { display: block; }
  .section { padding: 52px 0; }
}
