/* ==========================================================================
   MOINA – Golden Moments
   Marketing-Website / Stylesheet
   Farbwelt abgeleitet aus dem Logo: Gold auf Anthrazit, Sand als Akzent.
   ========================================================================== */

:root {
  /* Farben */
  --ink:        #1E1C19;
  --ink-2:      #26231F;
  --ink-3:      #322E28;
  --gold:       #C9A227;
  --gold-soft:  #E0C169;
  --gold-deep:  #A8841A;
  --sand:       #D9C9A3;
  --cream:      #FAF7F1;
  --cream-2:    #F1EADD;
  --text:       #26231F;
  --text-soft:  #5E574C;
  --line:       rgba(30, 28, 25, .14);
  --line-gold:  rgba(201, 162, 39, .38);

  /* Typografie */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Maße */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 4px;
  --shadow: 0 18px 50px -22px rgba(30, 28, 25, .45);
  --shadow-lg: 0 30px 70px -30px rgba(30, 28, 25, .55);
  --header-h: 76px;
}

/* --- Reset / Basis ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; margin: 0; letter-spacing: .01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

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

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

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--ink); color: var(--cream); padding: .75rem 1.25rem; z-index: 200;
  transition: transform .2s;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* --- Layout-Helfer ------------------------------------------------------- */
.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; position: relative; }
.section--dark { background: var(--ink); color: var(--cream); }
.section--tint { background: var(--cream-2); }
.section--dark h2, .section--dark h3 { color: var(--cream); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 400; color: var(--gold-deep); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 2.25rem; height: 1px; background: var(--gold); }
.section-head--center .eyebrow::after { content: ""; width: 2.25rem; height: 1px; background: var(--gold); }
.section--dark .eyebrow { color: var(--gold-soft); }

h2.title { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.15rem); color: var(--text-soft); max-width: 44rem; }
.section--dark .lead { color: rgba(250, 247, 241, .72); }
.section-head--center .lead { margin-inline: auto; }

/* --- Ornament (Logo-Schnörkel) ------------------------------------------ */
.ornament { width: 74px; color: var(--gold); margin: 0 auto 1.25rem; }
.ornament path { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }

/* --- Wortmarke ----------------------------------------------------------- */
.wordmark { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.wordmark__name {
  font-family: var(--font-display); font-weight: 500; color: var(--gold);
  letter-spacing: .22em; text-indent: .22em;
}
.wordmark__tag {
  font-family: var(--font-display); font-style: italic; color: var(--gold-soft);
  letter-spacing: .3em; text-indent: .3em; font-weight: 400;
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem; border-radius: var(--radius); border: 1px solid transparent;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400;
  cursor: pointer; transition: background .25s, color .25s, border-color .25s, transform .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); }
.btn--ghost { border-color: var(--line-gold); color: var(--gold-soft); background: transparent; }
.btn--ghost:hover { background: rgba(201, 162, 39, .12); border-color: var(--gold); }
.btn--dark { border-color: rgba(30,28,25,.28); color: var(--ink); }
.btn--dark:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* --- Header -------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s, box-shadow .35s, height .35s;
}
.header::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(30, 28, 25, .96);
  backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .35s;
}
.header.is-stuck::after { opacity: 1; }
.header.is-stuck { box-shadow: 0 1px 0 rgba(201,162,39,.22); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand .ornament { width: 30px; margin: 0; opacity: .9; }
.brand__name { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .24em; text-indent: .24em; color: var(--gold); font-weight: 500; }

.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav__link {
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(250,247,241,.82);
  position: relative; padding: .35rem 0; transition: color .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .3s;
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--gold-soft); }
.nav .btn { padding: .7rem 1.35rem; }

.burger {
  display: none; width: 46px; height: 46px; border: 1px solid rgba(201,162,39,.4);
  background: transparent; border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 20px; height: 1.5px; background: var(--gold-soft); transition: transform .3s, opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: rgba(30, 28, 25, .985); backdrop-filter: blur(10px);
    padding: 1.5rem var(--gutter) 2.5rem;
    border-bottom: 1px solid rgba(201,162,39,.22);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity .3s, transform .3s;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid rgba(250,247,241,.08); }
  .nav__list li:last-child { border: 0; padding-top: 1.25rem; }
  .nav__link { display: block; padding: 1rem 0; font-size: .85rem; }
  .nav .btn { width: 100%; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem; background: var(--ink); overflow: hidden;
}
.hero__inner { position: relative; text-align: center; color: var(--cream); }
.hero .ornament { width: clamp(70px, 9vw, 104px); margin-bottom: 1.5rem; }
.hero__name { font-size: clamp(3.4rem, 13vw, 8.5rem); margin-bottom: .35rem; }
.hero__tag { font-size: clamp(.95rem, 2.4vw, 1.6rem); margin-bottom: 2rem; }
.hero__pitch {
  font-size: clamp(1rem, 1.9vw, 1.2rem); color: rgba(250,247,241,.8);
  max-width: 40rem; margin: 0 auto 2.25rem;
}
.hero__pitch strong { color: var(--gold-soft); font-weight: 400; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.75rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(250,247,241,.5);
}
.hero__scroll i { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: drop 2.4s infinite; }
@keyframes drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Countdown ----------------------------------------------------------- */
.countdown {
  display: flex; justify-content: center; gap: clamp(.5rem, 2.5vw, 1.75rem);
  margin: 0 auto 1.5rem; flex-wrap: wrap;
}
.countdown__unit {
  min-width: clamp(66px, 17vw, 96px); padding: .9rem .5rem .75rem;
  border: 1px solid rgba(201,162,39,.3); border-radius: var(--radius);
  background: rgba(250,247,241,.04);
}
.countdown__num {
  display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--gold-soft); line-height: 1; font-variant-numeric: tabular-nums;
}
.countdown__label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,247,241,.55); }
.countdown__note { text-align: center; font-size: .74rem; color: var(--gold-soft); letter-spacing: .18em; text-transform: uppercase; margin-bottom: 2.25rem; }

/* --- Laufband ------------------------------------------------------------ */
.marquee {
  background: var(--ink-2); color: var(--sand); overflow: hidden;
  border-block: 1px solid rgba(201,162,39,.2); padding: .95rem 0;
  display: flex; white-space: nowrap;
}
.marquee__track { display: flex; gap: 2.5rem; padding-right: 2.5rem; animation: slide 38s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .18em;
  text-transform: uppercase; display: flex; align-items: center; gap: 2.5rem;
}
.marquee span::after { content: "◆"; font-size: .5rem; color: var(--gold); }
@keyframes slide { to { transform: translateX(-100%); } }

/* --- Über uns ------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* Goldener Rahmen: Passepartout aus Gold, Bild mittig darin */
.frame {
  position: relative;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.frame img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 2px;
}
/* feine zweite Linie direkt am Bild */
.frame::before {
  content: ""; position: absolute; inset: clamp(5px, .7vw, 8px);
  border: 1px solid rgba(201, 162, 39, .3); border-radius: 2px;
  pointer-events: none;
}
.frame--tall img { aspect-ratio: 4 / 5; }

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: clamp(3rem, 6vw, 4.5rem); }
.pillar { padding: 2rem 1.75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s, box-shadow .3s; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar__icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: 1.1rem; }
.pillar__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.pillar p { font-size: .95rem; color: var(--text-soft); margin: 0; }

/* --- Speisekarte --------------------------------------------------------- */
.menu-note {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.25rem;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-soft); border: 1px dashed var(--line-gold);
  padding: .55rem 1.1rem; border-radius: 100px;
}

.tabs { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.tab {
  background: transparent; border: 1px solid rgba(250,247,241,.18); color: rgba(250,247,241,.72);
  padding: .7rem 1.35rem; border-radius: 100px; cursor: pointer;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
}
.tab:hover { border-color: var(--gold); color: var(--cream); }
.tab.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 0 clamp(2rem, 5vw, 4rem); }
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: .25rem 1rem; align-items: baseline;
  padding: 1.35rem 0; border-bottom: 1px dashed rgba(250,247,241,.16);
}
.menu-item__name { font-family: var(--font-display); font-size: 1.42rem; color: var(--cream); }
.menu-item__price { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-soft); font-variant-numeric: tabular-nums; }
.menu-item__desc { grid-column: 1 / -1; font-size: .9rem; color: rgba(250,247,241,.58); margin: 0; }
.tag {
  display: inline-block; margin-left: .55rem; vertical-align: middle;
  font-family: var(--font-body); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-soft); border: 1px solid var(--line-gold); border-radius: 100px; padding: .2rem .55rem;
}

/* --- Events / Buchung ---------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.step { position: relative; padding-top: 2.25rem; }
.step__num {
  position: absolute; top: 0; left: 0; font-family: var(--font-display);
  font-size: 3.4rem; line-height: .7; color: rgba(201,162,39,.28);
}
.step h3 { font-size: 1.45rem; margin-bottom: .45rem; position: relative; }
.step p { font-size: .95rem; color: var(--text-soft); margin: 0; }

.occasions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.occasions li {
  border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1.15rem;
  font-size: .8rem; letter-spacing: .06em; color: var(--text-soft); background: #fff;
}

/* --- Standorte ----------------------------------------------------------- */
.dates { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.date-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem;
  background: #fff; display: flex; gap: 1.25rem; align-items: flex-start;
}
.date-card--placeholder { border-style: dashed; background: transparent; }
.date-card__day {
  text-align: center; min-width: 62px; padding: .5rem .25rem; flex: none;
  border: 1px solid var(--line-gold); border-radius: var(--radius); color: var(--gold-deep);
}
.date-card__day b { display: block; font-family: var(--font-display); font-size: 1.7rem; line-height: 1; }
.date-card__day span { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
.date-card h3 { font-size: 1.3rem; margin-bottom: .2rem; }
.date-card p { font-size: .88rem; color: var(--text-soft); margin: 0; }

/* --- Galerie ------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery button {
  padding: 0; border: 0; background: none; cursor: zoom-in; overflow: hidden;
  border-radius: var(--radius); position: relative;
}
.gallery img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .6s, filter .4s; filter: saturate(.92); }
.gallery button:hover img { transform: scale(1.06); filter: saturate(1.05); }
/* goldener Rahmen liegt über dem Bild und wandert beim Hover nicht mit */
.gallery button::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--line-gold); border-radius: var(--radius);
  pointer-events: none; transition: border-color .3s;
}
.gallery button:hover::after { border-color: var(--gold); }
/* Großes Hauptbild links, zwei breite Banner rechts, darunter eine Reihe Miniaturen */
.gallery button:first-child { grid-column: span 2; grid-row: span 2; }
.gallery button.is-wide { grid-column: span 2; }
.gallery button.is-wide img { aspect-ratio: 2 / 1; }

@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery button:first-child { grid-column: span 2; grid-row: auto; }
  .gallery button.is-wide img { aspect-ratio: 16 / 9; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 150; background: rgba(20, 18, 16, .95);
  display: grid; place-items: center; padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-height: 86svh; width: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute; top: 1.25rem; right: 1.25rem; width: 46px; height: 46px;
  border: 1px solid rgba(201,162,39,.4); background: transparent; color: var(--gold-soft);
  border-radius: 50%; cursor: pointer; font-size: 1.3rem; line-height: 1;
}
.lightbox__close:hover { background: rgba(201,162,39,.15); }

/* --- Kontakt ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 6vw, 4.5rem); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list li { padding: 1.15rem 0; border-bottom: 1px solid rgba(250,247,241,.12); display: flex; gap: 1rem; align-items: flex-start; }
.contact-list svg { width: 20px; height: 20px; flex: none; margin-top: .3rem; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-list b { display: block; font-weight: 400; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,247,241,.5); margin-bottom: .15rem; }
.contact-list a:hover { color: var(--gold-soft); }
.contact-cta {
  align-self: start; display: grid; gap: 1.25rem; justify-items: start;
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid rgba(250,247,241,.16); border-radius: var(--radius);
  background: rgba(250,247,241,.04);
}
.contact-cta h3 { margin: 0; font-size: clamp(1.3rem, 2.4vw, 1.6rem); font-weight: 400; }
.contact-cta p { margin: 0; color: rgba(250,247,241,.72); }
.contact-cta .btn svg { flex: none; }
.contact-cta__alt { font-size: .88rem; color: rgba(250,247,241,.5); }
.contact-cta__alt a { color: var(--gold-soft); }
.contact-cta__alt a:hover { color: var(--gold); }

/* --- Footer -------------------------------------------------------------- */
.footer { background: var(--ink-2); color: rgba(250,247,241,.62); padding: clamp(3.5rem, 7vw, 5rem) 0 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(250,247,241,.1); }
@media (max-width: 780px) { .footer__top { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-body); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.1rem; font-weight: 400; }
.footer li { margin-bottom: .6rem; font-size: .92rem; }
.footer a:hover { color: var(--gold-soft); }
.footer__brand .wordmark { align-items: flex-start; margin-bottom: 1rem; }
.footer__brand .wordmark__name { font-size: 2rem; }
.footer__brand .wordmark__tag { font-size: .78rem; }
.footer__brand p { font-size: .92rem; max-width: 26rem; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-top: 1.75rem; font-size: .8rem; color: rgba(250,247,241,.4);
}
.footer__bottom ul { display: flex; gap: 1.5rem; }
.socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.socials a {
  width: 40px; height: 40px; border: 1px solid rgba(201,162,39,.3); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-soft); transition: background .25s, transform .25s;
}
.socials a:hover { background: rgba(201,162,39,.15); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }

/* --- Rechtstexte (Unterseiten) ------------------------------------------- */
.legal { padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)); padding-bottom: clamp(4rem, 8vw, 7rem); }
.legal h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.6rem; margin: 2.5rem 0 .75rem; }
.legal p, .legal li { color: var(--text-soft); max-width: 46rem; }
.legal li { margin-bottom: .4rem; padding-left: 1.1rem; position: relative; }
.legal li::before { content: "–"; position: absolute; left: 0; color: var(--gold); }
.legal .placeholder { color: var(--gold-deep); background: rgba(201,162,39,.12); padding: .1em .4em; border-radius: 2px; }

/* --- Scroll-Animation ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
