/* =========================================================
   마사지 코인 카페 — coin massage cafe
   Midnight brass lounge · scroll-driven kinetic objects
   서울 노원구 상계동
   ========================================================= */

:root {
  /* 색 — 미드나잇 네이비 / 브라스 코인 / 민트 네온 */
  --night: #0d1117;
  --night-2: #131a22;
  --night-3: #1b2530;
  --panel: #172029;
  --ink: #f1ece1;
  --ink-2: #b8bfc7;
  --ink-3: #7d8792;
  --coin: #e3b455;
  --coin-2: #c68f2c;
  --coin-3: #f6dda0;
  --mint: #63d3bd;
  --line: rgba(241, 236, 225, 0.14);
  --line-soft: rgba(241, 236, 225, 0.07);

  /* 타이포 */
  --display: "Gasoek One", "Noto Sans KR", sans-serif;
  --sans: "Noto Sans KR", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --wrap: 1240px;
  --pad: clamp(20px, 5vw, 68px);
  --gap-y: clamp(84px, 13vw, 168px);
  --r: 18px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--night);
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-weight: 400; line-height: 1.22; letter-spacing: -0.015em; }
::selection { background: var(--coin); color: var(--night); }
:focus-visible { outline: 2px solid var(--coin); outline-offset: 3px; border-radius: 4px; }

/* ---------- 공용 ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); position: relative; z-index: 2; }

.tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coin);
}
.mark { color: var(--coin); }
.mint { color: var(--mint); }

/* 스크롤 진입 리빌 */
.reveal { opacity: 0; transform: translate3d(0, 34px, 0); transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* =========================================================
   스크롤 오브젝트 레이어 (배경 고정, 스크롤에 반응)
   ========================================================= */
.objects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  will-change: transform;
}
.orb--1 { width: 44vw; height: 44vw; left: -10vw; top: 6vh;  background: radial-gradient(circle at 40% 40%, rgba(227,180,85,.42), transparent 68%); }
.orb--2 { width: 38vw; height: 38vw; right: -8vw; top: 42vh; background: radial-gradient(circle at 50% 50%, rgba(99,211,189,.30), transparent 68%); }
.orb--3 { width: 30vw; height: 30vw; left: 34vw;  top: 78vh;  background: radial-gradient(circle at 50% 50%, rgba(198,143,44,.30), transparent 70%); }

/* 떠다니는 코인 */
.coin-float {
  position: absolute;
  width: var(--size, 76px);
  height: var(--size, 76px);
  will-change: transform;
  opacity: .85;
}
.coin-float svg { width: 100%; height: 100%; display: block; }
.coin-float--a { left: 8%;  top: 22vh; --size: 64px; }
.coin-float--b { right: 11%; top: 14vh; --size: 96px; }
.coin-float--c { left: 76%; top: 64vh; --size: 52px; }
.coin-float--d { left: 18%; top: 82vh; --size: 84px; }
.coin-float--e { left: 46%; top: 128vh; --size: 44px; }

/* 코인 SVG 공통 */
.coin-face { fill: url(#coinGrad); }
.coin-ring { fill: none; stroke: rgba(13,17,23,.35); stroke-width: 3; }
.coin-mark { fill: rgba(13,17,23,.55); font-family: var(--display); }

/* 상단 스크롤 진행 = 코인 슬롯 게이지 */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(241,236,225,.08);
  z-index: 60;
}
.progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--coin-2), var(--coin), var(--coin-3));
  box-shadow: 0 0 14px rgba(227,180,85,.7);
  transform-origin: left;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 17, 23, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line-soft); background: rgba(13, 17, 23, 0.92); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 70px; }

.wordmark { display: flex; align-items: center; gap: 11px; }
.wordmark__coin { width: 30px; height: 30px; flex: none; }
.wordmark__coin svg { width: 100%; height: 100%; }
.wordmark__text b { font-family: var(--display); font-size: 1.06rem; letter-spacing: -0.01em; font-weight: 400; display: block; color: var(--ink); }
.wordmark__text > span { font-family: var(--mono); font-size: .6rem; letter-spacing: .24em; color: var(--ink-3); text-transform: uppercase; display: block; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }
.nav a { font-size: .87rem; color: var(--ink-2); transition: color .2s ease; }
.nav a:hover { color: var(--coin); }
.nav-cta {
  border: 1px solid var(--coin);
  color: var(--coin) !important;
  border-radius: 999px;
  padding: 8px 17px;
  font-family: var(--mono);
  font-size: .74rem !important;
  letter-spacing: .1em;
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover { background: var(--coin); color: var(--night) !important; }

.burger { display: none; width: 42px; height: 42px; background: none; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; padding: 11px 10px; flex-direction: column; justify-content: space-between; }
.burger span { display: block; height: 1.5px; background: var(--ink); transition: transform .3s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: clamp(70px, 12vw, 140px) 0 clamp(50px, 8vw, 90px); position: relative; }
.hero__kicker { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: clamp(26px, 4vw, 44px); }
.hero__kicker .line { flex: 1 1 40px; height: 1px; background: var(--line); min-width: 30px; }

.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 320px); gap: clamp(32px, 5vw, 64px); align-items: center; }

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7.4vw, 5.4rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.hero__title .thin { color: var(--ink-2); }
.hero__lead {
  margin-top: clamp(22px, 3vw, 32px);
  max-width: 40ch;
  color: var(--ink-2);
  font-size: clamp(.98rem, 1.4vw, 1.08rem);
  font-weight: 300;
}
.hero__lead .em { color: var(--ink); font-weight: 500; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(28px, 4vw, 40px); }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: .9rem; font-weight: 500;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--fill { background: var(--coin); border-color: var(--coin); color: var(--night); font-weight: 700; }
.btn--fill:hover { background: var(--coin-3); border-color: var(--coin-3); }
.btn--ghost:hover { border-color: var(--coin); color: var(--coin); }

/* 히어로 대형 코인 — 스크롤에 따라 회전 */
.hero__coin { justify-self: center; width: min(300px, 74vw); aspect-ratio: 1; position: relative; }
.hero__coin .spin { width: 100%; height: 100%; will-change: transform; }
.hero__coin svg { width: 100%; height: 100%; overflow: visible; }
.coin-arc { font-family: var(--mono); font-size: 9.4px; letter-spacing: 2.6px; fill: rgba(13,17,23,.6); font-weight: 700; }
.coin-center { font-family: var(--display); font-size: 44px; fill: rgba(13,17,23,.68); }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 40px); margin-top: clamp(46px, 7vw, 80px); padding-top: 26px; border-top: 1px solid var(--line-soft); }
.hero__stats div { min-width: 120px; }
.hero__stats b { display: block; font-family: var(--display); font-size: 1.5rem; color: var(--coin); font-weight: 400; }
.hero__stats span { font-size: .82rem; color: var(--ink-3); }

/* =========================================================
   MARQUEE — 스크롤 방향/속도에 반응
   ========================================================= */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(227,180,85,.06), transparent);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__track span {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.4vw, 2.5rem);
  padding-inline: 26px;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 26px;
}
.marquee__track span::after {
  content: "";
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--coin);
  flex: none;
}
.marquee--alt .marquee__track span { color: transparent; -webkit-text-stroke: 1px var(--ink-3); }

/* =========================================================
   BLOCK 공통
   ========================================================= */
.block { padding: var(--gap-y) 0; position: relative; }
.block__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: clamp(30px, 5vw, 52px); }
.block__head .idx {
  font-family: var(--mono); font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  color: var(--night);
  background: var(--coin);
  border-radius: 999px;
  padding: 4px 12px;
}
.block__title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.22;
  max-width: 22ch;
}
.prose { max-width: 62ch; color: var(--ink-2); font-weight: 300; display: grid; gap: 18px; margin-top: 22px; }
.prose strong { color: var(--ink); font-weight: 500; }

/* 소개 */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(30px, 5vw, 70px); align-items: start; }
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(160deg, rgba(227,180,85,.10), rgba(23,32,41,.6));
}
.quote-card p { font-family: var(--display); font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.5; }
.quote-card cite { display: block; margin-top: 18px; font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; color: var(--coin); font-style: normal; text-transform: uppercase; }

/* =========================================================
   이용 방법 — 스텝
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 26px); counter-reset: step; }
.step {
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: clamp(24px, 3vw, 34px);
  background: rgba(23, 32, 41, .55);
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}
.step:hover { border-color: var(--coin); transform: translateY(-4px); }
.step__num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: transparent;
  -webkit-text-stroke: 1.4px var(--coin);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.step h3 { font-size: 1.12rem; font-weight: 700; font-family: var(--sans); margin-bottom: 10px; }
.step p { font-size: .92rem; color: var(--ink-2); font-weight: 300; }
.step__coin { position: absolute; right: -22px; bottom: -22px; width: 96px; opacity: .12; will-change: transform; }

/* =========================================================
   프로그램
   ========================================================= */
.prog-list { border-top: 1px solid var(--line-soft); }
.prog {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: clamp(14px, 2.4vw, 30px);
  align-items: center;
  padding: clamp(22px, 3vw, 30px) 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s ease, padding-inline .3s ease;
}
.prog:hover { background: rgba(227,180,85,.05); padding-inline: 14px; }
.prog__no { font-family: var(--mono); font-size: .78rem; color: var(--ink-3); }
.prog__name { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 500; }
.prog__desc { display: block; font-size: .88rem; color: var(--ink-3); font-weight: 300; margin-top: 5px; }
.prog__meta {
  font-family: var(--mono); font-size: .76rem; letter-spacing: .06em;
  color: var(--coin);
  border: 1px solid rgba(227,180,85,.4);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}
.note { margin-top: 26px; font-size: .86rem; color: var(--ink-3); font-weight: 300; max-width: 70ch; }

/* =========================================================
   공간
   ========================================================= */
.space { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(16px, 2.4vw, 24px); margin-top: 12px; }
.space-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(180deg, rgba(23,32,41,.8), rgba(13,17,23,.4));
}
.space-card b { display: block; font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; color: var(--mint); margin-bottom: 12px; text-transform: uppercase; }
.space-card h3 { font-size: 1.06rem; font-weight: 700; font-family: var(--sans); margin-bottom: 8px; }
.space-card p { font-size: .9rem; color: var(--ink-2); font-weight: 300; }

/* =========================================================
   오시는 길
   ========================================================= */
.visit-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.info-rows { display: grid; gap: 2px; }
.info-row { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.info-row dt { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; color: var(--coin); text-transform: uppercase; padding-top: 5px; }
.info-row dd { font-size: .98rem; }
.info-row dd small { display: block; font-size: .82rem; color: var(--ink-3); margin-top: 4px; }
.map { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; background: var(--night-3); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05) brightness(.9); }
.disclaimer { margin-top: 26px; font-size: .82rem; color: var(--ink-3); font-weight: 300; border-left: 2px solid var(--coin-2); padding-left: 16px; }

/* =========================================================
   FOOTER — 새 디자인 + 스크롤 오브젝트
   ========================================================= */
.site-footer {
  position: relative;
  margin-top: clamp(60px, 9vw, 110px);
  padding-top: clamp(60px, 8vw, 100px);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(227,180,85,.16), transparent 62%),
    linear-gradient(180deg, var(--night-2), #080b0f);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
  z-index: 3;
}

/* 푸터로 떨어지는 코인 (스크롤 진행에 따라 낙하) */
.fall {
  position: absolute;
  top: 0;
  width: var(--s, 40px);
  height: var(--s, 40px);
  opacity: .55;
  will-change: transform;
  pointer-events: none;
}
.fall svg { width: 100%; height: 100%; }
.fall--1 { left: 7%;  --s: 46px; }
.fall--2 { left: 24%; --s: 30px; }
.fall--3 { left: 41%; --s: 56px; }
.fall--4 { left: 61%; --s: 34px; }
.fall--5 { left: 79%; --s: 48px; }
.fall--6 { left: 92%; --s: 26px; }

/* 푸터 대형 워드마크 — 스크롤에 따라 좌우 이동 */
.foot-word {
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: clamp(20px, 3vw, 30px);
  margin-bottom: clamp(34px, 5vw, 56px);
}
.foot-word__track {
  display: flex;
  width: max-content;
  gap: 40px;
  will-change: transform;
}
.foot-word__track b {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 10vw, 8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(241,236,225,.35);
  white-space: nowrap;
}
.foot-word__track b:nth-child(even) { color: var(--coin); -webkit-text-stroke: 0; opacity: .92; }

.foot-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: start; margin-bottom: clamp(38px, 5vw, 60px); }
.foot-claim { font-family: var(--display); font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.45; max-width: 18ch; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.foot-nav a { font-size: .87rem; color: var(--ink-2); transition: color .2s ease; }
.foot-nav a:hover { color: var(--coin); }

/* 사업자 정보 카드 */
.biz {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(13, 17, 23, .55);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.biz__head {
  display: flex; align-items: center; gap: 12px;
  padding: 15px clamp(18px, 3vw, 28px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(227,180,85,.07);
}
.biz__head span { font-family: var(--mono); font-size: .7rem; letter-spacing: .22em; color: var(--coin); text-transform: uppercase; }
.biz__head i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px var(--mint); flex: none; }

.biz__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.biz__item {
  padding: clamp(18px, 2.6vw, 26px) clamp(18px, 3vw, 28px);
  border-right: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}
.biz__item:first-child { border-top: 0; }
.biz__item dt { font-family: var(--mono); font-size: .66rem; letter-spacing: .2em; color: var(--ink-3); text-transform: uppercase; margin-bottom: 8px; }
.biz__item dd { font-size: .96rem; color: var(--ink); font-weight: 500; line-height: 1.6; }
.biz__item--wide { grid-column: 1 / -1; border-right: 0; }

.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  align-items: center; justify-content: space-between;
  padding: clamp(26px, 4vw, 38px) 0;
  margin-top: clamp(26px, 4vw, 38px);
  border-top: 1px solid var(--line-soft);
  font-size: .82rem;
  color: var(--ink-3);
}
.foot-bottom a:hover { color: var(--coin); }
.to-top {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .16em;
  color: var(--coin); text-transform: uppercase;
}
.to-top svg { width: 14px; height: 14px; }

/* =========================================================
   개인정보처리방침 페이지
   ========================================================= */
.doc { padding: clamp(60px, 9vw, 110px) 0 clamp(40px, 6vw, 70px); }
.doc h1 { font-family: var(--display); font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 14px; }
.doc__meta { font-family: var(--mono); font-size: .74rem; letter-spacing: .14em; color: var(--ink-3); margin-bottom: clamp(34px, 5vw, 54px); }
.doc section { padding: 26px 0; border-top: 1px solid var(--line-soft); }
.doc h2 { font-size: 1.1rem; font-weight: 700; font-family: var(--sans); margin-bottom: 12px; color: var(--coin); }
.doc p, .doc li { color: var(--ink-2); font-weight: 300; font-size: .95rem; }
.doc ul { margin-top: 10px; display: grid; gap: 8px; padding-left: 18px; list-style: disc; }

/* =========================================================
   반응형
   ========================================================= */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__coin { order: -1; width: min(220px, 58vw); justify-self: start; }
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(13, 17, 23, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 10px var(--pad) 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.2,.7,.3,1), opacity .3s ease;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav-cta { margin-top: 16px; text-align: center; justify-content: center; border-bottom: 0 !important; }
  .prog { grid-template-columns: 30px minmax(0, 1fr); }
  .prog__meta { grid-column: 2; justify-self: start; margin-top: 6px; }
  .orb { opacity: .38; }
  .coin-float--b, .coin-float--d { display: none; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero__stats div { min-width: 100px; }
  .info-row { grid-template-columns: 1fr; gap: 4px; }
  .biz__item { border-right: 0; }
  .coin-float { display: none; }
}

/* 모션 최소화 설정 존중 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb, .coin-float, .fall, .spin { display: none; }
  * { animation: none !important; }
}
