/* =================================================================
   Imkerverein Waldhausen – modernes Design
   Farbwelt passend zum Logo (Honiggold / Bienenkorb / Schwarz)
   ================================================================= */

:root {
  --honey:        #e3a81c;   /* Hauptton Logo-Gold */
  --honey-dark:   #c4880c;
  --honey-deep:   #9a6a06;
  --amber-soft:   #f7e6b8;
  --cream:        #fffaf0;
  --cream-2:      #fdf3dc;
  --ink:          #2b2218;   /* fast schwarz, warm */
  --ink-soft:     #5a4d3a;
  --line:         #ecdcb6;
  --white:        #ffffff;
  --shadow:       0 10px 30px -12px rgba(60, 42, 8, .35);
  --shadow-sm:    0 4px 14px -6px rgba(60, 42, 8, .30);
  --radius:       16px;
  --radius-sm:    10px;
  --maxw:         1180px;
  --header-h:     76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='96' viewBox='0 0 56 96'%3E%3Cg fill='none' stroke='%23c4880c' stroke-width='2' stroke-opacity='0.07'%3E%3Cpath d='M28 1 L54 16 L54 48 L28 63 L2 48 L2 16 Z'/%3E%3Cpath d='M0 49 L26 64 L26 96 L0 111'/%3E%3Cpath d='M56 49 L30 64 L30 96 L56 111'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px 96px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 600;
}

a { color: var(--honey-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--honey-dark); }

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

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

.accent { color: var(--honey-dark); }

/* ---------- Honeycomb-Hintergrundmuster (echte Waben) ---------- */
.honeycomb-bg {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='96' viewBox='0 0 56 96'%3E%3Cg fill='none' stroke='%23c4880c' stroke-width='2' stroke-opacity='0.14'%3E%3Cpath d='M28 1 L54 16 L54 48 L28 63 L2 48 L2 16 Z'/%3E%3Cpath d='M0 49 L26 64 L26 96 L0 111'/%3E%3Cpath d='M56 49 L30 64 L30 96 L56 111'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px 96px;
}

/* =================================================================
   HEADER / NAVIGATION
   ================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  background: rgba(255, 250, 240, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px -8px rgba(60,42,8,.3);
  border-bottom-color: var(--line);
}

.nav {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 50px; width: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-text strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: .3px;
  color: var(--ink);
}
.brand .brand-text span {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey-dark);
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--amber-soft); color: var(--ink); }
.nav-links a.active { background: var(--honey); color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2.5px; background: var(--ink);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 16px; border-radius: var(--radius-sm); }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(135deg, #fff7e6 0%, #fbe7b6 55%, #f3cf7e 100%);
}
.hero::before {
  /* Wabenmuster */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(60deg, rgba(196,136,12,.10) 25%, transparent 25.5%, transparent 75%, rgba(196,136,12,.10) 75%),
    linear-gradient(-60deg, rgba(196,136,12,.10) 25%, transparent 25.5%, transparent 75%, rgba(196,136,12,.10) 75%);
  background-size: 44px 76px;
  opacity: .6;
  mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 75%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero-text { max-width: 600px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(196,136,12,.3);
  color: var(--honey-deep);
  font-weight: 600; font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -.5px;
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--honey-dark); }
.hero p.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-visual .logo-badge {
  width: min(360px, 80%);
  filter: drop-shadow(0 24px 40px rgba(120, 80, 5, .35));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

@media (max-width: 860px) {
  .hero { min-height: auto; padding-bottom: 56px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin: 0 auto; }
  .eyebrow { margin-top: 10px; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 10px; }
  .hero-visual .logo-badge { width: 200px; }
  .hero::before { mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%); }
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: .98rem;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .15s, box-shadow .25s, background .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--honey); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(196,136,12,.8);
}
.btn-primary:hover { background: var(--honey-dark); color: #fff; box-shadow: 0 12px 26px -8px rgba(196,136,12,.9); }
.btn-ghost {
  background: rgba(255,255,255,.55);
  color: var(--ink); border-color: rgba(196,136,12,.35);
}
.btn-ghost:hover { background: #fff; color: var(--ink); }

/* =================================================================
   SECTIONS
   ================================================================= */
section.block { padding: 84px 0; }
section.block.tight { padding: 60px 0; }

.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head .kicker {
  color: var(--honey-dark); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-size: .8rem; display: block; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* page hero (kleiner, für Unterseiten) */
.page-hero {
  padding: calc(var(--header-h) + 70px) 0 70px;
  text-align: center;
  background: linear-gradient(135deg, #fff7e6 0%, #fbe7b6 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(60deg, rgba(196,136,12,.08) 25%, transparent 25.5%, transparent 75%, rgba(196,136,12,.08) 75%),
    linear-gradient(-60deg, rgba(196,136,12,.08) 25%, transparent 25.5%, transparent 75%, rgba(196,136,12,.08) 75%);
  background-size: 40px 70px; opacity:.5;
  mask-image: radial-gradient(circle at 50% 0, #000, transparent 80%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); font-size: 1.12rem; max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: .85rem; color: var(--honey-deep); margin-bottom: 18px; letter-spacing: .5px; }

/* =================================================================
   FEATURE CARDS
   ================================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ico {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.7rem;
  background: var(--amber-soft); margin-bottom: 18px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); }

/* =================================================================
   STATS
   ================================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 44px 30px;
  color: #fff;
  position: relative; overflow: hidden;
}
.stats::before {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(60deg, rgba(227,168,28,.12) 25%, transparent 25.5%, transparent 75%, rgba(227,168,28,.12) 75%),
    linear-gradient(-60deg, rgba(227,168,28,.12) 25%, transparent 25.5%, transparent 75%, rgba(227,168,28,.12) 75%);
  background-size: 36px 62px; opacity:.5;
}
.stat { text-align: center; position: relative; }
.stat .num {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--honey);
  line-height: 1;
}
.stat .lbl { font-size: .92rem; opacity: .85; margin-top: 8px; letter-spacing: .5px; }
@media (max-width: 620px){ .stats { grid-template-columns: repeat(2,1fr); gap: 30px 20px; } }

/* =================================================================
   SPLIT (Text + Bild)
   ================================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  width: 100%; height: 100%; max-height: 460px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.split-text h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.split-text p { color: var(--ink-soft); margin-bottom: 16px; }
@media (max-width: 820px){
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: 0; }
}

/* =================================================================
   GALLERY
   ================================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery a {
  display: block; overflow: hidden; border-radius: var(--radius-sm);
  position: relative; box-shadow: var(--shadow-sm); background: var(--amber-soft);
}
.gallery a img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery a:hover img { transform: scale(1.08); }
.gallery a::after {
  content: "🔍"; position: absolute; inset: 0;
  display: grid; place-items: center; font-size: 1.4rem;
  background: rgba(43,34,24,.35); opacity: 0; transition: opacity .3s;
}
.gallery a:hover::after { opacity: 1; }
.gallery a.tall  { grid-row: span 2; }
.gallery a.wide  { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,15,8,.92);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.6); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.4rem; cursor: pointer;
  display: grid; place-items: center; transition: background .2s;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--honey); }
.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 620px){ .lightbox .lb-nav { width: 44px; height: 44px; } }

/* =================================================================
   NEWS / TIMELINE-ARTIKEL (Aktuelles)
   ================================================================= */
.news-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 34px;
}
.news-item .news-media img { width: 100%; height: 320px; object-fit: cover; }
.news-item .news-body { padding: 30px 32px 34px; }
.news-item .news-date {
  display: inline-block; background: var(--amber-soft); color: var(--honey-deep);
  font-weight: 600; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
.news-item h3 { font-size: 1.5rem; margin-bottom: 12px; }
.news-item p { color: var(--ink-soft); margin-bottom: 14px; }
.news-thumbs { display: grid; grid-template-columns: repeat(auto-fill,minmax(120px,1fr)); gap: 8px; margin-top: 18px; }
.news-thumbs img { height: 100px; width: 100%; object-fit: cover; border-radius: 8px; cursor: pointer; transition: transform .3s; }
.news-thumbs img:hover { transform: scale(1.05); }

/* Download-Box */
.download {
  display: flex; align-items: center; gap: 16px;
  background: var(--cream-2); border: 1px dashed var(--honey);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 16px;
}
.download .dl-ico { font-size: 1.8rem; }
.download a { font-weight: 600; }

/* =================================================================
   HISTORY / TIMELINE (Obleute)
   ================================================================= */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 30px; }
.timeline::before {
  content:""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 3px; background: linear-gradient(var(--honey), var(--amber-soft));
  border-radius: 3px;
}
.tl-item { position: relative; padding: 0 0 26px 26px; }
.tl-item::before {
  content:""; position: absolute; left: -28px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--honey); border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--honey);
}
.tl-item .tl-year { font-weight: 700; color: var(--honey-deep); font-family: "Fraunces", serif; }
.tl-item .tl-name { color: var(--ink); }

/* Vorstand-Karten */
.board { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 18px; }
.board .person {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 24px; text-align:center; box-shadow: var(--shadow-sm);
}
.board .person .role { color: var(--honey-dark); font-weight:600; font-size:.82rem; letter-spacing:1px; text-transform:uppercase; }
.board .person .pname { font-family:"Fraunces",serif; font-size:1.2rem; margin-top:6px; }

/* Prose (lange Geschichtstexte) */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.prose blockquote {
  border-left: 4px solid var(--honey);
  background: var(--cream-2);
  padding: 16px 22px; margin: 22px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--ink);
}
.prose h3 { margin: 30px 0 10px; font-size: 1.35rem; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.contact-row { display:flex; gap:16px; align-items:flex-start; padding: 14px 0; border-bottom:1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ci {
  width:44px; height:44px; border-radius:12px; background:var(--amber-soft);
  display:grid; place-items:center; font-size:1.2rem; flex-shrink:0;
}
.contact-row .cl { font-size:.78rem; text-transform:uppercase; letter-spacing:1px; color:var(--honey-dark); font-weight:600; }
.contact-row .cv { font-size:1.05rem; color:var(--ink); }
.map-wrap { border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); min-height: 320px; }
.map-wrap iframe { width:100%; height:100%; min-height:320px; border:0; display:block; }

/* form */
.form-field { margin-bottom: 16px; }
.form-field label { display:block; font-size:.85rem; font-weight:600; margin-bottom:6px; color:var(--ink-soft); }
.form-field input, .form-field textarea {
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:var(--radius-sm);
  font: inherit; background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline:0; border-color: var(--honey); box-shadow: 0 0 0 3px rgba(227,168,28,.2); background:#fff;
}
.form-note { font-size:.82rem; color: var(--ink-soft); margin-top: 10px; }

/* =================================================================
   CTA-Band
   ================================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
  color:#fff; text-align:center; border-radius: var(--radius);
  padding: 56px 30px; position:relative; overflow:hidden;
}
.cta-band::before {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(60deg, rgba(255,255,255,.12) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,.12) 75%),
    linear-gradient(-60deg, rgba(255,255,255,.12) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,.12) 75%);
  background-size: 36px 62px; opacity:.4;
}
.cta-band > * { position: relative; }
.cta-band h2 { color:#fff; font-size: clamp(1.7rem,4vw,2.4rem); margin-bottom:12px; }
.cta-band p { color: rgba(255,255,255,.92); margin-bottom: 24px; font-size:1.08rem; }
.cta-band .btn-primary { background:#fff; color: var(--honey-deep); }
.cta-band .btn-primary:hover { background: var(--ink); color:#fff; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: var(--ink); color: #e9ddc6; padding: 60px 0 24px; margin-top: 0;
}
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.footer-brand img { height: 54px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.4)); }
.footer-brand strong { font-family:"Fraunces",serif; font-size:1.15rem; color:#fff; }
.site-footer p { color:#bfb097; font-size:.95rem; }
.footer-col h4 { color:#fff; font-size:1rem; margin-bottom:16px; letter-spacing:.5px; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:10px; }
.footer-col a { color:#cbbd9f; font-size:.95rem; }
.footer-col a:hover { color: var(--honey); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.1); padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.85rem; color:#9b8d72;
}
.footer-bottom a { color:#9b8d72; }
.footer-bottom a:hover { color: var(--honey); }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* =================================================================
   Reveal-Animation
   Inhalt ist standardmäßig SICHTBAR. Nur wenn JS läuft (Klasse .js am
   <html>), wird .reveal zunächst versteckt und beim Scrollen eingeblendet.
   So bleibt die Seite auch ohne/bei fehlgeschlagenem JavaScript lesbar.
   ================================================================= */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

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