@charset "utf-8";

/*-------- css reset -------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video{
margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;background: transparent;font-family:'hiramaru', sans-serif;}

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f6fbfa;
  --color-bg-warm: #fbf8f2;
  --color-bg-dark: #0f3f3b;
  --color-title: #0D766E;
  --color-sub: #DCC8A6;
  --color-text: #333333;
  --color-muted: #667085;
  --color-border: #e7dfcf;
  --color-accent: #0D766E;
  --color-accent-dark: #0a5f59;
  --color-accent-text: #ffffff;
  --container: 1200px;
  --content-narrow: 860px;
  --header-height: 88px;
  --logo-height: 65px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding-left: 1.25em;
}

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

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

.center {
  text-align: center;
}

main {
  padding-top: calc(var(--header-height) + 12px);
}

section {
  padding: 88px 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 16px;
  color: var(--color-title);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.08;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.22;
  font-weight: 780;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  font-weight: 720;
}

p {
  margin: 0 0 1.1em;
}

.section-head {
  margin-bottom: 42px;
  padding-left: 18px;
  border-left: 4px solid var(--color-sub);
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--color-sub);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 760px;
  color: var(--color-muted);
}

.center .section-head {
  max-width: 880px;
  margin-inline: auto;
  text-align: left;
}

.center .section-intro {
  margin-right: auto;
}

.lp-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 1);/*----background: rgba(255, 255, 255, 0.92);----*/
  border-bottom: 1px solid rgba(231, 223, 207, 0.72);
  backdrop-filter: blur(12px);
}

.lp-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
}

.lp-logo img {
  width: auto;
  height: var(--logo-height);
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-accent-text);
  box-shadow: 0 10px 24px rgba(13, 118, 110, 0.22);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
}

.lp-hero-v2 {
  padding: 35px 0 55px;/*---padding: 140px 0 80px;---*/
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 1.08rem;
  color: var(--color-muted);
}

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

.impact-chips {
  margin: 26px 0 36px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.impact-chips li {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.92rem;
}

.hero-wide-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.lp-block--challenge {
  background: #fbf8f2;
}

.solution-cards,
.donation-cards-v2,
.trust-strip {
  display: grid;
  gap: 24px;
}

.solution-card {
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  position: relative;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 4px;
  background: var(--color-sub);
  border-radius: 999px;
}

.solution-card__num {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--color-sub);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.lp-story-v2 {
  background: #f6fbfa;
}

.lp-story-v2__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.lp-story-v2__image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.lp-story-v2 blockquote {
  margin: 0 0 18px;
  padding: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.7;
  color: var(--color-title);
  font-weight: 600;
}

.lp-impact-v2 {
  background: linear-gradient(135deg, #0D766E 0%, #0b615b 100%);
}

.section-head--light h2,
.section-head--light p,
.section-head--light .section-kicker {
  color: #ffffff;
}

.section-head--light .section-kicker {
  color: #DCC8A6;
}

.donation-card-v2 {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  text-align: center;
  color: #ffffff;
}

.donation-card-v2 h3 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.donation-card-v2 p {
  margin-bottom: 0;
}

.donation-card-v2--featured {
  background: #ffffff;
  color: var(--color-title);
  transform: translateY(-8px);
}

.donation-card-v2--featured h3 {
  color: var(--color-title);
}

.impact-cta {
  margin-top: 28px;
  text-align: center;
}

.impact-cta .btn--primary {
  background: #ffffff;
  color: #0D766E;
  box-shadow: none;
}

.lp-trust-v2 {
  background: #ffffff;
}

.trust-item {
  padding: 24px;
  border-radius: 20px;
  background: #f8fbfa;
  border: 1px solid var(--color-border);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-title);
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--color-muted);
}

.lp-encourage-v2 {
  background: #fbf8f2;
}

.encourage-copy {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.8;
  color: var(--color-title);
  font-weight: 600;
}

.lp-final-v2 {
  background: #0f3f3b;
  color: #ffffff;
}

.lp-final-v2 h2,
.lp-final-v2 p,
.lp-final-v2 .section-kicker {
  color: #ffffff;
}

.lp-final-v2 .section-kicker {
  color: #DCC8A6;
}

.lp-final-v2 .btn--primary {
  background: #ffffff;
  color: #0D766E;
  box-shadow: none;
}

.lp-footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.lp-footer__grid {
  display: grid;
  gap: 24px;
}

.lp-footer__brand img {
  width: auto;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
}

.lp-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-footer__nav li + li {
  margin-top: 8px;
}

.fade-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
    --logo-height: 52px;
  }

  section {
    padding: 58px 0;
  }

  .hero-actions .btn,
  .lp-header .btn {
    width: auto;
  }

  .impact-chips {
    justify-content: center;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .lp-numbered,
  .lp-story-v2__grid,
  .donation-cards-v2,
  .solution-cards,
  .trust-strip,
  .lp-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {

  .solution-cards,
  .donation-cards-v2,
  .trust-strip,
  .lp-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-story-v2__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .lp-footer__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}