@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;}


@charset "utf-8";

: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: 92px;
  --logo-height: 56px;
  --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;
}

.text-center {
  text-align: center;
}

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

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.4rem, 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;
}

h4 {
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 700;
}

p {
  margin: 0 0 1.1em;
}

small,
.note {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.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);
}

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

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

.site-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);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

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

.site-nav {
  display: none;
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.site-nav__list a:hover {
  color: var(--color-title);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-title);
  border-radius: 999px;
  position: relative;
}

.menu-toggle__bar::before {
  position: absolute;
  top: -6px;
}

.menu-toggle__bar::after {
  position: absolute;
  top: 6px;
}

.mobile-panel {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel__inner {
  padding: 20px;
}

.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-panel li + li {
  margin-top: 12px;
}

.mobile-panel a {
  display: block;
  padding: 10px 0;
  font-weight: 650;
}

.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);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-title);
}

.hero-cover {
  position: relative;
  padding: 150px 0 110px;
  color: #ffffff;
  overflow: hidden;
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 34, 32, 0.78) 0%, rgba(8, 34, 32, 0.56) 46%, rgba(8, 34, 32, 0.18) 100%);
  z-index: 1;
}

.hero-cover__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-cover__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cover__inner {
  position: relative;
  z-index: 2;
}

.hero-panel {
  max-width: 760px;
}

.hero-panel h1,
.hero-panel p {
  color: #ffffff;
}

.hero-panel .section-kicker {
  color: #DCC8A6;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  margin-bottom: 24px;
}

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

.hero-impact-card {
  margin-top: 30px;
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  min-width: min(100%, 560px);
}

.hero-impact-card strong,
.hero-impact-card span {
  display: block;
}

.hero-impact-card strong {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.hero-impact-card span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding-top: 18px;
}

.page-hero__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-hero__lead {
  max-width: 660px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.page-hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-story {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split-story__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.grid-2,
.grid-3,
.card-grid {
  display: grid;
  gap: 24px;
}

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

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

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card--soft {
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
}

.card--impact h3 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.05;
  margin-bottom: 10px;
}

.card-number {
  font-size: 0.85rem;
  color: var(--color-sub);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.quote-box {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
}

.quote-box p:last-child {
  margin-bottom: 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--color-border);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table th,
.info-table td {
  padding: 16px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 220px;
  color: var(--color-title);
  font-weight: 700;
  background: #fbf9f4;
}

.cta-band {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.cta-band--dark {
  background: linear-gradient(135deg, #0D766E 0%, #0b615b 100%);
  color: #ffffff;
  border: 0;
}

.cta-band--dark h2,
.cta-band--dark p,
.cta-band--dark .section-kicker {
  color: #ffffff;
}

.cta-band--dark .section-kicker {
  color: #DCC8A6;
}

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

.impact-banner {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

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

.impact-stat {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(231, 223, 207, 0.8);
}

.impact-stat strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--color-title);
  margin-bottom: 10px;
}

.donation-layout {
  display: grid;
  gap: 26px;
}

.donation-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
}

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

.featured-report {
  display: grid;
  gap: 28px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.featured-report__media img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.featured-report__meta,
.report-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.report-grid {
  display: grid;
  gap: 24px;
}

.report-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.report-card img {
  width: 100%;
  object-fit: cover;
}

.report-card__body {
  padding: 22px;
}

.inline-link {
  color: var(--color-title);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

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

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

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

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

.site-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);
}

.bg-soft {
  background: var(--color-bg-soft);
}

.bg-warm {
  background: var(--color-bg-warm);
}

.bg-dark {
  background: var(--color-bg-dark);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark p,
.bg-dark .section-kicker {
  color: #ffffff;
}

.bg-dark .section-kicker {
  color: #DCC8A6;
}

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

  section {
    padding: 58px 0;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-cover {
    padding: 118px 0 74px;
  }

  .hero-actions .btn,
  .page-hero__grid .btn {
    width: 100%;
  }

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

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .info-table td {
    padding-top: 0;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  :root {
    --header-height: 90px;
    --logo-height: 52px;
  }

  .page-hero__grid,
  .split-story,
  .grid-2,
  .grid-3,
  .card-grid,
  .report-grid,
  .site-footer__grid,
  .impact-banner,
  .donation-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .menu-toggle,
  .mobile-panel {
    display: none !important;
  }

  .site-nav {
    display: block;
  }

  .page-hero__grid,
  .split-story,
  .impact-banner,
  .donation-layout,
  .featured-report {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .grid-3,
  .card-grid,
  .report-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}



















.report-detail-section {
  padding: 15px 0;
}

.report-detail__container {
  width: min(100% - 40px, 900px);
  margin-inline: auto;
}

.report-detail__date {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-muted);
  text-align: center;
}

.report-detail__title {
  margin-bottom: 28px;
  text-align: center;
  font-size:1.6em;
}

.report-detail__main-image {
  margin: 0 0 40px;
}

.report-detail__main-image a,
.report-detail__image a {
  display: block;
  cursor: zoom-in;
}

.report-detail__main-image img,
.report-detail__image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.report-detail__block {
  margin-top: 0;
  padding:15px 0;
  margin-bottom: 18px;
}

.report-detail__subtitle {
  margin-bottom: 18px;
  font-size:1.2em;
  text-align: center;
}

.report-detail__text {
  margin-bottom: 24px;
  color: var(--color-text);
}

.report-detail__image {
  margin: 0;
}

.report-detail__back {
  margin: 0 0 25px 0;
  text-align: center;
}

.report-detail__back2 {
  margin: 60px 0 0 0;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.lightbox__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1100px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 40px;
  pointer-events: none;
}

.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  background: #fff;
  pointer-events: auto;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 0;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #333333;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .report-detail-section {
    padding: 52px 0;
  }

  .report-detail__title {
    margin-bottom: 22px;
      font-size:1.4em;
  }

  .report-detail__block {
  margin-top: 0;
  padding:15px 0;
  margin-bottom: 18px;
  }

  .report-detail__subtitle {
    margin-bottom: 14px;
      font-size:1.2em;
  }

  .report-detail__text {
    margin-bottom: 18px;
  }

  .report-detail__back .btn {
    width: 100%;
  }

  .lightbox__inner {
    width: min(100% - 20px, 100%);
    padding: 70px 0 24px;
  }

  .lightbox__image {
    border-radius: 12px;
  }

  .lightbox__close {
    top: 12px;
    right: 0;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}




.report-detail__gallery {
  display: grid;
  gap: 20px;
}

.report-detail__gallery .report-detail__image {
  margin: 0;
}

@media (min-width: 641px) {
  .report-detail__gallery--2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}











.reports-archive-section {
  padding: 64px 0;
}

.reports-archive__list {
  display: grid;
  gap: 24px;
}

.reports-archive__link {
  display: block;
  height: 100%;
}

.reports-archive__card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.reports-archive__title {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .reports-archive__list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .reports-archive__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .reports-archive__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}