:root {
  --pink: #e74972;
  --pink-dark: #d83f68;
  --pink-soft: #fff2f6;
  --navy: #1c244b;
  --navy-deep: #10172f;
  --blue: #4b45c9;
  --text: #2f4563;
  --muted: #5a6e8a;
  --line: #e7e7f1;
  --surface: #ffffff;
  --surface-soft: #f8f6fb;
  --surface-warm: #fff8fb;
  --page: #fdfafc;
  --success: #1d8d6d;
  --shadow-lg: 0 28px 72px rgba(28, 36, 75, 0.14);
  --shadow-md: 0 18px 44px rgba(28, 36, 75, 0.09);
  --radius-2xl: 36px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231, 73, 114, 0.10), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(75, 69, 201, 0.08), transparent 20%),
    linear-gradient(180deg, #fffdfd 0%, #fdf5f9 38%, #f7f8fd 100%);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

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

.section {
  position: relative;
  padding: 102px 0;
}

.section[id] { scroll-margin-top: 112px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(231, 73, 114, 0.10);
  color: var(--pink);
  border: 1px solid rgba(231, 73, 114, 0.14);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow.hero-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(3rem, 6vw, 6.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.8rem); }
h3 { font-size: clamp(1.14rem, 2vw, 1.45rem); }
p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 0;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  box-shadow: 0 16px 34px rgba(231, 73, 114, 0.28);
}

.btn-primary:hover { box-shadow: 0 20px 42px rgba(231, 73, 114, 0.34); }

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.16); }

.btn-outline {
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(28, 36, 75, 0.12);
}

.btn-outline:hover {
  color: var(--pink);
  border-color: rgba(231, 73, 114, 0.32);
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(28, 36, 75, 0.08);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28, 36, 75, 0.06);
  box-shadow: 0 10px 28px rgba(28, 36, 75, 0.05);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--navy);
}

.brand-logo {
  width: 74px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-text strong { font-size: 1rem; }
.brand-text span { font-size: 0.8rem; color: var(--muted); }
.site-header .brand { padding: 6px 0; }
.site-header .brand-text strong { font-size: 1.02rem; }
.site-footer .brand { align-items: flex-start; }
.site-footer .brand-logo {
  width: 92px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .2s ease, background .2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--navy);
  background: rgba(75, 69, 201, 0.08);
}

.nav .nav-cta {
  padding-inline: 16px;
  background: var(--navy);
  color: #fff;
}

.nav .nav-cta:hover {
  background: var(--pink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(28, 36, 75, 0.08);
  background: #fff;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(28, 36, 75, 0.08);
  flex: 0 0 auto;
}

.menu-toggle svg { width: 22px; height: 22px; }

.hero {
  position: relative;
  padding: 0;
}

.hero-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: 0;
  box-shadow: 0 38px 110px rgba(28, 36, 75, 0.24);
}

.hero-media {
  position: relative;
  min-height: 850px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(16, 23, 47, 0.90) 0%, rgba(16, 23, 47, 0.76) 28%, rgba(16, 23, 47, 0.44) 58%, rgba(16, 23, 47, 0.16) 100%),
    linear-gradient(180deg, rgba(16, 23, 47, 0.10) 0%, rgba(16, 23, 47, 0.16) 42%, rgba(16, 23, 47, 0.64) 100%),
    radial-gradient(circle at 12% 18%, rgba(231, 73, 114, 0.18), transparent 26%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-content: end;
  padding: 132px 0 64px;
}

.hero-copy {
  width: min(760px, 100%);
  display: grid;
  gap: 20px;
  padding: 42px 42px 38px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(15, 22, 43, 0.68) 0%, rgba(15, 22, 43, 0.50) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.hero-copy h1,
.hero-copy p {
  color: #fff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.22);
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 6vw, 6.1rem);
}

.hero-copy p {
  max-width: 620px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.94);
}

.about-highlight {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(75, 69, 201, 0.12), rgba(231, 73, 114, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.55;
}

.hero-copy .about-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero-actions .btn { min-width: 220px; }

.hero-side-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: end;
  justify-self: start;
  width: min(980px, 100%);
}

.hero-proof-card {
  min-height: 100%;
  padding: 22px 22px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 251, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 44px rgba(28, 36, 75, 0.13);
  backdrop-filter: blur(14px);
}

.hero-proof-card strong {
  display: block;
  font-size: clamp(1.95rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--pink);
  margin-bottom: 10px;
}

.hero-proof-card span {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}

.hero-proof-card small {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.section-head,
.stories-head {
  max-width: 780px;
  margin-bottom: 30px;
  display: grid;
  gap: 16px;
}

.section-head p,
.stories-head p {
  color: var(--muted);
  font-size: 1.03rem;
}

.about-section {
  position: relative;
  z-index: 3;
  padding-top: 0;
  margin-top: -34px;
}

.about-grid,
.impact-grid,
.ambassador-grid,
.partner-grid,
.faq-grid,
.support-grid {
  display: grid;
  gap: 30px;
  align-items: stretch;
}

.about-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 24px;
  align-items: start;
}

.about-main-card,
.about-support-card,
.impact-copy-card,
.impact-note,
.story-card,
.module-card,
.ambassador-quote,
.ambassador-copy,
.partner-copy,
.map-card,
.faq-intro,
.support-copy,
.donation-card,
.bottom-cta-shell {
  border-radius: var(--radius-2xl);
}

.about-main-card,
.about-support-card,
.impact-copy-card,
.impact-note,
.ambassador-quote,
.ambassador-copy,
.partner-copy,
.map-card,
.faq-intro,
.donation-card {
  padding: 36px;
}

.about-main-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 42px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
  box-shadow: 0 28px 64px rgba(28, 36, 75, 0.11);
  transform: translateY(-54px);
}

.about-main-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(231, 73, 114, 0.06), rgba(75, 69, 201, 0.02));
  pointer-events: none;
}

.about-main-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -56px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 73, 114, 0.20) 0%, rgba(231, 73, 114, 0.04) 58%, transparent 72%);
  pointer-events: none;
}

.about-main-card > * {
  position: relative;
  z-index: 1;
}

.about-support-card {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 34px;
  background: linear-gradient(180deg, #fff2f7 0%, #ffffff 100%);
  box-shadow: 0 22px 52px rgba(28, 36, 75, 0.08);
  transform: translateY(18px);
}

.about-support-card p,
.partner-copy p,
.map-card-lead,
.partner-summary-card span,
.donation-note {
  color: var(--text);
}

.impact {
  background: linear-gradient(180deg, rgba(255, 247, 250, 0.58) 0%, rgba(255, 255, 255, 0) 100%);
}

.impact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: center;
}

.impact-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.impact-copy-card {
  display: grid;
  gap: 18px;
  padding: 40px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
}

.impact-note {
  padding: 24px 26px;
  background: linear-gradient(135deg, rgba(231, 73, 114, 0.13), rgba(75, 69, 201, 0.10));
  border: 1px solid rgba(231, 73, 114, 0.12);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(28, 36, 75, 0.06);
}

.impact-note small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.impact-visual {
  position: relative;
  min-height: 620px;
  border-radius: 40px;
  overflow: hidden;
  background: #f1edf4;
  box-shadow: 0 28px 70px rgba(28, 36, 75, 0.18);
  isolation: isolate;
}

.impact-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.impact-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 23, 47, 0.10) 0%, rgba(16, 23, 47, 0.12) 26%, rgba(16, 23, 47, 0.62) 100%),
    radial-gradient(circle at 14% 18%, rgba(231, 73, 114, 0.20), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(75, 69, 201, 0.18), transparent 24%);
  z-index: 1;
}

.impact-core-card,
.impact-chip {
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 38px rgba(16, 23, 47, 0.18);
}

.impact-core-card {
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: 340px;
  padding: 24px 24px 22px;
  border-radius: 28px;
  background: rgba(16, 23, 47, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.impact-core-card strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 10px;
}

.impact-core-card span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1.4;
}

.impact-chip {
  min-width: 148px;
  max-width: 180px;
  padding: 16px 16px 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.82);
  color: var(--navy);
}

.impact-chip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.1;
  color: var(--pink);
}

.impact-chip span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.42;
  color: var(--navy);
  font-weight: 700;
}

.chip-1 { top: 26px; left: 24px; }
.chip-2 { top: 34px; right: 24px; }
.chip-3 { bottom: 168px; right: 24px; }
.chip-4 { bottom: 186px; left: 42px; }

.modules {
  background: linear-gradient(180deg, #ffffff 0%, #faf7fd 100%);
}

.module-grid,
.stories-grid,
.mini-grid,
.partner-map-summary,
.amount-grid {
  display: grid;
  gap: 20px;
}

.module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stories-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.partner-map-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.amount-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }

.module-card {
  padding: 32px;
  display: grid;
  gap: 18px;
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fffafc 100%);
  border: 1px solid rgba(28, 36, 75, 0.08);
  box-shadow: 0 18px 40px rgba(28, 36, 75, 0.08);
}

.module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.module-index {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(75, 69, 201, 0.12), rgba(231, 73, 114, 0.12));
  color: var(--navy);
  font-weight: 700;
}

.module-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--pink-soft);
  color: var(--pink);
}

.module-icon svg { width: 24px; height: 24px; }

.module-copy { display: grid; gap: 14px; }

.module-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(75, 69, 201, 0.08);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
}

.module-card p { color: var(--muted); font-size: 1rem; }

.bottom-cta {
  position: relative;
  padding-top: 10px;
}

.bottom-cta-shell {
  padding: 42px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #1c244b 0%, #30367e 55%, #d94d74 100%);
  border: 1px solid rgba(28, 36, 75, 0.08);
  box-shadow: 0 28px 64px rgba(28, 36, 75, 0.16);
}

.bottom-cta-shell p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  margin-top: 10px;
}
.bottom-cta-shell h2 {
  color: #fff;
}

.bottom-cta-shell .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.bottom-cta-shell .btn-primary {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 18px 36px rgba(10, 14, 28, 0.18);
}

.bottom-cta-shell .btn-primary:hover {
  box-shadow: 0 22px 42px rgba(10, 14, 28, 0.22);
}


.stories {
  background: linear-gradient(180deg, #fff9fb 0%, #ffffff 100%);
}

.story-card {
  padding: 32px 30px 30px;
  display: grid;
  gap: 18px;
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
  border: 1px solid rgba(231, 73, 114, 0.14);
  box-shadow: 0 18px 40px rgba(28, 36, 75, 0.07);
}

.story-quote-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(231, 73, 114, 0.14), rgba(75, 69, 201, 0.12));
  color: var(--pink);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.story-card blockquote {
  margin: 0;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.7;
}

.story-meta {
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.story-meta strong {
  color: var(--navy);
  font-size: 0.96rem;
}

.story-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.ambassador-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.ambassador-quote {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #1c244b 0%, #34398b 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(28, 36, 75, 0.16);
}

.ambassador-quote::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.ambassador-avatar {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.ambassador-quote blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: clamp(1.34rem, 2vw, 1.8rem);
  line-height: 1.3;
}

.ambassador-meta { position: relative; z-index: 1; }
.ambassador-meta strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.ambassador-meta span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.ambassador-copy {
  display: grid;
  gap: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fdf9fd 100%);
}

.mini-card {
  padding: 16px;
  border-radius: 20px;
  background: var(--surface-soft);
  border: 1px solid rgba(28, 36, 75, 0.06);
}

.mini-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.partners {
  background:
    radial-gradient(circle at top right, rgba(75, 69, 201, 0.08), transparent 24%),
    radial-gradient(circle at 0% 40%, rgba(231, 73, 114, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

.partner-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 24px;
  align-items: start;
}

.partner-copy {
  display: grid;
  gap: 18px;
  padding: 38px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
}

.partner-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.partner-brand {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(75, 69, 201, 0.08);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-row { margin-top: 8px; }

.map-card {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6fb 100%);
  overflow: hidden;
}

.map-card-head,
.map-card-intro {
  display: grid;
  gap: 12px;
}

.partner-summary-card {
  padding: 16px 16px 17px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(28, 36, 75, 0.08);
  box-shadow: 0 12px 26px rgba(28, 36, 75, 0.05);
}

.partner-summary-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 6px;
}

.partner-map-card {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(28, 36, 75, 0.08);
  box-shadow: 0 24px 54px rgba(28, 36, 75, 0.10);
  overflow: hidden;
}

.partner-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(231, 73, 114, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(75, 69, 201, 0.10), transparent 24%);
  pointer-events: none;
}

.support-map-toolbar {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 6;
  display: flex;
  gap: 8px;
}

.map-zoom-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(28, 36, 75, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(28, 36, 75, 0.12);
  transition: transform .2s ease, border-color .2s ease;
}

.map-zoom-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(231, 73, 114, 0.36);
}

.partner-map-viewport {
  position: relative;
  min-height: 620px;
  border: 1px solid #ececf3;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(75, 69, 201, 0.08), transparent 28%),
    linear-gradient(180deg, #fdfcff 0%, #f6f7fb 100%);
  touch-action: none;
}

.partner-map-stage {
  position: absolute;
  inset: 0;
  transform-origin: center center;
  cursor: grab;
}

.partner-map-stage.is-dragging { cursor: grabbing; }
.partner-map-svg { width: 100%; height: 100%; }
.map-outline {
  fill: #fff4f7;
  stroke: #d6bcc7;
  stroke-width: 4;
  stroke-linejoin: round;
}

.support-slot {
  color: #d2d3da;
  transition: color .35s ease, opacity .35s ease;
}

.support-slot.is-filled { color: var(--pink); }
.support-slot.is-current-base { color: #f1cad6; }

.partner-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.partner-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.partner-map-legend i {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 999px;
}

.legend-filled { background: var(--pink); }
.legend-current { background: #f1cad6; }
.legend-free { background: #d2d3da; }

.faq-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 28px;
  align-items: start;
}

.faq-intro {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fc 100%);
}

.faq-intro ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.faq-intro li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.faq-intro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(231, 73, 114, 0.12);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(28, 36, 75, 0.08);
  background: #fff;
  box-shadow: 0 14px 34px rgba(28, 36, 75, 0.06);
}

.faq-trigger {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.faq-trigger span:last-child {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(75, 69, 201, 0.08);
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  flex: 0 0 auto;
}

.faq-item.open .faq-trigger span:last-child {
  transform: rotate(45deg);
  background: rgba(231, 73, 114, 0.12);
  color: var(--pink);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.support-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
}

.support-copy {
  padding: 42px;
  display: grid;
  gap: 18px;
  align-content: start;
  background: linear-gradient(135deg, #1a2147 0%, #2a2f6a 58%, #4840b7 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.support-copy::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.support-copy h2,
.support-copy p,
.support-copy .eyebrow,
.support-price {
  position: relative;
  z-index: 1;
}

.support-copy h2 { color: #fff; }
.support-copy p { color: rgba(255, 255, 255, 0.90); }
.support-copy .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.support-price {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.donation-card {
  display: grid;
  gap: 20px;
  padding: 38px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fc 100%);
}

.donation-card h3 { color: var(--navy); }

.amount-btn {
  min-height: 96px;
  padding: 18px 16px;
  text-align: left;
  border-radius: 22px;
  border: 1px solid rgba(28, 36, 75, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(28, 36, 75, 0.04);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.amount-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 73, 114, 0.22);
  box-shadow: 0 18px 30px rgba(28, 36, 75, 0.08);
}

.amount-btn.active {
  background: linear-gradient(135deg, rgba(231, 73, 114, 0.12), rgba(75, 69, 201, 0.10));
  border-color: rgba(231, 73, 114, 0.34);
}

.amount-btn strong {
  display: block;
  color: var(--navy);
  font-size: 1.14rem;
  margin-bottom: 6px;
}

.amount-btn span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.custom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.custom-input {
  min-height: 58px;
  width: 100%;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(28, 36, 75, 0.10);
  background: var(--surface-soft);
  color: var(--navy);
}

.custom-input:focus {
  outline: none;
  border-color: rgba(231, 73, 114, 0.34);
  background: #fff;
}

.donation-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--surface-soft);
  border: 1px solid rgba(28, 36, 75, 0.06);
}

.donation-total strong {
  display: block;
  color: var(--navy);
  font-size: 1.34rem;
}

.donation-total span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-anchor {
  display: block;
  height: 1px;
  margin-top: -112px;
  padding-top: 112px;
  visibility: hidden;
  pointer-events: none;
}

.scholarship-impact {
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 73, 114, 0.10), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(75, 69, 201, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdfd 0%, #fff3f7 56%, #fff9fc 100%);
}

.scholarship-shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
}

.scholarship-copy,
.scholarship-map-shell,
.scholarship-donation-panel {
  border-radius: var(--radius-2xl);
}

.scholarship-copy {
  padding: 34px;
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
  border: 1px solid rgba(28, 36, 75, 0.08);
  box-shadow: 0 24px 60px rgba(28, 36, 75, 0.10);
}

.scholarship-copy h2 {
  font-size: clamp(2.05rem, 3.5vw, 3.6rem);
  line-height: 1.05;
}

.scholarship-copy p {
  color: var(--text);
}

.scholarship-keypoints,
.scholarship-map-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scholarship-map-stats {
  display: none;
}

.scholarship-point,
.scholarship-stat {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(28, 36, 75, 0.08);
  box-shadow: 0 10px 26px rgba(28, 36, 75, 0.05);
}

.scholarship-point strong,
.scholarship-stat strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1rem;
}

.scholarship-point span,
.scholarship-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.scholarship-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scholarship-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.scholarship-panel {
  display: block;
}

.scholarship-map-shell {
  padding: 26px;
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fc 100%);
  border: 1px solid rgba(28, 36, 75, 0.08);
  box-shadow: 0 24px 60px rgba(28, 36, 75, 0.10);
}

.scholarship-map-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.scholarship-map-head h3 {
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.28;
  max-width: 28ch;
}

.scholarship-map-head p {
  max-width: 34ch;
  color: var(--muted);
}

.scholarship-map-card {
  position: relative;
}

.scholarship-live-chip {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 7;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(28, 36, 75, 0.08);
  box-shadow: 0 14px 28px rgba(28, 36, 75, 0.10);
  backdrop-filter: blur(10px);
}

.scholarship-live-chip strong {
  display: block;
  color: var(--pink);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 6px;
}

.scholarship-live-chip span {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 700;
}

.scholarship-donation-panel {
  padding: 10px 0 0;
  display: grid;
  gap: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-top: 1px solid rgba(28, 36, 75, 0.10);
}

.scholarship-donation-head {
  display: block;
}

.scholarship-donation-head h3 {
  color: var(--navy);
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
}

.scholarship-donation-head p {
  max-width: 30ch;
  color: var(--muted);
}

.scholarship-amount-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scholarship-donation-panel .amount-btn {
  min-height: 78px;
}

.scholarship-donation-panel .amount-btn span {
  font-size: 0.88rem;
}

.support-slot.is-glow {
  filter: drop-shadow(0 0 7px rgba(231, 73, 114, 0.48));
  animation: scholarshipGlow 2.2s ease-in-out infinite;
}

@keyframes scholarshipGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.88;
  }
}

@media (max-width: 1024px) {
  .scholarship-shell {
    grid-template-columns: 1fr;
  }

  .scholarship-keypoints,
  .scholarship-map-stats,
  .scholarship-amount-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-anchor {
    margin-top: -96px;
    padding-top: 96px;
  }

  .scholarship-copy,
  .scholarship-map-shell {
    padding: 24px 20px;
  }

  .scholarship-donation-panel {
    padding-top: 20px;
  }

  .scholarship-keypoints,
  .scholarship-map-stats,
  .scholarship-amount-grid {
    grid-template-columns: 1fr;
  }

  .scholarship-map-head,
  .scholarship-donation-head {
    display: grid;
  }

  .scholarship-live-chip {
    position: static;
    max-width: none;
    margin-bottom: 12px;
  }
}

.site-footer {
  padding: 40px 0 46px;
  background: #11182f;
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(220px, 0.46fr));
  gap: 26px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand-name { color: #fff; }
.footer-brand-tagline {
  display: block;
  color: rgba(255, 255, 255, 0.62);
}

.footer-email {
  color: #fff;
  font-weight: 700;
}

.footer-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.social-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

/* ─── CHILD DREAM SECTION ─── */
.child-dream-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 84%, rgba(255, 164, 198, 0.24), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(84, 150, 255, 0.12), transparent 22%),
    linear-gradient(135deg, #ee5a8f 0%, #d9487f 28%, #c23571 54%, #9d255e 78%, #8b1f59 100%);
}

.child-dream-section::before,
.child-dream-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.child-dream-section::before {
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 40% 75%, rgba(255,255,255,0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 85% 65%, rgba(255,255,255,0.75) 0 1px, transparent 1.5px);
  background-size: 18px 18px, 22px 22px, 26px 26px, 20px 20px;
  mix-blend-mode: soft-light;
}

.child-dream-section::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(72, 10, 38, 0) 50%, rgba(72, 10, 38, 0.14) 100%);
}

.child-dream-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: center;
  padding: 92px 0;
}

.child-dream-copy {
  display: grid;
  gap: 32px;
  color: #fff;
}

.child-dream-intro,
.child-dream-outro {
  max-width: 55rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.6;
  text-wrap: balance;
}

.child-dream-quote {
  margin: 0;
  max-width: 8ch;
  color: #fff;
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(88, 18, 49, 0.18);
}

.child-dream-art {
  position: relative;
  min-height: 660px;
}

.child-dream-art::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 10%;
  width: 72%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 211, 107, 0.16) 0%, rgba(255, 211, 107, 0.08) 42%, rgba(255, 211, 107, 0) 74%);
  filter: blur(12px);
  pointer-events: none;
}

.child-dream-illustration {
  position: absolute;
  right: -14px;
  top: -8px;
  width: min(100%, 610px);
  height: auto;
  filter: drop-shadow(0 28px 54px rgba(93, 11, 46, 0.22));
}

.child-dream-polaroid-wrap {
  position: absolute;
  left: 26px;
  bottom: 10px;
  width: min(46%, 330px);
  transform: rotate(-15deg);
  transform-origin: center center;
  filter: drop-shadow(0 26px 34px rgba(54, 7, 24, 0.26));
}

.child-dream-polaroid-wrap::before {
  content: "";
  position: absolute;
  inset: 12% 10% -2% 10%;
  border-radius: 30px;
  background: rgba(32, 6, 20, 0.22);
  filter: blur(22px);
  z-index: -1;
}

.child-dream-polaroid {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .child-dream-shell {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 76px 0;
  }

  .child-dream-copy {
    gap: 26px;
  }

  .child-dream-quote {
    max-width: 10ch;
    font-size: clamp(3rem, 8vw, 4.9rem);
  }

  .child-dream-art {
    width: min(100%, 720px);
    min-height: 540px;
    margin: 0 auto;
  }

  .child-dream-illustration {
    right: 0;
    width: min(100%, 540px);
  }

  .child-dream-polaroid-wrap {
    left: 22px;
    bottom: 0;
    width: min(40%, 290px);
  }
}

@media (max-width: 760px) {
  .child-dream-shell {
    padding: 62px 0;
    gap: 22px;
  }

  .child-dream-intro,
  .child-dream-outro {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .child-dream-quote {
    max-width: none;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .child-dream-art {
    min-height: 330px;
  }

  .child-dream-illustration {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 390px;
    margin-left: auto;
  }

  .child-dream-polaroid-wrap {
    left: 0;
    bottom: -8px;
    width: min(46%, 180px);
  }
}


[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .about-grid,
  .impact-grid,
  .ambassador-grid,
  .partner-grid,
  .faq-grid,
  .support-grid,
  .footer-grid,
  .bottom-cta-shell {
    grid-template-columns: 1fr;
  }

  .nav {
    position: fixed;
    inset: 82px 16px auto 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(28, 36, 75, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 44px rgba(28, 36, 75, 0.12);
    padding: 18px;
    display: grid;
    gap: 6px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  body.menu-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a,
  .nav .nav-cta {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
  }

  .menu-toggle { display: inline-flex; }

  .hero-media,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner {
    gap: 18px;
    padding: 116px 0 40px;
  }

  .hero-copy {
    width: min(760px, 100%);
    padding: 32px 30px 30px;
  }

  .hero-side-panel {
    width: 100%;
    justify-self: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-section {
    margin-top: 0;
    padding-top: 26px;
  }

  .about-main-card,
  .about-support-card {
    transform: none;
  }

  .section {
    padding: 84px 0;
  }

  .stories-grid,
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-map-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-map-viewport {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .nav-wrap { min-height: 74px; }
  .section { padding: 68px 0; }

  .hero {
    padding: 0 0 28px;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-frame {
    border-radius: 0;
  }

  .hero-image {
    position: relative;
    height: auto;
    aspect-ratio: 1 / 1;
    object-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(16, 23, 47, 0.10) 0%, rgba(16, 23, 47, 0.34) 48%, rgba(16, 23, 47, 0.88) 100%);
  }

  .hero-inner {
    position: relative;
    min-height: 0;
    gap: 14px;
    padding: 0 0 18px;
    margin-top: -88px;
  }

  .hero-copy {
    width: 100%;
    gap: 14px;
    padding: 22px 18px 18px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.2rem, 8.7vw, 2.95rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .stories-grid,
  .module-grid,
  .hero-side-panel,
  .mini-grid,
  .partner-map-summary,
  .custom-row,
  .footer-grid,
  .bottom-cta-shell {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn,
  .custom-row .btn,
  .bottom-cta-shell .btn {
    width: 100%;
  }

  .about-main-card,
  .about-support-card,
  .impact-copy-card,
  .impact-note,
  .story-card,
  .module-card,
  .ambassador-quote,
  .ambassador-copy,
  .partner-copy,
  .map-card,
  .faq-intro,
  .support-copy,
  .donation-card,
  .bottom-cta-shell,
  .hero-proof-card {
    padding: 24px 20px;
    transform: none;
  }

  .stories-head,
  .section-head {
    margin-bottom: 24px;
  }

  .stories-head p,
  .section-head p {
    font-size: 0.98rem;
  }

  .story-card blockquote {
    font-size: 1rem;
    line-height: 1.65;
  }

  .impact-visual {
    min-height: 540px;
    border-radius: 28px;
  }

  .partner-map-viewport { min-height: 500px; }

  .impact-core-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 20px 18px 18px;
  }

  .impact-chip {
    min-width: 0;
    max-width: 148px;
    padding: 14px 14px 13px;
    border-radius: 18px;
  }

  .impact-chip strong { font-size: 0.92rem; }
  .impact-chip span { font-size: 0.82rem; }
  .chip-1 { top: 16px; left: 14px; }
  .chip-2 { top: 16px; right: 14px; }
  .chip-3 { bottom: 132px; right: 14px; }
  .chip-4 { bottom: 132px; left: 14px; }

  .faq-trigger {
    align-items: flex-start;
    padding: 20px;
  }

  .faq-answer p { padding: 0 20px 20px; }
  .amount-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .support-map-toolbar {
    top: auto;
    right: 16px;
    bottom: 16px;
  }

  .donation-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo { width: 62px; }
  .brand-text span { display: none; }
}

@media (max-width: 520px) {
  .container { width: min(var(--container), calc(100% - 18px)); }
  .hero-inner { margin-top: -74px; }
  .hero-copy { padding: 20px 16px 16px; }
  .impact-visual { min-height: 500px; }
  .partner-map-viewport { min-height: 460px; }
  .impact-chip {
    max-width: 138px;
    padding: 12px 12px 11px;
  }
  .amount-grid { grid-template-columns: 1fr; }
}


.campaign-hero {
  position: relative;
  padding: 0;
  background: #B62B57;
}

.campaign-hero > .container {
  width: 100%;
  max-width: none;
}

.campaign-hero-shell {
  position: relative;
  min-height: 760px;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.07), transparent 32%),
    linear-gradient(168deg, #c43a65 0%, #B62B57 35%, #a2244e 100%);
  box-shadow: none;
}

.campaign-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(360px, 40%) minmax(0, 60%);
  overflow: visible;
  isolation: isolate;
}

.campaign-hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(182, 43, 87, 0.98) 0%,
    rgba(182, 43, 87, 0.98) 32%,
    rgba(178, 40, 82, 0.82) 40%,
    rgba(172, 36, 78, 0.50) 48%,
    rgba(166, 34, 76, 0.22) 56%,
    rgba(162, 36, 78, 0.06) 64%,
    rgba(162, 36, 78, 0) 72%
  );
}

.campaign-hero-copy {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  padding: 56px 56px 56px 62px;
  color: #fff;
  overflow: visible;
  background: transparent;
}

.campaign-hero-copy::after {
  content: none;
}

.campaign-hero-copy > * {
  position: relative;
  z-index: 3;
}

.campaign-hero-logo {
  width: min(290px, 78%);
  height: auto;
}

.campaign-hero-title {
  position: relative;
  z-index: 8;
  width: clamp(720px, 60vw, 1080px);
  max-width: none;
  margin: 0;
  margin-right: -42%;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.campaign-hero-title-break {
  display: block;
}

.campaign-hero-text {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.4;
}

.campaign-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.campaign-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  min-width: 300px;
  padding: 18px 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8769a 0%, #cf6690 100%);
  color: #fff;
  font-size: clamp(1.08rem, 1.65vw, 1.25rem);
  font-weight: 700;
  box-shadow: 0 22px 34px rgba(142, 28, 66, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.campaign-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 40px rgba(142, 28, 66, 0.32);
}

.campaign-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 760px;
  overflow: hidden;
  background: transparent;
  margin-left: 0;
}

.campaign-hero-visual::before {
  content: none;
}

.campaign-hero-visual::after {
  content: none;
}

.campaign-hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  background: transparent;
  transform: scale(1.3);
  transform-origin: left center;
  filter: brightness(1.05) saturate(1.02);
}

@media (max-width: 1180px) {
  .campaign-hero-grid {
    grid-template-columns: minmax(340px, 44%) minmax(0, 56%);
  }

  .campaign-hero-copy {
    padding: 50px 40px 50px 44px;
  }

  .campaign-hero-title {
    width: clamp(620px, 68vw, 900px);
    margin-right: -34%;
    font-size: clamp(2.7rem, 4.9vw, 4.35rem);
  }

  .campaign-hero-visual {
    margin-left: 0;
  }

  .campaign-hero-copy::after {
    display: none;
  }

  .campaign-hero-image {
    object-position: left center;
    transform: scale(1.3);
    transform-origin: left center;
  }

  .campaign-hero-btn {
    min-width: 260px;
  }
}

@media (max-width: 920px) {
  .campaign-hero {
    padding: 0;
  }

  .campaign-hero-shell,
  .campaign-hero-grid,
  .campaign-hero-visual {
    min-height: 0;
  }

  .campaign-hero-grid {
    grid-template-columns: 1fr;
  }

  .campaign-hero-grid::before {
    content: none;
  }

  .campaign-hero-copy {
    padding: 34px 28px 32px;
    background: #B62B57;
  }

  .campaign-hero-copy::after {
    display: none;
  }

  .campaign-hero-title,
  .campaign-hero-text {
    max-width: none;
  }

  .campaign-hero-title-break {
    display: inline;
  }

  .campaign-hero-title {
    width: auto;
    margin-right: 0;
    text-wrap: pretty;
  }

  .campaign-hero-visual {
    aspect-ratio: 16 / 12;
    margin-left: 0;
  }

  .campaign-hero-visual::before,
  .campaign-hero-visual::after {
    content: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .campaign-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-position: center 28%;
    transform: none;
    transform-origin: center center;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 760px) {
  .campaign-hero-shell {
    border-radius: 0;
  }

  .campaign-hero-copy {
    gap: 20px;
    padding: 26px 18px 24px;
  }

  .campaign-hero-logo {
    width: min(220px, 78%);
  }

  .campaign-hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .campaign-hero-text {
    font-size: 1rem;
  }

  .campaign-hero-actions {
    width: 100%;
  }

  .campaign-hero-btn {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 16px 20px;
    font-size: 1.04rem;
  }

  .campaign-hero-visual {
    aspect-ratio: 1 / 1;
  }

  .campaign-hero-image {
    object-position: center top;
  }
}


.journey-section {
  --journey-bg-1: #fd6597;
  --journey-bg-2: #a82558;
  --journey-bg-3: #620e2f;
  --journey-gold-1: #fff7e4;
  --journey-gold-2: #ffe173;
  --journey-gold-3: #ffbe1c;
  --journey-white: #ffffff;
  --journey-white-soft: rgba(255, 255, 255, 0.91);
  --journey-ink: #21263d;
  --journey-card-bg: rgba(255, 255, 255, 0.989);
  --journey-card-bg-2: rgba(255, 249, 252, 0.975);
  --journey-card-shadow-1: rgba(67, 9, 29, 0.14);
  --journey-card-shadow-2: rgba(67, 9, 29, 0.07);
  --journey-pink-accent: #ea4c77;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 14%, rgba(255,255,255,0.11), transparent 23%),
    radial-gradient(circle at 88% 10%, rgba(255,223,141,0.14), transparent 22%),
    radial-gradient(circle at 79% 82%, rgba(255,255,255,0.07), transparent 25%),
    linear-gradient(180deg, var(--journey-bg-1) 0%, var(--journey-bg-2) 54%, var(--journey-bg-3) 100%);
}

.journey-section::before,
.journey-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.journey-section::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.036) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 50% 36%, rgba(255,216,116,0.08) 0%, rgba(255,216,116,0) 50%);
  mix-blend-mode: screen;
}

.journey-section::after {
  background: linear-gradient(180deg, rgba(70,8,28,0) 0%, rgba(70,8,28,0.16) 100%);
}

.journey-section .container {
  position: relative;
  z-index: 1;
}

.journey-shell {
  position: relative;
  padding: 108px 0 132px;
}

.journey-copy {
  max-width: 1000px;
  display: grid;
  gap: 18px;
}

.journey-copy h2 {
  color: var(--journey-white);
  font-size: clamp(2.42rem, 4vw, 4.44rem);
  line-height: 1.06;
  letter-spacing: -0.046em;
}

@media (min-width: 1025px) {
  .journey-copy h2 {
    white-space: nowrap;
  }
}

.journey-copy p {
  max-width: 880px;
  color: var(--journey-white-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
  line-height: 1.62;
  font-weight: 500;
}

.journey-visual {
  position: relative;
  height: 860px;
  margin-top: -30px;
}

.journey-duration-label {
  position: absolute;
  left: 260px;
  top: 460px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--journey-white);
  font-size: clamp(1.08rem, 1.72vw, 1.34rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  transform: rotate(-36deg);
  transform-origin: left center;
  text-shadow: 0 6px 18px rgba(0,0,0,0.12);
  box-shadow: 0 18px 34px rgba(84,11,39,0.16);
  backdrop-filter: blur(12px);
  z-index: 15;
}

.journey-duration-label::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, #fff9f2 0%, var(--journey-gold-2) 76%, var(--journey-gold-3) 100%);
  box-shadow: 0 0 0 7px rgba(255,216,90,0.12);
}

.journey-path {
  position: absolute;
  left: 1px;
  top: 754px;
  width: 1075px;
  height: 0;
  transform: rotate(-36deg);
  transform-origin: left center;
  pointer-events: none;
  z-index: 10;
}

.journey-rail-glow {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 97%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,228,126,0.02) 0%, rgba(255,228,126,0.12) 40%, rgba(255,200,45,0.14) 100%);
  filter: blur(10px);
}

.journey-rail {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 97%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,236,161,0.46) 0%, var(--journey-gold-2) 44%, var(--journey-gold-3) 100%);
  box-shadow: 0 0 0 10px rgba(255,216,90,0.03), 0 10px 18px rgba(67,10,29,0.09);
}

.journey-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0) 100%);
}

.journey-rail::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 30px solid var(--journey-gold-3);
  transform: translateY(-50%);
  filter: drop-shadow(0 5px 12px rgba(67,10,29,0.10));
}

.journey-summit-halo {
  position: absolute;
  left: 815px;
  top: 33px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(255,230,148,0.11) 0%, rgba(255,230,148,0.045) 36%, rgba(255,230,148,0.00) 72%);
  filter: blur(8px);
  opacity: 0.85;
}

.journey-lamp-wrap {
  position: absolute;
  left: 848px;
  top: 66px;
  width: 84px;
  height: 84px;
  z-index: 12;
  pointer-events: none;
}

.journey-lamp-wrap::before,
.journey-lamp-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.journey-lamp-wrap::before {
  background: radial-gradient(circle, rgba(255,224,129,0.09) 0%, rgba(255,224,129,0.025) 48%, rgba(255,224,129,0) 76%);
  transform: scale(1.01);
  filter: blur(8px);
}

.journey-lamp-wrap::after {
  inset: 22px;
  border: 1px solid rgba(255,235,174,0.06);
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 66%);
}

.journey-step-lamp {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: auto;
  filter: drop-shadow(0 7px 12px rgba(255,208,113,0.10)) drop-shadow(0 0 6px rgba(255,219,128,0.05));
}

.journey-step-group {
  position: absolute;
  z-index: 5;
}

.journey-step-node {
  position: absolute;
  left: -97px;
  top: 35px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, var(--journey-gold-1) 48%, var(--journey-gold-3) 100%);
  box-shadow: 0 0 0 7px rgba(255,216,90,0.06), 0 6px 12px rgba(67,10,29,0.08);
  z-index: 11;
}

.journey-step-node::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(255,239,179,0.08);
}

.journey-step-connector {
  position: absolute;
  left: -81px;
  top: 42px;
  width: 81px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,223,115,0.06), rgba(255,223,115,0.4));
  z-index: 4;
}

.journey-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 22px 22px 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--journey-card-bg) 0%, var(--journey-card-bg-2) 100%);
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: 0 15px 24px var(--journey-card-shadow-1), 0 7px 10px var(--journey-card-shadow-2);
  color: var(--journey-ink);
  text-align: left;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  isolation: isolate;
}

.journey-step::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234,76,119,0.96) 0%, rgba(255,216,90,0.96) 100%);
}

.journey-step::after {
  content: "";
  position: absolute;
  inset: auto 20px -16px 20px;
  height: 18px;
  border-radius: 999px;
  background: rgba(58,8,24,0.08);
  filter: blur(12px);
  z-index: -1;
}

.journey-step > .journey-step-sheen {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0.10;
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.02) 22%, rgba(255,255,255,0.00) 42%);
}

@media (hover: hover) and (pointer: fine) {
  .journey-step:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.88);
    box-shadow: 0 22px 34px rgba(67,9,29,0.13), 0 9px 14px rgba(67,9,29,0.06);
  }
}

.journey-step-index,
.journey-step-text {
  position: relative;
  z-index: 1;
}

.journey-step-index {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(234,76,119,0.12) 0%, rgba(255,216,90,0.16) 100%);
  color: var(--journey-pink-accent);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.62);
}

.journey-step-text {
  display: block;
  padding-top: 4px;
  font-size: 1rem;
  line-height: 1.46;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.journey-step-group.group-1 {
  left: 90px;
  top: 711px;
}

.journey-step-group.group-1 .journey-step {
  width: 258px;
}

.journey-step-group.group-2 {
  left: 280px;
  top: 573px;
}

.journey-step-group.group-2 .journey-step {
  width: 260px;
}

.journey-step-group.group-3 {
  left: 470px;
  top: 435px;
}

.journey-step-group.group-3 .journey-step {
  width: 268px;
}

.journey-step-group.group-4 {
  left: 660px;
  top: 297px;
}

.journey-step-group.group-4 .journey-step {
  width: 262px;
}

.journey-step-group.group-5 {
  left: 850px;
  top: 159px;
}

.journey-step-group.group-5 .journey-step {
  width: 278px;
  background: linear-gradient(180deg, rgba(255,252,243,0.994) 0%, rgba(255,255,255,0.987) 100%);
  border-color: rgba(255,244,204,0.96);
  box-shadow: 0 19px 32px rgba(67,9,29,0.11), 0 8px 12px rgba(67,9,29,0.07);
}

@media (max-width: 1180px) {
  .journey-shell {
    padding: 64px 0 80px;
  }

  .journey-visual {
    height: 800px;
    margin-top: -20px;
  }

  .journey-duration-label {
    left: 220px;
    top: 450px;
    font-size: clamp(1rem, 1.55vw, 1.22rem);
  }

  .journey-path {
    left: -3px;
    top: 708px;
    width: 925px;
  }

  .journey-summit-halo {
    left: 745px;
    top: 50px;
  }

  .journey-lamp-wrap {
    left: 775px;
    top: 80px;
    width: 74px;
    height: 74px;
  }

  .journey-step-group.group-1 {
    left: 70px;
    top: 666px;
  }

  .journey-step-group.group-2 {
    left: 220px;
    top: 557px;
  }

  .journey-step-group.group-3 {
    left: 370px;
    top: 448px;
  }

  .journey-step-group.group-4 {
    left: 520px;
    top: 339px;
  }

  .journey-step-group.group-5 {
    left: 670px;
    top: 230px;
  }

  .journey-step-node {
    left: -80px;
    top: 35px;
    width: 14px;
    height: 14px;
  }

  .journey-step-connector {
    left: -66px;
    width: 66px;
    top: 42px;
    height: 2px;
  }

  .journey-step {
    width: 230px !important;
    padding: 18px 18px 18px 14px;
  }

  .journey-step-group.group-5 .journey-step {
    width: 250px !important;
  }
}

@media (max-width: 1024px) {
  .journey-summit-halo {
    display: none;
  }

  .journey-section .container {
    width: min(var(--container), calc(100% - 30px));
  }

  .journey-visual {
    --axis-x: 40px;
    --card-x: 90px;
    height: auto;
    min-height: 0;
    margin-top: 0;
    padding: 170px 0 40px var(--card-x);
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .journey-duration-label {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translateX(-50%) rotate(0deg);
    margin: 0;
    width: fit-content;
    z-index: 20;
  }

  .journey-path {
    left: calc(var(--axis-x) - 4px);
    top: 150px;
    bottom: 50px;
    width: 8px;
    height: auto;
    transform: none;
  }

  .journey-rail-glow,
  .journey-rail {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: auto;
    border-radius: 999px;
  }

  .journey-rail-glow {
    background: linear-gradient(180deg, rgba(255,200,45,0.14) 0%, rgba(255,228,126,0.12) 40%, rgba(255,228,126,0.02) 100%);
  }

  .journey-rail {
    background: linear-gradient(180deg, var(--journey-gold-3) 0%, var(--journey-gold-2) 44%, rgba(255,236,161,0.52) 100%);
    box-shadow: 0 0 0 6px rgba(255,216,90,0.03), 0 10px 18px rgba(67,10,29,0.09);
  }

  .journey-rail::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0) 100%);
  }

  .journey-rail::after {
    top: -4px;
    bottom: auto;
    right: 50%;
    border-bottom: 24px solid var(--journey-gold-3);
    border-top: 0;
    border-right: 13px solid transparent;
    border-left: 13px solid transparent;
    transform: translateX(50%);
  }

  .journey-lamp-wrap {
    position: absolute;
    left: calc(var(--axis-x) - 36px);
    top: 82px;
    width: 72px;
    height: 72px;
    margin: 0;
  }

  .journey-step-group {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100%;
    max-width: 540px;
    margin-left: 0 !important;
  }

  .journey-step,
  .journey-step-group.group-5 .journey-step {
    width: 100% !important;
    margin: 0 !important;
  }

  .journey-step-node {
    left: calc(var(--axis-x) - var(--card-x) - 7px) !important;
    top: 50% !important;
    transform: translateY(-50%);
  }

  .journey-step-connector {
    left: calc(var(--axis-x) - var(--card-x)) !important;
    width: calc(var(--card-x) - var(--axis-x)) !important;
    height: 2px !important;
    top: 50% !important;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(255,223,115,0.06), rgba(255,223,115,0.22));
  }
}

@media (max-width: 760px) {
  .journey-section .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .journey-shell {
    padding: 40px 0 48px;
  }

  .journey-copy {
    gap: 14px;
  }

  .journey-copy h2 {
    font-size: clamp(1.86rem, 8vw, 2.82rem);
    white-space: normal;
  }

  .journey-copy p {
    font-size: 0.98rem;
  }

  .journey-visual {
    --axis-x: 32px;
    --card-x: 72px;
    margin-top: 28px;
    padding: 140px 0 24px var(--card-x);
  }

  .journey-duration-label {
    font-size: 0.94rem;
    padding: 12px 18px;
    top: 18px;
    white-space: nowrap;
  }

  .journey-lamp-wrap {
    top: 70px;
    width: 64px;
    height: 64px;
    left: calc(var(--axis-x) - 32px);
  }

  .journey-path {
    top: 136px;
  }

  .journey-step-node {
    left: calc(var(--axis-x) - var(--card-x) - 7px) !important;
    width: 14px;
    height: 14px;
  }

  .journey-step-connector {
    left: calc(var(--axis-x) - var(--card-x) + 7px) !important;
    width: calc(var(--card-x) - var(--axis-x) - 7px) !important;
  }

  .journey-step {
    padding: 17px 16px 17px 14px;
    border-radius: 22px;
  }

  .journey-step-index {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 0.94rem;
  }

  .journey-step-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 540px) {
  .journey-copy h2 {
    font-size: clamp(1.8rem, 10vw, 2.42rem);
  }

  .journey-visual {
    padding-top: 130px;
    --card-x: 64px;
    --axis-x: 30px;
  }

  .journey-lamp-wrap {
    left: calc(var(--axis-x) - 32px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-step {
    transition: none;
  }
}