/* ============================================================
   Mazelto LP — orange edition
   見出しは明朝、本文はサンセリフ。淡いオレンジのティント地に
   細いグリッド線を重ね、セクション見出しはグラデーション文字。
   ============================================================ */

:root {
  /* ink */
  --ink:        #1F1A17;   /* 見出し・強い本文（warm near-black） */
  --ink-body:   #332C27;   /* 本文 */
  --ink-sub:    #6B615A;   /* 二次テキスト */

  /* brand orange */
  --brand:      #EA6A24;
  --brand-lt:   #F59B4A;
  --brand-dk:   #B8460F;   /* 淡地の上でコントラストを確保するテキスト用 */

  /* surfaces */
  --bg:         #FFFFFF;
  --tint:       #FFF0E2;
  --tint-2:     #FFF8F3;
  --line:       #EFE7E0;
  --line-2:     #E2D6CB;

  --max:  1120px;
  --pad:  clamp(20px, 5vw, 40px);
  --r-card: 16px;
  --r-pill: 128px;
  --ease: cubic-bezier(0.22, 0.75, 0.28, 1);

  --font:    "IBM Plex Sans JP", ui-sans-serif, system-ui, sans-serif;
  --font-en: "Geist", "IBM Plex Sans JP", ui-sans-serif, system-ui, sans-serif;
  --serif:   "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;

  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink-body);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* グラデーション文字 — セクション見出しとヒーロー2行目で共用 */
.grad,
.section-title {
  background: linear-gradient(100deg, var(--brand-dk) 0%, var(--brand) 42%, var(--brand-lt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px -18px rgba(31, 26, 23, .5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-en);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo-mark { width: 22px; height: 22px; color: var(--brand); flex: none; }

.nav {
  display: flex;
  gap: 28px;
  margin-inline-start: auto;
  font-size: 14px;
}
.nav a {
  position: relative;
  color: var(--ink-sub);
  text-decoration: none;
  padding-block: 4px;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */

.btn {
  --btn-py: 20px;
  --btn-px: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, var(--brand-lt) 0%, var(--brand) 52%, var(--brand-dk) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(184, 70, 15, .22);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(184, 70, 15, .3);
  filter: saturate(112%);
}
.btn-sm  { --btn-py: 11px; --btn-px: 22px; font-size: 14px; margin-inline-start: 4px; }
.btn-lg  { --btn-py: 24px; --btn-px: 32px; font-size: 16px; }

.btn-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .9);
  flex: none;
}
.btn-arrow { font-size: 19px; line-height: 1; margin-inline-start: auto; padding-inline-start: 8px; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-sub);
  text-decoration: none;
  padding-block: 8px;
  border-bottom: 1px solid var(--line-2);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.btn-text::after { content: "\203A"; font-size: 17px; }
.btn-text:hover { color: var(--brand-dk); border-color: var(--brand); }

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(140px, 20vh, 200px) clamp(80px, 12vh, 130px);
  background: linear-gradient(180deg, var(--tint) 0%, var(--tint-2) 46%, #fff 100%);
}

/* 細いグリッド線 */
.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to right,  rgba(184, 70, 15, .07) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(to bottom, rgba(184, 70, 15, .07) 0 1px, transparent 1px 88px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .35) 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .35) 70%, transparent 100%);
}

.hero-inner { position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--brand-dk);
  margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(30px, 5.4vw, 62px);
  line-height: 1.28;
  letter-spacing: .01em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-title .grad { display: inline-block; }

.hero-lead {
  max-width: 46em;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-sub);
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* 左端の縦書き Scroll Down */
.scroll-cue {
  position: absolute;
  left: clamp(10px, 2.2vw, 26px);
  bottom: 96px;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--ink-sub);
  opacity: .72;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 56px;
  margin: 14px auto 0;
  background: linear-gradient(180deg, var(--line-2), transparent);
}

/* ------------------------------------------------------------
   Section shell
   ------------------------------------------------------------ */

.section { padding-block: clamp(72px, 11vw, 128px); }
.section-tint {
  background: linear-gradient(180deg, #fff 0%, var(--tint-2) 22%, var(--tint-2) 78%, #fff 100%);
}

.section-head { margin-bottom: 48px; }

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.4;
  letter-spacing: .02em;
  margin-bottom: 14px;
}

.section-lead {
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  max-width: 40em;
}

.section-note {
  max-width: 52em;
  font-size: 15px;
  color: var(--ink-sub);
  margin-bottom: 44px;
}

/* 番号ラベル（point 01 / works 01） */
.point-label,
.work-no {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--brand-dk);
  margin-bottom: 10px;
}
.point-label span {
  color: var(--ink-sub);
  font-weight: 500;
  margin-inline-end: 4px;
}

/* フロステッドカードの共通地 */
.service-card,
.why-card,
.stat-card,
.check-list li,
.flow-grid li,
.price-block {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .5) 100%);
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: 0 1px 2px rgba(31, 26, 23, .03), 0 12px 32px -24px rgba(31, 26, 23, .4);
}

/* ------------------------------------------------------------
   Services
   ------------------------------------------------------------ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(31, 26, 23, .04), 0 26px 48px -30px rgba(184, 70, 15, .55);
}

.service-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.04); }

.service-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }

.service-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
}
.service-body h3 small {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--brand-dk);
  margin-top: 4px;
}

.service-desc { font-size: 14.5px; color: var(--ink-sub); margin-bottom: 20px; }

.service-body ul { list-style: none; display: grid; gap: 14px; }
.service-body ul li {
  position: relative;
  padding-inline-start: 18px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-sub);
}
.service-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .7;
}
.service-body ul li strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.service-body .service-note {
  margin-top: auto;
  padding-top: 20px;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--ink-sub);
  border-top: 1px dashed var(--line-2);
}

/* ------------------------------------------------------------
   Challenges
   ------------------------------------------------------------ */

.check-list { list-style: none; display: grid; gap: 16px; }
.check-list li {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.check-list li:hover { border-color: var(--brand-lt); transform: translateX(3px); }

.check {
  flex: none;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-lt), var(--brand));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(184, 70, 15, .25);
}

.check-list strong {
  display: block;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.check-list p { font-size: 14px; color: var(--ink-sub); }

/* ------------------------------------------------------------
   Why
   ------------------------------------------------------------ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.why-card { padding: 34px 30px; }
.why-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--brand-dk);
  padding: 5px 12px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .7);
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.why-card p { font-size: 14.5px; color: var(--ink-sub); }

.why-cross {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
  text-align: center;
}

/* ------------------------------------------------------------
   Works
   ------------------------------------------------------------ */

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.work-card h3 {
  font-family: var(--serif);
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 10px;
}
.work-card p { font-size: 13.5px; color: var(--ink-sub); }

.work-video {
  aspect-ratio: 16 / 9;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1F1A17;
  margin-bottom: 18px;
  box-shadow: 0 12px 32px -24px rgba(31, 26, 23, .8);
}
.work-video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ------------------------------------------------------------
   Results (stats)
   ------------------------------------------------------------ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 24px;
}
.stat-card { padding: 30px 28px 28px; }

.stat-title { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 18px; }
.stat-metric {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--brand-dk);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--tint);
  margin-bottom: 12px;
}
.stat-value {
  font-family: var(--font-en);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-sub);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.stat-value small { font-size: .55em; font-weight: 500; margin-inline-start: 1px; }
.stat-value span  { color: var(--line-2); margin-inline: 6px; font-weight: 400; }
.stat-value em    { font-style: normal; color: var(--brand-dk); }

.stat-note { font-size: 13px; color: var(--ink-sub); }

/* ------------------------------------------------------------
   Profile
   ------------------------------------------------------------ */

.profile-inner {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.profile-photo {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--tint) 0%, #fff 100%);
  box-shadow: 0 1px 2px rgba(31, 26, 23, .03), 0 20px 44px -30px rgba(184, 70, 15, .6);
}
.profile-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.profile-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 27px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.profile-name small {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-sub);
  letter-spacing: .02em;
  margin-inline-start: 10px;
}
.profile-role {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--brand-dk);
  margin-bottom: 22px;
}
.profile-body p { font-size: 14.5px; color: var(--ink-sub); margin-bottom: 16px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tags span {
  font-size: 12px;
  color: var(--ink-sub);
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .75);
}

/* ------------------------------------------------------------
   Pricing
   ------------------------------------------------------------ */

.price-block { padding: 32px 30px; }
.price-block + .price-block { margin-top: 28px; }

.price-block h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.price-no {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-lt), var(--brand));
  color: #fff;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  flex: none;
  box-shadow: 0 4px 10px rgba(184, 70, 15, .25);
}

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table { width: 100%; border-collapse: collapse; min-width: 560px; }
thead th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-sub);
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-2);
  white-space: nowrap;
}
tbody td {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-sub);
  padding: 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: 0; }
tbody td:first-child { font-weight: 600; color: var(--ink); }
td.price {
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--brand-dk);
  white-space: nowrap;
}

.price-foot { font-size: 12.5px; line-height: 1.9; color: var(--ink-sub); margin-top: 18px; }

/* ------------------------------------------------------------
   Flow
   ------------------------------------------------------------ */

.flow-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.flow-grid li { padding: 28px 24px; }
.flow-no {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-lt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.flow-grid h3 {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 8px;
}
.flow-grid p { font-size: 13.5px; color: var(--ink-sub); }

/* ------------------------------------------------------------
   Contact
   ------------------------------------------------------------ */

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 13vw, 140px);
  background: linear-gradient(180deg, #fff 0%, var(--tint-2) 40%, var(--tint) 100%);
  text-align: center;
}
.contact-grid {
  -webkit-mask-image: linear-gradient(0deg, #000 0%, transparent 90%);
  mask-image: linear-gradient(0deg, #000 0%, transparent 90%);
}
.contact-inner { position: relative; display: flex; flex-direction: column; align-items: center; }

.contact-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(27px, 4.4vw, 46px);
  line-height: 1.36;
  letter-spacing: .01em;
  color: var(--ink);
  margin-bottom: 22px;
}
.contact-lead {
  max-width: 40em;
  font-size: clamp(14.5px, 1.3vw, 16px);
  color: var(--ink-sub);
  margin-bottom: 40px;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.site-footer {
  padding-block: 40px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px 32px;
  flex-wrap: wrap;
}
.footer-inner .logo { font-size: 17px; }
.footer-links { display: flex; gap: 24px; margin-inline-start: auto; font-size: 13.5px; }
.footer-links a { color: var(--ink-sub); text-decoration: none; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--brand-dk); }
.site-footer small { font-size: 12px; color: var(--ink-sub); width: 100%; }

/* ------------------------------------------------------------
   Reveal
   ------------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */

@media (max-width: 900px) {
  .nav { display: none; }
  .btn-sm { margin-inline-start: auto; }

  .why-grid { grid-template-columns: 1fr; }

  .profile-inner { grid-template-columns: 1fr; justify-items: center; }
  .profile-photo { max-width: 260px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .scroll-cue { display: none; }
  .hero { padding-block: 116px 72px; }
  .hero-actions { gap: 18px; }
  .btn-lg { --btn-py: 20px; --btn-px: 24px; font-size: 14px; width: 100%; justify-content: center; }
  .btn-lg .btn-arrow { margin-inline-start: 0; }
  .service-body, .price-block, .check-list li, .why-card, .stat-card, .flow-grid li { padding-inline: 20px; }
  .footer-links { margin-inline-start: 0; width: 100%; }

  /* 料金表は横スクロールさせず、1行を1ブロックに積み直す。
     横スクロールのままだと肝心の料金列が画面外に隠れてしまうため。 */
  table { min-width: 0; }
  thead { display: none; }
  tbody, tbody tr, tbody td { display: block; width: 100%; }
  tbody tr {
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
  }
  tbody tr:last-child { border-bottom: 0; padding-bottom: 0; }
  tbody td { padding: 0; border: 0; }
  tbody td:first-child { font-size: 15px; line-height: 1.6; margin-bottom: 6px; }
  tbody td:nth-child(2) { font-size: 13px; margin-bottom: 10px; }
  td.price {
    display: inline-block;
    width: auto;
    font-size: 13.5px;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    background: var(--tint);
  }
}

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