@charset "UTF-8";
/* 高島ライフ 記事ページ 共通CSS
   ─ 原稿=記事/*.md ／ 生成=tools/build-articles.mjs ／ このファイルを直接編集して全記事に効かせる
   ─ 日本語の作法は ../../../web-knowledge/日本語改行の標準.md に従う(chを使わない・emで組む) */

:root {
  --bg: #ffffff;
  --cream: #f6f4ef;
  --cream-2: #fbfaf7;
  --cream-3: #ece7dd;
  --ink: #1e2630;
  --ink-soft: #4c5663;
  --muted: #636d7a; /* ★2026-07-31 #8893a0から。白の上で3.1:1＝AA未達だった（5.3:1に） */
  --line: #e2e7ec;
  --line-2: #eef2f6;
  --lake: #2e5d8a;
  --lake-deep: #173551;
  --sand: #8f6a25; /* ★2026-07-31 #b58a3aから。PRバッジの白文字が3.2:1＝AA未達だった（4.9:1に） */
  --maxw: 1120px;
  --read: 34em; /* 本文の行長=全角34文字。日本語の読みやすい35〜45文字帯 */
}

/* ── 文字サイズの段（2026-07-31 中山さんと決定）────────────────────────
 *   12px … ごく小さいラベル（カードの分類・絞り込みの数字・PRバッジ）
 *   13px … キャプション・日付・注記・店情報のラベル・タグ・フッター
 *   15px … 店情報の中身・カードの説明文・立場の一文・ボタン
 *   17.5px … 本文（スマホ16.5px）／19px … 見出し級の小（店名・ロゴ）
 *   それ以上（h2・記事タイトル）は clamp で可変
 * ★中間の値（11.5 / 12.5 / 13.5 / 14 / 14.5）は使わない。以前は小さい方に7段あったが、
 *   人は0.5〜1pxの差を見分けられず「なんとなく揃っていない」とだけ感じる＝段を減らすほど揃って見える。
 * ★行間はTailwind等の欧文の値をそのまま使わない（和文は1.7〜2.0が要る＝本文は1.95）。
 * ★色のコントラストはWCAG AA（小さい文字＝4.5:1）を満たすこと。--muted と --sand は
 *   2026-07-31 に暗くして通した（それぞれ 3.1:1 / 3.2:1 で落ちていた）。 */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 400;
  font-size: 17.5px;
  line-height: 1.95;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-break: strict;
  word-break: normal;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
/* ★見出しの text-wrap: balance も外した（2026-07-30）。行の長さを揃えるために
   1行目をわざと短く切るので、2行になる見出しで不自然な位置に折れる。
   そもそも見出しは15文字以内で書く（記事/_記事の作り方.md）＝2行にしない方が本筋。 */
/* ★本文の text-wrap: pretty は外した（2026-07-30）。
   Safari（iPhone）は段落全体を見て行を組み直すので、日本語だと行末の文字を前の行から
   引き戻し、右側に2〜3文字ぶんの隙間が空く。Chromeは最後の1〜2行しか触らないため
   この症状が再現せず、原因の切り分けに時間がかかった。既定（auto）＝入るところまで入れる。 */
p { text-wrap: auto; }
.nb { display: inline-block; }
::selection { background: rgba(46, 93, 138, 0.14); }

/* ── ヘッダー（LPの黒ではなく、媒体らしく軽い） ───────────────── */
.mast {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.mast-in {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.mast a { text-decoration: none; }
.mast-logo { display: flex; align-items: baseline; gap: 9px; }
.mast-logo b { font-family: "Shippori Mincho", serif; font-weight: 800; font-size: 19px; letter-spacing: 0.04em; }
.mast-logo i {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 12px;
  letter-spacing: 0.14em; color: var(--muted);
}
.mast-nav { display: flex; align-items: center; gap: 22px; font-size: 13px; letter-spacing: 0.04em; }
.mast-nav a { color: var(--ink-soft); }
.mast-nav a:hover { color: var(--lake); }
.mast-nav .ig {
  padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink); font-size: 13px;
}
.mast-nav .ig:hover { border-color: var(--lake); color: var(--lake); }

/* ── 記事の入り（文字が先・写真は後。雑誌の見開きの入り方） ─────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.read { max-width: var(--read); margin-left: auto; margin-right: auto; }

.art-head { padding: 62px 0 0; }
.kicker {
  display: flex; align-items: center; gap: 13px; flex-wrap: wrap;
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 600;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lake);
}
.kicker .ja {
  font-family: "Zen Kaku Gothic New", sans-serif; font-style: normal; font-weight: 500;
  font-size: 12px; letter-spacing: 0.1em; text-transform: none; color: var(--ink-soft);
}
.kicker::before {
  content: ""; width: 30px; height: 1px; background: var(--lake); opacity: 0.55; flex: none;
}
.badge-pr {
  font-family: "Zen Kaku Gothic New", sans-serif; font-style: normal; font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; color: #fff; background: var(--sand);
  padding: 3px 9px; border-radius: 3px; text-transform: none;
}
.art-title {
  margin: 20px 0 0; font-family: "Shippori Mincho", serif; font-weight: 700;
  font-size: clamp(31px, 4.6vw, 52px); line-height: 1.34; letter-spacing: 0.01em;
}
.art-title small {
  display: block; margin-top: 14px; font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 500; font-size: 0.4em; letter-spacing: 0.1em; color: var(--muted);
}
.art-lead {
  margin: 24px 0 0; font-size: 1.06em; line-height: 2.0; color: var(--ink-soft);
  max-width: 30em;
}
.art-meta {
  margin: 30px 0 0; padding-top: 18px; border-top: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; letter-spacing: 0.06em; color: var(--muted);
}
.art-meta time { font-family: "Cormorant Garamond", serif; font-size: 15px; letter-spacing: 0.1em; }

/* 表紙 */
.cover { margin: 40px 0 0; }
.cover img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
/* 表紙も縦2枚組でいける（リール素材だけで組む場合）。
   幅は本文と同じ＝縦の軸が1本に揃い、表紙で画面が埋まらない（9:16は幅を広げるほど高くなる） */
.cover .duo { max-width: var(--read); margin: 0 auto; }
.cover .duo img { aspect-ratio: 9 / 16; }
.cover figcaption {
  margin: 12px auto 0; max-width: var(--read); font-size: 13px; line-height: 1.8; color: var(--muted);
}
/* 写真がまだ無いときの表紙（崩れた見た目にせず、活字で成立させる） */
.cover-type {
  margin: 44px 0 0; aspect-ratio: 16 / 7; background: var(--cream);
  border: 1px solid var(--cream-3); display: grid; place-items: center; text-align: center; padding: 24px;
}
.cover-type b {
  display: block; font-family: "Shippori Mincho", serif; font-weight: 700;
  font-size: clamp(20px, 3vw, 30px); letter-spacing: 0.22em; color: var(--lake-deep);
}
.cover-type i {
  display: block; margin-top: 12px; font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 13px; letter-spacing: 0.16em; color: var(--muted);
}

/* ── 本文 ─────────────────────────────────────────────── */
/* ★行長は .art-body 側で1回だけ決める（子要素ごとに max-width を持たせると
   見出しの font-size で em の実寸が変わり、左端がずれる。実際にずれた） */
.art-body { padding: 54px 0 0; max-width: var(--read); margin: 0 auto; }
.art-body p { margin: 0 0 1.75em; }

/* ★両端揃え（justify）は試したが却下（2026-07-30 中山さん判断＝字間が動いて読みにくい）。
   右端が揃わないのは端数のせい（下の「行末の端数」の説明を参照）。 */
.art-body h2 {
  margin: 3.1em 0 1.1em; font-family: "Shippori Mincho", serif; font-weight: 700;
  font-size: clamp(21px, 2.5vw, 27px); line-height: 1.6;
}
.art-body h2::before {
  /* ★長さで存在感を出す・太さは2pxのまま（3pxにすると明朝の縦線より太くなりUIの区切り線に見える）
     opacity は掛けない＝薄い水色に見えて「褪せた線」になる */
  content: ""; display: block; width: 46px; height: 2px; background: var(--lake);
  margin-bottom: 0.7em;
}
.art-body h3 {
  margin: 2.4em 0 0.9em; font-weight: 700; font-size: 1.02em; letter-spacing: 0.02em; color: var(--lake-deep);
}
.art-body ul { margin: 0 0 1.9em; padding-left: 1.4em; }
.art-body li { margin-bottom: 0.5em; }
.art-body a { color: var(--lake); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.art-body hr {
  margin: 3.2em auto; border: 0; height: 1px; background: var(--line); width: 6em;
}

/* 店主の言葉（取材記事の主役） */
.art-body blockquote {
  margin: 2.6em 0; padding: 0 0 0 1.5em; border-left: 2px solid var(--lake);
  font-family: "Shippori Mincho", serif; font-size: 1.12em; line-height: 2.05; color: var(--lake-deep);
}
.art-body blockquote p { margin: 0 0 0.9em; }
.art-body blockquote cite {
  display: block; font-family: "Zen Kaku Gothic New", sans-serif; font-style: normal;
  font-size: 0.72em; letter-spacing: 0.06em; color: var(--muted);
}

/* 抜き文（★中央寄せはやめた＝本文の流れが切れて見えるため。上下の細い罫で挟む左寄せ）
   ★text-wrap: balance は外した（2026-07-30）。2行以上になると全行を同じ長さに揃えるため、
     1行目をわざと短く切って右が大きく空く。balance が効くのは1〜2語で収まる見出しだけ。 */
.pull {
  margin: 2.8em 0; padding: 0.9em 0; font-family: "Shippori Mincho", serif;
  font-weight: 700; font-size: clamp(18px, 2.2vw, 23px); line-height: 1.75; color: var(--lake-deep);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

/* 写真 */
.art-body figure { margin: 2.8em 0; }
.art-body figure img { width: 100%; }

/* ★縦位置（リールの素材）は2枚組で置く。9:16を1枚どんと置くと本文が縦に流れてしまう
   （本文幅595pxなら高さ1,058px＝画面がほぼ埋まる）。2枚並べると高さが約半分になり、
   1枚では出せない「引き＋寄り」の対比も作れる。 */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.duo img, .duo .ph { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
/* 縦1枚だけのとき（対になる素材がない場合の逃げ道）＝**2枚組の1枚と同じ大きさに揃える**
   （2026-07-31 中山さん指定。1枚だけ大きく出ると、同じページの中で写真の寸法がばらつく） */
figure.tall img { width: calc((100% - 10px) / 2); aspect-ratio: 9 / 16; object-fit: cover; margin: 0 auto; }
.art-body figcaption { margin-top: 11px; font-size: 13px; line-height: 1.8; color: var(--muted); }
.art-body figure.wide {
  max-width: none; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}
.art-body figure.wide img { aspect-ratio: 16 / 9; object-fit: cover; }
.art-body figure.wide figcaption { max-width: var(--read); margin-left: auto; margin-right: auto; padding: 0 28px; }
.ph {
  background: var(--cream); border: 1px dashed var(--cream-3); aspect-ratio: 16 / 10;
  display: grid; place-items: center; color: var(--muted);
  font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 13px; letter-spacing: 0.14em;
}

/* ★リールのiframe埋め込みは廃止（2026-07-30）。埋め込みの再生ボタンは再生ではなく
   Instagramへの遷移で、画面1枚ぶんの離脱ボタンになっていたため（滞在を稼げていなかった）。
   代わりに、リールのカバー画像を自分で置いて、画像とテキストの両方からInstagramへ送る。 */
.art-body figure.reel-card { margin: 3.2em 0; text-align: center; }
.art-body figure.reel-card img {
  width: auto; max-width: 62%; max-height: 76vh; margin: 0 auto; display: block;
  border: 1px solid var(--line);
}
.art-body figure.reel-card figcaption a {
  color: var(--lake); text-decoration: underline; text-underline-offset: 3px;
}

/* ── 店の情報（営業時間・価格は載せない＝更新負債を作らない） ───── */
.info { margin: 4.6em auto 0; max-width: var(--read); background: var(--cream-2); border: 1px solid var(--cream-3); padding: 30px 30px 26px; }
.info h2 {
  margin: 0 0 20px; font-family: "Shippori Mincho", serif; font-weight: 700; font-size: 18px;
}
.info dl { margin: 0; display: grid; grid-template-columns: 6.2em 1fr; gap: 11px 16px; font-size: 15px; line-height: 1.85; }
/* ★ラベルは折らない（390pxで「公式サイ／ト」と割れていた・2026-07-31） */
.info dt { color: var(--muted); font-size: 13px; letter-spacing: 0.06em; white-space: nowrap; }
.info dd { margin: 0; }
.info a { color: var(--lake); text-decoration: underline; text-underline-offset: 3px; }
.info-note { margin: 20px 0 0; padding-top: 16px; border-top: 1px solid var(--cream-3); font-size: 13px; line-height: 1.85; color: var(--muted); }

/* 記事末尾のタグ */
.taglist { margin: 1.6em auto 0; max-width: var(--read); display: flex; flex-wrap: wrap; gap: 8px; }
.taglist a {
  font-size: 13px; letter-spacing: 0.04em; color: var(--ink-soft); text-decoration: none;
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px;
}
.taglist a:hover { border-color: var(--lake); color: var(--lake); }

/* 一覧の行き先ナビ */
.idx-nav { margin: 0 0 40px; padding: 22px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.idx-nav .all {
  display: inline-block; margin-bottom: 16px; font-size: 13px; color: var(--lake);
  text-decoration: underline; text-underline-offset: 3px;
}
.nav-row { display: flex; gap: 16px; align-items: baseline; margin-bottom: 12px; }
.nav-row:last-child { margin-bottom: 0; }
.nav-row > b {
  /* ★5em＝「どんな時」「席・眺め」の4文字が折り返さない幅（3.6emだと2行に割れる） */
  flex: none; width: 5em; font-family: "Shippori Mincho", serif; font-weight: 700;
  font-size: 13px; color: var(--muted);
}
.nav-links { display: flex; flex-wrap: wrap; gap: 7px; }
.nav-links a, .nav-links span {
  display: inline-flex; align-items: baseline; gap: 6px; font-size: 13px; letter-spacing: 0.02em;
  text-decoration: none; border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; color: var(--ink);
}
.nav-links a:hover { border-color: var(--lake); color: var(--lake); }
.nav-links span.on { background: var(--lake-deep); border-color: var(--lake-deep); color: #fff; }
.nav-links i {
  font-family: "Cormorant Garamond", serif; font-style: normal; font-size: 12px; color: var(--muted);
}
.nav-links span.on i { color: rgba(255, 255, 255, 0.6); }

/* ── 立場の明示（無料＝掲載料なし／有料＝PR） ─────────────── */
.stance { margin: 2.4em auto 0; max-width: var(--read); border-left: 2px solid var(--cream-3); padding: 2px 0 2px 18px; font-size: 15px; line-height: 1.95; color: var(--ink-soft); }
.stance b { color: var(--ink); }
.stance.pr { border-left-color: var(--sand); }
.stance a { color: var(--lake); }

/* ── 次の記事 ─────────────────────────────────────────── */
.related { margin: 84px 0 0; padding: 56px 0 0; border-top: 1px solid var(--line-2); }
.related h2 {
  margin: 0 0 26px; font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 600;
  font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lake);
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { display: block; text-decoration: none; }
.card .thumb { aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.card:hover .thumb img { transform: scale(1.035); }
.card .thumb.type { display: grid; place-items: center; border: 1px solid var(--cream-3); }
.card .thumb.type span { font-family: "Shippori Mincho", serif; font-weight: 700; font-size: 17px; letter-spacing: 0.16em; color: var(--lake-deep); }
.card .k { margin: 14px 0 0; font-size: 12px; letter-spacing: 0.12em; color: var(--muted); display: flex; gap: 10px; align-items: center; }
.card .k .pr { color: var(--sand); font-weight: 700; }
/* ★店名は1行で止める（2026-07-31 中山さん指定）。長い店名で2行になると、カードごとに
   高さが変わって一覧の行が揃わない。エリア・業態は真上のラベルに出ているので、
   末尾が省略されても何の店かは分かる。 */
.card h3 {
  margin: 7px 0 0; font-family: "Shippori Mincho", serif; font-weight: 700; font-size: 19px; line-height: 1.5;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;
}
.card p {
  margin: 8px 0 0; font-size: 15px; line-height: 1.85; color: var(--ink-soft);
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
}

/* ── 事業者向けCTA ─────────────────────────────────────── */
.biz { margin: 88px 0 0; background: var(--cream); }
.biz-in { max-width: var(--maxw); margin: 0 auto; padding: 62px 28px; text-align: center; }
.biz h2 { margin: 0; font-family: "Shippori Mincho", serif; font-weight: 700; font-size: clamp(22px, 3vw, 30px); line-height: 1.6; }
.biz p {
  margin: 16px auto 0; max-width: 30em; font-size: 15px; color: var(--ink-soft);
  /* ★中央寄せの短い段落は最終行が1語だけ残りやすい（「ます。」だけの行）。
     balance で行数分の幅に均す＝孤立行が出ない */
  text-wrap: balance;
}
.biz .btn {
  display: inline-block; margin: 28px 0 0; padding: 15px 34px; background: var(--lake-deep); color: #fff;
  font-size: 15px; letter-spacing: 0.06em; text-decoration: none; border-radius: 999px;
}
.biz .btn:hover { background: var(--lake); }

.foot { padding: 40px 0 54px; border-top: 1px solid var(--line-2); margin-top: 0; }
.foot-in { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--lake); }

/* ── 一覧ページ ───────────────────────────────────────── */
.idx-head { padding: 64px 0 44px; }
.idx-head h1 { margin: 18px 0 0; font-family: "Shippori Mincho", serif; font-weight: 700; font-size: clamp(26px, 4.4vw, 46px); line-height: 1.36; }
.idx-head p { margin: 20px 0 0; max-width: 32em; color: var(--ink-soft); font-size: 1.0em; }
/* ★記事の本数は事実として出すだけ＝目標や目盛りは置かない
   （100軒はInstagramで紹介する軒数の旗。トップページの目盛りが正で、ここに持ち込むと数字が食い違う） */
.idx-count { margin: 30px 0 0; font-size: 13px; letter-spacing: 0.06em; color: var(--muted); }
.idx-count em {
  font-style: normal; font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: 24px; color: var(--sand); margin: 0 5px; vertical-align: -1px;
}
.idx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px 26px; padding-bottom: 20px; }

/* ── スマホ ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .cards, .idx-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  body { font-size: 16.5px; line-height: 1.92; }
  .wrap { padding: 0 22px; }
  .mast-in { height: 56px; padding: 0 22px; }
  .mast-logo b { font-size: 17px; white-space: nowrap; }
  .mast-logo i { display: none; } /* 390pxでは英字を入れると屋号が2行に折れる */
  .mast-nav { gap: 14px; font-size: 12px; }
  .mast-nav .no-sp { display: none; }
  .art-head { padding: 38px 0 0; }
  .art-title { font-size: clamp(27px, 8vw, 34px); }
  .art-lead { font-size: 1.02em; line-height: 1.95; }
  /* 表紙はスマホでは全幅に抜く（写真が主役になる） */
  .cover { margin-top: 32px; width: 100vw; margin-left: calc(50% - 50vw); }
  .cover img { aspect-ratio: 4 / 3; }
  .cover figcaption { padding: 0 22px; }
  .art-body { padding: 42px 0 0; }
  .art-body figure.wide figcaption { padding: 0 22px; }
  /* 2枚組はスマホでは全幅に抜く（22pxずつ内側に入れると1枚167pxまで小さくなる） */
  .art-body figure.duo-fig { width: 100vw; margin-left: calc(50% - 50vw); }
  .art-body figure.duo-fig figcaption { padding: 0 22px; }
  .duo { gap: 5px; }
  .cover .duo { gap: 5px; }
  figure.tall img { max-width: 100%; max-height: 74vh; }
  .info { padding: 24px 22px 22px; }
  .info dl { grid-template-columns: 4.8em 1fr; }
  .related { margin-top: 62px; padding-top: 42px; }
  .cards, .idx-grid { grid-template-columns: 1fr; gap: 34px; }
  .card .thumb { aspect-ratio: 4 / 5; }
  .biz { margin-top: 62px; }
  .biz-in { padding: 48px 22px; }
  .foot-in { padding: 0 22px; } /* ★これだけ28pxのままで、本文と6pxずれていた（2026-07-30） */
  .idx-head { padding: 40px 0 32px; }
  .tally-bar { height: 16px; gap: 2px; }
  .idx-nav { margin-bottom: 30px; }
  /* ★絞り込みはスマホで画面を1枚使い切っていた（390pxで601px＝7行が全部2段に折れていた）。
     ラベルを横に戻し、ボタンの列は横スクロールの1行にする（2026-07-31 中山さん指摘）。
     行を消すのではなく畳む＝記事が増えたときに勝手に戻る作りを壊さない。 */
  .nav-row { flex-direction: row; align-items: center; gap: 10px; margin-bottom: 9px; }
  .nav-row > b { width: 4.6em; }
  .nav-links { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a, .nav-links span { flex: none; }
}

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