/* ==========================================================================
   Sonja Bühler — Entspannungsmassagen am Bodensee (Demo-Gestaltungsvorschlag)
   Charakter: ruhige, warme Wellness-Atmosphäre mit erdiger Eleganz —
   Naturstein, warmes Holz, viel Weißraum, langsame weiche Übergänge.
   Farbwelt: heller Stein / Sand / dunkles Erdbraun / Clay / Salbei
   Schriften: Marcellus (Serif, nur 400) + Manrope (Sans), lokal gehostet
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Marcellus";
  src: url("../fonts/marcellus.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Designsystem ---------- */
:root {
  --stone: #f7f3ed;       /* heller Stein — Grundton */
  --sand: #ebe2d5;        /* Sand — ruhige Flächen */
  --deep: #463728;        /* dunkles Erdbraun — Headlines, Dark-Sections */
  --clay: #96714f;        /* warmes Clay-Braun — Buttons, Links */
  --sage: #84907c;        /* gedecktes Salbeigrün — Linien, Tags, Hover */
  --text: #3b3128;        /* Fließtext */
  --paper: #fdfbf8;       /* hellste Fläche */
  --text-soft: rgba(59, 49, 40, 0.68);
  --line: rgba(70, 55, 40, 0.14);
  --line-light: rgba(247, 243, 237, 0.22);

  --font-serif: "Marcellus", Georgia, serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;

  --container: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;

  --ease: cubic-bezier(0.25, 0.8, 0.3, 1);
}

/* ---------- Reset & Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--clay); text-decoration: none; transition: color 0.4s var(--ease); }
p a, li a { text-decoration: underline; text-decoration-color: rgba(150, 113, 79, 0.4); text-underline-offset: 4px; }
p a:hover, li a:hover { color: var(--sage); text-decoration-color: var(--sage); }

::selection { background: var(--sand); color: var(--deep); }

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  color: var(--deep);
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { max-width: 64ch; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.3rem;
}
.kicker::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--sage);
}
.kicker--center::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--sage);
}

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  line-height: 1.8;
  color: var(--text-soft);
}

/* ---------- Demo-Hinweisleiste ---------- */
.demo-bar {
  background: var(--deep);
  color: var(--sand);
  font-size: 0.77rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.55rem var(--pad);
}
.demo-bar strong { font-weight: 700; color: var(--paper); }

/* ---------- Header & Navigation ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--stone) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.95rem;
}

.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand__mark { width: 38px; height: 38px; color: var(--clay); flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.42rem;
  color: var(--deep);
  letter-spacing: 0.04em;
}
.brand__sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.1rem); }
.nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav a:hover { color: var(--sage); }
.nav a[aria-current="page"] { color: var(--clay); border-bottom-color: var(--clay); }

.nav__cta {
  background: var(--clay);
  color: var(--paper) !important;
  border-radius: var(--radius);
  padding: 0.6rem 1.35rem !important;
  border-bottom: none !important;
  transition: background 0.4s var(--ease);
}
.nav__cta:hover { background: var(--deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--deep);
  margin-block: 6px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--stone);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad) 1.6rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding-block: 0.85rem; font-size: 0.92rem; }
  .nav__cta { margin-top: 0.9rem; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--deep);
  color: var(--deep);
  background: transparent;
  cursor: pointer;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease);
}
.btn:hover { background: var(--deep); color: var(--stone); }

.btn--solid { background: var(--clay); border-color: var(--clay); color: var(--paper); }
.btn--solid:hover { background: var(--deep); border-color: var(--deep); color: var(--stone); }

.btn--light { border-color: rgba(247, 243, 237, 0.55); color: var(--stone); }
.btn--light:hover { background: var(--stone); color: var(--deep); border-color: var(--stone); }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding-block: clamp(4rem, 9vw, 7.5rem) clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero__stones { width: clamp(72px, 9vw, 104px); margin: 0 auto 1.8rem; color: var(--clay); }
.hero__stones .water { color: var(--sage); }
.hero h1 { max-width: 21ch; margin-inline: auto; margin-bottom: 1.6rem; }
.hero .lead { max-width: 56ch; margin-inline: auto; margin-bottom: 2.6rem; }
.hero__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }
.hero__facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
}
.hero__facts li {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 99rem;
  background: var(--paper);
  color: var(--text-soft);
}
.hero__facts strong { color: var(--clay); font-weight: 700; }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3.8rem, 8vw, 6.8rem); }
.section--sand { background: var(--sand); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--deep); color: var(--sand); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--stone); }
.section--dark .kicker { color: var(--sage); }
.section--dark p { color: rgba(235, 226, 213, 0.85); }
.section--dark .lead { color: rgba(235, 226, 213, 0.78); }

.section__head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .kicker::before { display: inline-block; }
.section__head p { margin-top: 1.1rem; color: var(--text-soft); }
.section--dark .section__head p { color: rgba(235, 226, 213, 0.8); }
.section__head--center p { margin-inline: auto; }

.section__foot { margin-top: clamp(2rem, 4vw, 3rem); text-align: center; }

/* Stein-Trennornament zwischen Abschnitten */
.divider {
  display: flex;
  justify-content: center;
  padding-block: 0.4rem;
}
.divider svg { width: 56px; color: var(--sage); opacity: 0.65; }

/* ---------- Intro / Philosophie (Index) ---------- */
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.intro__art {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--sand) 0%, #ddd0bc 60%, #cfc0a9 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.intro__art svg { width: 58%; color: var(--deep); opacity: 0.85; }
.intro__art .water { color: var(--sage); }
.intro__art figcaption {
  position: absolute;
  bottom: 1.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--deep);
  opacity: 0.55;
}
.intro__body h2 { margin-bottom: 1.3rem; }
.intro__body p { margin-bottom: 1.1rem; color: var(--text-soft); }
.intro__body p:last-of-type { margin-bottom: 0; }
.intro__body .btn { margin-top: 1.9rem; }
@media (max-width: 860px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__art { max-width: 320px; margin-inline: auto; }
}

/* ---------- Massagen-Karten ---------- */
.m-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.m-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.m-card:hover { border-color: var(--sage); transform: translateY(-3px); }
.m-card h3 { font-size: 1.32rem; }
.m-card .m-card__origin {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
}
.m-card p { font-size: 0.96rem; color: var(--text-soft); max-width: none; }
.m-card .m-card__price {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}
.m-card .m-card__price span { white-space: nowrap; }
.m-card .m-card__price em { font-style: normal; color: var(--clay); }

.price-note {
  margin-top: 1.6rem;
  font-size: 0.86rem;
  color: var(--text-soft);
  text-align: center;
}
.section--dark .price-note { color: rgba(235, 226, 213, 0.65); }

/* ---------- Behandlungs-Detailliste (massagen.html) ---------- */
.treat-list { border-top: 1px solid var(--line); }
.treat {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  padding-block: clamp(2rem, 4.5vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.treat__head .treat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.treat__head h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 0.9rem; }
.treat__meta { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.treat__meta li {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep);
}
.treat__meta li em { font-style: normal; color: var(--clay); }
.treat__body p { color: var(--text-soft); margin-bottom: 1rem; }
.treat__body p:last-child { margin-bottom: 0; }
@media (max-width: 780px) { .treat { grid-template-columns: 1fr; gap: 1rem; } }

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  font-size: 0.96rem;
  max-width: 760px;
}
.info-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.info-card p { color: var(--text-soft); max-width: none; }
.section--sand .info-card { background: var(--stone); }

/* ---------- Gutschein-Band ---------- */
.voucher {
  position: relative;
  overflow: hidden;
}
.voucher::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 85% 110%, rgba(132, 144, 124, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 8% -10%, rgba(150, 113, 79, 0.14), transparent 70%);
  pointer-events: none;
}
.voucher > .container { position: relative; text-align: center; }
.voucher h2 { margin-bottom: 1.1rem; }
.voucher p { margin-inline: auto; margin-bottom: 2.2rem; }
.voucher__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ---------- Kurs-Teaser & Kursseite ---------- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  align-items: stretch;
}
.course-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.course-card h3 { font-size: 1.4rem; }
.course-card p { font-size: 0.97rem; color: var(--text-soft); max-width: none; }
.course-card .course-card__price {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--deep);
}
.section--sand .course-card { background: var(--stone); }

.date-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.date-list li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-size: 0.96rem;
}
.date-list .date {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--clay);
  white-space: nowrap;
  min-width: 7.2rem;
}

/* ---------- Werdegang / Timeline ---------- */
.timeline { list-style: none; border-left: 1px solid var(--sage); margin-left: 0.4rem; }
.timeline li {
  position: relative;
  padding: 0 0 1.7rem 2rem;
}
.timeline li:last-child { padding-bottom: 0.2rem; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--stone);
  border: 1.5px solid var(--sage);
}
.timeline .tl-year {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.15rem;
}
.timeline p { font-size: 0.98rem; color: var(--text-soft); max-width: none; }

.portrait-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.portrait {
  aspect-ratio: 4 / 5;
  max-width: 380px;
  border-radius: var(--radius);
  background: linear-gradient(170deg, #d8cab4, var(--sand) 45%, #c9b9a0);
  display: grid;
  place-items: center;
  position: relative;
}
.portrait svg { width: 52%; color: var(--deep); opacity: 0.8; }
.portrait .water { color: var(--sage); }
.portrait figcaption {
  position: absolute;
  bottom: 1.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--deep);
  opacity: 0.55;
}
.portrait-grid__body h2 { margin-bottom: 1.2rem; }
.portrait-grid__body p { margin-bottom: 1.1rem; color: var(--text-soft); }
@media (max-width: 820px) {
  .portrait-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 300px; }
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.contact-card h3 { margin-bottom: 0.7rem; }
.contact-card .big {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  color: var(--deep);
  margin-block: 0.25rem;
}
.contact-card .big:hover { color: var(--clay); }
.contact-card p { font-size: 0.96rem; color: var(--text-soft); max-width: none; }
.contact-card address { font-style: normal; margin-bottom: 0.7rem; line-height: 1.6; }
.contact-card .btn { margin-top: 1.1rem; }

.directions { list-style: none; margin-top: 1rem; }
.directions li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.6rem;
  font-size: 0.96rem;
  color: var(--text-soft);
}
.directions li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--deep);
  color: var(--sand);
  text-align: center;
  padding-block: clamp(3.8rem, 8vw, 6.2rem);
  position: relative;
  overflow: hidden;
}
.cta-band__stones {
  position: absolute;
  width: clamp(280px, 42vw, 520px);
  color: rgba(235, 226, 213, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-band > .container { position: relative; }
.cta-band h2 { color: var(--stone); margin-bottom: 1rem; }
.cta-band p { margin-inline: auto; margin-bottom: 2.1rem; color: rgba(235, 226, 213, 0.82); }
.cta-band .tel {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--stone);
  margin-bottom: 1.9rem;
}
.cta-band .tel:hover { color: var(--sage); }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 780px; }
.legal h1 { font-size: clamp(2.1rem, 4.5vw, 3rem); margin-bottom: 2rem; }
.legal h2 { font-size: 1.4rem; margin: 2.4rem 0 0.8rem; }
.legal p, .legal address { margin-bottom: 1rem; font-style: normal; }

.demo-note {
  background: var(--sand);
  border-left: 3px solid var(--clay);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.8rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.demo-note strong { color: var(--clay); }

.placeholder {
  background: var(--paper);
  border: 1px dashed var(--sage);
  border-radius: var(--radius);
  padding: 0.1rem 0.55rem;
  font-size: 0.9em;
  color: var(--sage);
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--deep);
  color: rgba(235, 226, 213, 0.78);
  padding-block: clamp(2.6rem, 6vw, 4rem) 1.5rem;
  font-size: 0.93rem;
}
.site-foot a { color: var(--sand); }
.site-foot a:hover { color: var(--sage); }
.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.foot-brand svg { width: 30px; color: var(--sage); }
.foot-brand .foot-brand__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--stone);
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-light);
}
.foot-grid h3 {
  color: var(--stone);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.foot-grid ul { list-style: none; }
.foot-grid li { padding-block: 0.22rem; }
.foot-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.79rem;
  letter-spacing: 0.04em;
  color: rgba(235, 226, 213, 0.5);
}

/* ---------- Einblend-Animationen (langsam & weich) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 1.05s var(--ease), transform 1.05s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: 0.16s; }
  .reveal[data-delay="2"] { transition-delay: 0.32s; }
  .reveal[data-delay="3"] { transition-delay: 0.48s; }
}
