/* ============================================================
   YYK Enterprises Corporation
   Direction: Light luxury / editorial — warm ivory canvas,
   deep pine green, terracotta accent. Deliberately the
   opposite of the dark-casino reference.
   ============================================================ */

:root {
  /* ---- palette (oklch) ---- */
  --bg:        oklch(96.5% 0.014 92);   /* warm ivory */
  --bg-2:      oklch(93.2% 0.020 86);   /* deeper cream */
  --paper:     oklch(98.5% 0.008 95);   /* card surface */
  --ink:       oklch(24% 0.035 165);    /* deep pine near-black */
  --pine:      oklch(36% 0.072 168);    /* emerald */
  --pine-soft: oklch(46% 0.060 165);
  --clay:      oklch(63% 0.155 42);     /* terracotta accent */
  --clay-deep: oklch(54% 0.150 38);
  --sage:      oklch(78% 0.060 150);    /* soft sage tint */
  --line:      oklch(82% 0.020 120);    /* hairlines */
  --muted:     oklch(46% 0.018 160);

  /* ---- type ---- */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --text-hero: clamp(3.1rem, 1.2rem + 7.4vw, 7.6rem);
  --text-h2:   clamp(2.2rem, 1.2rem + 3.6vw, 4.4rem);
  --text-h3:   clamp(1.25rem, 1rem + 0.9vw, 1.6rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);

  /* ---- space / motion ---- */
  --shell: min(1240px, 92vw);
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --radius: 18px;
  --radius-lg: 28px;
  --dur: 320ms;
  --dur-slow: 760ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 24px 60px -28px oklch(36% 0.07 168 / 0.32);
  --shadow-card: 0 14px 40px -24px oklch(24% 0.04 165 / 0.45);
}

/* ---- 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.6;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(120% 80% at 85% -5%, oklch(88% 0.05 150 / 0.55), transparent 60%),
    radial-gradient(90% 70% at -10% 10%, oklch(90% 0.045 60 / 0.5), transparent 55%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.shell { width: var(--shell); margin-inline: auto; }
.serif-italic { font-style: italic; font-family: var(--font-display); font-weight: 400; }
.ink-accent { color: var(--clay); }

/* ---- grain overlay ---- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --pad-y: 0.7rem; --pad-x: 1.4rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-body); font-weight: 600; font-size: 0.97rem;
  letter-spacing: -0.01em; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-lg { --pad-y: 0.95rem; --pad-x: 1.9rem; font-size: 1.02rem; }
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { background: var(--clay); transform: translateY(-3px); box-shadow: 0 16px 30px -16px var(--clay-deep); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--clay); }
.btn-line { border-color: var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--bg); transform: translateY(-3px); }
.btn-line-light { border-color: oklch(98% 0 0 / 0.5); color: var(--bg); }
.btn-line-light:hover { background: oklch(98% 0 0 / 0.12); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), backdrop-filter var(--dur);
}
.site-header[data-scrolled] {
  background: oklch(96.5% 0.014 92 / 0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: 1.1rem 0; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--pine); }
.brand-mark { display: grid; place-items: center; color: var(--clay); transition: transform var(--dur-slow) var(--ease); }
.brand:hover .brand-mark { transform: rotate(180deg); }
.brand-text { display: flex; flex-direction: column; line-height: 0.95; }
.brand-text strong { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-text em { font-style: normal; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--muted); }

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

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

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

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(2rem, 1rem + 4vw, 5rem); position: relative; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: -10% 0 0; z-index: -1;
  background: url("../assets/img/texture.webp") center/cover no-repeat;
  opacity: 0.5; -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center; padding-bottom: clamp(3rem, 2rem + 4vw, 6rem);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--pine);
  padding: 0.4rem 0.9rem; border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 4px oklch(63% 0.155 42 / 0.18); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px oklch(63% 0.155 42 / 0); } }

.hero h1 { font-size: var(--text-hero); font-weight: 470; margin: 1.5rem 0 1.4rem; }
.hero-lede { max-width: 46ch; color: var(--muted); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 2rem 0 2.4rem; }
.hero-trust { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: 0.92rem; color: var(--muted); }
.hero-trust li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-trust span { color: var(--clay); font-size: 1.05rem; }

/* hero visual */
.hero-visual { position: relative; min-height: 340px; display: grid; place-items: center; }
.hero-frame {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--line); box-shadow: var(--shadow-soft);
  transform: rotate(-2deg); transition: transform var(--dur-slow) var(--ease);
  animation: float 7s ease-in-out infinite;
}
.hero-frame img { width: 100%; height: auto; display: block; }
.hero-visual:hover .hero-frame { transform: rotate(0deg) scale(1.01); }
@keyframes float { 50% { transform: rotate(-2deg) translateY(-14px); } }

.orbit-chip {
  position: absolute; background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.5rem 0.9rem; font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--shadow-card); white-space: nowrap;
}
.chip-1 { top: 8%; right: -4%; color: var(--clay-deep); animation: float 5s ease-in-out infinite; }
.chip-2 { bottom: 6%; left: -8%; color: var(--pine); animation: float 7s ease-in-out infinite reverse; }

/* marquee */
.marquee { border-block: 1.5px solid var(--ink); overflow: hidden; background: var(--ink); color: var(--bg); padding: 0.85rem 0; }
.marquee-track { display: flex; gap: 2rem; width: max-content; animation: scroll-x 26s linear infinite; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; }
.marquee-track span { white-space: nowrap; }
.marquee-track span:nth-child(even) { color: var(--clay); font-style: normal; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: clamp(3rem, 2rem + 3vw, 5rem) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--bg); padding: clamp(1.6rem, 1rem + 2vw, 2.6rem); display: flex; flex-direction: column; gap: 0.4rem; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.4rem, 1.6rem + 2.6vw, 3.8rem); font-weight: 500; line-height: 1; color: var(--pine); letter-spacing: -0.03em; }
.stat-label { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head { margin-bottom: clamp(2.4rem, 1.5rem + 3vw, 4rem); max-width: 60ch; }
.section-head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; max-width: none; flex-wrap: wrap; }
.section-kicker { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay); margin-bottom: 0.9rem; }
.section-kicker.on-dark { color: var(--sage); }
.section-head h2 { font-size: var(--text-h2); font-weight: 460; }
.section-sub { margin-top: 1.1rem; color: var(--muted); max-width: 44ch; font-size: 1.08rem; }
.section-head--row .section-sub { margin-top: 0; }

/* ============================================================
   VENTURES
   ============================================================ */
.ventures { padding: var(--space-section) 0; }
.venture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.venture-card {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1rem + 2vw, 2.4rem); position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.venture-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(120% 90% at 100% 0%, oklch(63% 0.155 42 / 0.12), transparent 60%);
  transition: opacity var(--dur) var(--ease);
}
.venture-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--clay); }
.venture-card:hover::before { opacity: 1; }
.vc-index { font-family: var(--font-display); font-size: 0.9rem; color: var(--clay); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 2.2rem; }
.venture-card h3 { font-size: var(--text-h3); margin-bottom: 0.7rem; }
.venture-card p { color: var(--muted); margin-bottom: 1.4rem; }
.vc-meta { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pine); font-weight: 600; }
.venture-card--feature { grid-row: span 1; background: var(--ink); color: var(--bg); border-color: transparent; }
.venture-card--feature .vc-index { color: var(--sage); }
.venture-card--feature p { color: oklch(85% 0.01 150); }
.venture-card--feature .vc-meta { color: var(--clay); }
.venture-card--feature:hover { border-color: transparent; }

/* ============================================================
   THE FLOOR — bento
   ============================================================ */
.floor { padding: var(--space-section) 0; background: var(--bg-2); position: relative; }
.floor::before, .floor::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--line);
}
.floor::before { top: 0; } .floor::after { bottom: 0; }
.floor-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(190px, auto); gap: 1.2rem; }
.tile {
  background: var(--ink); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column; position: relative; overflow: hidden;
  color: var(--bg); isolation: isolate;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tile-bg {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; transition: transform var(--dur-slow) var(--ease);
}
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, oklch(24% 0.035 165 / 0.05) 0%, oklch(24% 0.035 165 / 0.4) 52%, oklch(20% 0.04 168 / 0.92) 100%);
  transition: opacity var(--dur) var(--ease);
}
.tile--lg { grid-column: span 2; grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile-num { font-family: var(--font-display); font-size: 2rem; color: var(--bg); line-height: 1; text-shadow: 0 2px 12px oklch(20% 0.04 168 / 0.6); }
.tile--lg .tile-num { font-size: 2.8rem; }
.tile h3 { font-size: var(--text-h3); margin-top: auto; padding-top: 1.4rem; }
.tile p { color: oklch(92% 0.02 150); font-size: 0.96rem; margin-top: 0.4rem; }
.tile-go { margin-top: 1rem; font-weight: 700; font-size: 0.9rem; color: var(--sage); transition: padding var(--dur), color var(--dur); }
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.tile:hover .tile-bg { transform: scale(1.06); }
.tile:hover .tile-go { color: var(--clay); padding-left: 4px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: var(--space-section) 0; }
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { padding: 1.8rem 0 0; border-top: 2px solid var(--ink); position: relative; }
.step-no {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--bg);
  background: var(--clay); width: 2.2rem; height: 2.2rem; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.32rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   PROMO
   ============================================================ */
.promo { padding: 0 0 var(--space-section); }
.promo-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.4fr 0.6fr;
  gap: 2.5rem; align-items: center; position: relative; overflow: hidden;
}
.promo-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 100% 100%, oklch(63% 0.155 42 / 0.4), transparent 55%),
              radial-gradient(70% 90% at 0% 0%, oklch(46% 0.06 165 / 0.5), transparent 60%);
}
.promo-copy { position: relative; }
.promo-copy h2 { font-size: var(--text-h2); margin: 0.9rem 0 1.2rem; }
.promo-sub { color: oklch(86% 0.015 150); max-width: 46ch; margin-bottom: 2rem; }
.promo-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.promo-badge {
  position: relative; justify-self: center; aspect-ratio: 1; width: min(220px, 60vw);
  border-radius: 50%; border: 2px dashed oklch(78% 0.06 150 / 0.5);
  display: grid; place-content: center; text-align: center; gap: 0.3rem;
  animation: spin-slow 26s linear infinite;
}
.promo-badge .pb-pct { font-family: var(--font-display); font-size: clamp(3rem, 2rem + 4vw, 4.6rem); font-weight: 600; color: var(--clay); }
.promo-badge .pb-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--sage); }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-2); 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.96rem; }
.age-badge { display: inline-grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 2px solid var(--clay); color: var(--clay-deep); font-weight: 800; font-size: 0.9rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink); margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; color: var(--muted); padding: 0.32rem 0; font-size: 0.95rem; transition: color var(--dur), padding var(--dur); }
.footer-col a:hover { color: var(--clay); padding-left: 5px; }
/* ---- responsible-gaming compliance band ---- */
.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: 52px; }
.mark-age { width: auto; height: 64px; }

.compliance-message {
  position: relative; padding: 0.85rem clamp(1.5rem, 1rem + 3vw, 3.5rem);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cm-top {
  font-size: clamp(0.8rem, 0.74rem + 0.3vw, 0.98rem); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.28em; color: var(--muted);
}
.cm-main {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 1rem + 2.2vw, 2.4rem); line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--clay-deep);
  margin-top: 0.15rem;
}
.cm-main span { color: var(--pine); }

.compliance-mail {
  margin-left: auto; font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.18rem);
  color: var(--pine-soft); font-weight: 500; letter-spacing: -0.01em;
  position: relative; transition: color var(--dur) var(--ease);
}
.compliance-mail::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 0;
  background: var(--clay); transition: width var(--dur) var(--ease);
}
.compliance-mail:hover { color: var(--clay); }
.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.84rem; max-width: 60ch; }
.copy { color: var(--muted); font-size: 0.84rem; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); 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-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 300px; }
  .venture-grid { grid-template-columns: 1fr 1fr; }
  .venture-card--feature { grid-column: span 2; }
  .promo-inner { grid-template-columns: 1fr; }
  .promo-badge { justify-self: start; }
  .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);
    box-shadow: var(--shadow-card);
  }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .floor-bento { grid-template-columns: 1fr 1fr; }
  .tile--lg, .tile--wide { grid-column: span 2; }
  .tile--lg { grid-row: span 1; }
  .steps { grid-template-columns: 1fr 1fr; }
  .compliance { flex-direction: column; align-items: flex-start; text-align: left; }
  .compliance-mail { margin-left: 0; }
}

@media (max-width: 480px) {
  .venture-grid { grid-template-columns: 1fr; }
  .venture-card--feature { grid-column: span 1; }
  .stats-grid, .floor-bento, .steps { grid-template-columns: 1fr; }
  .tile--lg, .tile--wide { grid-column: span 1; }
  .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; }
}
