/* ==========================================================
   共通スタイル
   色・書体は :root にまとめてあります。ここだけ触れば
   サイト全体の印象を変えられます。
   ========================================================== */

:root {
  /* 色 —— 深緑を軸に、ニュートラルもわずかに緑へ寄せています */
  --ink:          #17211e;
  --ink-soft:     #5f6d68;
  --ink-faint:    #8b9691;
  --accent:       #1b6b5a;
  --accent-deep:  #0d3830;
  --accent-tint:  #eaf2ef;
  --paper:        #ffffff;
  --paper-soft:   #f4f7f6;
  --line:         #dde4e1;
  --line-strong:  #b9c7c1;
  --warn:         #7a5a12;
  --warn-tint:    #faf4e6;
  --pay:          #9c3b33;
  --pay-tint:     #fbeeec;

  /* 書体 —— 見出しは明朝、本文はゴシック */
  --serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP",
    "MS PMincho", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic,
    "Noto Sans JP", Meiryo, system-ui, sans-serif;

  /* 寸法 */
  --shell: 68rem;   /* 全幅セクション */
  --col:   44rem;   /* 読み物の段 */
  --radius: 6px;

  color-scheme: light;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
}

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

a { color: var(--accent); text-underline-offset: 3px; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 段組み ---------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 22px;
}

.col {
  width: 100%;
  max-width: var(--col);
}

/* ---------- ヘッダー ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.masthead .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4px 16px;
  min-height: 58px;
  padding-block: 8px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
  min-width: 0;
}

.wordmark a { color: inherit; text-decoration: none; }

.masthead nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
}

.masthead nav a {
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: 4px;
  border-bottom: 2px solid transparent;
}

.masthead nav a:hover { color: var(--accent); }

.masthead nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

/* ---------- ヒーロー ---------- */

.hero {
  background: var(--accent-deep);
  color: #fff;
  padding-block: 56px 0;
}

.hero .eyebrow { color: #7fae9f; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 5.6vw, 2.5rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  text-wrap: balance;
}

.hero .hero-lead {
  color: #b8cec7;
  font-size: 0.98rem;
  margin: 0 0 44px;
  max-width: 34rem;
}

.hero--sub { padding-bottom: 48px; }
.hero--sub h1 { font-size: clamp(1.45rem, 4.6vw, 2rem); margin-bottom: 12px; }
.hero--sub .hero-lead { margin-bottom: 0; }

/* 数字3点の要約 */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stats > div {
  padding: 20px 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding-right: 12px;
}

.stats > div:last-child { border-right: 0; }

.stat-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: #7fae9f;
  margin-bottom: 6px;
}

.stat-value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1rem, 4.2vw, 1.7rem);
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.stat-value small {
  font-size: 0.62em;
  font-family: var(--sans);
  color: #b8cec7;
  margin-left: 2px;
}

/* ---------- セクション共通 ---------- */

.band { padding-block: 68px; }
.band + .band { padding-top: 0; }
.band--soft { background: var(--paper-soft); padding-block: 68px; }
.band--soft + .band { padding-top: 68px; }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0 0 10px;
}

.band h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 3.6vw, 1.7rem);
  line-height: 1.5;
  margin: 0 0 14px;
  text-wrap: balance;
}

.band h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 10px;
}

.band p { margin: 0 0 18px; }
.band > .shell > .col > p:last-child { margin-bottom: 0; }

.section-lead {
  color: var(--ink-soft);
  margin-bottom: 34px;
}

.note { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.75; }
.note a { color: var(--accent); }

/* ---------- 4フェーズのカード ---------- */

.phases {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 22px;
}

@media (min-width: 860px) {
  .phases { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.phase {
  background: var(--paper);
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phase-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.phase-num {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: lining-nums;
}

.phase-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

.phase-term {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-left: auto;
  white-space: nowrap;
}

.phase ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phase ul li {
  padding-left: 15px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.7;
}

.phase ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 1px;
  background: var(--line-strong);
}

.phase ul li strong { color: var(--ink); font-weight: 700; }

.tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 11px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent);
}

.tag--pay { background: var(--pay-tint); color: var(--pay); }
.tag--free { background: var(--paper-soft); color: var(--ink-soft); }

/* ---------- 料金カード ---------- */

.plans {
  display: grid;
  gap: 20px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

@media (min-width: 760px) {
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.plan--lead { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }

.plan .badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.plan h3 { margin: 0 0 2px; font-size: 1.2rem; }

.plan .for { font-size: 0.85rem; color: var(--ink-soft); margin: 0 0 16px; }

.plan .amount {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.plan .amount small {
  font-family: var(--sans);
  font-size: 0.42em;
  color: var(--ink-soft);
  margin-left: 4px;
}

.plan ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.plan ul li { padding-left: 20px; position: relative; line-height: 1.7; }

.plan ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.55em;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- 料金の行リスト（表の代わり） ---------- */

.rates {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.rates > li {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: grid;
  gap: 4px 24px;
}

@media (min-width: 720px) {
  .rates > li {
    grid-template-columns: minmax(0, 15rem) minmax(0, 8.5rem) minmax(0, 1fr);
    align-items: baseline;
  }
}

.rate-name { font-weight: 700; }

.rate-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.rate-desc { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.7; }

/* ---------- 保守プランの3枚 ---------- */

.cards {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

@media (min-width: 820px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  background: var(--paper);
}

.card h3 { margin: 0 0 4px; font-size: 1.05rem; }

.card .amount {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.card .amount small { font-family: var(--sans); font-size: 0.46em; color: var(--ink-soft); }

.card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; line-height: 1.8; }

/* ---------- 定義リスト（表の代わり・条件の記載） ---------- */

.spec {
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
}

.spec > div {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  display: grid;
  gap: 6px 28px;
}

@media (min-width: 700px) {
  .spec > div { grid-template-columns: minmax(0, 13rem) minmax(0, 1fr); }
}

.spec dt {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.7;
}

.spec dd { margin: 0; }
.spec dd > :last-child { margin-bottom: 0; }
.spec dd p { margin: 0 0 10px; }

/* ---------- 精算率のリスト ---------- */

.settle {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.settle > li {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 20px;
  justify-content: space-between;
}

.settle .when { font-size: 0.95rem; min-width: 0; }

.settle .rate {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--accent);
}

.settle > li:first-child .rate { color: var(--ink-faint); }

/* ---------- ○×の対比 ---------- */

.duo {
  display: grid;
  gap: 20px;
  margin-bottom: 8px;
}

@media (min-width: 720px) {
  .duo { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
}

.duo > div {
  border-top: 2px solid var(--line-strong);
  padding-top: 18px;
}

.duo > div.is-yes { border-top-color: var(--accent); }

.duo ul { list-style: none; margin: 0; padding: 0; font-size: 0.93rem; }

.duo li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 9px;
  line-height: 1.75;
}

.duo .yes li::before,
.duo .no li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.95em;
  font-weight: 700;
}

.duo .yes li::before { content: "○"; color: var(--accent); }
.duo .no li::before  { content: "×"; color: var(--pay); }

/* ---------- 早見表（ダイジェスト） ---------- */

.digest {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}

@media (min-width: 620px) { .digest { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 940px) { .digest { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.digest > div { background: var(--paper); padding: 22px 20px; }

.digest dt {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.digest dd {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ---------- 目次（丸いリンク） ---------- */

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}

.jump a {
  display: inline-block;
  font-size: 0.82rem;
  line-height: 1.6;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  text-decoration: none;
  color: var(--ink-soft);
  background: var(--paper);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.jump a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- 注意ボックス ---------- */

.callout {
  border-left: 3px solid var(--line-strong);
  padding: 4px 0 4px 20px;
  margin-bottom: 24px;
}

.callout--warn { border-left-color: var(--warn); }
.callout--warn .callout-title { color: var(--warn); }

.callout-title {
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}

.callout p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; line-height: 1.8; }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }

.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 34px 18px 0;
  position: relative;
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1.7;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 1.55em;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after { transform: rotate(-135deg); }

.faq .answer {
  padding: 0 0 22px;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

.faq .answer > :last-child { margin-bottom: 0; }

/* ---------- 制作サンプルの一覧（works.html） ---------- */

.works {
  display: grid;
  gap: 24px;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

@media (min-width: 760px) {
  .works { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
}

.work {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.work:hover { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }

.work img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.work-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.work-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.work h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.work-desc { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.8; margin: 0; }

.work-open {
  margin-top: auto;
  padding-top: 4px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--accent);
}

.work-open::after { content: " →"; }

/* ---------- 次ページへの導線 ---------- */

.next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  transition: border-color 0.15s ease;
}

.next:hover { border-color: var(--accent); }

.next .next-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 4px;
}

.next .next-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.next .next-desc { font-size: 0.85rem; color: var(--ink-soft); margin: 4px 0 0; }
.next .arrow { color: var(--accent); font-size: 1.3rem; line-height: 1; }

/* ---------- CTA ---------- */

.cta {
  background: var(--accent-deep);
  color: #fff;
  padding-block: 56px;
  text-align: center;
}

.cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  margin: 0 0 12px;
}

.cta p { color: #b8cec7; font-size: 0.93rem; margin: 0 0 26px; }

.button {
  display: inline-block;
  background: #fff;
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 46px;
  border-radius: 999px;
}

.button:hover { background: var(--accent-tint); }

/* ---------- フッター ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 36px;
  font-size: 0.83rem;
  color: var(--ink-soft);
}

.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.site-footer a { color: var(--ink-soft); }

/* ---------- お問い合わせフォーム ---------- */

.form { max-width: var(--col); }

.field { margin-bottom: 26px; }

.field > label,
.field > .label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 7px;
}

/* 必須・任意のしるし */
.req, .opt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: 0.12em;
  white-space: nowrap;
}

.req { background: var(--pay-tint); color: var(--pay); }
.opt { background: var(--paper-soft); color: var(--ink-soft); }

.field .hint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 9px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;          /* スマホで拡大されないよう16px以上を保つ */
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.field textarea { min-height: 12em; resize: vertical; }

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: right 20px center, right 14px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.field input:user-invalid,
.field textarea:user-invalid { border-color: var(--pay); }

/* ラジオ・チェックボックス */
.choices { display: flex; flex-direction: column; gap: 10px; }

.choice, .consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.93rem;
  line-height: 1.7;
  cursor: pointer;
}

.choice input, .consent input {
  flex: none;
  width: 19px;
  height: 19px;
  margin: 0.28em 0 0;
  accent-color: var(--accent);
}

.consent {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  padding: 16px 18px;
  margin-bottom: 26px;
}

/* 送信ボタン */
.submit {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 16px 52px;
  cursor: pointer;
}

.submit:hover { background: var(--accent-deep); }

.submit:disabled { background: var(--ink-faint); cursor: default; }

.submit:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* 送信結果の表示 */
.form-status {
  display: none;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 26px;
  font-size: 0.92rem;
  line-height: 1.8;
}

.form-status.is-shown { display: block; }
.form-status p { margin: 0 0 8px; }
.form-status > :last-child { margin-bottom: 0; }

.form-status--ok {
  background: var(--accent-tint);
  border: 1px solid var(--accent);
  color: var(--accent-deep);
}

.form-status--ng {
  background: var(--pay-tint);
  border: 1px solid var(--pay);
  color: var(--pay);
}

/* 迷惑メール対策の隠しフィールド（人には見せません） */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- スマホ ---------- */

@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .band { padding-block: 52px; }
  .band--soft { padding-block: 52px; }
  .band--soft + .band { padding-top: 52px; }
  .hero { padding-top: 40px; }
  .masthead nav ul { gap: 13px; font-size: 0.78rem; }
  .stats > div { padding-right: 8px; }
  .settle > li { gap: 12px; }
  .submit { width: 100%; padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
