/* ============ BASE ============ */
:root {
  /* ---- Palette: Ichibanya-inspired warm corporate ---- */
  --orange: #E8832A;
  --main-orange: #E8832A;
  --orange-deep: #D06F1A;
  --orange-soft: #FFF3E8;
  --beige: #FAF8F3;
  --beige-soft: #F4EFE7;
  --beige-border: #E5DFD4;
  --brown: #3B2E25;
  --brown-muted: #6B5D52;
  --white: #ffffff;
  --gold: #E8832A;

  /* Colorful gradient accent (FV circles — vivid) */
  --gradient-accent: linear-gradient(135deg, #FE82B3, #FFA56D, #FABD5E, #BECC90, #8DDBD1);

  /* ---- Legacy aliases ---- */
  --orange-dark: var(--orange-deep);
  --warm-terracotta: var(--orange-deep);
  --earth-beige: var(--beige);
  --text-charcoal: var(--brown);
  --yellow: var(--orange);
  --pink: var(--orange);
  --green: var(--orange);
  --dark: var(--brown);
  --text: var(--brown);
  --muted: #6B5D52;
  --bg: var(--beige);
  --bg-soft: var(--beige);
  --radius: 8px;
  --shadow: 0 8px 32px -12px rgba(45, 27, 14, 0.10);
  /* Heading: 游ゴシック Bold 統一 */
  --font-head: "Yu Gothic", "游ゴシック", YuGothic,
               "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN",
               "Noto Sans JP", sans-serif;
  /* Body: 游ゴシック Medium (壱番屋と同じ可読性) */
  --font-body: "Yu Gothic Medium", "游ゴシック Medium",
               YuGothic, "Yu Gothic", "游ゴシック",
               "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN",
               "Noto Sans JP", "Inter", system-ui, sans-serif;
  /* Numbers / Latin — Helvetica World */
  --font-num: "Helvetica World", "Helvetica Neue", "Helvetica", "Arial",
              "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  /* English eyebrow / numerals */
  --font-en: "Inter", "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  --font-jp: var(--font-body);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--brown);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

/* Headings: Poppins (EN) + Zen Maru Gothic (JP) */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.donate-hero h1,
.final-cta h2,
.en-title,
.concept-text h4,
.flow-step h4,
.donate-info h4,
.story-card h3,
.report-copy h2,
.big-name {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* All-English labels / numerals use Poppins distinctly */
.section-eyebrow,
.logo-mark,
.logo-text,
.footer-logo,
.global-nav a,
.header-cta,
.amount-value,
.breadcrumb,
.btn {
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}
.stat-num {
  font-family: var(--font-num);
  letter-spacing: -0.02em;
}

/* JP version: Poppins for Latin, JP fallbacks for Japanese text */
:lang(ja) {
  --font-head: "Yu Gothic", "游ゴシック", YuGothic,
               "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
  --font-body: "Yu Gothic Medium", "游ゴシック Medium", YuGothic,
               "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --font-en: var(--font-num);
  letter-spacing: 0.04em;
}

:lang(ja) .section-eyebrow,
:lang(ja) .logo-mark,
:lang(ja) .logo-text,
:lang(ja) .footer-logo,
:lang(ja) .global-nav a,
:lang(ja) .header-cta,
:lang(ja) .amount-value,
:lang(ja) .breadcrumb,
:lang(ja) .btn,
:lang(ja) .hero-eyebrow,
:lang(ja) .lang-btn {
  font-family: var(--font-num);
  letter-spacing: 0.05em;
}
:lang(ja) .stat-num {
  font-family: var(--font-num);
  letter-spacing: -0.02em;
}

/* EN version: Poppins for headings, Nunito for body */
:lang(en) {
  --font-head: "Poppins", "Helvetica Neue", sans-serif;
  --font-body: "Nunito", "Helvetica Neue", sans-serif;
  --font-en: "Poppins", "Helvetica Neue", sans-serif;
  letter-spacing: 0.01em;
  font-family: "Nunito", "Helvetica Neue", sans-serif;
}
:lang(en) .section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  font-size: clamp(32px, 4.2vw, 52px);
}
:lang(en) .section-eyebrow {
  font-family: var(--font-num);
  font-weight: 800;
  letter-spacing: 0.08em;
}
:lang(en) .stat-num {
  font-family: var(--font-num);
  letter-spacing: -0.02em;
}
:lang(en) .story-num {
  font-family: var(--font-num);
}
:lang(en) .hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.01em;
  font-style: normal;
}
:lang(en) .hero-lead,
:lang(en) .hero-sub {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}
:lang(en) .concept-lead,
:lang(en) .donate-lead,
:lang(en) .how-it-works-lead,
:lang(en) .report-copy p,
:lang(en) .stat-label,
:lang(en) .story-line,
:lang(en) .donate-card-desc,
:lang(en) .flow-content p {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.8;
}
:lang(en) .story-panel-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  font-style: normal;
}
:lang(en) .story-panel-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
:lang(en) .concept-text-circle h4,
:lang(en) .donate-card-tag,
:lang(en) .flow-content h4,
:lang(en) .story-quote {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
:lang(en) .btn {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}
:lang(en) .final-cta h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  text-transform: none;
}
:lang(en) .report-copy h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
}
:lang(en) .report-feature-title,
:lang(en) .report-feature-body,
:lang(en) .report-link {
  font-family: "Nunito", sans-serif;
}
:lang(en) .support .section-title,
:lang(en) .support .section-eyebrow,
:lang(en) .stat-label {
  font-family: "Poppins", sans-serif;
}
:lang(en) .stat-prefix,
:lang(en) .stat-unit,
:lang(en) .stat-number {
  font-family: var(--font-num);
}
:lang(en) .report-copy p {
  font-family: "Open Sans", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.sp-only { display: none; }
@media (max-width: 560px) { .sp-only { display: inline; } }
ul { list-style: none; }

/* ---- Subtle paper grain noise (removes flat digital feel) ---- */
.hero,
.story,
.how-it-works,
.moments,
.donate {
  position: relative;
}
.hero::after,
.story::after,
.how-it-works::after,
.moments::after,
.donate::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.section-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(140px, 18vw, 280px) clamp(24px, 5vw, 56px);
  text-align: center;
}
.section-inner > .story-grid,
.section-inner > .concept-layout,
.section-inner > .flow-diagram,
.section-inner > .stats-grid,
.section-inner > .donate-list,
.section-inner > .report-inner,
.section-inner > .moments-marquee { text-align: left; }

.section-eyebrow {
  font-size: clamp(48px, 7vw, 90px);
  letter-spacing: 0.08em;
  color: var(--brown);
  font-weight: 800;
  font-style: normal;
  margin-bottom: 0;
  text-transform: uppercase;
  display: block;
  padding: 0;
  position: relative;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.section-eyebrow::before,
.section-eyebrow::after {
  display: none;
}
.section-eyebrow.light { color: #fff; opacity: 0.1; }
.section-eyebrow.accent { color: var(--orange); opacity: 0.18; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: clamp(56px, 8vw, 96px);
  margin-top: -45px;
  color: var(--brown);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.section-title.light { color: #fff; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, background 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 18px 44px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px -4px rgba(200, 120, 40, 0.22);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -4px rgba(232, 131, 42, 0.40);
  background: #f09540;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-small {
  padding: 10px 24px;
  font-size: 13px;
  background: var(--orange);
  color: #fff;
}
.btn-small:hover { background: var(--orange-deep); transform: translateY(-2px); }

/* ============ HEADER (Ichibanya: clean corporate bar) ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--beige-soft);
  border-bottom: 1px solid rgba(229, 223, 212, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(244, 239, 231, 0.75);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 2px 20px rgba(59, 46, 37, 0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text, #222);
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.logo-npo {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brown-muted);
  margin-bottom: 2px;
}

.global-nav ul { display: flex; gap: 28px; }
.global-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--dark);
  position: relative;
  transition: color 0.3s ease;
}
.global-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.global-nav a:hover { color: var(--gold); }
.global-nav a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* Language toggle (JP / EN tab) */
.lang-toggle {
  display: inline-flex;
  background: var(--beige-soft);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active,
.lang-btn[aria-selected="true"] {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.lang-btn:hover:not(.active) { color: var(--dark); }

/* Nav CTA (hidden on desktop, shown in mobile menu) */
.nav-cta { display: none; }

/* Mobile menu button (hidden on desktop) */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background-color: #ffffff;
  color: var(--brown);
  overflow: hidden;
  min-height: 720px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

/* -- Gradient wash — large colorful background on right side -- */
.hero-wash {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  background: linear-gradient(160deg,
    #FE82B3 0%,
    #FFA56D 22%,
    #FABD5E 44%,
    #BECC90 68%,
    #8DDBD1 100%);
  opacity: 0;
  border-radius: 50%;
  z-index: 0;
  animation: wash-fade 1.6s ease forwards;
}
@keyframes wash-fade {
  0%   { opacity: 0; transform: translateY(-50%) scale(0.8); }
  100% { opacity: 0.75; transform: translateY(-50%) scale(1); }
}

/* -- Decorative filled circles (scattered, sub) -- */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  animation: circle-pop 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.deco-circle-1 {
  width: 280px; height: 280px;
  left: -8%; top: -12%;
  right: auto;
  background: linear-gradient(140deg, #FFA56D, #FABD5E);
  --circle-opacity: 0.55;
  animation-delay: 0.3s;
}
.deco-circle-2 {
  width: 180px; height: 180px;
  right: -3%; bottom: 5%;
  left: auto;
  background: #ffffff;
  --circle-opacity: 0.50;
  animation-delay: 0.5s;
}
.deco-circle-3 {
  width: 120px; height: 120px;
  left: -3%; bottom: -6%;
  right: auto;
  background: var(--orange);
  --circle-opacity: 0.40;
  animation-delay: 0.7s;
}
.deco-circle-4 {
  width: 80px; height: 80px;
  left: -2%; top: 40%;
  right: auto;
  background: #ffffff;
  --circle-opacity: 0.45;
  animation-delay: 0.9s;
}

/* -- Colorful ring outlines at random positions -- */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  z-index: 1;
  opacity: 0;
  animation: circle-pop 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: translate 0.5s ease;
}
.deco-ring-1 {
  width: 340px; height: 340px;
  right: -4%; top: -8%;
  border: 2.5px solid rgba(232, 131, 42, 0.50);
  --circle-opacity: 1;
  animation-delay: 0.6s;
}
.deco-ring-2 {
  width: 260px; height: 260px;
  left: -6%; bottom: -5%;
  right: auto; top: auto;
  border: 2.5px solid rgba(232, 131, 42, 0.35);
  --circle-opacity: 1;
  animation-delay: 0.9s;
}
.deco-ring-3 {
  width: 90px; height: 90px;
  left: 42%; top: 5%;
  bottom: auto;
  border: 2px solid rgba(255, 165, 109, 0.40);
  --circle-opacity: 1;
  animation-delay: 1.1s;
}

/* -- Hover parallax: circles shift when hero is hovered -- */
.hero:hover .deco-ring-1    { translate: -8px -5px; }
.hero:hover .deco-ring-2    { translate:  6px  8px; }
.hero:hover .deco-ring-3    { translate: -5px  6px; }
.hero:hover .deco-circle-1  { translate:  10px -6px; }
.hero:hover .deco-circle-2  { translate: -6px  8px; }

/* Keyframe: soft pop-in */
@keyframes circle-pop {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.5);
  }
  60% {
    opacity: var(--circle-opacity, 0.95);
  }
  100% {
    opacity: var(--circle-opacity, 0.95);
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .deco-circle,
  .deco-ring,
  .hero-wash { animation: none; opacity: var(--circle-opacity, 0.95); transform: none; }
  .hero:hover .deco-ring-1,
  .hero:hover .deco-ring-2,
  .hero:hover .deco-ring-3,
  .hero:hover .deco-circle-1,
  .hero:hover .deco-circle-2 { translate: none; transform: none; }
}

/* -- Hero layout -- */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 40px 140px;
  display: grid;
  grid-template-columns: minmax(0, 500px) 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 44px;
  align-items: stretch;
}
.hero-copy {
  position: relative;
  z-index: 5;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-title {
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体",
               "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN",
               "Hiragino Sans", sans-serif;
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--brown);
  -webkit-text-fill-color: var(--brown);
  letter-spacing: 0.02em;
}
.hero-title-line {
  display: block;
  white-space: nowrap;
  min-height: 1.2em;
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.hero-eyebrow-row .hero-eyebrow {
  margin-bottom: 0;
}
.hero-hand-heart {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}
.hero-happy {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}
.hero-lead {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.7;
  font-weight: 600;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--brown-muted);
  margin-bottom: 0;
  line-height: 1.7;
  font-weight: 600;
}
.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; }

/* -- Hero cutout photo: main visual element -- */
.hero-photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  z-index: 2;
  overflow: visible;
}
.hero-photo img {
  max-height: 780px;
  width: auto;
  max-width: 130%;
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(45, 27, 14, 0.18));
  margin-bottom: -40px;
  transition: transform 0.4s ease;
  transform-origin: bottom center;
  cursor: pointer;
}
.hero-photo img:hover {
  animation: wiggle 0.6s ease;
}
@keyframes wiggle {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(-3deg); }
  30%  { transform: rotate(3deg); }
  45%  { transform: rotate(-2deg); }
  60%  { transform: rotate(2deg); }
  75%  { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}

/* Hero CTA buttons */
.hero .hero-ctas {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.hero .hero-ctas .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 20px 48px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 260px;
  box-shadow: 0 10px 28px -4px rgba(200, 120, 40, 0.22);
}
.hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -4px rgba(232, 131, 42, 0.40);
  background: #f09540;
}
.hero .btn-ghost {
  background: #ffffff;
  color: var(--brown);
  border: 2px solid var(--beige-border);
  padding: 18px 44px;
  font-size: 16px;
  font-weight: 700;
  min-width: 260px;
  box-shadow: 0 6px 20px -8px rgba(45, 27, 14, 0.12);
}
.hero .btn-ghost:hover {
  background: #fff;
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -8px rgba(45, 27, 14, 0.18);
}

/* ============ FEATURE BAR ============ */
.feature-bar {
  display: none;
}
.feature-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--beige);
  border-radius: 24px;
  border: none;
  box-shadow: 0 8px 32px -12px rgba(45, 27, 14, 0.08);
}

/* ============ SECTION ARROW DIVIDER ============ */
.section-arrow-down {
  position: relative;
  height: 72px;
  overflow: hidden;
  pointer-events: none;
  line-height: 0;
}
.section-arrow-down::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 50% 100%, 0 30%);
}
/* story(orange-soft) → concept(white header) */
.arrow-story-concept {
  background: #ffffff;
}
.arrow-story-concept::before {
  background: var(--beige-soft);
}

/* ============ REVEAL ON SCROLL (Phase 5) ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered child animations — children cascade in one by one */
.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.stagger-item.show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .stagger-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  text-align: left;
  letter-spacing: 0.02em;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--orange-soft);
  color: var(--orange);
  flex-shrink: 0;
}
.feature-icon .icon { width: 22px; height: 22px; stroke-width: 2; }

/* shared svg icon */
.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============ STORY ============ */
.story { background: linear-gradient(to bottom, #ffffff 70%, var(--beige-soft) 100%); overflow: hidden; }

/* New: left-right alternating panels with overlapping text */
.story-stack {
  display: flex;
  flex-direction: column;
  gap: 64px;
  text-align: left;
}
.story-panel {
  display: grid;
  grid-template-columns: 55% 1fr;
  align-items: center;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
/* Reverse: photo right, text left */
.story-panel--reverse {
  grid-template-columns: 1fr 55%;
}
.story-panel--reverse .story-panel-photo {
  order: 2;
}
.story-panel--reverse .story-panel-text {
  order: 1;
  padding: 40px 44px;
  margin-right: 0;
  margin-left: 0;
  z-index: 2;
}

/* Photo side */
.story-panel-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.story-panel-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.story-panel:hover .story-panel-photo img {
  transform: scale(1.04);
}
.story-panel-title {
  position: absolute;
  bottom: 12px;
  left: 28px;
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.7),
    0 4px 24px rgba(0, 0, 0, 0.5),
    0 0 2px rgba(0, 0, 0, 0.9);
}

/* Text side — no overlap, clean separation */
.story-panel-text {
  position: relative;
  z-index: 2;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 40px 44px;
}
.story-panel-text p {
  margin: 0;
}

/* 01 02 03 numbering + heading row */
.story-num-row {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 12px;
}
.story-num {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.05em;
  opacity: 1;
}
.story-panel-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown);
  margin: 0;
}

/* Story body text with dotted underline */
.story-line {
  display: inline;
  font-size: 16px;
  line-height: 2.6;
  letter-spacing: 0.04em;
  color: var(--brown);
  background: none;
  padding: 0;
  padding-bottom: 2px;
  border-bottom: 2px dotted var(--brown-muted);
}

@media (max-width: 900px) {
  .story-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .story-panel--reverse { grid-template-columns: 1fr; }
  .story-panel--reverse .story-panel-photo { order: 0; }
  .story-panel--reverse .story-panel-text { order: 0; padding: 24px 20px; margin-left: 0; margin-right: 0; text-align: left; align-items: flex-start; }
  .story-panel-photo { border-radius: 8px; overflow: hidden; }
  .story-panel-photo img { height: 340px; width: 100%; max-width: 100%; }
  .story-panel-text { padding: 24px 20px; text-align: left; align-items: flex-start; }
  /* Number overlay style */
  .story-num-row { position: relative; }
  .story-num { font-size: 64px; opacity: 0.5; line-height: 1; }
  .story-panel-heading {
    position: relative;
    margin-top: -28px;
    z-index: 1;
  }
  .story-line { font-size: 16px; display: inline; background: none; padding: 0; padding-bottom: 2px; border-bottom: 2px dotted var(--brown-muted); line-height: 2.6; white-space: normal; }
  .story-stack { gap: 48px; }
}
@media (max-width: 560px) {
  .story-panel-photo img { height: 280px; width: 100%; max-width: 100%; }
  .story-panel-text { padding: 20px 16px; text-align: left; align-items: flex-start; }
  .story-num { font-size: 52px; opacity: 0.5; line-height: 1; }
  .story-panel-heading { margin-top: -22px; }
  .story-line {
    font-size: 15px;
    line-height: 2.6;
    white-space: normal;
    padding: 0;
    padding-bottom: 2px;
    background: none;
    border-bottom: 2px dotted var(--brown-muted);
    display: inline;
  }
  .story-panel-text p { margin-bottom: 4px; }
  .story-panel-text { align-items: flex-start; }
  .story-panel--reverse .story-panel-text { padding: 20px 16px; text-align: left; align-items: flex-start; }
  .story-stack { gap: 36px; }
}
.story::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 4%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.story-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: story;
}
.story-card {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--beige-border);
  overflow: hidden;
  box-shadow: 0 4px 16px -6px rgba(59, 46, 37, 0.06);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  counter-increment: story;
}
.story-card::before {
  content: counter(story, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--main-orange);
  color: #fff;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 100px;
}
/* Cards aligned uniformly — no stagger offset */
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(45, 27, 14, 0.16);
}
.story-card img { width: 100%; height: 240px; object-fit: cover; }
.story-card h3 {
  padding: 28px 28px 12px;
  font-size: 19px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.story-icon {
  display: none;
}
.story-card p {
  padding: 0 28px 32px;
  font-size: 16px;
  color: var(--brown-muted);
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* ============ CONCEPT ============ */
.concept {
  position: relative;
  overflow: hidden;
  background-color: var(--white);
}
.concept-map-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  max-width: 1400px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
.concept-map-bg img {
  width: 100%;
  height: auto;
}
.concept::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(340px, 42vw, 600px);
  background: linear-gradient(to bottom,
    #ffffff 0%,
    #ffffff 60%,
    rgba(255, 255, 255, 0) 100%);
  z-index: 0;
  pointer-events: none;
}
.concept .section-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(120px, 15vw, 200px);
}
.concept .section-eyebrow {
  color: var(--orange) !important;
  opacity: 0.18;
}
.concept .section-title {
  color: var(--dark) !important;
  text-align: left;
}
.concept .concept-lead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--brown-muted) !important;
  margin: 0 0 0;
  max-width: 520px;
  line-height: 1.9;
  text-align: left;
}
/* Top: header text (left) + photo (right) */
.concept-header {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 96px);
  text-align: left;
  position: relative;
}
.concept-header-text {
  text-align: left;
}
.concept-header-text .section-eyebrow {
  justify-content: flex-start;
}
.concept-header-text .section-title {
  margin-bottom: 24px;
}
.concept-photo {
  position: relative;
  border-radius: 8px;
  aspect-ratio: 16 / 11;
  background: var(--beige-soft);
}
.concept-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--beige-soft);
  border-radius: 12px;
  z-index: 0;
  transform: translate(24px, 24px);
}
.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 40px -12px rgba(59, 46, 37, 0.12);
}
/* Bottom: map + 5 happinesses */
.concept-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}
.concept-map {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.concept-map-svg {
  width: 180px;
  height: auto;
}
/* Concept circles layout */
.concept-circles {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
}
/* Flower decorations */
.concept-flower {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}
.concept-flower-1 {
  width: 80px; height: 80px;
  top: 2%; right: 3%;
  transform: rotate(15deg);
}
.concept-flower-2 {
  width: 60px; height: 60px;
  top: 18%; left: 2%;
  transform: rotate(-25deg);
}
.concept-flower-3 {
  width: 70px; height: 70px;
  top: 42%; right: 1%;
  transform: rotate(40deg);
}
.concept-flower-4 {
  width: 50px; height: 50px;
  top: 62%; left: 4%;
  transform: rotate(-15deg);
}
.concept-flower-5 {
  width: 65px; height: 65px;
  bottom: 5%; right: 5%;
  transform: rotate(20deg);
}
@media (max-width: 900px) {
  .concept-flower-1 { right: -2%; width: 64px; height: 64px; }
  .concept-flower-2 { left: -2%; width: 48px; height: 48px; }
  .concept-flower-3 { right: -3%; width: 56px; height: 56px; }
  .concept-flower-4 { left: -1%; width: 42px; height: 42px; }
  .concept-flower-5 { right: -1%; width: 50px; height: 50px; }
}
@media (max-width: 560px) {
  .concept-flower { opacity: 0.2; }
  .concept-flower-1 { width: 56px; height: 56px; right: -4%; }
  .concept-flower-2 { width: 40px; height: 40px; left: -3%; }
  .concept-flower-3 { width: 48px; height: 48px; right: -3%; }
  .concept-flower-4 { width: 36px; height: 36px; left: -2%; }
  .concept-flower-5 { width: 44px; height: 44px; right: -2%; }
}
.concept-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-left: 8%;
}
.concept-row .concept-photo-circle {
  margin-right: -30px;
  z-index: 1;
}
.concept-row .concept-text-circle {
  z-index: 2;
  margin-top: 60px;
}
.concept-row--reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding-left: 0;
  padding-right: 8%;
}
.concept-row--reverse .concept-photo-circle {
  margin-right: 0;
  margin-left: -30px;
}
.concept-photo-circle {
  width: clamp(240px, 26vw, 360px);
  height: clamp(240px, 26vw, 360px);
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
  position: relative;
}
.concept-photo-circle::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2.5px dashed transparent;
  border-top-color: var(--orange);
  border-right-color: var(--orange);
  animation: circle-spin 4s linear infinite;
}
@keyframes circle-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.concept-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.concept-text-circle {
  width: clamp(180px, 19vw, 260px);
  height: clamp(180px, 19vw, 260px);
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  flex-shrink: 0;
}
.concept-text-circle h4 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.concept-text-circle p {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #ffffff;
  line-height: 1.6;
  font-weight: 700;
}

/* Story quote block */
.story-quote {
  margin: clamp(40px, 6vw, 64px) auto 0;
  max-width: 720px;
  padding: 24px 0;
  font-family: var(--font-head);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 600;
  font-style: italic;
  line-height: 2;
  color: var(--orange);
  text-align: center;
  background: transparent;
  border-radius: 0;
  position: relative;
}
.story-quote-highlight {
  font-size: 1.4em;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

/* ============ HOW IT WORKS (海外NPO風 timeline) ============ */
.how-it-works { background: linear-gradient(to bottom, #ffffff 0%, #FFE0B2 100%); position: relative; }
.how-it-works::before { content: none; }
.how-it-works-inner { text-align: center; }
.how-it-works-lead {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--muted);
  max-width: 560px;
  margin: -16px auto clamp(48px, 7vw, 72px);
  line-height: 1.9;
}
/* Timeline layout */
.flow-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  gap: 24px;
}
.flow-line {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 3px;
  width: auto;
  background: var(--beige-border);
  opacity: 1;
  z-index: 0;
  transform: translateY(-50%);
}
.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
}
.flow-node:nth-child(even),
.flow-node:nth-child(odd) {
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}
.flow-num { display: none; }
.flow-line { display: none; }

/* Image → Number + Title row → dotted line → body */
.flow-num-title {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 4px;
  padding: 12px 16px 0;
  margin-bottom: 0;
  border-bottom: 1.5px dotted var(--brown-muted);
  padding-bottom: 10px;
  margin-left: 16px;
  margin-right: 16px;
  padding-left: 0;
  padding-right: 0;
}
.flow-num-overlay {
  font-family: var(--font-num);
  font-size: 44px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.5;
  line-height: 1;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.flow-content h4 {
  font-weight: 700;
  white-space: nowrap;
}
/* No connector between cards */
.flow-node + .flow-node::before {
  display: none;
}
/* flow-node position already set above */
.flow-node:hover .flow-num {
  background: var(--orange-deep);
  color: #fff;
  transform: scale(1.08);
}
/* Flow sequential animation */
.flow-node .flow-num {
  animation: flow-pulse 8s ease-in-out infinite;
}
.flow-node:nth-child(2) .flow-num { animation-delay: 0s; }
.flow-node:nth-child(3) .flow-num { animation-delay: 2s; }
.flow-node:nth-child(4) .flow-num { animation-delay: 4s; }
.flow-node:nth-child(5) .flow-num { animation-delay: 6s; }
.flow-node .flow-content {
  animation: flow-card-fade 8s ease-in-out infinite;
}
.flow-node:nth-child(2) .flow-content { animation-delay: 0s; }
.flow-node:nth-child(3) .flow-content { animation-delay: 2s; }
.flow-node:nth-child(4) .flow-content { animation-delay: 4s; }
.flow-node:nth-child(5) .flow-content { animation-delay: 6s; }
@keyframes flow-pulse {
  0%, 20% { transform: scale(1); box-shadow: 0 4px 16px -4px rgba(232, 131, 42, 0.3); }
  10% { transform: scale(1.2); box-shadow: 0 0 20px rgba(232, 131, 42, 0.5); }
  25%, 100% { transform: scale(1); box-shadow: 0 4px 16px -4px rgba(232, 131, 42, 0.3); }
}
@keyframes flow-card-fade {
  0%, 20% { transform: translateY(0); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
  10% { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(232, 131, 42, 0.15); }
  25%, 100% { transform: translateY(0); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
}
.flow-icon-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  margin-bottom: 12px;
}
.flow-icon-img img {
  width: 100%;
  height: 100%;
}
.flow-content {
  background: #ffffff;
  border: 1px solid var(--beige-border);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
}
/* flow-node flex already set above */
.flow-node .flow-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.flow-content p {
  flex-grow: 1;
}
.flow-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 8px;
}
.flow-card-img--contain {
  object-fit: contain;
  padding: 16px;
  background: var(--beige-soft);
}
.flow-content h4,
.flow-content p {
  padding: 0 16px;
}
.flow-content h4 {
  padding-top: 14px;
  padding-bottom: 0;
  margin-bottom: 8px;
}
.flow-content h4::after {
  display: none;
}
.flow-content p {
  padding-top: 8px;
  padding-bottom: 16px;
}
.flow-content h4 {
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 6px;
  font-weight: 700;
}
.flow-content p {
  font-size: 15px;
  color: var(--brown-muted);
  line-height: 1.85;
  padding-top: 14px;
  padding-bottom: 20px;
}
.flow-cta {
  text-align: center;
  margin-top: 48px;
}
.flow-cta .btn-primary {
  font-size: 20px;
  padding: 22px 56px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .flow-cta .btn-primary {
    font-size: 18px;
    padding: 20px 32px;
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }
  .flow-cta-lead {
    font-size: 14px;
  }
}
.flow-cta-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
}
.flow-cta-lead {
  color: var(--brown);
  font-size: clamp(12px, 1.3vw, 17px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Legacy classes (keep for compatibility) */
.flow-diagram { display: none; }
.flow-step, .flow-badge, .flow-icon, .flow-arrow { display: none; }

/* ============ SUPPORT ============ */
.support {
  position: relative;
  background: url('assets/images/achievement-bg.jpg') center / cover no-repeat;
  color: var(--brown);
  overflow: hidden;
}
.support-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.support-bg-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.2;
  position: sticky;
  top: 0;
}
.support .section-inner {
  position: relative;
  z-index: 1;
}
.support .section-eyebrow { color: var(--brown-muted); opacity: 0.15; }
.support .section-title { color: var(--brown-muted); }
.how-it-works .section-eyebrow { color: var(--orange); opacity: 0.18; }
.how-it-works .section-title { color: var(--brown); }
.support .section-inner { position: relative; }
.support-title-laurel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.laurel {
  width: 32px;
  height: 64px;
  flex-shrink: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 48px;
}
.stat-card {
  background: #ffffff;
  border: 1px solid var(--orange);
  border-radius: 0;
  padding: 28px 20px 24px;
  outline: 3px solid var(--orange);
  outline-offset: 4px;
  text-align: center;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  min-width: 0;
}
/* Stat card reveal animation */
.stat-card {
  opacity: 0;
  transform: translateY(30px);
}
.stat-card.show {
  animation: stat-float-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.stat-card.show:nth-child(1) { animation-delay: 0s; }
.stat-card.show:nth-child(2) { animation-delay: 0.1s; }
.stat-card.show:nth-child(3) { animation-delay: 0.2s; }
.stat-card.show:nth-child(4) { animation-delay: 0.3s; }
.stat-card.show:nth-child(5) { animation-delay: 0.4s; }
.stat-card.show:nth-child(6) { animation-delay: 0.5s; }
@keyframes stat-float-up {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.stat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px -8px rgba(232, 131, 42, 0.2);
  background: var(--orange-soft);
}
.stat-icon {
  margin: 0 auto 14px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.stat-icon-img {
  width: 110px;
  height: 110px;
  display: block;
  object-fit: contain;
}
.stat-icon .stat-icon-svg {
  width: 90px;
  height: 90px;
  display: block;
  color: var(--orange);
  fill: none;
  stroke: var(--orange);
}
.stat-num {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px dotted var(--orange);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.stat-number { min-width: 1ch; letter-spacing: 0.08em; font-weight: 700; }
.stat-card:nth-child(2) .stat-number { letter-spacing: 0.04em; }
.stat-prefix {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}
.stat-unit {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 2px;
}
.stat-label {
  font-size: 15px;
  color: var(--brown-muted);
  font-weight: 600;
  line-height: 1.8;
  margin-top: 6px;
}
.support .stat-label { color: var(--brown-muted); }
.support .support-lead { color: rgba(255, 255, 255, 0.9); }

/* ============ MOMENTS (slow marquee) ============ */
.moments {
  background: #ffffff;
  overflow: hidden;
}
.moments-head {
  padding-bottom: 72px;
}
.moments-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 96px;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
}
.moments-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: moments-slide 80s linear infinite;
}
.moments-marquee:hover .moments-track {
  animation-play-state: paused;
}
.moments-track img {
  width: 480px;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  filter: saturate(1.1);
  box-shadow: 0 8px 28px -12px rgba(45, 27, 14, 0.12);
}
/* Desktop: show wide track, hide the two mobile tracks */
.moments-track-sp-a,
.moments-track-sp-b {
  display: none;
}
@keyframes moments-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}
@keyframes moments-slide-reverse {
  0%   { transform: translateX(calc(-50% - 12px)); }
  100% { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .moments-track { animation: none; }
}

/* ============ DONATE (海外NPO風 card grid) ============ */
.donate::before { content: none; }
.donate {
  background: var(--beige-soft);
  position: relative;
}
.donate .section-inner {
  position: relative;
  z-index: 1;
}
.donate-lead {
  font-size: clamp(15px, 1.3vw, 16px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  line-height: 1.8;
}

/* New card grid */
.donate-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: left;
}
.donate-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: visible;
  border: none;
  padding: 16px 16px 24px;
  box-shadow: 2px 4px 16px rgba(0,0,0,0.08);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.donate-card:nth-child(odd) { transform: rotate(-1.5deg); }
.donate-card:nth-child(even) { transform: rotate(1.5deg); }
.donate-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 16px;
  background: var(--orange);
  opacity: 0.7;
  border-radius: 2px;
  z-index: 2;
}
.donate-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 4px 8px 24px rgba(0,0,0,0.12);
}
.donate-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 2px;
}
.donate-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}
.donate-card:hover .donate-card-img img {
  transform: scale(1.04);
}
.donate-card-overlay {
  display: none;
  background: linear-gradient(to top, rgba(59, 46, 37, 0.75), transparent);
}
.donate-card-tag {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  margin: 0;
}
.donate-card-body {
  padding: 14px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.donate-card-desc {
  font-size: 15px;
  color: var(--brown-muted);
  line-height: 1.9;
}
.donate-card-goal {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 2;
}
.donate-card-goal .amount-number {
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-num);
  vertical-align: -2px;
}
.donate-card-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  border: 2px solid var(--orange);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 4px;
}
.donate-card-btn:hover {
  background: var(--orange);
  color: #fff;
}
.donate-card-btn--filled {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.donate-card-btn--filled:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

/* Legacy donate classes (hidden) */
.donate-list { display: grid; gap: 20px; }
.donate-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 28px;
  background: #ffffff;
  border-radius: 8px;
  padding: 28px;
  border: 1px solid var(--beige-border);
  box-shadow: 0 2px 12px -4px rgba(59, 46, 37, 0.04);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.donate-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(45, 27, 14, 0.10);
}
.donate-thumb {
  position: relative;
  width: 140px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--beige-soft);
  flex-shrink: 0;
}
.donate-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.donate-badge {
  display: none;
}
.donate-info h4 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 6px;
}
.donate-info p {
  font-size: 13px;
  color: var(--muted);
}
.donate-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.amount-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.3;
}
.amount-value .amount-number {
  font-size: 26px;
  font-weight: 900;
  font-family: var(--font-num);
  letter-spacing: 0.01em;
  vertical-align: -2px;
}

/* ============ REPORT ============ */
.report {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.report::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -140px;
  top: -140px;
  border-radius: 50%;
  background: linear-gradient(130deg, #FE82B3, #FFA56D, #FABD5E, #BECC90, #8DDBD1);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transform: scale(0.3);
}
.report.show::before {
  animation: report-circle-expand 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.report::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: linear-gradient(130deg, #FE82B3, #FFA56D, #FABD5E, #BECC90, #8DDBD1);
  opacity: 0;
  transform: scale(0.3);
}
.report.show::after {
  animation: report-circle-expand 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes report-circle-expand {
  0%   { opacity: 0; transform: scale(0.3); }
  100% { opacity: 0.5; transform: scale(1); }
}
  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
}
.report-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}
.report-inner .section-eyebrow,
.report-inner .section-title { text-align: left; }
.report-inner .section-eyebrow {
  color: var(--orange);
  opacity: 0.18;
  font-family: var(--font-num) !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}
.report-inner .section-title {
  margin-top: -28px;
  margin-bottom: 24px;
}
.report-inner .section-eyebrow::before { display: none; }
.report-copy p { color: var(--muted); margin-bottom: 28px; line-height: 1.9; text-align: left; }
.report-feature {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--beige-border);
  border-radius: 8px;
  box-shadow: 0 4px 20px -8px rgba(45, 27, 14, 0.06);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.report-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(45, 27, 14, 0.10);
}
.report-feature-logo {
  display: block;
  max-width: 280px;
  height: auto;
  margin-bottom: 10px;
}
.report-feature-body {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0 !important;
  line-height: 1.8;
  text-align: left;
}
.report-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.report-link {
  display: block;
  text-align: center;
  padding: 16px 28px;
  background: #ffffff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: 6px 6px 0 var(--orange);
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.report-link:hover {
  background: var(--orange);
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--orange-deep);
  color: #ffffff;
}

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative;
  background: var(--brown);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  filter: brightness(0.85) saturate(1.1);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,27,14,0.35) 0%, rgba(45,27,14,0.55) 100%);
  z-index: 1;
}
.final-cta-logo {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1);
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 180px 24px;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.final-cta p {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.9;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.final-cta .hero-ctas { justify-content: center; }
.final-ctas { gap: 14px; }
.final-cta .btn-primary,
.final-cta .btn-ghost {
  border-radius: 8px;
}
.final-cta .btn-primary {
  box-shadow: 0 8px 28px -4px rgba(200, 120, 40, 0.30);
}
/* CTA cards with child popping out */
.final-cta-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.final-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  min-width: 280px;
  border-radius: 16px;
  background: var(--orange);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 28px -4px rgba(200, 120, 40, 0.35);
}
.final-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px -4px rgba(200, 120, 40, 0.45);
}
.final-cta-card--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: none;
}
.final-cta-card--outline:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: none;
}
.final-cta-card-img {
  position: absolute;
  bottom: 0;
  right: -30px;
  height: 140px;
  width: auto;
  border-radius: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
  pointer-events: none;
}
.final-cta-card:hover .final-cta-card-img {
  transform: translateY(-8px) rotate(3deg);
}
.final-cta-card-text {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .final-cta-cards { flex-direction: column; align-items: center; }
  .final-cta-card { width: 100%; max-width: 360px; padding: 22px 36px; font-size: 16px; }
  .final-cta-card-img { height: 120px; right: -16px; }
}
@media (max-width: 560px) {
  .final-cta-card { padding: 20px 28px; font-size: 15px; }
  .final-cta-card-img { height: 100px; right: -10px; }
}
.final-cta .btn-ghost {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.final-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.95);
  color: var(--orange);
  border-color: #fff;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #3D2B1F;
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 24px 36px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-col .small { line-height: 1.9; margin-bottom: 8px; }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-line .icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--orange);
  stroke-width: 2;
}
.footer-social li a { font-weight: 700; }
.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
}
.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.small { font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 12px; }
.footer-links a:hover { color: var(--orange); }
.copyright {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 24px;
}

/* ============ DONATE PAGE ============ */
.page-donate { background: var(--beige); }

.donate-page {
  min-height: 70vh;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.donate-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center / cover no-repeat;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

/* Donate page-wide decorations */
.donate-page-deco {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.donate-deco-wash {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(160deg, #FE82B3, #FFA56D, #FABD5E, #BECC90, #8DDBD1);
}
.donate-deco-wash-1 {
  width: 500px; height: 500px;
  right: -10%; top: -5%;
  opacity: 0.8;
}
.donate-deco-wash-2 {
  width: 350px; height: 350px;
  left: -8%; bottom: 10%;
  opacity: 0.6;
}
.donate-deco-circle {
  position: absolute;
  border-radius: 50%;
}
.donate-deco-c1 {
  width: 200px; height: 200px;
  left: 2%; top: 8%;
  background: linear-gradient(140deg, #FFA56D, #FABD5E);
  opacity: 0.4;
}
.donate-deco-c2 {
  width: 120px; height: 120px;
  right: 6%; top: 35%;
  background: linear-gradient(140deg, #BECC90, #8DDBD1);
  opacity: 0.35;
}
.donate-deco-c3 {
  width: 80px; height: 80px;
  left: 40%; bottom: 8%;
  background: linear-gradient(140deg, #FE82B3, #FFA56D);
  opacity: 0.35;
}
.donate-deco-ring {
  position: absolute;
  border-radius: 50%;
  background: transparent;
}
.donate-deco-r1 {
  width: 280px; height: 280px;
  right: -3%; top: 2%;
  border: 2.5px solid rgba(230, 126, 34, 0.4);
}
.donate-deco-r2 {
  width: 200px; height: 200px;
  left: 5%; top: 55%;
  border: 2.5px solid rgba(141, 219, 209, 0.4);
}
.donate-deco-r3 {
  width: 100px; height: 100px;
  right: 12%; bottom: 12%;
  border: 2px solid rgba(255, 165, 109, 0.35);
}
@media (max-width: 560px) {
  .donate-deco-wash-1 { width: 250px; height: 250px; right: -15%; top: -3%; }
  .donate-deco-wash-2 { width: 180px; height: 180px; left: -12%; }
  .donate-deco-c1 { width: 100px; height: 100px; }
  .donate-deco-c2 { width: 70px; height: 70px; }
  .donate-deco-c3 { width: 50px; height: 50px; }
  .donate-deco-r1 { width: 140px; height: 140px; }
  .donate-deco-r2 { width: 100px; height: 100px; }
}

.donate-hero {
  position: relative;
  background: transparent;
  color: var(--dark);
  overflow: visible;
  padding: 80px 24px 20px;
}
.donate-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.donate-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}
.donate-hero .hero-wash {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background: linear-gradient(160deg,
    #FE82B3 0%,
    #FFA56D 22%,
    #FABD5E 44%,
    #BECC90 68%,
    #8DDBD1 100%);
  border-radius: 50%;
  opacity: 0.9;
  z-index: 0;
}
.donate-hero .deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.donate-hero .deco-circle-1 {
  width: 200px; height: 200px;
  left: -6%; top: -10%;
  background: linear-gradient(140deg, #FFA56D, #FABD5E);
  opacity: 0.5;
}
.donate-hero .deco-circle-2 {
  width: 120px; height: 120px;
  right: -3%; bottom: 5%;
  background: linear-gradient(140deg, #BECC90, #8DDBD1);
  opacity: 0.45;
}
.donate-hero .deco-circle-3 {
  width: 80px; height: 80px;
  left: -2%; bottom: -5%;
  background: linear-gradient(140deg, #FE82B3, #FFA56D);
  opacity: 0.45;
}
.donate-hero .deco-ring {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  z-index: 1;
}
.donate-hero .deco-ring-1 {
  width: 240px; height: 240px;
  right: 10%; top: -8%;
  border: 2.5px solid rgba(230, 126, 34, 0.5);
}
.donate-hero .deco-ring-2 {
  width: 180px; height: 180px;
  left: 5%; bottom: -5%;
  border: 2.5px solid rgba(141, 219, 209, 0.45);
}
/* Remove old donate circle styles */
.donate-hero-bg .circle-1 {
  display: none;
  width: 480px; height: 480px;
  left: -140px; top: -140px;
  background: linear-gradient(130deg,
    #FE82B3 0%,
    #FE82B3 16%,
    #FFA56D 32%,
    #FABD5E 50%,
    #BECC90 68%,
    #8DDBD1 84%,
    #8DDBD1 100%);
  position: absolute;
  border-radius: 50%;
}
.donate-hero-bg .circle-2 {
  display: none;
  width: 260px; height: 260px;
  right: -40px; top: 20px;
  background: linear-gradient(130deg,
    #FE82B3 0%,
    #FE82B3 16%,
    #FFA56D 32%,
    #FABD5E 50%,
    #BECC90 68%,
    #8DDBD1 84%,
    #8DDBD1 100%);
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
}
.donate-hero-bg .circle-outline-1 {
  display: none;
  width: 160px; height: 160px;
  right: 20%; bottom: 10%;
  background: linear-gradient(130deg,
    #FE82B3 0%,
    #FE82B3 16%,
    #FFA56D 32%,
    #FABD5E 50%,
    #BECC90 68%,
    #8DDBD1 84%,
    #8DDBD1 100%) border-box;
  border: 2px solid transparent;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
  border-radius: 50%;
  position: absolute;
}
.donate-hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.donate-hero .section-eyebrow {
  font-size: clamp(36px, 5vw, 64px);
}
.donate-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--brown);
}
.donate-hero p {
  max-width: 640px;
  color: var(--brown);
  font-size: 15px;
}
.breadcrumb {
  font-size: 12px;
  color: var(--brown);
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: #ffffff; font-weight: 700; }
.breadcrumb a:hover { color: var(--beige-soft); }

.donate-layout {
  max-width: 1100px;
  margin: -48px auto 0;
  padding: 0 24px 96px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  position: relative;
  z-index: 1;
  gap: 32px;
  align-items: flex-start;
  position: relative;
}

.donate-form {
  background: #ffffff;
  border: 1px solid var(--beige-border);
  border-radius: 24px;
  box-shadow: 0 8px 32px -12px rgba(45, 27, 14, 0.08);
  padding: 40px;
  transition: all 0.2s ease-in-out;
}

.form-field {
  border: none;
  padding: 0;
  margin-bottom: 28px;
}
.form-field legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

/* Speech bubble for smile salon */
.segmented-monthly {
  position: relative;
}
.smile-bubble {
  background: var(--orange);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 5px 12px;
  border-radius: 20px;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 5;
  pointer-events: none;
}
.smile-bubble::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--orange);
}

/* Segmented control (one-time / monthly) */
.segmented {
  display: inline-flex;
  background: var(--beige-soft);
  padding: 4px;
  border-radius: 999px;
  width: 100%;
  max-width: 360px;
}
.segmented-option {
  flex: 1;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.segmented-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.segmented-option span {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.2s;
}
.segmented-option input:checked + span {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Amount chips */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.amount-chip {
  position: relative;
  cursor: pointer;
}
.amount-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.amount-chip span {
  display: block;
  text-align: center;
  padding: 18px 12px;
  border: 1.5px solid var(--beige-border);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  transition: all 0.2s;
  background: #fff;
}
.amount-chip:hover span { border-color: var(--orange); }
.amount-chip input:checked + span {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange-deep);
}
.amount-chip-custom span { font-size: 13px; }

.custom-amount-wrap {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--beige-soft);
  border: 1.5px solid var(--beige-border);
  border-radius: 8px;
  padding: 0 16px;
}
.custom-amount-wrap .currency {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
}
.custom-amount-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  outline: none;
}

/* Generic text/select inputs */
.donate-form input[type="text"],
.donate-form input[type="email"],
.donate-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--beige-border);
  border-radius: 12px;
  font-size: 14px;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.donate-form input:focus,
.donate-form select:focus {
  border-color: var(--orange);
}

.btn-large {
  width: 100%;
  padding: 18px 32px;
  font-size: 16px;
  margin-top: 8px;
}

.security-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.back-link {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
}
.back-link a { color: var(--muted); }
.back-link a:hover { color: var(--orange); }

/* Summary sidebar */
.donate-summary {
  background: #ffffff;
  border: 1px solid var(--beige-border);
  border-radius: 24px;
  box-shadow: 0 8px 32px -12px rgba(45, 27, 14, 0.08);
  padding: 32px;
  position: sticky;
  top: 100px;
  transition: all 0.2s ease-in-out;
}
.donate-summary h3 {
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.donate-summary dl {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--beige-border);
}
.donate-summary dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.donate-summary dt {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.donate-summary dd {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  text-align: right;
}
#summary-amount { font-size: 20px; color: var(--orange); }

.impact-box {
  background: var(--beige);
  border: none;
  border-radius: 16px;
  box-shadow: none;
  padding: 20px;
  transition: all 0.2s ease-in-out;
}
.impact-box h4 {
  font-size: 12px;
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.impact-box p {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.7;
}

/* ============ SMILE SALON PAGE ============ */
.smile-page { padding-top: 80px; }
.smile-hero {
  background: linear-gradient(160deg, #FFF5EE 0%, #FFF0F5 50%, #F0FFF4 100%);
  padding: 60px 24px 80px;
  text-align: center;
}
.smile-hero-inner { max-width: 700px; margin: 0 auto; }
.smile-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.smile-accent {
  color: var(--orange);
}
.smile-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}
.smile-intro-inner { max-width: 640px; margin: 0 auto; }
.smile-quotes {
  margin-bottom: 32px;
}
.smile-quotes blockquote {
  font-size: 16px;
  font-style: italic;
  color: var(--dark);
  padding: 12px 24px;
  margin: 0 0 12px;
  background: var(--cream);
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  text-align: left;
}
.smile-tagline {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}
.smile-motto {
  font-size: 18px;
  color: var(--dark);
  line-height: 1.8;
}
.smile-motto strong {
  font-size: 22px;
  color: var(--orange);
}
.smile-story {
  background: var(--cream);
  padding: 64px 24px;
}
.smile-story-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.smile-story-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px -8px rgba(45, 27, 14, 0.08);
}
.smile-story-text p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 12px;
}
.smile-story-text p:last-child { margin-bottom: 0; }
.smile-highlight {
  font-size: 17px;
  text-align: center;
  padding-top: 8px;
}
.smile-join {
  padding: 64px 24px 96px;
  text-align: center;
}
.smile-join-inner {
  max-width: 640px;
  margin: 0 auto;
}
.smile-join h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.smile-join > .smile-join-inner > p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 20px;
}
.smile-note {
  background: var(--cream);
  border: 1px solid var(--beige-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.smile-note p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============ CONTACT PAGE ============ */
.contact-page {
  padding-top: 80px;
}
.contact-hero {
  background: var(--cream);
  padding: 60px 24px 80px;
  text-align: center;
}
.contact-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.contact-hero p {
  font-size: 15px;
  color: var(--muted);
}
.contact-layout {
  max-width: 1100px;
  margin: -32px auto 0;
  padding: 0 24px 96px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.contact-form {
  background: #ffffff;
  border: 1px solid var(--beige-border);
  border-radius: 24px;
  box-shadow: 0 8px 32px -12px rgba(45, 27, 14, 0.08);
  padding: 40px;
}
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--beige-border);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
}
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.required-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.contact-privacy {
  background: var(--cream);
  border: 1px solid var(--beige-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.contact-privacy h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-privacy p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}
.contact-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}
.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact-actions .btn {
  flex: 1;
}
.contact-sidebar {
  position: sticky;
  top: 100px;
}
.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--beige-border);
  border-radius: 24px;
  box-shadow: 0 8px 32px -12px rgba(45, 27, 14, 0.08);
  padding: 32px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.contact-info-card dl > div {
  margin-bottom: 16px;
}
.contact-info-card dt {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-info-card dd {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
}

/* ============ MONTHLY SUPPORTER ============ */
.monthly-supporter {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 96px;
}
.monthly-supporter-inner {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid var(--beige-border);
  border-radius: 24px;
  box-shadow: 0 8px 32px -12px rgba(45, 27, 14, 0.08);
  padding: 48px 40px;
}
/* ============ DONATE SLIDER ============ */
.donate-slider-track {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.donate-slide {
  width: 100%;
  border-radius: 40px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.donate-slide:first-child {
  position: relative;
}
.donate-slide.active {
  opacity: 1;
  z-index: 1;
}
.donate-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 0;
}
.donate-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--beige-border);
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.donate-dot.active {
  background: var(--orange);
}

.monthly-supporter-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--dark);
}
.monthly-supporter-lead {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
}
.monthly-supporter-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.supporter-tier {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid var(--beige-border);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.2s ease;
}
.supporter-tier:hover {
  box-shadow: 0 4px 20px -6px rgba(45, 27, 14, 0.12);
}
.tier-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--beige-border);
}
.tier-perks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tier-perks li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--dark);
}
.tier-perks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.tier-note {
  font-size: 12px;
  color: var(--orange);
  margin-top: 8px;
}
.monthly-supporter-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 24px;
}

@media (max-width: 768px) {
  .monthly-supporter-tiers {
    grid-template-columns: 1fr;
  }
  .monthly-supporter-inner {
    padding: 32px 20px;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .donate-layout { grid-template-columns: 1fr; }
  .donate-summary { position: static; }
  .donate-cards { grid-template-columns: repeat(2, 1fr); }
  .flow-icon-img { width: 80px; height: 80px; }
  .flow-num-overlay { font-size: 48px; margin-bottom: -12px; }
  .concept-header { grid-template-columns: 1fr; gap: 32px; }
  .concept-photo { max-width: 520px; margin: 0 auto; aspect-ratio: 16/10; border-radius: 8px; }
  .concept-bottom { grid-template-columns: 1fr; gap: 32px; }
  .concept-map { justify-content: center; }
  .concept-map-svg { width: 140px; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 0 24px 0;
    text-align: center;
    column-gap: 0;
    row-gap: 0;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 5;
    padding-top: 120px;
    padding-bottom: 0;
    justify-content: center;
    align-items: center;
  }
  .hero .hero-ctas {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    justify-self: center;
  }
  .hero .btn-primary,
  .hero .btn-ghost {
    padding: 16px 28px;
    font-size: 16px;
    min-width: 0;
    width: 100%;
  }
  .hero-title { line-height: 1.2; font-size: clamp(40px, 10vw, 52px); }
  .hero-title-line { white-space: normal; }
  .hero-sub { margin-bottom: 8px; }
  /* Big gradient circle — right-bottom on SP */
  .hero-wash {
    width: 75vw;
    height: 75vw;
    right: -20vw;
    bottom: -10vw;
    left: auto;
    top: auto;
    transform: none;
    opacity: 0;
    animation: wash-expand-sp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  @keyframes wash-expand-sp {
    0%   { opacity: 0; transform: scale(0.3); }
    60%  { opacity: 0.65; }
    100% { opacity: 0.65; transform: scale(1); }
  }
  /* eyebrow + title 詰める */
  .hero-eyebrow { margin-bottom: 10px; font-size: 10px; }
  .hero-eyebrow-row { flex-direction: column; gap: 2px; margin-bottom: 4px; align-items: center; }
  .hero-hand-heart { width: 120px; }
  .hero-title { margin-bottom: 16px; }
  .hero-lead { margin-bottom: 8px; }
  .hero-sub { margin-bottom: 16px; }
  .hero-photo {
    grid-column: 1;
    grid-row: 3;
    z-index: 2;
    margin-top: 8px;
    margin-bottom: 120px;
  }
  .hero-photo img {
    max-height: 55vw;
    max-width: 100%;
  }
  /* Deco: scattered evenly, some overflow edges */
  .deco-circle-1 { width: 20vw; height: 20vw; left: -6vw; top: 5vw; right: auto; bottom: auto; }
  .deco-circle-2 { width: 12vw; height: 12vw; right: 8vw; top: 18vw; left: auto; bottom: auto; }
  .deco-circle-3 { width: 8vw; height: 8vw; left: 20vw; bottom: 25%; top: auto; right: auto; }
  .deco-ring-1 { width: 24vw; height: 24vw; right: -8vw; top: 3vw; left: auto; bottom: auto; }
  .deco-ring-2 { width: 16vw; height: 16vw; left: 5vw; bottom: 18%; top: auto; right: auto; }
  .deco-ring-3 { width: 10vw; height: 10vw; right: 30vw; bottom: 8%; top: auto; left: auto; }
  .deco-circle-4 { width: 9vw; height: 9vw; right: -3vw; bottom: 35%; top: auto; left: auto; }
  .section-arrow-down { height: 56px; }
  .flow-diagram { flex-direction: column; gap: 28px; }
  .flow-step { flex: 0 0 auto; max-width: none; }
  .how-it-works-lead { margin-bottom: 36px; }
  .story-grid,
  .concept-photo-circle { width: 220px; height: 220px; }
  .concept-text-circle { width: 180px; height: 180px; padding: 24px; }
  .concept-text-circle p { font-size: 13px; line-height: 1.6; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* story cards already uniform — no offset reset needed */
  .moments-marquee {
    padding-bottom: 72px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .moments-track-desktop { display: none; }
  .moments-track-sp-a,
  .moments-track-sp-b { display: flex; }
  .moments-track-sp-b {
    animation-name: moments-slide-reverse;
    animation-duration: 60s;
  }
  .moments-track-sp-a { animation-duration: 60s; }
  .moments-track img { width: 340px; height: 250px; border-radius: 8px; }
  .moments-head { padding-bottom: 40px; }
  .moments-marquee { padding-bottom: 80px; }
  .report-inner { grid-template-columns: 1fr; gap: 32px; }
  .report-links { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .report-link { display: flex; align-items: center; justify-content: center; min-height: 56px; }
  .global-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--beige-border);
    padding: 16px 24px;
    border-radius: 0 0 20px 20px;
  }
  .global-nav.open { display: flex; flex-direction: column; }
  .global-nav ul { flex-direction: column; gap: 16px; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .nav-cta {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .story-quote { padding: 8px 20px; }
  .final-ctas { flex-direction: column; align-items: stretch; }
  .final-ctas .btn { width: 100%; white-space: nowrap; font-size: 16px; padding: 16px 20px; }
  .section-title { font-size: clamp(26px, 6vw, 32px); }
  .donate-item { grid-template-columns: 120px 1fr; grid-template-rows: auto auto; row-gap: 14px; padding: 20px; border-radius: 8px; }
  .donate-thumb { width: 120px; height: 100px; grid-row: 1 / span 2; border-radius: 8px; }
  .donate-amount { grid-column: 2; align-items: flex-start; flex-direction: row; gap: 14px; }
  .donate-form { padding: 28px 20px; border-radius: 20px; }
}

@media (max-width: 560px) {
  .section-inner { padding: 100px 24px; }
  .section-eyebrow { font-size: clamp(28px, 8vw, 40px); }
  .section-title { margin-top: -10px; }
  .hero-inner { padding: 0 16px 0; }
  .hero-copy { padding-top: 110px; padding-bottom: 0; }
  .hero-eyebrow { margin-bottom: 8px; }
  .hero-title { margin-bottom: 16px; font-size: clamp(36px, 10vw, 52px); line-height: 1.15; }
  .hero-bg-img { opacity: 0.5; }
  .hero-lead { font-size: 17px; font-weight: 600; margin-bottom: 12px; }
  .hero-sub { font-size: 15px; font-weight: 400; }
  .hero-photo { margin-top: 4px; margin-bottom: 110px; }
  .hero-photo img { max-height: 52vw; }
  .donate-cards { grid-template-columns: 1fr; }
  .donate-card-img { height: 180px; }
  .report::before { width: 250px; height: 250px; left: -60px; top: -60px; }
  .report::after { width: 200px; height: 200px; right: -40px; bottom: -40px; }
  .flow-timeline { grid-template-columns: 1fr; max-width: 100%; }
  .flow-num-overlay { font-size: 44px; margin-bottom: -12px; }
  .flow-node:nth-child(even),
  .flow-node:nth-child(odd) {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  .flow-node { padding: 20px 0; }
  .flow-content { padding: 0; margin-bottom: 8px; }
  .flow-card-img { height: 200px; }
  .flow-content h4 { font-size: 22px; font-weight: 700; }
  .flow-content p { font-size: 15px; line-height: 1.8; font-weight: 400; }
  .flow-node + .flow-node::before { display: none; }
  .deco-circle-1 { width: 18vw; height: 18vw; left: -5vw; top: 4vw; right: auto; bottom: auto; }
  .deco-ring-1 { width: 22vw; height: 22vw; right: -6vw; top: 2vw; left: auto; bottom: auto; }
  .deco-ring-2 { width: 14vw; height: 14vw; left: 6vw; bottom: 20%; right: auto; top: auto; }
  .hero .hero-ctas {
    margin-top: 14px;
    max-width: 100%;
    gap: 10px;
    flex-direction: row;
  }
  .hero .btn-primary,
  .hero .btn-ghost { padding: 14px 16px; font-size: 13px; flex: 1; white-space: nowrap; }
  .concept-map-bg { width: 140%; opacity: 0.2; top: 30%; }
  .story-grid,
  .concept-photo-circle { width: 180px; height: 180px; }
  .concept-text-circle { width: 160px; height: 160px; padding: 20px; }
  .concept-text-circle h4 { font-size: 18px; margin-bottom: 4px; }
  .concept-text-circle p { font-size: 12px; line-height: 1.5; }
  .concept-row { padding-left: 0; justify-content: center; }
  .concept-row--reverse { padding-right: 0; justify-content: center; }
  .concept-row .concept-photo-circle { margin-right: -20px; }
  .concept-row--reverse .concept-photo-circle { margin-left: -20px; }
  .story-card { border-radius: 8px; }
  .story-card::before { top: 12px; left: 12px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .stat-card { padding: 20px 12px; border-radius: 0; }
  .stat-num { font-size: 36px; margin-bottom: 6px; font-weight: 700; }
  .stat-icon { width: 100px; height: 100px; margin-bottom: 10px; }
  .stat-icon-img { width: 80px; height: 80px; }
  .stat-icon .stat-icon-svg { width: 80px; height: 80px; }
  .stat-prefix { font-size: 15px; font-weight: 600; }
  .stat-unit { font-size: 14px; font-weight: 600; }
  .stat-label { font-size: 13px; line-height: 1.7; }
  .stat-icon { width: 56px; height: 56px; }
  .stat-icon .stat-icon-svg { width: 36px; height: 36px; }
  .moments-track img { width: 360px; height: 270px; border-radius: 8px; }
  .moments-head { padding-bottom: 32px; }
  .moments-marquee { gap: 14px; padding-bottom: 72px; }
  .footer-inner { grid-template-columns: 1fr; }
  .story-quote { padding: 8px 16px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .section-arrow-down { height: 44px; }
  .header-inner { gap: 10px; padding: 14px 16px; }
  .logo { gap: 8px; }
  .logo-img { height: 36px; }
  .logo-text { font-size: 13px; letter-spacing: 0.03em; }
  .lang-toggle { padding: 2px; }
  .lang-btn { padding: 5px 10px; font-size: 11px; }
  .donate-item { grid-template-columns: 1fr; border-radius: 8px; }
  .donate-thumb { width: 100%; height: 160px; grid-row: auto; border-radius: 8px; }
  .donate-amount { grid-column: 1; flex-direction: column; align-items: flex-start; }
  .final-cta-inner { padding: 100px 20px; }
  .feature-bar { margin-top: -28px; }
  .feature-bar-inner {
    padding: 20px 16px;
    gap: 10px;
    border-radius: 20px;
  }
  .feature-item {
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
  }
  .feature-icon { width: 36px; height: 36px; border-radius: 12px; }
  .feature-icon .icon { width: 18px; height: 18px; }
  .flow-step { border-radius: 8px; padding: 44px 20px 32px; }
  .concept-photo { border-radius: 8px; }
  .report-feature { border-radius: 8px; }
  .report-link { border-radius: 4px; padding: 12px 10px; font-size: 12px; white-space: normal; text-align: center; box-shadow: 4px 4px 0 var(--orange); display: flex; align-items: center; justify-content: center; min-height: 56px; }
  .donate-hero-bg .circle-1 { width: 140px; height: 140px; left: -40px; top: -40px; }
  .donate-hero-bg .circle-2 { width: 100px; height: 100px; right: -20px; top: 10px; }
  .donate-hero-bg .circle-outline-1 { width: 80px; height: 80px; right: 10%; bottom: 5%; }
  .donate-slider-track { border-radius: 16px; }
  .donate-slide { border-radius: 16px; }
}

/* ============ PC TYPOGRAPHY (min 901px) ============ */
@media (min-width: 901px) {
  body {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
  }
  .section-inner {
    max-width: 1140px;
  }
  .story-line,
  .donate-card-desc,
  .flow-content p,
  .report-copy p,
  .concept-lead,
  .donate-lead,
  .how-it-works-lead,
  .report-feature-body,
  .stat-label,
  .story-panel-text p,
  .story-quote,
  .donate-card-body p,
  .flow-content h4,
  .flow-cta-lead,
  .hero-lead,
  .hero-sub,
  .final-cta p,
  .donate-hero p,
  .monthly-supporter-lead,
  .tier-perks li,
  .supporter-tier p,
  .feature-item {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
  }
  .flow-content h4,
  .donate-card-tag {
    font-size: 20px;
    font-weight: 700;
  }
  .stat-label {
    font-size: 16px;
  }
  .story-panel-text {
    max-width: 520px;
  }
  .report-copy p,
  .donate-lead,
  .how-it-works-lead,
  .concept-lead {
    max-width: 640px;
    font-weight: 600 !important;
  }
  /* Concept rows: left-right alternating within full width */
  .concept-circles {
    max-width: 1140px;
  }
  .concept-row {
    padding-left: 10%;
    padding-right: 0;
  }
  .concept-row--reverse {
    padding-left: 0;
    padding-right: 10%;
    justify-content: flex-end;
  }
}

/* ============ PAGE TRANSITION CIRCLE ============ */
.page-transition-circle {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(160deg,
    #FE82B3 0%,
    #FFA56D 22%,
    #FABD5E 44%,
    #BECC90 68%,
    #8DDBD1 100%);
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  will-change: transform, opacity;
}
.page-transition-circle.active {
  opacity: 1;
}
.page-transition-circle.expand {
  animation: circle-expand 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes circle-expand {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0.6; }
  15%  { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  40%  { transform: translate(-50%, -50%) scale(8); opacity: 0.9; }
  70%  { transform: translate(-50%, -50%) scale(30); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(60); opacity: 1; }
}
.page-transition-circle.shrink {
  animation: circle-shrink 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes circle-shrink {
  0%   { transform: translate(-50%, -50%) scale(60); opacity: 1; }
  40%  { transform: translate(-50%, -50%) scale(20); opacity: 0.9; }
  70%  { transform: translate(-50%, -50%) scale(3); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

/* ============ MOBILE: reveal-time animations (no hover on touch) ============ */
@media (hover: none) {
  /* Cards: pop-up on reveal */
  .story-card.show,
  .donate-card.show,
  .stat-card.show,
  .flow-node.show,
  .flow-step.show,
  .supporter-tier.show,
  .donate-item.show,
  .report-feature.show {
    animation: sp-pop-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  @keyframes sp-pop-up {
    0%   { opacity: 0; transform: translateY(24px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Story panel photo: subtle zoom on reveal */
  .story-panel.show .story-panel-photo img {
    animation: sp-zoom 0.8s ease both;
  }
  @keyframes sp-zoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.03); }
    100% { transform: scale(1); }
  }

  /* Hero photo wiggle on load */
  .hero-photo img {
    animation: wiggle 0.6s ease 1.5s both !important;
  }

  /* Report links: slide-in */
  .report-link.show {
    animation: sp-slide-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  @keyframes sp-slide-in {
    0%   { opacity: 0; transform: translateX(-16px); }
    100% { opacity: 1; transform: translateX(0); }
  }
}
