/* ============================================================
   Salle de Jeux Inc — Maison de Jeu
   Direction: Minimal editorial / Swiss — cool off-white canvas,
   charcoal ink, one restrained cobalt accent. Asymmetric grids,
   index lists, hairlines, generous whitespace, calm motion.
   ============================================================ */

:root {
  /* ---- palette (oklch) — cool neutral monochrome ---- */
  --bg:         oklch(98.6% 0.002 260);
  --bg-2:       oklch(96.6% 0.003 260);
  --paper:      oklch(100% 0 0);
  --ink:        oklch(22% 0.012 264);
  --sub:        oklch(34% 0.010 264);
  --muted:      oklch(52% 0.008 264);
  --line:       oklch(90.5% 0.004 264);
  --line-soft:  oklch(94% 0.003 264);
  --accent:     oklch(54% 0.142 256);
  --accent-deep:oklch(46% 0.150 258);
  --accent-soft:oklch(93% 0.040 256);

  /* ---- type ---- */
  --font-display: "Inter Tight", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --text-hero: clamp(2.8rem, 1rem + 7vw, 7rem);
  --text-h2:   clamp(1.9rem, 1.2rem + 2.8vw, 3.4rem);
  --text-lead: clamp(1.5rem, 1rem + 2vw, 2.6rem);
  --text-h3:   clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  --text-base: clamp(0.98rem, 0.94rem + 0.2vw, 1.06rem);

  /* ---- space / motion ---- */
  --shell: min(1180px, 90vw);
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --radius: 6px;
  --radius-lg: 10px;
  --dur: 280ms;
  --dur-slow: 680ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px -34px oklch(22% 0.02 264 / 0.5);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.025em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--ink); color: var(--bg); }

.shell { width: var(--shell); margin-inline: auto; }
.serif-italic { font-style: italic; font-weight: 400; color: var(--muted); }
.ink-accent { color: var(--accent); }
.label {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 0.5rem;
}
.label::before { content: ""; width: 18px; height: 1px; background: var(--accent); }
.label.on-dark { color: oklch(80% 0.02 264); }
.label.on-dark::before { background: var(--accent-soft); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --pad-y: 0.68rem; --pad-x: 1.3rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  letter-spacing: -0.01em; border-radius: var(--radius); cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn-lg { --pad-y: 0.85rem; --pad-x: 1.6rem; font-size: 1rem; }
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--accent); }
.btn-line { border-color: var(--line); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-line-light { border-color: oklch(100% 0 0 / 0.32); color: var(--bg); }
.btn-line-light:hover { border-color: oklch(100% 0 0 / 0.7); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur);
}
.site-header[data-scrolled] {
  background: oklch(98.6% 0.002 260 / 0.78);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: 1.05rem 0; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); }
.brand-mark { display: grid; place-items: center; color: var(--accent); transition: transform var(--dur-slow) var(--ease); }
.brand:hover .brand-mark { transform: rotate(180deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-text em { font-style: normal; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--muted); margin-top: 2px; }

.primary-nav { display: flex; gap: 2rem; margin-inline: auto; }
.primary-nav a {
  font-weight: 450; font-size: 0.92rem; position: relative; padding: 0.2rem 0; color: var(--sub);
  transition: color var(--dur) var(--ease);
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--ink); transition: width var(--dur) var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 0.5rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: transform var(--dur) var(--ease), opacity var(--dur); }

/* ============================================================
   HERO — editorial, full-width image band
   ============================================================ */
.hero { padding-top: clamp(2.5rem, 1.5rem + 3vw, 4.5rem); }
.hero-top {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-bottom: clamp(1.6rem, 1rem + 2vw, 2.6rem);
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.hero-top .dot { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-top .dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: var(--text-hero); font-weight: 600; letter-spacing: -0.04em; max-width: 16ch; }
.hero-row {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem);
  align-items: end; margin: clamp(1.4rem, 1rem + 2vw, 2.4rem) 0 clamp(2rem, 1.5rem + 2vw, 3rem);
}
.hero-lede { color: var(--muted); font-size: clamp(1.02rem, 0.98rem + 0.35vw, 1.18rem); max-width: 42ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }

.hero-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.hero-band img { width: 100%; height: clamp(260px, 42vw, 520px); object-fit: cover; filter: saturate(0.9); }
.hero-caption {
  display: flex; flex-wrap: wrap; gap: 0.6rem 2.4rem; padding-top: 1.1rem;
  font-size: 0.82rem; color: var(--muted);
}
.hero-caption span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-caption span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ============================================================
   INTRO — manifesto statement
   ============================================================ */
.intro { padding: var(--space-section) 0; }
.intro-grid { display: grid; grid-template-columns: 0.32fr 0.68fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); }
.intro-text { font-family: var(--font-display); font-weight: 500; font-size: var(--text-lead); line-height: 1.22; letter-spacing: -0.025em; color: var(--ink); max-width: 24ch; }
.intro-text em { color: var(--accent); font-style: italic; font-weight: 400; }

/* ============================================================
   GAMES — editorial index list + sticky hover preview
   ============================================================ */
.games { padding: var(--space-section) 0; }
.games-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.4rem); }
.games-head h2 { font-size: var(--text-h2); }
.games-head p { color: var(--muted); max-width: 32ch; font-size: 0.98rem; }

.games-layout { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: start; }
.game-list { border-top: 1px solid var(--line); }
.game-row {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 1.2rem;
  padding: clamp(1.1rem, 0.8rem + 1vw, 1.6rem) 0.4rem; border-bottom: 1px solid var(--line);
  position: relative; transition: padding var(--dur) var(--ease), color var(--dur) var(--ease);
}
.game-row::before {
  content: ""; position: absolute; left: -0.6rem; right: -0.6rem; top: 0; bottom: 0;
  background: var(--bg-2); opacity: 0; border-radius: var(--radius); transition: opacity var(--dur) var(--ease); z-index: -1;
}
.game-row:hover { padding-left: 1rem; }
.game-row:hover::before { opacity: 1; }
.gr-index { font-family: var(--font-display); font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.gr-name { font-family: var(--font-display); font-size: clamp(1.2rem, 1rem + 1vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; }
.gr-desc { display: block; font-family: var(--font-body); font-size: 0.86rem; font-weight: 400; color: var(--muted); letter-spacing: 0; margin-top: 0.2rem; }
.gr-tag { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sub); white-space: nowrap; }
.gr-arrow { color: var(--muted); transition: transform var(--dur) var(--ease), color var(--dur) var(--ease); }
.game-row:hover .gr-arrow { color: var(--accent); transform: translateX(4px); }

.game-preview { position: sticky; top: 6rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 5; background: var(--bg-2); }
.game-preview img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9);
  opacity: 0; transition: opacity var(--dur-slow) var(--ease);
}
.game-preview img.is-active { opacity: 1; }
.preview-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 1.2rem; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.02em;
  background: linear-gradient(180deg, transparent, oklch(18% 0.012 264 / 0.85)); }

/* ============================================================
   PRINCIPLES — why the house
   ============================================================ */
.principles { padding: var(--space-section) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.principles-head { margin-bottom: clamp(2.2rem, 1.5rem + 2vw, 3.4rem); }
.principles-head h2 { font-size: var(--text-h2); margin-top: 1rem; max-width: 18ch; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.principle { padding: 1.6rem clamp(1rem, 0.6rem + 1vw, 1.6rem) 0 0; border-top: 1px solid var(--ink); }
.principle .p-no { font-family: var(--font-display); font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.principle h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.principle p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   COMMUNITY — social activities
   ============================================================ */
.community { padding: var(--space-section) 0; }
.community-intro { max-width: 62ch; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem); }
.community-intro h2 { font-size: var(--text-h2); margin-top: 1rem; max-width: 16ch; }
.community-lede { color: var(--muted); margin-top: 1.1rem; font-size: 1.04rem; max-width: 50ch; }
.community-band { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.2rem); }
.community-band img { width: 100%; height: clamp(220px, 34vw, 420px); object-fit: cover; filter: saturate(0.9); }
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0 clamp(1.5rem, 1rem + 2vw, 3rem); }
.community-item { padding: 1.6rem 0 0; border-top: 1px solid var(--ink); }
.community-item .c-no { font-family: var(--font-display); font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.community-item h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.community-item p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   GETTING STARTED — three steps
   ============================================================ */
.start { padding: var(--space-section) 0; }
.start-grid { display: grid; grid-template-columns: 0.4fr 0.6fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: start; }
.start-head h2 { font-size: var(--text-h2); margin-top: 1rem; max-width: 12ch; }
.start-head .btn { margin-top: 1.8rem; }
.steps { list-style: none; padding: 0; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: baseline; padding: 1.6rem 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step-no { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--accent); }
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ============================================================
   CTA BAND — the welcome
   ============================================================ */
.cta { padding: 0 0 var(--space-section); }
.cta-inner {
  background: var(--ink); color: var(--bg); border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 1.5rem + 4vw, 5rem); display: grid; grid-template-columns: 1.5fr 0.5fr;
  gap: 2.5rem; align-items: center;
}
.cta-copy h2 { font-size: var(--text-h2); margin: 1rem 0 1.2rem; font-weight: 600; max-width: 18ch; }
.cta-sub { color: oklch(82% 0.01 264); max-width: 46ch; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cta-figure { justify-self: end; text-align: right; display: grid; gap: 0.4rem; padding-left: 2rem; border-left: 1px solid oklch(100% 0 0 / 0.16); }
.cta-figure .fig-pct { font-family: var(--font-display); font-size: clamp(3.2rem, 2rem + 5vw, 5.4rem); font-weight: 600; color: var(--bg); line-height: 0.9; letter-spacing: -0.04em; }
.cta-figure .fig-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: oklch(72% 0.02 264); }

/* ============================================================
   FAQ — native accordion
   ============================================================ */
.faq { padding: 0 0 var(--space-section); }
.faq-grid { display: grid; grid-template-columns: 0.34fr 0.66fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: start; }
.faq-head h2 { font-size: var(--text-h2); margin-top: 1rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.3rem 0; display: flex; gap: 1rem;
  align-items: baseline; justify-content: space-between;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 500; letter-spacing: -0.015em;
  transition: color var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary .ic { flex: none; width: 1rem; height: 1rem; position: relative; margin-top: 0.4rem; }
.faq-item summary .ic::before, .faq-item summary .ic::after { content: ""; position: absolute; background: var(--muted); transition: transform var(--dur) var(--ease), background var(--dur); }
.faq-item summary .ic::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-item summary .ic::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] summary { color: var(--ink); }
.faq-item[open] summary .ic::after { transform: translateX(-50%) scaleY(0); }
.faq-answer { padding: 0 2rem 1.4rem 0; color: var(--muted); font-size: 0.96rem; max-width: 60ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(3rem, 2rem + 4vw, 5rem) 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 2.5rem; }
.brand--footer { margin-bottom: 1.2rem; }
.footer-blurb { color: var(--muted); max-width: 34ch; margin-bottom: 1.2rem; font-size: 0.92rem; }
.age-badge { display: inline-grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid var(--line); color: var(--sub); font-weight: 600; font-size: 0.82rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 1rem; font-weight: 600; }
.footer-col a { display: block; color: var(--sub); padding: 0.32rem 0; font-size: 0.92rem; transition: color var(--dur), padding var(--dur); }
.footer-col a:hover { color: var(--ink); padding-left: 5px; }
.compliance {
  margin-top: 3rem; padding: 2rem 0 0.4rem; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: clamp(1.4rem, 1rem + 3vw, 4rem); flex-wrap: wrap;
}
.compliance-marks { display: flex; align-items: center; gap: 1.8rem; }
.mark-pagcor { width: auto; height: 46px; filter: grayscale(1); opacity: 0.7; transition: filter var(--dur), opacity var(--dur); }
.mark-age { width: auto; height: 56px; filter: grayscale(1); opacity: 0.7; transition: filter var(--dur), opacity var(--dur); }
.compliance-marks:hover .mark-pagcor, .compliance-marks:hover .mark-age { filter: grayscale(0); opacity: 1; }
.compliance-message { position: relative; padding: 0.6rem clamp(1.5rem, 1rem + 3vw, 3.5rem); border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.cm-top { font-size: clamp(0.74rem, 0.7rem + 0.2vw, 0.86rem); font-weight: 500; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted); }
.cm-main { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 1rem + 1.8vw, 2rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin-top: 0.2rem; }
.cm-main span { color: var(--accent); }
.compliance-mail { margin-left: auto; font-size: clamp(0.9rem, 0.85rem + 0.3vw, 1.05rem); color: var(--sub); font-weight: 450; position: relative; transition: color var(--dur) var(--ease); }
.compliance-mail::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 0; background: var(--accent); transition: width var(--dur) var(--ease); }
.compliance-mail:hover { color: var(--accent); }
.compliance-mail:hover::after { width: 100%; }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.responsible { color: var(--muted); font-size: 0.8rem; max-width: 60ch; }
.copy { color: var(--muted); font-size: 0.8rem; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-row { grid-template-columns: 1fr; align-items: start; gap: 1.5rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .games-layout { grid-template-columns: 1fr; }
  .game-preview { display: none; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .start-grid, .faq-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-figure { justify-self: start; text-align: left; padding-left: 0; border-left: 0; border-top: 1px solid oklch(100% 0 0 / 0.16); padding-top: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 760px) {
  .primary-nav, .header-cta { display: none; }
  .primary-nav.is-open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 1.5rem var(--shell); gap: 1rem; border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .num:nth-child(3) { border-left: 0; padding-left: 0; }
  .num { border-bottom: 1px solid var(--line); }
  .num:nth-last-child(-n+2) { border-bottom: 0; }
  .game-row { grid-template-columns: auto 1fr auto; }
  .gr-tag { display: none; }
  .principle-grid { grid-template-columns: 1fr; }
  .compliance { flex-direction: column; align-items: flex-start; text-align: left; }
  .compliance-message { border-left: 0; border-right: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-inline: 0; }
  .compliance-mail { margin-left: 0; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .num { border-left: 0; padding-left: 0; }
  .game-row { grid-template-columns: auto 1fr auto; gap: 0.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

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