/* ==========================================================================
   CAFS Japan — 財政健全化を求める市民の会
   ========================================================================== */

:root {
  --navy-950: #141f33;
  --navy-900: #1a2740;
  --navy-800: #2e3f5c;
  --charcoal: #333333;
  --ink: #1c2739;
  --body-gray: #5b6472;
  --muted-white: #c7cdd6;
  --paper: #f7f8fa;
  --white: #ffffff;
  --gold: #d9a544;
  --gold-ink: #b98a3a;
  --border-light: #e2e5ea;

  --font-serif: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;

  --container: 1180px;
  --section-pad: 120px;
}

@media (max-width: 900px) {
  :root { --section-pad: 72px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, ul, form { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--navy-950); }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-950);
  padding: 10px 18px;
  z-index: 100;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow-rule {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold);
  color: var(--navy-950);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(190, 140, 40, .55);
}

.btn-outline-dark {
  border-color: var(--navy-950);
  color: var(--navy-950);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--navy-950); color: var(--white); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, .5);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); }

.btn-sm { padding: 9px 20px; font-size: 13.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { width: 38px; height: 38px; border-radius: 999px; }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--navy-950);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--navy-950);
}
.nav-toggle svg { width: 24px; height: 24px; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.nav-link {
  position: relative;
  font-size: 14.5px;
  color: var(--ink);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--gold-ink); font-weight: 700; }
.nav-link.is-active::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social { display: flex; align-items: center; gap: 8px; }
.nav-social .social-chip {
  width: 32px; height: 32px;
  border-color: var(--border-light);
  color: var(--body-gray);
}
.nav-social .social-chip:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-950); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 8px 24px 20px;
    box-shadow: 0 16px 24px -16px rgba(20, 30, 55, .2);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-link { padding: 8px 0; }
  .nav-social { margin-top: 6px; }
  .nav-cta { margin-top: 10px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 24px 120px;
  text-align: center;
  background: var(--navy-950);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/diet-building.jpg') center 30% / cover no-repeat;
  filter: grayscale(65%) brightness(.55) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(175deg, rgba(20, 31, 51, .35) 0%, rgba(20, 31, 51, .55) 40%, rgba(20, 31, 51, .88) 78%, rgba(20, 31, 51, .96) 100%);
}
.hero-watermark {
  position: absolute;
  z-index: 2;
  color: var(--white);
  opacity: .08;
  pointer-events: none;
}
.hero-watermark.top-right { top: -60px; right: -110px; width: 480px; height: 480px; transform: rotate(18deg); }
.hero-watermark.bottom-left { bottom: -100px; left: -100px; width: 340px; height: 340px; color: var(--gold); opacity: .07; transform: rotate(-24deg); }

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: var(--muted-white);
  font-size: 12.5px;
  letter-spacing: .08em;
  margin-bottom: 28px;
}
.hero-kicker .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.6;
  color: var(--gold);
  margin-bottom: 36px;
}
.hero-copy {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted-white);
  font-size: 16px;
  line-height: 2;
  text-align: left;
}
.hero-copy p { text-align: left; }

.hero-note {
  max-width: 600px;
  margin: 28px auto 0;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--muted-white);
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero { padding: 96px 20px 80px; }
  .hero h1 { font-size: 30px; }
  .hero-tagline { font-size: 22px; }
}

/* ---------- Section shells ---------- */
.section { padding: var(--section-pad) 24px; }
.section-paper { background: var(--paper); }
.section-navy {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  text-align: center;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 32px;
  color: var(--navy-950);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 15.5px;
  color: var(--body-gray);
  line-height: 1.9;
}
.section-sub a {
  color: var(--gold-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Policy cards ---------- */
.policy-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.policy-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 32px;
  border-top: 3px solid var(--navy-950);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.policy-card:nth-child(2) { border-top-color: var(--gold); }
.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(20, 30, 55, .28);
  border-color: var(--gold);
}
.policy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--navy-950);
  color: var(--gold);
  margin-bottom: 22px;
}
.policy-icon svg { width: 26px; height: 26px; }
.policy-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-950);
  margin-bottom: 14px;
  line-height: 1.6;
}
.policy-card p { font-size: 15px; color: var(--body-gray); line-height: 1.95; }

@media (max-width: 900px) {
  .policy-grid { grid-template-columns: 1fr; }
}

/* ---------- Closing statement ---------- */
.closing-watermark {
  position: absolute;
  top: -140px; left: 50%;
  width: 420px; height: 420px;
  transform: translateX(-50%) rotate(8deg);
  color: var(--white);
  opacity: .04;
  pointer-events: none;
}
.closing-inner { position: relative; max-width: 620px; margin: 0 auto; }
.closing-inner h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 20px;
}
.closing-inner p {
  font-size: 15.5px;
  line-height: 2;
  color: var(--muted-white);
  margin-bottom: 36px;
}

/* ---------- Instagram ---------- */
.instagram-card {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 44px 32px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.instagram-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -18px rgba(20, 30, 55, .35); }
.instagram-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--gold);
  margin-bottom: 18px;
}
.instagram-card-icon svg { width: 24px; height: 24px; }
.instagram-card-handle {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-950);
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--muted-white);
  padding: 72px 24px 32px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand-mark {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-brand-mark img { width: 20px; height: 20px; }
.footer-brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 16px; color: var(--white); }
.footer-tagline { font-size: 13.5px; line-height: 1.9; max-width: 280px; margin-bottom: 22px; }
.social-row { display: flex; gap: 10px; }
.social-chip {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.social-chip:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-950); }

.footer-heading {
  font-size: 12.5px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }

.footer-contact h4 {
  font-size: 26px;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-mail svg { width: 16px; height: 16px; }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
  text-align: center;
}
.footer-bottom a { text-decoration: underline; }
.footer-credit { margin-top: 6px; font-size: 11px; color: rgba(255, 255, 255, .3); }

/* ---------- Sub-page hero (policy / staff / join) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950) 65%);
  padding: 76px 24px 64px;
  text-align: center;
}
.page-hero-watermark {
  position: absolute;
  top: -80px; right: -100px;
  width: 340px; height: 340px;
  color: var(--white);
  opacity: .06;
  transform: rotate(18deg);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 34px;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero-lead {
  font-size: 16px;
  color: var(--muted-white);
  line-height: 1.9;
}
.page-hero-lead a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 640px) {
  .page-hero { padding: 56px 20px 48px; }
  .page-hero h1 { font-size: 27px; }
}

/* ---------- Article (policy) page ---------- */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 88px 24px;
}
.article-section { margin-bottom: 64px; }
.article-section:last-of-type { margin-bottom: 0; }
.article h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  color: var(--navy-950);
  margin-bottom: 24px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}
.article p {
  font-size: 15.5px;
  line-height: 2.05;
  color: var(--body-gray);
  margin-bottom: 20px;
}
.article p:last-child { margin-bottom: 0; }
.article strong { color: var(--ink); font-weight: 700; }

.article figure {
  margin: 32px 0;
  padding: 0;
}
.article figure img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}
.article figure figcaption {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--body-gray);
  text-align: center;
}

.article-closing {
  background: var(--navy-950);
  color: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  margin-top: 8px;
}
.article-closing h2 {
  color: var(--gold);
  border-left-color: var(--gold);
}
.article-closing p { color: var(--muted-white); }
.article-closing blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .06);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted-white);
  font-style: italic;
}

.article-refs {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}
.article-refs h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-950);
  margin-bottom: 18px;
}
.article-refs ul { display: flex; flex-direction: column; gap: 10px; }
.article-refs li { font-size: 13.5px; line-height: 1.8; color: var(--body-gray); }
.article-refs a { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 2px; word-break: break-all; }

@media (max-width: 640px) {
  .article { padding: 56px 20px; }
  .article-closing { padding: 32px 24px; }
}

/* ---------- Staff page ---------- */
.staff-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 88px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.staff-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  align-items: start;
}
.staff-card.no-photo { grid-template-columns: 1fr; }
.staff-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  background: var(--navy-950);
}
.staff-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-950);
  margin-bottom: 6px;
}
.staff-role {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-ink);
  background: rgba(217, 165, 68, .12);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.staff-meta { font-size: 13.5px; color: var(--body-gray); margin-bottom: 10px; }
.staff-bio { font-size: 15px; line-height: 1.95; color: var(--body-gray); }

@media (max-width: 640px) {
  .staff-wrap { padding: 56px 20px; }
  .staff-card { grid-template-columns: 1fr; }
  .staff-photo { max-width: 220px; margin: 0 auto; }
}

/* ---------- Join / contact page ---------- */
.join-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 88px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.join-info h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-950);
  margin-bottom: 18px;
}
.join-info p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--body-gray);
  margin-bottom: 18px;
}
.join-info a.join-mail {
  color: var(--gold-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.join-info figure { margin: 28px 0; }
.join-info figure img { width: 100%; border-radius: 12px; border: 1px solid var(--border-light); }
.join-dues {
  margin-top: 8px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 14px;
}
.join-dues dl { display: flex; flex-direction: column; gap: 10px; }
.join-dues dt { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--gold-ink); }
.join-dues dd { font-size: 14.5px; color: var(--body-gray); line-height: 1.8; margin: 0 0 8px; }
.join-dues .join-note { font-size: 13px; color: var(--gold-ink); font-weight: 600; }

.join-form {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.join-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.join-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--body-gray);
  margin-bottom: 8px;
}
.join-form input, .join-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border-light);
  font-size: 14.5px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
}
.join-form textarea { resize: vertical; min-height: 120px; }
.join-form input:focus, .join-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 165, 68, .25);
}
.join-form button { align-self: flex-start; }
.join-form-status { font-size: 13.5px; color: var(--body-gray); min-height: 1.4em; }

@media (max-width: 860px) {
  .join-wrap { grid-template-columns: 1fr; padding: 56px 20px; gap: 48px; }
  .join-form-row { grid-template-columns: 1fr; }
}

/* ---------- Quotes page ---------- */
.quote-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 88px 24px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.quote-block { text-align: center; position: relative; }
.quote-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  opacity: .35;
  display: block;
  margin-bottom: 4px;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 18px;
}
.quote-attribution {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--gold-ink);
}
.quote-attribution::before { content: "— "; }
.quote-divider {
  width: 40px; height: 1px;
  background: var(--border-light);
  margin: 56px auto 0;
}

@media (max-width: 640px) {
  .quote-list { padding: 56px 20px; gap: 44px; }
  .quote-text { font-size: 17px; }
}

/* ---------- Donate page ---------- */
.donate-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px 96px;
  text-align: center;
}
.donate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--gold);
  margin-bottom: 24px;
}
.donate-icon svg { width: 28px; height: 28px; }
.donate-wrap p.donate-body {
  font-size: 15.5px;
  line-height: 2;
  color: var(--body-gray);
  max-width: 560px;
  margin: 0 auto 32px;
}
.donate-terms {
  margin-top: 48px;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 36px;
}
.donate-terms p { font-size: 14.5px; color: var(--body-gray); line-height: 1.9; margin-bottom: 16px; }
.donate-terms ol {
  list-style: none;
  counter-reset: donate-terms;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.donate-terms ol li {
  counter-increment: donate-terms;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--body-gray);
  padding-left: 28px;
  position: relative;
}
.donate-terms ol li::before {
  content: counter(donate-terms) ".";
  position: absolute;
  left: 0;
  color: var(--gold-ink);
  font-weight: 700;
}
.donate-terms .donate-note {
  font-size: 13px;
  color: var(--body-gray);
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-top: 4px;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .donate-wrap { padding: 56px 20px 72px; }
  .donate-terms { padding: 24px 22px; }
}

.donate-form-section { margin-top: 56px; text-align: left; }
.donate-form-section p { font-size: 15px; line-height: 1.95; color: var(--body-gray); margin-bottom: 24px; }

.donate-bank {
  background: var(--navy-950);
  color: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.donate-bank dt { font-size: 12px; letter-spacing: .06em; color: var(--muted-white); }
.donate-bank dd { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--gold); margin: 2px 0 10px; }
.donate-bank dd:last-child { margin-bottom: 0; }
