/* =========================================================================
   PUB SAINT-SAUVEUR — Dinan
   Feuille de style unique, zéro dépendance, mobile-first.
   ========================================================================= */

:root {
  --green:        #14332A;
  --green-deep:   #0b201a;
  --green-soft:   #1c4437;
  --cream:        #E9DAB8;
  --cream-light:  #f4ecd6;
  --brass:        #B8933F;
  --gold:         #D9B86A;
  --ink:          #201a10;

  --serif-display: 'Ultra', Georgia, 'Times New Roman', serif;
  --serif-body:    'Old Standard TT', Georgia, 'Times New Roman', serif;

  --gap: clamp(1.25rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--green);
  padding: .6rem 1rem;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------------
   Fond bois / laiton — couche fixe, animée légèrement au scroll en JS
   --------------------------------------------------------------------- */
.bg-wood {
  position: fixed;
  inset: -5% -5%;
  z-index: -2;
  background-color: var(--green-deep);
  background-image:
    repeating-linear-gradient(90deg,
      rgba(184,147,63,0.05) 0px, rgba(184,147,63,0.05) 2px,
      transparent 2px, transparent 90px),
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.12) 0px, rgba(0,0,0,0.12) 1px,
      transparent 1px, transparent 45px),
    linear-gradient(180deg, var(--green-deep), var(--green) 60%, var(--green-deep));
  will-change: transform;
}
.bg-vignette {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.35) 100%);
}

/* ---------------------------------------------------------------------
   Typo générique
   --------------------------------------------------------------------- */
h1, h2, h3 { font-family: var(--serif-display); font-weight: 400; margin: 0; }

.kicker {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--brass);
  margin: 0 0 .6rem;
}
.kicker-light { color: var(--gold); }

.section-title {
  font-size: clamp(1.5rem, 4.4vw, 2.2rem);
  letter-spacing: .01em;
  color: var(--green);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .6rem;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 64px; height: 3px;
  background: var(--brass);
}
.section-title-light { color: var(--cream-light); }
.section-title-light::after { background: var(--gold); }

.section-lede {
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #3a3225;
}

.text-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
}
.text-link:hover { color: var(--brass); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.25rem 4rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Photo de la devanture en fond, avec voile sombre pour garder le texte lisible */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,32,26,.55) 0%, rgba(11,32,26,.45) 35%, rgba(11,32,26,.75) 100%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-wrap {
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45));
}

.badge-logo {
  width: clamp(140px, 34vw, 220px);
  height: auto;
  opacity: 0;
  transform: scale(2.3) rotate(-9deg);
  animation: stamp-in .85s cubic-bezier(.34,1.56,.64,1) .15s forwards;
}

@keyframes stamp-in {
  0%   { opacity: 0; transform: scale(2.4) rotate(-10deg); filter: blur(3px); }
  55%  { opacity: 1; transform: scale(.94) rotate(2deg);   filter: blur(0); }
  75%  { transform: scale(1.05) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .badge-logo { opacity: 1; transform: none; animation: none; }
}

/* Panneau OUVERT / FERMÉ */
.status-panel {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--cream);
  border: 2px solid var(--brass);
  box-shadow: inset 0 0 0 3px var(--green);
  padding: .5rem 1.1rem;
  margin-bottom: 1.6rem;
  font-family: var(--serif-body);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--green);
}
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #7a2b23;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
  flex: none;
}
.status-panel.is-open .status-dot { background: #3f7a3d; }
.status-panel.is-open { box-shadow: inset 0 0 0 3px #2d5c33; }

.hero-title {
  color: var(--cream-light);
  font-size: clamp(1.9rem, 7vw, 3.2rem);
  letter-spacing: .01em;
  line-height: 1.15;
  text-shadow: 0 3px 0 rgba(0,0,0,0.35);
}

.hero-sub {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .8rem;
  margin: .6rem 0 2.6rem;
}

/* ---------------------------------------------------------------------
   Pancartes suspendues
   --------------------------------------------------------------------- */
.signboard-nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  max-width: 360px;
}

.signboard {
  position: relative;
  display: block;
  background: var(--cream);
  color: var(--green);
  text-decoration: none;
  font-family: var(--serif-display);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .82rem;
  padding: 1rem 1.4rem;
  border: 2px solid var(--brass);
  box-shadow: inset 0 0 0 4px var(--green), inset 0 0 0 6px var(--gold);
  transform-origin: top center;
  transition: box-shadow .2s ease, background .2s ease;
}

.signboard::before {
  /* petits "clous" de crochet en haut du panneau */
  content: "";
  position: absolute;
  top: -9px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  transform: translateX(-50%);
  box-shadow: 0 -6px 0 -3px var(--green-deep);
}

.signboard:hover, .signboard:focus-visible {
  animation: swing .65s ease-in-out;
  background: var(--cream-light);
  outline: none;
}

@keyframes swing {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(-4.5deg); }
  40%  { transform: rotate(3.5deg); }
  60%  { transform: rotate(-2deg); }
  80%  { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .signboard:hover, .signboard:focus-visible { animation: none; }
}

.signboard-small {
  display: inline-block;
  width: auto;
  max-width: none;
  margin-top: .5rem;
  font-size: .78rem;
  padding: .8rem 1.3rem;
}

/* =========================================================================
   SECTIONS génériques
   ========================================================================= */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 1.25rem;
  position: relative;
  background: var(--cream);
  border-top: 1px solid rgba(184,147,63,0.5);
  border-bottom: 1px solid rgba(184,147,63,0.5);
}

.section-inner {
  max-width: 980px;
  margin: 0 auto;
}

.section-dark {
  background: linear-gradient(180deg, rgba(11,32,26,0.92), rgba(11,32,26,0.97));
  color: var(--cream-light);
  border-top-color: rgba(217,184,106,0.35);
  border-bottom-color: rgba(217,184,106,0.35);
}
.section-dark .diffusion-text p { color: var(--cream); opacity: .92; line-height: 1.75; }

/* =========================================================================
   SECTION CARTE — boutons pancarte "carte"
   ========================================================================= */
.menu-buttons {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2.4rem;
  perspective: 1000px;
}

@media (min-width: 640px) {
  .menu-buttons { grid-template-columns: 1fr 1fr; }
}

.menu-card {
  all: unset;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--green);
  border: 2px solid var(--brass);
  box-shadow: inset 0 0 0 4px var(--green-deep), inset 0 0 0 6px var(--gold);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .15s ease, box-shadow .25s ease;
}

.menu-card-art {
  display: block;
  line-height: 0;
  height: 220px;
}
.menu-card-art svg,
.menu-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card-label {
  padding: 1.1rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  text-align: left;
}

.menu-card-eyebrow {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .68rem;
}

.menu-card-title {
  font-family: var(--serif-display);
  color: var(--cream-light);
  font-size: 1.3rem;
  letter-spacing: .01em;
}

.menu-card-hint {
  color: var(--cream);
  opacity: .75;
  font-size: .85rem;
}

.menu-card:hover, .menu-card:focus-visible {
  box-shadow: inset 0 0 0 4px var(--green-deep), inset 0 0 0 6px var(--cream-light);
  outline: none;
}

/* =========================================================================
   DIFFUSION SPORTIVE
   ========================================================================= */
.diffusion-layout {
  display: grid;
  gap: 2rem;
  margin-top: 2.2rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 760px) {
  .diffusion-layout { grid-template-columns: 1.1fr 1fr; }
}

.diffusion-art {
  border: 2px solid var(--brass);
  box-shadow: inset 0 0 0 4px var(--green-deep), inset 0 0 0 6px var(--gold);
  line-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.diffusion-art svg { width: 100%; height: auto; display: block; }
.diffusion-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.diffusion-text p {
  font-size: 1.02rem;
  margin: 0 0 1.1rem;
}

.place-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* =========================================================================
   GALERIE
   ========================================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.2rem 0 2.6rem;
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  all: unset;
  cursor: pointer;
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--brass);
  box-shadow: inset 0 0 0 3px var(--green-deep), inset 0 0 0 4px var(--gold);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .15s ease, box-shadow .25s ease;
}

@media (min-width: 640px) {
  .gallery-item-wide { grid-column: span 2; aspect-ratio: 8 / 3; }
}

.gallery-item-art { position: absolute; inset: 0; display: block; line-height: 0; overflow: hidden; }
.gallery-item-art svg,
.gallery-item-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover .gallery-item-art img,
.gallery-item:hover .gallery-item-art svg,
.gallery-item:focus-visible .gallery-item-art img,
.gallery-item:focus-visible .gallery-item-art svg {
  transform: scale(1.08);
}

.gallery-item-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .5rem .6rem;
  background: linear-gradient(0deg, rgba(11,32,26,0.85), transparent);
  color: var(--cream-light);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: left;
}

.gallery-item:hover, .gallery-item:focus-visible {
  box-shadow: inset 0 0 0 3px var(--green-deep), inset 0 0 0 4px var(--cream-light);
  outline: none;
}

.feature-card {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
  background: var(--cream-light);
  border: 2px solid var(--brass);
  box-shadow: inset 0 0 0 4px var(--cream), inset 0 0 0 5px var(--brass);
  padding: 1.6rem;
  align-items: center;
}

@media (min-width: 700px) {
  .feature-card { grid-template-columns: 220px 1fr; padding: 1.8rem; }
}

.feature-card-art {
  border: 2px solid var(--brass);
  line-height: 0;
}
.feature-card-art svg { width: 100%; height: auto; display: block; }

.feature-card-text h3 {
  font-size: 1.25rem;
  color: var(--green);
  margin: .3rem 0 .8rem;
  line-height: 1.3;
}

.feature-card-text p:not(.kicker) {
  font-size: .96rem;
  line-height: 1.65;
  margin: 0;
}

/* =========================================================================
   INFOS PRATIQUES
   ========================================================================= */
.infos-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

@media (min-width: 760px) {
  .infos-grid { grid-template-columns: repeat(3, 1fr); }
}

.infos-card {
  background: var(--cream-light);
  border: 2px solid var(--brass);
  box-shadow: inset 0 0 0 4px var(--cream), inset 0 0 0 5px var(--brass);
  padding: 1.5rem 1.4rem;
}

.infos-card h3 {
  font-size: 1.05rem;
  color: var(--green);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.infos-card p { margin: 0 0 .6rem; line-height: 1.6; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  margin-bottom: .6rem;
}
.hours-table td {
  padding: .3rem 0;
  border-bottom: 1px dotted rgba(20,51,42,0.3);
}
.hours-table td:first-child { font-weight: 600; color: var(--green); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.today td { color: var(--brass); font-weight: 700; }

.hours-note { font-size: .82rem; font-style: italic; opacity: .8; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  padding: 3rem 1.25rem 2.4rem;
}
.footer-logo { width: 64px; margin: 0 auto 1rem; opacity: .9; }
.footer-name {
  font-family: var(--serif-display);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--gold);
  margin: 0 0 1rem;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.4rem;
}
.footer-social a {
  color: var(--cream);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}
.footer-social a:hover { color: var(--gold); }
.footer-fine { font-size: .72rem; opacity: .55; margin: 0 0 .5rem; }
.footer-credit { font-size: .72rem; opacity: .55; margin: 0; }
.footer-credit a { color: var(--cream); border-bottom: 1px solid var(--brass); padding-bottom: 1px; }
.footer-credit a:hover { color: var(--gold); }

/* =========================================================================
   MODALE CARTE
   ========================================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2.2rem 1rem;
  background: rgba(11, 32, 26, 0.82);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.is-open { display: flex; }

.modal-plaque {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: var(--cream-light);
  border: 2px solid var(--brass);
  box-shadow: inset 0 0 0 4px var(--cream), inset 0 0 0 6px var(--brass);
  padding: 2.4rem 1.5rem 2rem;
  margin: auto;
  animation: modal-pop .3s cubic-bezier(.34,1.56,.64,1);
}

@keyframes modal-pop {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  all: unset;
  position: absolute;
  top: .6rem; right: .8rem;
  font-family: var(--serif-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--green);
  cursor: pointer;
  padding: .3rem .6rem;
}
.modal-close:hover { color: var(--brass); }

.modal-tabs {
  display: flex;
  gap: .6rem;
  margin-bottom: 1.2rem;
}
.modal-tab {
  all: unset;
  cursor: pointer;
  flex: 1;
  text-align: center;
  padding: .6rem .5rem;
  font-family: var(--serif-body);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--green);
  border: 1px solid var(--brass);
  opacity: .55;
}
.modal-tab.is-active {
  opacity: 1;
  background: var(--green);
  color: var(--cream-light);
}

.modal-title {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 1rem;
  text-align: center;
}

.modal-body { max-height: 62vh; overflow-y: auto; padding-right: .3rem; }

/* Catégories accordéon */
.menu-cat {
  border-bottom: 1px solid rgba(184,147,63,0.4);
  padding: .3rem 0;
}
.menu-cat summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif-body);
  font-weight: 700;
  color: var(--green);
  font-size: 1rem;
  padding: .6rem .2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-cat summary::-webkit-details-marker { display: none; }
.menu-cat summary::after {
  content: "+";
  color: var(--brass);
  font-size: 1.2rem;
  margin-left: 1rem;
}
.menu-cat[open] summary::after { content: "\2212"; }
.menu-cat summary small { font-weight: 400; opacity: .7; margin-left: .3rem; }

.menu-items { padding: .2rem .2rem 1rem; }

.menu-subhead {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--brass);
  font-size: .82rem;
  letter-spacing: .04em;
  margin: .9rem 0 .3rem;
}
.menu-subhead:first-child { margin-top: 0; }

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  padding: .35rem 0;
  border-bottom: 1px dotted rgba(20,51,42,0.25);
  font-size: .9rem;
}
.menu-item span:first-child { flex: 1; }
.menu-item span:last-child { white-space: nowrap; font-weight: 600; color: var(--green); }
.menu-item em { font-style: italic; opacity: .7; font-size: .85em; }

.menu-items-3col .menu-item,
.menu-items-3col .menu-col-head { display: grid; grid-template-columns: 1fr repeat(3, auto); }
.menu-items-2col .menu-item,
.menu-items-2col .menu-col-head { display: grid; grid-template-columns: 1fr repeat(2, auto); }
.menu-items-3col .menu-item span:not(:first-child),
.menu-items-2col .menu-item span:not(:first-child) {
  text-align: right; min-width: 3.6rem;
}
.menu-col-head {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brass);
  border-bottom: none;
  padding-bottom: .15rem;
}
.menu-col-head span:not(:first-child) { text-align: right; min-width: 3.6rem; }

.menu-footnote {
  font-size: .78rem;
  font-style: italic;
  opacity: .75;
  margin: .6rem 0 0;
  line-height: 1.5;
}
.menu-footnote-final {
  text-align: center;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184,147,63,0.4);
}

/* =========================================================================
   LIGHTBOX GALERIE
   ========================================================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(11, 32, 26, 0.88);
}
.lightbox-overlay.is-open { display: flex; }

.lightbox-plaque {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--cream-light);
  border: 2px solid var(--brass);
  box-shadow: inset 0 0 0 4px var(--cream), inset 0 0 0 6px var(--brass);
  padding: 2rem 1.4rem 1.6rem;
  animation: modal-pop .3s cubic-bezier(.34,1.56,.64,1);
}

.lightbox-art { border: 1px solid var(--brass); line-height: 0; margin-bottom: 1rem; }
.lightbox-art svg { width: 100%; height: auto; display: block; }
.lightbox-art img { width: 100%; max-height: 60vh; object-fit: cover; display: block; }

.lightbox-caption {
  text-align: center;
  color: var(--green);
  font-style: italic;
  font-size: .95rem;
  margin: 0;
}

.lightbox-nav {
  all: unset;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif-display);
  font-size: 1.6rem;
  color: var(--green);
  padding: .5rem .7rem;
  opacity: .6;
  transition: opacity .2s ease;
}
.lightbox-nav:hover, .lightbox-nav:focus-visible { opacity: 1; outline: none; }
.lightbox-prev { left: -.6rem; }
.lightbox-next { right: -.6rem; }

/* =========================================================================
   APPARITION AU SCROLL
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.menu-buttons > .reveal:nth-child(2) { transition-delay: .08s; }
.gallery-grid > .reveal:nth-child(2), .place-photos > .reveal:nth-child(2) { transition-delay: .08s; }
.gallery-grid > .reveal:nth-child(3) { transition-delay: .16s; }
.gallery-grid > .reveal:nth-child(4) { transition-delay: .24s; }
.gallery-grid > .reveal:nth-child(5) { transition-delay: .32s; }
.gallery-grid > .reveal:nth-child(6) { transition-delay: .4s; }
.gallery-grid > .reveal:nth-child(7) { transition-delay: .48s; }
.gallery-grid > .reveal:nth-child(8) { transition-delay: .56s; }
.infos-grid > .reveal:nth-child(2) { transition-delay: .1s; }
.infos-grid > .reveal:nth-child(3) { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

