/* ============================================================
   Silberhochzeit Axel & Matthias
   Modern & schlicht - silbrige Akzente, viel Weissraum
   ============================================================ */

:root {
  --bg:        #f6f6f4;
  --bg-alt:    #efefec;
  --ink:       #1c1c1e;
  --muted:     #6b6b70;
  --line:      #e2e2df;
  --white:     #ffffff;

  /* silber / platin */
  --silver-1:  #b9bdc4;
  --silver-2:  #e9ebee;
  --silver-3:  #9aa0a8;
  --silver-grad: linear-gradient(135deg, #9aa0a8 0%, #e9ebee 45%, #b9bdc4 100%);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1100px;
  --narrow: 720px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { margin: 0; font-weight: 400; letter-spacing: .01em; }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: var(--narrow); }
.center { text-align: center; }

.section { padding: clamp(64px, 12vw, 140px) 0; }
.section--alt { background: var(--bg-alt); }
.section--intro { padding-top: clamp(72px, 14vw, 160px); }

h2 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.1; }
h3 { font-family: var(--serif); font-size: 1.5rem; }

.eyebrow, .overline {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow { display: block; }

.lead { font-size: 1.18rem; color: #333; margin-top: 22px; }
.note { color: var(--muted); margin-top: 18px; font-style: italic; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% -10%, #ffffff 0%, var(--bg) 55%, var(--bg-alt) 100%);
  overflow: hidden;
}
.hero::before {
  /* dezente silberne Lichtstimmung */
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(185,189,196,.35), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; padding: 0 24px; }

.hero__names {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 1.02;
  letter-spacing: .01em;
  margin: 10px 0 22px;
}
.hero__names span { display: block; }
.hero__names .amp {
  display: block;
  font-style: italic;
  font-size: .5em;
  color: var(--ink);
  margin: 4px 0;
}
.hero__meta {
  font-size: clamp(.95rem, 2.4vw, 1.15rem);
  letter-spacing: .06em;
  color: #3a3a3d;
}
.hero__rule {
  width: 64px; height: 1px;
  margin: 30px auto;
  background: var(--silver-3);
}
.hero__sub {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero__scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid var(--silver-3);
  border-radius: 20px;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--silver-3);
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot {
  0%   { opacity: 0; transform: translateY(0); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ============================================================
   Countdown
   ============================================================ */
.section--count { background: var(--bg-alt); }
.count {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 6vw, 64px);
  margin-top: 8px;
}
.count__item { display: flex; flex-direction: column; align-items: center; }
.count__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.count__label {
  margin-top: 10px;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.count__done {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-top: 10px;
}

/* ============================================================
   Timeline / Ablauf
   ============================================================ */
.timeline {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 104px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--line);
}
.timeline__item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 36px;
  padding: 22px 0;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 100px; top: 30px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--silver-grad);
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline__time {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--muted);
  text-align: right;
  padding-top: 2px;
  white-space: nowrap;
}
.timeline__note {
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
  font-style: italic;
}
.timeline__body h3 { margin-bottom: 6px; }
.timeline__body p { color: var(--muted); }

/* ============================================================
   Anreise - Buchungsportale
   ============================================================ */
.portals {
  margin-top: 40px;
  text-align: center;
}
.portals__text { color: var(--muted); margin-bottom: 16px; }
.portals__links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.portals__links a {
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 11px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #333;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.portals__links a:hover { border-color: var(--ink); color: var(--ink); }

/* ============================================================
   Location - Chips
   ============================================================ */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.chip {
  font-size: .82rem;
  letter-spacing: .08em;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #444;
}

/* ============================================================
   Cards
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); }

/* ============================================================
   Location - Adresse
   ============================================================ */
.address {
  font-size: 1.08rem;
  color: #333;
  margin-top: 16px;
  line-height: 1.5;
}

/* ============================================================
   Anreise - Info-Box
   ============================================================ */
.info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(26px, 5vw, 36px);
  margin-top: 48px;
}
.info h3 { margin-bottom: 18px; }
.info__list { list-style: none; margin: 0; padding: 0; }
.info__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #333;
}
.info__list li:last-child { border-bottom: none; }
.info__list strong { font-weight: 600; }
.info__list em { font-style: normal; color: var(--ink); font-weight: 500; }
.info__hint { margin-top: 20px; color: var(--muted); font-style: italic; }
.info__link { margin-top: 12px; }
.info__link a,
.hotel__link {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid var(--silver-3);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.info__link a:hover,
.hotel__link:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   Anreise - Lageplan (Bild)
   ============================================================ */
.lageplan { margin: 24px 0 6px; }
.lageplan img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.lageplan figcaption {
  margin-top: 8px;
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
}

/* ============================================================
   Anreise - Anfahrtsskizzen
   ============================================================ */
.sketches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0 6px;
}
.sketch {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 20px 14px;
}
.sketch figcaption {
  font-family: var(--serif);
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 6px;
  color: var(--ink);
}
.sketch svg { width: 100%; height: auto; display: block; }
.sketch svg text { font-family: var(--sans); }

/* ============================================================
   Anreise - Google-Maps (Click-to-load)
   ============================================================ */
.map {
  position: relative;
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, #eceeec 0%, #e3e6e2 100%);
}
.map__load {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  border: none;
  background: transparent;
  color: #4a4a50;
  cursor: pointer;
  text-align: center;
  transition: background .2s;
}
.map__load:hover { background: rgba(0, 0, 0, .03); }
.map__pin { color: var(--silver-3); }
.map__title { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.map__hint {
  font-size: .9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  background: var(--white);
}
.map__hint small { font-size: .74rem; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   Anreise - Hotels
   ============================================================ */
.hotels-title { margin-top: clamp(48px, 8vw, 72px); }
.hotels-intro { color: var(--muted); margin-top: 12px; }
.hotels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.hotel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.hotel__stars {
  color: #b8952f;
  letter-spacing: 3px;
  font-size: .95rem;
  margin-bottom: 10px;
}
.hotel__name { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 6px; }
.hotel__addr { font-size: .84rem; color: var(--muted); margin-bottom: 14px; }
.hotel__desc { color: #444; font-size: .95rem; flex: 1 0 auto; }
.hotel__link { margin-top: 18px; align-self: flex-start; font-size: .9rem; }

/* ============================================================
   Galerie - klickbar + Diashow-Button
   ============================================================ */
.gallery__item { cursor: pointer; }
.gallery__item:focus-visible { outline: 2px solid var(--silver-3); outline-offset: 3px; }
.slideshow-start {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 36px;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: opacity .2s;
}
.slideshow-start:hover { opacity: .88; }
.slideshow-start::before {
  content: "";
  width: 0; height: 0;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* ============================================================
   Ein-/ausklappbare Sektionen (Akkordeon)
   ============================================================ */
.collapsible .sec-h2 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: opacity .2s;
}
.collapsible .sec-h2:hover { opacity: .68; }
.collapsible .sec-h2:focus-visible { outline: 2px solid var(--silver-3); outline-offset: 6px; }
.collapsible .sec-h2::after {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  margin-left: 18px;
  vertical-align: middle;
  border-right: 2px solid var(--silver-3);
  border-bottom: 2px solid var(--silver-3);
  transform: translateY(-3px) rotate(45deg);
  transition: transform .25s ease;
}
.collapsible.is-collapsed .sec-h2::after {
  transform: translateY(1px) rotate(-45deg);
}
.collapsible.is-collapsed .sec-body { display: none; }
/* Kopfbereich einer eingeklappten Sektion etwas kompakter */
.collapsible.is-collapsed { padding-top: clamp(40px, 7vw, 72px); padding-bottom: clamp(40px, 7vw, 72px); }

/* ============================================================
   Gaeste-Upload
   ============================================================ */
.upload { max-width: 620px; margin: 40px auto 0; }
.upload__drop {
  border: 2px dashed var(--silver-3);
  border-radius: 16px;
  padding: 42px 24px;
  background: var(--white);
  transition: border-color .2s, background .2s;
}
.upload__drop.is-drag { border-color: var(--ink); background: #fbfbfa; }
.upload__icon { color: var(--silver-3); margin-bottom: 8px; }
.upload__hint { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: 18px; }
.upload__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.upload__btn {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: opacity .2s, background .2s, color .2s;
}
.upload__btn:hover { opacity: .88; }
.upload__btn--ghost { background: transparent; color: var(--ink); }
.upload__btn--ghost:hover { background: var(--ink); color: #fff; opacity: 1; }
.upload__note { margin-top: 18px; font-size: .8rem; color: var(--muted); }
.upload__status { margin-top: 20px; color: #333; font-size: .95rem; }
.upload__err { color: #b23a3a; font-size: .85rem; }
.guest-wrap { margin-top: 8px; }

/* ============================================================
   Lightbox / Diashow-Betrachter
   ============================================================ */
body.is-viewing { overflow: hidden; }
.viewer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  flex-direction: column;
  background: rgba(12, 12, 14, .96);
}
.viewer.is-open { display: flex; }
.viewer__stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 62px 16px 22px;
}
.viewer__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}
.viewer__counter { color: #cfcfd2; font-family: var(--sans); font-size: .85rem; letter-spacing: .08em; }
.viewer__spacer { flex: 1; }
.viewer__btn {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.viewer__btn:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }
.viewer__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity .35s ease;
}
.viewer__img.is-fading { opacity: 0; }
.viewer__cap {
  position: absolute;
  left: 0; right: 0; bottom: 26px;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
  pointer-events: none;
}
.viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  background: rgba(0, 0, 0, .28);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}
.viewer__nav:hover { background: rgba(0, 0, 0, .55); }
.viewer__nav--prev { left: 16px; }
.viewer__nav--next { right: 16px; }
.viewer__progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  width: 0;
  background: var(--silver-grad);
}
.viewer__foot {
  text-align: center;
  color: #9a9a9e;
  font-family: var(--sans);
  font-size: .78rem;
  padding: 0 16px 16px;
}
@media (max-width: 620px) {
  .viewer__foot { display: none; }
  .viewer__cap { font-size: 1.2rem; bottom: 16px; }
  .viewer__nav { width: 42px; height: 42px; font-size: 1.8rem; }
  .viewer__nav--prev { left: 8px; }
  .viewer__nav--next { right: 8px; }
}

/* ============================================================
   FAQ - Akkordeon
   ============================================================ */
.faq { margin-top: 44px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 22px 46px 22px 4px;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--silver-3);
}
.faq__item[open] summary::after { content: "\2013"; }
.faq__item summary:hover { color: #000; }
.faq__answer { padding: 2px 4px 26px; color: #444; }
.faq__answer p { margin: 0; }
.faq__answer a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid var(--silver-3);
}
.faq__answer a:hover { color: var(--ink); border-color: var(--ink); }
.faq__ask { margin-top: 48px; text-align: center; }
.faq__ask p { color: var(--muted); margin-bottom: 18px; }
.faq__ask-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.faq__ask-btn:hover { background: var(--ink); color: #fff; }

/* ============================================================
   Ansprechpartner / Kontakt
   ============================================================ */
.contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.contact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
}
.contact h3 { margin-bottom: 14px; }
.contact__line { margin-top: 6px; }
.contact__line a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid var(--silver-3);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.contact__line a:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   Galerie (Platzhalter)
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transition: transform .45s ease;
}
.gallery__item:hover img { transform: scale(1.045); }
.gallery__item::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
  pointer-events: none;
}
.gallery__item figcaption {
  position: absolute;
  left: 14px; bottom: 11px;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: .04em;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .55);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: clamp(56px, 10vw, 100px) 0;
  background: var(--ink);
  color: #e8e8ea;
}
.footer__names {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
}
.footer__meta { color: #a9a9ad; letter-spacing: .06em; margin-top: 8px; }
.footer__rule { width: 48px; height: 1px; background: var(--silver-3); margin: 26px auto; }
.footer__note { color: #c9c9cd; font-style: italic; font-family: var(--serif); font-size: 1.2rem; }

/* ============================================================
   Sprachumschalter
   ============================================================ */
.langswitch {
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .08em;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.langswitch__opt { color: var(--muted); text-decoration: none; transition: color .2s; }
.langswitch__opt:hover { color: var(--ink); }
.langswitch__opt.is-active { color: var(--ink); font-weight: 600; }
.langswitch__sep { color: var(--silver-3); }

/* ============================================================
   Passwort-Sperre
   ============================================================ */
.gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(120% 90% at 50% 0%, #ffffff 0%, var(--bg) 55%, var(--bg-alt) 100%);
}
.gate[hidden] { display: none; }
.gate__card {
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.gate__overline {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.gate__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.gate__hint { color: var(--muted); font-size: .95rem; margin-bottom: 26px; }
.gate__input {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.gate__input:focus { border-color: var(--silver-3); }
.gate__btn {
  width: 100%;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: opacity .2s;
}
.gate__btn:hover { opacity: .88; }
.gate__error { color: #b23a3a; font-size: .9rem; margin-top: 16px; }

/* ============================================================
   Reveal-Animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Body gesperrt solange die Sperre aktiv ist */
body.is-locked { overflow: hidden; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 620px) {
  .timeline::before { left: 88px; }
  .timeline__item { grid-template-columns: 72px 1fr; gap: 28px; }
  .timeline__item::before { left: 84px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .count { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
}
