/* =====================================================
   令和8年熊本地震 緊急支援募金 — Trust Blue Design System
   安心・安全・信頼 × アグレッシブモーション
   ===================================================== */

:root {
  /* 信頼のブルー（財団ロゴのロイヤルブルー系） */
  --navy-950: #081831;
  --navy-900: #0c2144;
  --navy-800: #123061;
  --brand: #1c4fa3;
  --brand-600: #2a63c4;
  --brand-400: #5b8ee0;
  --brand-soft: #e3edfb;

  /* 安全・確認のティール */
  --teal: #0fa3a3;
  --teal-dark: #0b7f80;
  --teal-soft: #dff4f4;

  /* 注意・緊急 */
  --danger: #d64545;
  --danger-dark: #b23636;
  --gold: #f2b52e;

  /* ニュートラル */
  --bg: #f5f9fe;
  --bg-alt: #eaf2fb;
  --card: #ffffff;
  --ink: #152238;
  --muted: #5a6b85;
  --line: #dbe6f4;

  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 8px 28px rgba(18, 48, 97, 0.10);
  --shadow-lg: 0 24px 60px rgba(18, 48, 97, 0.18);
  --container: 1140px;
  --font: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--brand-soft); color: var(--brand); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ===== スクロール進捗バー ===== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  z-index: 200;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(15, 163, 163, 0.55);
}

/* ===== ボタン ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  overflow: hidden;
  transition: transform 0.18s var(--ease-spring), box-shadow 0.25s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-600), var(--brand) 60%, var(--navy-800));
  background-size: 160% 160%;
  color: #fff;
  box-shadow: 0 10px 26px rgba(28, 79, 163, 0.38);
}
.btn-primary:hover {
  background-position: 100% 100%;
  box-shadow: 0 16px 36px rgba(28, 79, 163, 0.48);
}
/* シャインスイープ */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 130%; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: #fff; }

.btn-outline {
  background: var(--card);
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(28, 79, 163, 0.3); }

/* クリックリップル */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.55s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* ===== 緊急速報バー ===== */
.alert-bar {
  background: linear-gradient(90deg, var(--danger-dark), var(--danger), var(--danger-dark));
  background-size: 200% 100%;
  animation: alertFlow 6s linear infinite;
  color: #fff;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@keyframes alertFlow { to { background-position: -200% 0; } }
.alert-dot {
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(242, 181, 46, 0.8);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(242, 181, 46, 0.8); }
  70% { box-shadow: 0 0 0 11px rgba(242, 181, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 181, 46, 0); }
}

/* ===== ヘッダー ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 30px rgba(18, 48, 97, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 46px; width: auto; transition: transform 0.25s var(--ease-spring); }
.brand:hover .brand-logo { transform: scale(1.04); }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -7px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  border-radius: 3px;
  transition: right 0.3s var(--ease-spring);
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta).is-active::after { right: 0; }
.site-nav a:hover { color: var(--brand); }
.site-nav a:not(.nav-cta).is-active { color: var(--brand); font-weight: 700; }

.lang-link {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
}
.lang-link:hover { border-color: var(--brand); }
.lang-link::after { display: none !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--brand-600), var(--brand));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700 !important;
  box-shadow: 0 6px 18px rgba(28, 79, 163, 0.35);
  transition: transform 0.18s var(--ease-spring), box-shadow 0.25s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(28, 79, 163, 0.45); }

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(1100px 600px at 85% -10%, var(--navy-800), transparent 62%),
    linear-gradient(155deg, var(--navy-900) 0%, var(--navy-950) 70%, #061225 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* オーロラ（ゆらめく信頼のブルー） */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  will-change: transform;
}
.aurora-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--brand-600), transparent 65%);
  top: -180px; left: -120px;
  animation: drift1 14s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--teal), transparent 65%);
  bottom: -200px; right: 6%;
  opacity: 0.35;
  animation: drift2 18s ease-in-out infinite alternate;
}
.aurora-3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--brand-400), transparent 65%);
  top: 20%; right: 34%;
  opacity: 0.28;
  animation: drift3 11s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(70px, 50px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(-60px, -46px) scale(1.08); } }
@keyframes drift3 { to { transform: translate(40px, 60px) scale(0.92); } }

/* 細かなドットグリッド＝構造・秩序の暗喩 */
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 96px;
}

/* 初回ロードの段組みモーション */
.hero-eyebrow,
.hero h1 .line,
.hero-lead,
.hero-actions,
.hero-trust {
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 0.85s var(--ease-spring) forwards;
}
.hero-eyebrow { animation-delay: 0.05s; }
.hero h1 .line { display: inline-block; }
.hero h1 .line:nth-child(1) { animation-delay: 0.16s; }
.hero h1 .line:nth-child(3) { animation-delay: 0.28s; }
.hero h1 .line:nth-child(5) { animation-delay: 0.40s; }
.hero-lead { animation-delay: 0.52s; }
.hero-actions { animation-delay: 0.64s; }
.hero-trust { animation-delay: 0.78s; }
@keyframes riseIn { to { opacity: 1; transform: none; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 7px 18px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.hero-eyebrow .shield { font-size: 1rem; }

.hero h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}
.hero-lead {
  max-width: 560px;
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 4px; }

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 26px 0 0;
}
.hero-trust li {
  position: relative;
  padding-left: 26px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  border-radius: 50%;
}

/* ヒーロー写真 */
.hero-figure { position: relative; will-change: transform; }
.hero-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  opacity: 0;
  animation: photoIn 1s var(--ease-spring) 0.35s forwards;
}
@keyframes photoIn { from { opacity: 0; transform: translateY(40px) scale(0.96); } to { opacity: 1; transform: none; } }
.hero-photo img { width: 100%; height: 420px; object-fit: cover; }

/* ヒーロー：災害データカード */
.hero-panel {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  padding: 28px 30px;
}
.hero-panel-title {
  margin: 0 0 4px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
}
.hero-panel-big {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy-900);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
}
.hero-panel-big span {
  font-size: 2.6rem;
  color: var(--danger);
  line-height: 1;
  margin-left: 4px;
}
.hero-panel-list { margin: 0; display: grid; gap: 0; }
.hero-panel-list > div {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.hero-panel-list > div:last-child { border-bottom: none; }
.hero-panel-list dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
}
.hero-panel-list dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

.hero-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 12px 18px;
  opacity: 0;
  animation: chipIn 0.7s var(--ease-spring) forwards;
}
@keyframes chipIn { from { opacity: 0; transform: translateY(20px) scale(0.9); } to { opacity: 1; transform: none; } }
.hero-chip-quake {
  bottom: -18px; left: -14px;
  text-align: center;
  animation-delay: 0.85s;
}
.hero-chip-quake .hero-chip-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--danger);
  line-height: 1.2;
}
.hero-chip-quake small { color: var(--muted); font-size: 0.72rem; font-weight: 700; }
.hero-chip-verified {
  top: -14px; right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--teal-dark);
  animation-delay: 1.0s;
}
.hero-chip-verified .check {
  width: 20px; height: 20px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

/* ===== 統計バンド ===== */
.stats {
  background: var(--navy-900);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat {
  padding: 34px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease;
}
.stat:hover { background: rgba(255, 255, 255, 0.05); }
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 900;
  background: linear-gradient(120deg, #9dc2ff, #fff 55%, #7ee0e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.stat-label { display: block; font-size: 0.82rem; color: rgba(255, 255, 255, 0.72); margin-top: 6px; }

/* ===== セクション共通 ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 10px;
}
.section-eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  border-radius: 2px;
}
.section-title {
  position: relative;
  font-size: clamp(1.55rem, 3.4vw, 2.3rem);
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1.45;
  margin: 0 0 38px;
  padding-bottom: 16px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 74px; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.7s var(--ease-spring) 0.2s;
}
.section-title.is-visible::after { transform: scaleX(1); }

/* ===== 被害状況 ===== */
.situation-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 52px;
}
.situation-text p { margin: 0 0 16px; }
.fact-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.fact-list li {
  position: relative;
  padding: 12px 16px 12px 46px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 500;
  box-shadow: var(--shadow);
}
.fact-list li::before {
  content: "!";
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
  font-size: 0.8rem;
  border-radius: 50%;
}
.source-note { font-size: 0.8rem; color: var(--muted); }

.situation-map {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-900);
  border: 1px solid var(--line);
}
.situation-map img { width: 100%; }
.situation-map figcaption {
  padding: 13px 16px;
  font-size: 0.85rem;
  color: #fff;
  background: var(--navy-900);
  text-align: center;
  font-weight: 500;
}

/* ギャラリー */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.gallery figure:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-spring);
}
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  padding: 10px 12px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ===== 最新情報 ===== */
.update-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: -22px 0 30px;
  font-size: 0.85rem;
  color: var(--muted);
}
.update-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-600), var(--brand));
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(28, 79, 163, 0.3);
}
.update-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 18px;
}
.update-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 24px 22px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}
.update-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.update-card-alert { border-top-color: var(--danger); }
.update-card h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 1.05rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.update-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.update-card li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
  line-height: 1.65;
}
.update-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.66em;
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
}
.update-card-alert li::before { background: var(--danger); }
.update-card strong { color: var(--danger-dark); font-size: 1.06em; }
.update-src { margin: 12px 0 0; font-size: 0.76rem; color: var(--muted); }

.sources { margin-top: 30px; }
.sources summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.92rem;
  padding: 13px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  list-style: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sources summary:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.sources summary::-webkit-details-marker { display: none; }
.sources summary::before { content: "▸ "; }
.sources[open] summary::before { content: "▾ "; }
.sources ul {
  margin: 12px 0 0;
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: grid;
  gap: 8px;
}
.sources li { font-size: 0.86rem; line-height: 1.6; }
.sources a { color: var(--brand); text-decoration: underline; word-break: break-word; }
.sources a:hover { color: var(--teal-dark); }

/* ===== 支援の使途 ===== */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.use-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, border-color 0.3s ease;
}
.use-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-400);
}
.use-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.35s var(--ease-spring);
}
.use-card:hover .use-icon { transform: scale(1.2) rotate(-6deg); }
.use-card h3 { margin: 0 0 8px; color: var(--navy-900); font-size: 1.1rem; }
.use-card p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* ===== 寄付 ===== */
.donate { background: var(--bg-alt); }
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 50px;
  align-items: start;
}
.donate-intro p { margin: 0 0 16px; }

.trust-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.trust-list li {
  position: relative;
  padding: 13px 16px 13px 48px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.94rem;
  box-shadow: var(--shadow);
}
.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(15, 163, 163, 0.4);
}

.donate-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}
.donate-card fieldset { border: none; padding: 0; margin: 0 0 26px; }
.donate-card legend {
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
  padding: 0;
  font-size: 0.98rem;
}

/* 寄付の種類トグル */
.toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--bg-alt);
  padding: 5px;
  border-radius: 999px;
}
.toggle-group input { position: absolute; opacity: 0; pointer-events: none; }
.toggle-group label {
  text-align: center;
  padding: 11px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.25s var(--ease-spring);
}
.toggle-group input:checked + label {
  background: linear-gradient(135deg, var(--brand-600), var(--brand));
  color: #fff;
  box-shadow: 0 6px 16px rgba(28, 79, 163, 0.35);
}

/* 金額 */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.amount-btn {
  padding: 15px 6px;
  border: 2px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  transition: all 0.2s var(--ease-spring);
}
.amount-btn:hover { border-color: var(--brand); transform: translateY(-2px); }
.amount-btn.is-active {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(28, 79, 163, 0.22);
}
.amount-btn.is-active::before { content: "✓ "; color: var(--teal-dark); }

.custom-amount { margin-top: 14px; }
.custom-amount label { display: block; font-size: 0.86rem; color: var(--muted); margin-bottom: 6px; }
.input-prefix {
  display: flex;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-prefix span { padding: 0 14px; color: var(--muted); font-weight: 700; }
.input-prefix input { border: none; padding: 13px 12px 13px 0; flex: 1; font-family: inherit; font-size: 1rem; background: transparent; }
.input-prefix input:focus { outline: none; }
.input-prefix:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.amount-hint { font-size: 0.86rem; color: var(--teal-dark); font-weight: 600; min-height: 1.4em; margin: 12px 0 0; }

/* 入力欄 */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.req {
  display: inline-block;
  background: var(--danger);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: 2px;
}
.donate-card input[type="text"],
.donate-card input[type="email"],
.donate-card input[type="number"] {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.donate-card input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
}
.checkbox input { margin-top: 5px; accent-color: var(--brand); }

/* 支払い方法チップ */
.method-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.method-grid input { position: absolute; opacity: 0; pointer-events: none; }
.method-grid label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  border: 2px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  background: var(--card);
  transition: all 0.2s var(--ease-spring);
}
.method-grid label:hover { border-color: var(--brand); transform: translateY(-2px); }
.method-grid input:checked + label {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
  box-shadow: 0 5px 14px rgba(28, 79, 163, 0.2);
}
.method-grid input:focus-visible + label { outline: 3px solid var(--teal); outline-offset: 2px; }

/* 支払い方法パネル */
.method-panel {
  margin-top: 16px;
  background: var(--bg);
  border: 1px dashed var(--brand);
  border-radius: var(--radius-sm);
  padding: 18px;
  animation: panelIn 0.4s var(--ease-spring);
}
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.method-panel[hidden] { display: none; }
.panel-lead { margin: 0 0 12px; font-size: 0.9rem; font-weight: 600; color: var(--navy-900); }
.panel-note { margin: 12px 0 0; font-size: 0.78rem; color: var(--muted); line-height: 1.7; }

.kv-table { margin: 0; display: grid; gap: 0; }
.kv-table > div {
  display: grid;
  grid-template-columns: 9.5em 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.kv-table > div:last-child { border-bottom: none; }
.kv-table dt { margin: 0; font-size: 0.82rem; color: var(--muted); font-weight: 700; }
.kv-table dd { margin: 0; font-weight: 700; }
.kv-table dd.mono {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-weight: 600;
  font-size: 0.82rem;
  word-break: break-all;
}

.qr-row { display: flex; gap: 16px; align-items: center; }
.qr-box {
  flex-shrink: 0;
  width: 120px; height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: repeating-conic-gradient(var(--line) 0% 25%, #fff 0% 50%) 50% / 16px 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
}
.qr-info { font-size: 0.9rem; }
.qr-info p { margin: 0 0 6px; }

.platform-links { display: flex; flex-wrap: wrap; gap: 10px; }
.platform-links .btn { padding: 10px 16px; font-size: 0.85rem; }

/* サマリー */
.donate-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--brand-soft), var(--teal-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.donate-summary span { font-weight: 600; color: var(--muted); }
.donate-summary strong { font-size: 1.6rem; font-weight: 900; color: var(--brand); }
.form-note { font-size: 0.78rem; color: var(--muted); margin: 14px 0 0; }

/* 振込番号 */
.transfer-code {
  margin-top: 18px;
  padding: 20px 22px;
  background: linear-gradient(135deg, var(--brand-soft), var(--teal-soft));
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  animation: panelIn 0.4s var(--ease-spring);
}
.transfer-code[hidden] { display: none; }
.transfer-code-label {
  margin: 0 0 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--brand);
}
.transfer-code-num {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}
.transfer-code-num span {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--navy-900);
  line-height: 1.2;
}
.transfer-code-note {
  margin: 0;
  font-size: 0.84rem;
  color: var(--ink);
  line-height: 1.7;
}
.transfer-code-note strong { color: var(--brand); }
.transfer-code-hint {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.transfer-code-hint[hidden] { display: none; }

/* コピー ボタン */
.copy-btn {
  margin-left: 8px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: inherit;
  padding: 3px 10px;
  border-radius: 999px;
  cursor: pointer;
  vertical-align: middle;
  transition: all 0.18s var(--ease-spring);
}
.copy-btn:hover { background: var(--brand-soft); transform: translateY(-1px); }
.copy-btn:active { transform: scale(0.94); }
.copy-btn.is-done { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ===== SNSシェア ===== */
.share-strip {
  background: linear-gradient(135deg, var(--brand-soft), var(--teal-soft));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
  text-align: center;
}
.share-strip h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy-900);
}
.share-strip p {
  margin: 0 0 22px;
  font-size: 0.92rem;
  color: var(--muted);
}
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  transition: transform 0.18s var(--ease-spring), box-shadow 0.25s ease, opacity 0.2s ease;
}
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(18, 48, 97, 0.22); }
.share-btn:active { transform: translateY(0) scale(0.97); }
.share-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.share-x { background: #0f1419; }
.share-facebook { background: #1877f2; }
.share-line { background: #06c755; }
.share-whatsapp { background: #25d366; }
.share-copy {
  background: var(--card);
  color: var(--brand);
  border-color: var(--brand);
}
.share-copy:hover { background: var(--brand-soft); }
.share-copy.is-done { background: var(--teal); border-color: var(--teal); color: #fff; }
.share-native {
  background: var(--navy-900);
}
.share-native[hidden] { display: none; }

@media (max-width: 600px) {
  .share-buttons { flex-direction: column; align-items: stretch; }
  .share-btn { justify-content: center; }
}

/* ===== 財団について ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  align-items: start;
}
.about-text p { margin: 0 0 16px; }
.about-text em { font-style: normal; color: var(--brand); font-weight: 700; }
.about-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
}
.about-card h3 { margin: 0 0 16px; color: var(--navy-900); }
.about-card dl { margin: 0; display: grid; gap: 14px; }
.about-card dt {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  font-weight: 700;
}
.about-card dd { margin: 2px 0 0; font-weight: 500; }
.about-card a { color: var(--brand); font-weight: 600; }

/* ミッション */
.mission { margin-top: 60px; }
.mission-title {
  text-align: center;
  color: var(--navy-900);
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 30px;
  position: relative;
  padding-bottom: 16px;
}
.mission-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 64px; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  border-radius: 2px;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mission-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mission-card-accent { border-top-color: var(--teal); }
.mission-num {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--brand-600), var(--brand));
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(28, 79, 163, 0.3);
}
.mission-card-accent .mission-num {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 6px 14px rgba(15, 163, 163, 0.35);
}
.mission-card h4 { margin: 0 0 10px; color: var(--navy-900); font-size: 1.02rem; line-height: 1.55; }
.mission-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ===== フッター ===== */
.site-footer {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 40px;
}
.footer-inner { display: grid; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  height: 54px;
  width: auto;
  background: #fff;
  padding: 10px 16px;
  border-radius: 12px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: #7ee0e0; }
.footer-note { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); margin: 0; line-height: 1.75; }

/* ===== フローティングCTA（モバイル） ===== */
.float-cta {
  position: fixed;
  left: 16px; right: 16px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: none;
  transition: transform 0.35s var(--ease-spring), opacity 0.3s ease;
}
.float-cta .btn {
  width: 100%;
  box-shadow: 0 14px 34px rgba(28, 79, 163, 0.5);
  animation: heartbeat 2.6s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  8% { transform: scale(1.025); }
  16% { transform: scale(1); }
}
.float-cta.is-hidden { transform: translateY(130%); opacity: 0; pointer-events: none; }

/* ===== モーダル ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 24, 49, 0.65);
  backdrop-filter: blur(5px);
  animation: fade 0.25s ease;
}
.modal-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 42px 34px 34px;
  max-width: 460px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalPop 0.45s var(--ease-spring);
  border-top: 5px solid var(--teal);
}
@keyframes modalPop {
  from { transform: translateY(30px) scale(0.92); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.modal-icon { font-size: 3.2rem; margin-bottom: 8px; animation: heartbeat 2.2s ease-in-out infinite; display: inline-block; }
.modal-card h3 { margin: 0 0 10px; color: var(--navy-900); }
.modal-card p { margin: 0 0 24px; color: var(--muted); }
.modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  transition: transform 0.2s var(--ease-spring), color 0.2s ease;
}
.modal-close:hover { transform: rotate(90deg); color: var(--ink); }

/* ===== ライトボックス ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  background: rgba(8, 24, 49, 0.9);
  backdrop-filter: blur(6px);
  opacity: 0;
  animation: fade 0.25s ease forwards;
}
.lightbox[hidden] { display: none; }
@keyframes fade { to { opacity: 1; } }
.lightbox img {
  max-width: min(100%, 1000px);
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  object-fit: contain;
  animation: modalPop 0.35s var(--ease-spring);
}
.lightbox figcaption { color: #fff; font-size: 0.92rem; font-weight: 500; }
.lightbox-close,
.lightbox-nav {
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.2s var(--ease-spring);
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.3); transform: scale(1.08); }
.lightbox-close {
  position: absolute;
  top: 18px; right: 20px;
  width: 44px; height: 44px;
  font-size: 1.5rem;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  font-size: 1.6rem;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ===== スクロール連動リビール ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s var(--ease-spring);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== レスポンシブ ===== */
@media (max-width: 960px) {
  .site-nav { gap: 14px; }
  .site-nav a:not(.nav-cta):not(.lang-link) { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 72px; }
  .hero-photo img { height: 320px; }
  .situation-layout,
  .donate-layout,
  .about-layout { grid-template-columns: 1fr; gap: 30px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
}

@media (max-width: 600px) {
  .container { width: min(100% - 32px, var(--container)); }

  .header-inner { min-height: 60px; }
  .brand-logo { height: 34px; }
  .nav-cta { padding: 8px 16px; font-size: 0.85rem; }
  .alert-bar { font-size: 0.76rem; padding: 8px 14px; line-height: 1.45; }

  .hero-inner { padding: 44px 0 60px; gap: 34px; }
  .hero-eyebrow { font-size: 0.74rem; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(1.55rem, 7vw, 2.1rem); margin-bottom: 16px; }
  .hero-lead { font-size: 0.97rem; margin-bottom: 24px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-trust { gap: 8px 16px; }
  .hero-photo img { height: 240px; }
  .hero-chip-quake { bottom: -14px; left: 6px; padding: 10px 14px; }
  .hero-chip-verified { top: -12px; right: 6px; }
  .aurora { filter: blur(50px); }

  .section { padding: 52px 0; }
  .section-title { margin-bottom: 28px; }
  .stat { padding: 24px 10px; }

  .gallery { gap: 12px; }
  .gallery img { height: 150px; }
  .use-grid { gap: 14px; }
  .use-card { padding: 24px 16px; }

  .donate-card { padding: 22px; }
  .donate-card fieldset { margin-bottom: 22px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .amount-btn { padding: 16px 6px; }
  .toggle-group label { padding: 12px; }
  .donate-summary { padding: 16px; }
  .donate-summary strong { font-size: 1.35rem; }

  .method-grid { gap: 8px; }
  .method-grid label { flex: 1 1 calc(50% - 4px); justify-content: center; padding: 12px 8px; }
  .method-panel { padding: 16px; }
  .kv-table > div { grid-template-columns: 1fr; gap: 2px; padding: 10px 0; }
  .kv-table dt { font-size: 0.74rem; }
  .kv-table dd.mono { font-size: 0.8rem; }
  .qr-row { flex-direction: column; align-items: stretch; text-align: center; }
  .qr-box { margin: 0 auto; }
  .platform-links { flex-direction: column; }
  .platform-links .btn { width: 100%; }

  .about-card { padding: 24px; }
  .footer-logo { height: 46px; padding: 8px 14px; }
  .footer-nav { gap: 16px 18px; }
  .modal-card { padding: 36px 24px 28px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.3rem; }

  .float-cta { display: block; }
  .site-footer { padding-bottom: 100px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.45rem; }
  .method-grid label { font-size: 0.8rem; padding: 11px 6px; }
  .stat-num { font-size: 1.35rem; }
}

/* ===== モーション低減設定 ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-eyebrow, .hero h1 .line, .hero-lead, .hero-actions, .hero-trust,
  .hero-photo, .hero-chip { opacity: 1; transform: none; animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .section-title::after { transform: scaleX(1); transition: none; }
}
