/* ==========================================================================
   Ferienwohnung am Mainauwald – Design System
   Primärfarben: #27BFC5 (Mainauwald-Türkis), #135F66 (Bodensee-Petrol),
   #FFFDFC (Warmes Weiß), #253033 (Text-Anthrazit)
   ========================================================================== */

:root {
  --color-primary: #27bfc5;
  --color-primary-dark: #135f66;
  --color-bg: #fffdfc;
  --color-surface: #f2f8f7;
  --color-ink: #253033;
  --color-sage: #cdeceb;
  --color-line: #dde7e5;
  --color-white: #ffffff;
  --color-forest: #58785c;
  --color-oak: #c9a477;
  --color-coral: #d9826b;

  --font-heading: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --container-w: 1180px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-card: 0 10px 30px -14px rgba(21, 41, 43, 0.28);
  --shadow-soft: 0 2px 10px rgba(21, 41, 43, 0.07);

  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.14; margin: 0 0 0.5em; font-weight: 600; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary-dark);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------- Typography -------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: var(--color-sage);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.18rem; font-weight: 600; }
.section-intro { max-width: 640px; }
.section-intro p { color: #445456; font-size: 1.05rem; }

.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--surface { background: var(--color-surface); }
.section--dark {
  background: var(--color-ink);
  color: #f1f5f4;
}
.section--dark .eyebrow { background: rgba(205,236,235,0.16); color: var(--color-sage); }
.section-head { text-align: center; margin: 0 auto 48px; max-width: 680px; }

/* --------------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(19,95,102,0.55);
}
.btn-primary:hover { background: #0e474c; }
.btn-ghost {
  background: rgba(255,253,252,0.9);
  border-color: rgba(37,48,51,0.18);
  color: var(--color-ink);
}
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary-dark); }
.section--dark .btn-ghost { background: transparent; border-color: rgba(255,255,255,0.3); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------------------------------- Header ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 253, 252, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.brand img { height: 42px; width: auto; }

.nav-primary { display: flex; }
.nav-primary ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
}
.nav-primary a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--color-ink);
  white-space: nowrap;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}
.nav-primary .btn-primary {
  color: #fff;
  font-weight: 400;
  padding: 10px 18px;
  white-space: nowrap;
}
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  color: var(--color-ink);
  white-space: nowrap;
}
.header-phone svg { flex-shrink: 0; color: var(--color-primary-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-ink);
}

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-primary {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h));
    background: var(--color-bg);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    overflow-y: auto;
  }
  .nav-primary.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .nav-primary ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 32px;
  }
  .nav-primary a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--color-line);
    font-size: 1.1rem;
  }
  .nav-primary li:last-child a.btn { margin-top: 14px; text-align: center; }
  .header-phone-text { display: none; }
}
@media (min-width: 941px) {
  .nav-mobile-only { display: none; }
}

/* ------------------------------- Hero Section (full-bleed overlay) -------------------------------- */
.hero {
  position: relative;
  overflow: clip;
  background: #16211f;
}
.hero-stage {
  position: relative;
  width: 100%;
  min-height: 560px;
}
@media (min-width: 900px) {
  .hero-stage { min-height: max(480px, min(86vh, calc(100vw * 941 / 1672))); }
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.2s var(--ease), transform 1.5s var(--ease);
}
.hero-stage.is-ready .hero-media { opacity: 1; transform: scale(1); }
.hero-photo-layer {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,253,252,0.95) 0%, rgba(255,253,252,0.82) 26%, rgba(255,253,252,0.28) 44%, rgba(255,253,252,0) 58%);
  pointer-events: none;
}
.hero-light-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(46% 50% at 74% 46%, rgba(255,255,255,0.4), transparent 72%);
  mix-blend-mode: overlay;
  opacity: 0.6;
  pointer-events: none;
  will-change: transform;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 460px; padding: 48px 0; }
.hero-content h1 { margin-bottom: 18px; color: var(--color-ink); }
.hero-content .lede { font-size: 1.12rem; color: #3a4548; max-width: 44ch; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust {
  display: flex; flex-direction: column; gap: 10px; margin-top: 30px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; color: #3a4548;
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--color-primary-dark); flex-shrink: 0; }

.hero-chips {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,253,252,0.92);
  backdrop-filter: blur(6px);
  border: 1.5px solid transparent;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.hero-chip.is-visible { opacity: 1; transform: translateY(0); }
.hero-chip.is-active { border-color: var(--color-primary); }
.hero-chip svg { color: var(--color-primary-dark); flex-shrink: 0; }

.no-js .hero-media,
.reduced-motion .hero-media { opacity: 1; transform: none; }
.no-js .hero-chip,
.reduced-motion .hero-chip { opacity: 1; transform: none; }

@media (max-width: 899px) {
  .hero-stage { display: flex; flex-direction: column; }
  .hero-media {
    position: static;
    order: 2;
    aspect-ratio: 16 / 11;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-scrim { display: none; }
  .hero-content-wrap { position: static; order: 1; background: var(--color-bg); height: auto; }
  .hero-content { max-width: none; padding: 44px 0 32px; }
  .hero-chips { position: static; order: 3; flex-direction: row; flex-wrap: wrap; align-items: flex-start; padding: 16px 0 8px; background: var(--color-bg); }
  .hero-chip { opacity: 1; transform: none; }
}

/* ------------------------------ Vorteile / Fact cards ------------------------------ */
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; }
.fact-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-m);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.fact-card svg { color: var(--color-primary-dark); flex-shrink: 0; }
.fact-card h3 { margin-bottom: 6px; }
.fact-card p { margin: 0; color: #445; font-size: 0.95rem; }

/* ------------------------------ Amenity lists ------------------------------ */
.amenity-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px 40px; }
.amenity-group h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--color-primary-dark); }
.amenity-group ul { display: flex; flex-direction: column; gap: 10px; }
.amenity-group li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; color: #333f42; }
.amenity-group li svg { color: var(--color-primary-dark); flex-shrink: 0; margin-top: 3px; }

/* ------------------------------ Price table ------------------------------ */
.price-table { width: 100%; border-collapse: collapse; background: var(--color-white); border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-soft); }
.price-table caption { text-align: left; font-weight: 700; font-family: var(--font-heading); font-size: 1.05rem; padding: 18px 22px 4px; }
.price-table th, .price-table td { text-align: left; padding: 14px 22px; border-bottom: 1px solid var(--color-line); font-size: 0.96rem; }
.price-table thead th { background: var(--color-surface); font-family: var(--font-body); font-weight: 700; color: var(--color-primary-dark); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 700; white-space: nowrap; }
.price-note { font-size: 0.86rem; color: #5a6668; margin-top: 14px; }

/* ------------------------------ Process steps ------------------------------ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 22px 24px; background: var(--color-surface); border-radius: var(--radius-m); }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}

.note-callout {
  background: var(--color-sage);
  border-radius: var(--radius-m);
  padding: 18px 22px;
  font-size: 0.92rem;
  color: #0d3d3f;
  display: flex;
  gap: 12px;
}
.note-callout svg { flex-shrink: 0; margin-top: 2px; }

/* ------------------------------ Lage / Map ------------------------------ */
.area-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .area-layout { grid-template-columns: 1fr 1.05fr; align-items: center; } }
.map-frame {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.distance-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.distance-item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; }
.distance-item svg { color: var(--color-primary-dark); flex-shrink: 0; margin-top: 3px; }
.accent-photo { border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-soft); margin-top: 24px; }
.accent-photo img { width: 100%; height: auto; }
.accent-photo figcaption { font-size: 0.78rem; color: #5a6668; padding: 8px 2px 0; }

/* ------------------------------ Gastgeber ------------------------------ */
.host-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .host-layout { grid-template-columns: 0.9fr 1.1fr; } }
.host-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-l);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
}
.host-badge {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--color-sage); color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 18px;
}

/* ------------------------------ Kontakt / Formular ------------------------------ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 46px; }
@media (min-width: 960px) { .contact-layout { grid-template-columns: 0.95fr 1.15fr; } }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item svg { color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }
.contact-info-item a { text-decoration: none; font-weight: 600; }
.contact-info-item a:hover { text-decoration: underline; }

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-l);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
  color: var(--color-ink);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; color: var(--color-ink); }
.form-field .hint { font-size: 0.8rem; color: #666; font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--color-line);
  background: #fff;
  color: var(--color-ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
}
.form-note { font-size: 0.82rem; color: #666; margin-top: 14px; }
.form-required { color: var(--color-primary-dark); }

/* ------------------------------ Calendly Platzhalter ------------------------------ */
.calendly-block {
  background: var(--color-surface);
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-m);
  padding: 28px;
  text-align: center;
  color: var(--color-ink);
}
.calendly-block h3 { color: var(--color-ink); }
.calendly-block p { color: #444; }
.calendly-preview-img {
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 18px auto 0;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}
.calendly-inline-widget {
  min-width: 100%;
  height: 640px;
  border-radius: var(--radius-m);
  background: repeating-linear-gradient(135deg, #eef5f4, #eef5f4 10px, #e5efee 10px, #e5efee 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* --------------------------------- FAQ --------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-surface);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--color-sage); }
.faq-item p { padding: 0 24px 22px; color: #3a4548; margin: 0; }

/* --------------------------------- Footer --------------------------------- */
.site-footer { background: var(--color-ink); color: #eceff0; padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { color: #b7c1c0; font-size: 0.92rem; max-width: 34ch; }
.footer-col h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--color-sage); margin-bottom: 16px; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #d6dcdb; text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.82rem; color: #9aa6a5;
}
.footer-bottom ul { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: #9aa6a5; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------- Sticky mobile CTA --------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  display: none;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,253,252,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-line);
}
@media (max-width: 720px) { .sticky-cta { display: flex; } }
.sticky-cta a { flex: 1; }

/* --------------------------------- Legal pages --------------------------------- */
.legal-content { max-width: 760px; }
.legal-content h2 { margin-top: 2em; }
.legal-content h3 { margin-top: 1.4em; }
.legal-content ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.legal-content li { margin-bottom: 0.4em; }
.draft-banner {
  background: #fff4e5;
  border: 1px solid #f0c987;
  color: #6b4d05;
  border-radius: var(--radius-m);
  padding: 18px 22px;
  margin-bottom: 36px;
  font-weight: 600;
  display: flex;
  gap: 12px;
}
.draft-banner svg { flex-shrink: 0; margin-top: 2px; }

/* --------------------------------- Page hero (subpages) --------------------------------- */
.page-header {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #fffdfc, #f0f7f6);
  border-bottom: 1px solid var(--color-line);
}
.breadcrumbs { display: flex; gap: 8px; font-size: 0.85rem; color: #666; margin-bottom: 18px; }
.breadcrumbs a { color: #666; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* --------------------------------- Utility --------------------------------- */
.stack-gap-lg > * + * { margin-top: 24px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal, .reduced-motion .reveal { opacity: 1; transform: none; }
