@charset "UTF-8";
/* ============================================================
   伊達醸造 kurozu-nanban.com リニューアル
   方向: ダーク×発光 × クラシック(老舗の品位)の混成
   コンセプト: 「蔵の闇に、琥珀が灯る」
   シグネチャー: 琥珀の発光罫線(amber-line)と壺の琥珀グロー
   ============================================================ */

/* ---------- 1. トークン ---------- */
:root {
  /* 蔵の闇と琥珀(深い焦げ茶バージョン) */
  --color-bg: #3a2b1e;            /* 深い焦げ茶 */
  --color-bg-deep: #2e2013;       /* やや濃い焦げ茶(ヒーロー) */
  --color-surface: #463525;       /* 面(カード) */
  --color-surface-2: #503d2b;     /* 面(浮き) */
  --color-text: #f6ede0;          /* 生成りの白 */
  --color-muted: #c2ac8e;         /* 補助(明るめの金茶) */
  --color-amber: #f0b354;         /* 琥珀(黒酢の色・発光色。焦げ茶に合わせて明るめ) */
  --color-amber-deep: #d99433;    /* 濃い琥珀 */
  --color-amber-ink: #2e2013;     /* amber上の文字 */
  --color-line: rgba(240, 179, 84, 0.28);  /* 琥珀の罫線 */
  --glow: 0 0 18px rgba(240, 179, 84, 0.4), 0 0 60px rgba(240, 179, 84, 0.15);

  --font-display: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-body: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Cormorant Garamond", "Shippori Mincho", serif;

  --space: 8px;
  --section-pad: clamp(72px, 13vw, 160px);
  --container: 1120px;
  --container-narrow: 760px;
  --radius: 0px;

  --z-header: 100;
  --z-nav: 200;
  --z-modal: 1000;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.9s;
}

/* ---------- 2. リセット/ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

/* 蔵の空気感: 微細グレイン */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

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

a { color: inherit; }
a:hover { opacity: 0.75; transition: opacity 0.3s; }

::selection { background: var(--color-amber); color: var(--color-amber-ink); }

:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

/* ---------- 3. レイアウト ---------- */
.container { width: min(var(--container), 100% - 48px); margin-inline: auto; position: relative; z-index: 2; }
.container--narrow { width: min(var(--container-narrow), 100% - 48px); margin-inline: auto; position: relative; z-index: 2; }

.section { padding-block: var(--section-pad); position: relative; }
.section--tight { padding-block: calc(var(--section-pad) * 0.6); }

/* シグネチャー: 琥珀の発光罫線(セクション境界) */
.amber-line {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent, var(--color-amber) 50%, transparent);
  box-shadow: var(--glow);
  opacity: 0.7;
  margin: 0 auto;
  width: min(720px, 80%);
}

/* セクション見出し: 琥珀の一滴+縦のグロー線 */
.section-head { margin-bottom: calc(var(--space) * 8); text-align: center; }
.section-head__en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: calc(var(--space) * 2);
  text-shadow: 0 0 12px rgba(232, 163, 61, 0.5);
}
.section-head__title { font-size: clamp(28px, 4.5vw, 46px); }
.section-head::after {
  content: "";
  display: block;
  width: 1px; height: 44px;
  margin: calc(var(--space) * 3) auto 0;
  background: linear-gradient(180deg, var(--color-amber), transparent);
  box-shadow: 0 0 10px rgba(232, 163, 61, 0.6);
}
.section-head--left { text-align: left; }
.section-head--left::after { margin-left: 2px; }

/* ---------- 4. コンポーネント ---------- */

/* ヘッダー */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.is-scrolled {
  background: rgba(10, 8, 7, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--color-line);
}
.site-header__logo {
  font-family: var(--font-display); font-size: 19px; text-decoration: none;
  letter-spacing: 0.14em; line-height: 1.3;
}
.site-header__logo .en {
  display: block; font-family: var(--font-en);
  font-size: 9px; letter-spacing: 0.42em; color: var(--color-amber);
  text-transform: uppercase;
}

.global-nav ul { display: flex; gap: calc(var(--space) * 3.5); list-style: none; padding: 0; align-items: center; }
.global-nav a { text-decoration: none; font-size: 13px; letter-spacing: 0.1em; }
.global-nav a:hover { color: var(--color-amber); opacity: 1; }
.global-nav .nav-cta {
  border: 1px solid var(--color-amber);
  color: var(--color-amber);
  padding: 9px 20px;
  transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}
.global-nav .nav-cta:hover {
  background: var(--color-amber); color: var(--color-amber-ink);
  box-shadow: var(--glow); opacity: 1;
}

/* ハンバーガー(SP) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: calc(var(--z-nav) + 1);
}
.nav-toggle span {
  display: block; width: 24px; height: 1px; margin: 6px auto;
  background: var(--color-text); transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--color-amber); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--color-amber); }

@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .global-nav {
    position: fixed; inset: 0; z-index: var(--z-nav);
    background: rgba(10, 8, 7, 0.96);
    backdrop-filter: blur(12px);
    display: grid; place-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  .global-nav ul { flex-direction: column; text-align: center; gap: calc(var(--space) * 4); }
  .global-nav a { font-size: 19px; font-family: var(--font-display); }
}

/* ヒーロー: 闇の中の琥珀 */
.hero {
  min-height: 100svh;
  display: grid; place-content: center; text-align: center;
  padding: calc(var(--space) * 14) 0 calc(var(--space) * 10);
  background: radial-gradient(ellipse 60% 45% at 50% 58%, rgba(232, 163, 61, 0.13), transparent 70%), var(--color-bg-deep);
  position: relative;
  overflow: hidden;
}
.hero__en {
  font-family: var(--font-en); font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.6em; text-transform: uppercase;
  color: var(--color-amber);
  text-shadow: 0 0 14px rgba(232, 163, 61, 0.6);
}
.hero__title {
  font-size: clamp(38px, 7.5vw, 88px);
  line-height: 1.35;
  margin-top: calc(var(--space) * 3);
  text-shadow: 0 0 40px rgba(232, 163, 61, 0.18);
}
.hero__title .amber { color: var(--color-amber); text-shadow: var(--glow); }
.hero__lead {
  margin: calc(var(--space) * 4) auto 0; max-width: 36em;
  color: var(--color-muted); font-size: clamp(14px, 1.6vw, 16px);
}
.hero__cta { margin-top: calc(var(--space) * 6); display: flex; gap: calc(var(--space) * 3); justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-en); font-size: 10px; letter-spacing: 0.4em;
  color: var(--color-muted); text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  display: block; width: 1px; height: 40px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, var(--color-amber), transparent);
  animation: dripline 2.4s var(--ease-out) infinite;
}
@keyframes dripline {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  70% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ボタン */
.button {
  display: inline-block;
  padding: 15px 42px;
  background: var(--color-amber); color: var(--color-amber-ink);
  border: 1px solid var(--color-amber); border-radius: var(--radius);
  font-size: 14px; letter-spacing: 0.12em; text-decoration: none;
  cursor: pointer; transition: box-shadow 0.35s, background 0.3s, color 0.3s;
  font-weight: 500;
}
.button:hover { box-shadow: var(--glow); opacity: 1; }
.button--ghost {
  background: transparent; color: var(--color-amber);
}
.button--ghost:hover { background: rgba(232, 163, 61, 0.1); box-shadow: var(--glow); }
.button:disabled { opacity: 0.5; cursor: wait; }

/* 催事スケジュール */
.schedule-note { text-align: center; color: var(--color-muted); margin-bottom: calc(var(--space) * 5); font-size: 14px; }
.schedule-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.schedule-table th {
  font-family: var(--font-en); font-weight: 500; font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-amber);
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--color-amber);
}
.schedule-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--color-line);
  vertical-align: middle;
}
.schedule-table .date { font-family: var(--font-display); white-space: nowrap; letter-spacing: 0.04em; }
.schedule-table .venue { font-weight: 500; }
.schedule-table .menu-type { color: var(--color-muted); font-size: 13px; }
.badge {
  display: inline-block; font-size: 11px; letter-spacing: 0.14em;
  padding: 2px 10px; margin-left: 10px;
  border: 1px solid var(--color-amber); color: var(--color-amber);
  vertical-align: middle; white-space: nowrap;
}
.badge--live {
  background: var(--color-amber); color: var(--color-amber-ink);
  box-shadow: var(--glow);
  animation: badgepulse 2.2s ease-in-out infinite;
}
@keyframes badgepulse { 0%, 100% { box-shadow: 0 0 10px rgba(232,163,61,0.5); } 50% { box-shadow: 0 0 22px rgba(232,163,61,0.85); } }
/* 会期が終わった催事は自動で薄く(JSが is-past を付与) */
.schedule-table tr.is-past { opacity: 0.4; }
.schedule-table tr.is-past .venue { font-weight: 400; }
@media (max-width: 640px) {
  .schedule-table { font-size: 13px; }
  .schedule-table td, .schedule-table th { padding: 11px 8px; }
  .badge { display: block; width: max-content; margin: 6px 0 0; }
}
.schedule-line { text-align: center; margin-top: calc(var(--space) * 6); }
.schedule-line p { color: var(--color-muted); font-size: 14px; margin-bottom: calc(var(--space) * 2.5); }

/* 歴史: 熟成タイムライン(最大の見せ場・破調セクション) */
.history {
  background: linear-gradient(180deg, var(--color-bg) 0%, #140e08 45%, var(--color-bg) 100%);
  overflow: hidden;
}
.timeline { position: relative; padding-left: clamp(28px, 6vw, 56px); }
.timeline::before {
  content: "";
  position: absolute; left: 8px; top: 0;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--color-amber) 12%, var(--color-amber) 88%, transparent);
  opacity: 0.35;
}
.timeline__glow {
  position: absolute; left: 8px; top: 0;
  width: 1px; height: 0%;
  background: var(--color-amber);
  box-shadow: 0 0 12px rgba(232, 163, 61, 0.9), 0 0 40px rgba(232, 163, 61, 0.4);
  transition: height 0.2s linear;
}
.timeline__item { position: relative; padding-bottom: calc(var(--space) * 10); max-width: 620px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute; left: calc(-1 * clamp(28px, 6vw, 56px) + 4px); top: 10px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--color-bg); border: 1px solid var(--color-amber);
  transition: background 0.5s, box-shadow 0.5s;
}
.timeline__item.is-inview::before {
  background: var(--color-amber);
  box-shadow: 0 0 14px rgba(232, 163, 61, 0.9);
}
.timeline__era {
  font-family: var(--font-en); font-size: 13px; letter-spacing: 0.3em;
  color: var(--color-amber); text-transform: uppercase;
  text-shadow: 0 0 10px rgba(232, 163, 61, 0.5);
}
.timeline__title { font-size: clamp(22px, 3vw, 30px); margin-top: calc(var(--space) * 1); }
.timeline__body { margin-top: calc(var(--space) * 2); color: var(--color-muted); font-size: 15px; }

.history-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--space) * 3);
  margin-top: calc(var(--space) * 10);
  text-align: center;
}
.stat { padding: calc(var(--space) * 4) calc(var(--space) * 2); border: 1px solid var(--color-line); background: rgba(26, 20, 16, 0.6); }
.stat__num {
  font-family: var(--font-en); font-size: clamp(34px, 5vw, 52px);
  color: var(--color-amber); line-height: 1.1;
  text-shadow: var(--glow);
}
.stat__num .unit { font-size: 0.45em; margin-left: 2px; }
.stat__label { font-size: 13px; color: var(--color-muted); margin-top: calc(var(--space) * 1); }
@media (max-width: 640px) {
  .history-stats { grid-template-columns: 1fr; }
}

/* ストーリー */
.story-grid {
  display: grid; gap: calc(var(--space) * 6);
  align-items: center;
}
@media (min-width: 768px) { .story-grid { grid-template-columns: 1.05fr 0.95fr; gap: calc(var(--space) * 8); } }
.story-grid figure { position: relative; }
.story-grid figure::after {
  content: "";
  position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--color-line);
  z-index: -1;
}
.story-grid img { filter: saturate(0.92) contrast(1.04); }
.story__body p + p { margin-top: 1.2em; }
.story__body { color: var(--color-muted); font-size: 15px; }
.story__body strong { color: var(--color-text); font-weight: 500; }
.retailers { margin-top: calc(var(--space) * 5); padding-top: calc(var(--space) * 4); border-top: 1px solid var(--color-line); }
.retailers__label {
  font-family: var(--font-en); font-size: 11px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--color-amber);
}
.retailers__list { margin-top: calc(var(--space) * 2); font-family: var(--font-display); font-size: 15px; line-height: 2.2; letter-spacing: 0.1em; }

/* 商品 */
.products-intro { text-align: center; color: var(--color-muted); font-size: 14px; max-width: 38em; margin: 0 auto calc(var(--space) * 7); }
.product-cat {
  text-align: center; font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 22px); letter-spacing: 0.16em;
  margin: calc(var(--space) * 10) 0 calc(var(--space) * 1);
  color: var(--color-text);
}
.product-cat:first-of-type { margin-top: 0; }
.product-cat-note { text-align: center; color: var(--color-muted); font-size: 13px; margin-bottom: calc(var(--space) * 5); }
.product-grid {
  display: grid; gap: calc(var(--space) * 4);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-amber);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(232, 163, 61, 0.18);
}
.product-card figure { overflow: hidden; aspect-ratio: 1; background: var(--color-surface-2); }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.product-card:hover img { transform: scale(1.045); }
.product-card__body { padding: calc(var(--space) * 3); display: flex; flex-direction: column; flex: 1; }
.product-card__name { font-size: 17px; font-family: var(--font-display); }
.product-card__desc { font-size: 13px; color: var(--color-muted); margin-top: calc(var(--space) * 1.5); flex: 1; }
.product-card__price {
  margin-top: calc(var(--space) * 2.5);
  font-family: var(--font-en); font-size: 22px; color: var(--color-amber);
}
.product-card__price .tax { font-size: 11px; color: var(--color-muted); font-family: var(--font-body); margin-left: 6px; }
.product-card__cta {
  margin-top: calc(var(--space) * 2);
  display: block; text-align: center;
  padding: 12px; font-size: 13px; letter-spacing: 0.14em;
  border: 1px solid var(--color-amber); color: var(--color-amber);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.product-card__cta:hover {
  background: var(--color-amber); color: var(--color-amber-ink);
  box-shadow: var(--glow); opacity: 1;
}
.product-card--event .product-card__name { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* 動く一皿(催事メニュー横スクロール) */
.event-scroll {
  display: flex; gap: calc(var(--space) * 3);
  overflow-x: auto; padding-bottom: calc(var(--space) * 2);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.event-scroll .product-card { min-width: min(300px, 78vw); scroll-snap-align: start; }

/* レシピ */
.recipe-list { display: grid; gap: calc(var(--space) * 2.5); }
.recipe-item {
  border: 1px solid var(--color-line);
  background: rgba(26, 20, 16, 0.5);
}
.recipe-item summary {
  cursor: pointer; list-style: none;
  padding: calc(var(--space) * 2.5) calc(var(--space) * 3);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-size: 16px; letter-spacing: 0.08em;
}
.recipe-item summary::-webkit-details-marker { display: none; }
.recipe-item summary::after {
  content: "+";
  font-family: var(--font-en); font-size: 22px; color: var(--color-amber);
  transition: transform 0.3s;
  flex: none;
}
.recipe-item[open] summary::after { transform: rotate(45deg); }
.recipe-item__body { padding: 0 calc(var(--space) * 3) calc(var(--space) * 3); color: var(--color-muted); font-size: 14px; }
.recipe-item__body ol { padding-left: 1.4em; margin-top: 0.6em; }
.recipe-item__body li + li { margin-top: 0.35em; }

/* お客様の声 */
.voice-grid { display: grid; gap: calc(var(--space) * 4); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.voice-card {
  padding: calc(var(--space) * 4);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  position: relative;
}
.voice-card::before {
  content: "“";
  position: absolute; top: 2px; left: 14px;
  font-family: var(--font-en); font-size: 64px; line-height: 1;
  color: var(--color-amber); opacity: 0.55;
  text-shadow: 0 0 16px rgba(232, 163, 61, 0.4);
}
.voice-card p { font-size: 14px; padding-top: calc(var(--space) * 3); }
.voice-card footer { margin-top: calc(var(--space) * 2.5); font-size: 12px; color: var(--color-muted); letter-spacing: 0.08em; }

/* CTAバンド */
.cta-band {
  text-align: center;
  background: radial-gradient(ellipse 55% 90% at 50% 100%, rgba(232, 163, 61, 0.14), transparent 70%), var(--color-bg-deep);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.cta-band__title { font-size: clamp(24px, 3.6vw, 38px); }
.cta-band__lead { color: var(--color-muted); margin-top: calc(var(--space) * 2); font-size: 15px; }
.cta-band__buttons { margin-top: calc(var(--space) * 5); display: flex; gap: calc(var(--space) * 3); justify-content: center; flex-wrap: wrap; }

/* フッター */
.site-footer {
  padding: calc(var(--space) * 8) 0 calc(var(--space) * 12);
  border-top: 1px solid var(--color-line);
  font-size: 13px; color: var(--color-muted);
  text-align: center;
}
.site-footer .logo {
  font-family: var(--font-display); font-size: 18px; color: var(--color-text);
  letter-spacing: 0.16em;
}
.site-footer .logo .en {
  display: block; font-family: var(--font-en); font-size: 9px;
  letter-spacing: 0.42em; color: var(--color-amber); text-transform: uppercase;
}
.site-footer nav { margin-top: calc(var(--space) * 3); }
.site-footer nav a { margin: 0 10px; text-decoration: none; font-size: 12px; }
.site-footer .copy { margin-top: calc(var(--space) * 4); font-size: 11px; opacity: 0.7; }

/* SP固定CTA */
.sp-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-header);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 8, 7, 0.92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-line);
  gap: 10px;
}
.sp-cta a {
  flex: 1; text-align: center; text-decoration: none;
  padding: 12px 8px; font-size: 13px; letter-spacing: 0.1em;
}
.sp-cta .shop { background: var(--color-amber); color: var(--color-amber-ink); font-weight: 500; }
.sp-cta .line { border: 1px solid var(--color-amber); color: var(--color-amber); }
@media (max-width: 767px) {
  .sp-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ---------- 5. モーション基盤 ---------- */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.js-reveal.is-inview { opacity: 1; transform: none; }
.js-reveal[data-delay="1"] { transition-delay: 0.12s; }
.js-reveal[data-delay="2"] { transition-delay: 0.24s; }
.js-reveal[data-delay="3"] { transition-delay: 0.36s; }

/* ---------- 6. モーション停止(削除禁止) ---------- */
/* アクセシビリティ: OSで視差効果offの人はアニメーションを自動停止 */
@media (prefers-reduced-motion: reduce) {
  *[class] {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .js-reveal { opacity: 1; transform: none; }
}
