@font-face { font-family: "Paperlogy"; src: url("/img/fonts/Paperlogy-Regular.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
    @font-face { font-family: "Paperlogy"; src: url("/img/fonts/Paperlogy-SemiBold.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
    @font-face { font-family: "Paperlogy"; src: url("/img/fonts/Paperlogy-Bold.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
    @font-face { font-family: "Paperlogy"; src: url("/img/fonts/Paperlogy-ExtraBold.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

    :root {
      --ink: #143A3A;
      --ink-deep: #0B292A;
      --sage: #728C78;
      --sage-soft: #E7EEE8;
      --paper: #F7F5EF;
      --white: #FFFFFF;
      --sand: #E9E2D5;
      --orange: #FF6B6B;
      --orange-deep: #D94F5B;
      --text: #19302E;
      --muted: #66716D;
      --shadow-card: 0 20px 60px #102E2914;
      --shadow-soft: 0 12px 32px #102E2910;
      --radius-large: 32px;
      --radius-medium: 22px;
      --radius-small: 14px;
      --page: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 88px; scrollbar-width: none; }
    html::-webkit-scrollbar { display: none; }
    body {
      margin: 0;
      background: var(--paper);
      color: var(--text);
      font-family: "Noto Sans KR", sans-serif;
      line-height: 170%;
      word-break: keep-all;
      -webkit-font-smoothing: antialiased;
    }
    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, input, select { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
    button { border: 0; cursor: pointer; }
    img { display: block; max-width: 100%; }
    section[id] { scroll-margin-top: 88px; }

    .skip-link {
      position: fixed;
      left: 20px;
      top: -80px;
      z-index: 1000;
      padding: 12px 18px;
      background: var(--white);
      color: var(--ink-deep);
      border-radius: 10px;
      box-shadow: var(--shadow-soft);
    }
    .skip-link:focus { top: 20px; }

    .container { width: min(calc(100% - 48px), var(--page)); margin: 0 auto; }
    .eyebrow { display: none; }
    .value-index { display: none; }
    .section-title {
      margin: 0;
      color: var(--ink-deep);
      font-size: clamp(32px, 4vw, 52px);
      line-height: 120%;
      letter-spacing: -2px;
      text-wrap: balance;
    }
    .section-copy { margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 180%; }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      background: #0B292AF5;
      backdrop-filter: blur(18px);
      box-shadow: 0 8px 28px #061C1D24;
    }
    .header-inner {
      position: relative;
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .brand { display: flex; align-items: center; gap: 10px; flex: none; }
    .brand-mark {
      width: 52px;
      height: 44px;
      display: block;
      flex: none;
    }
    .brand-mark svg { width: 100%; height: 100%; overflow: visible; }
    .brand-name { display: flex; flex-direction: column; font-family: "Paperlogy", "Noto Sans KR", sans-serif; line-height: 120%; }
    .brand-name small { color: #F1DED8; font-size: 9px; font-weight: 600; letter-spacing: 2px; }
    .brand-name strong { color: var(--white); font-size: 19px; font-weight: 600; letter-spacing: -1px; }
    .brand-name span { margin-top: 3px; color: #BFCBC8; font-size: 8px; font-weight: 400; letter-spacing: 2px; }
    .desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
    .desktop-nav a { color: #DCE6E2; font-size: 15px; font-weight: 700; }
    .desktop-nav a:hover { color: var(--orange); }

    .button {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 22px;
      border-radius: 14px;
      font-weight: 800;
      line-height: 100%;
      transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button:focus-visible, .menu-toggle:focus-visible, .amount-button:focus-visible, input:focus-visible, select:focus-visible {
      outline: 3px solid #E7A181;
      outline-offset: 3px;
    }
    .button-primary { background: var(--orange); color: var(--white); box-shadow: 0 12px 28px #D94F5B2B; }
    .button-primary:hover { background: var(--orange-deep); box-shadow: 0 16px 34px #D94F5B38; }
    .button-quiet { background: var(--white); color: var(--ink-deep); box-shadow: var(--shadow-soft); }
    .button-outline { color: var(--white); background: #FFFFFF12; box-shadow: inset 0 0 0 1px #FFFFFF36; }
    .header-actions { display: none; }
    .header-actions .button { min-height: 44px; padding-inline: 16px; font-size: 13px; }
    .menu-toggle { display: none; width: 44px; height: 44px; background: var(--white); color: var(--ink); border-radius: 12px; box-shadow: var(--shadow-soft); }
    .menu-toggle svg { width: 22px; height: 22px; }

    .mobile-menu {
      display: none;
      padding: 8px 24px 24px;
      background: var(--ink-deep);
      box-shadow: var(--shadow-soft);
    }
    .mobile-menu.is-open { display: grid; gap: 6px; }
    .mobile-menu a { padding: 14px 10px; color: var(--white); font-weight: 750; }
    .mobile-menu .mobile-menu-actions { display: none; }
    .mobile-menu .mobile-menu-actions a { padding: 0 10px; }

    .hero { padding: 84px 0 0; background: var(--ink-deep); }
    .hero-shell {
      position: relative;
      min-height: 700px;
      display: grid;
      align-items: center;
      overflow: hidden;
      background: var(--ink-deep);
    }
    .hero-shell::before {
      content: "";
      position: absolute;
      inset: -20%;
      z-index: 2;
      pointer-events: none;
      background:
        radial-gradient(circle at 78% 38%, #FFFFFF30 0%, #FFFFFF00 30%),
        linear-gradient(110deg, #FFFFFF00 48%, #FF6B6B1C 70%, #FFFFFF00 88%);
      filter: blur(20px);
      animation: hero-atmosphere 12s ease-in-out infinite alternate;
    }
    .hero-image {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      scale: 106%;
      animation: hero-drift 14s ease-in-out infinite alternate;
      will-change: scale, translate;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(90deg, #0B292AF5 0%, #0B292AD9 38%, #0B292A47 70%, #0B292A14 100%);
    }
    .hero-content {
      position: relative;
      z-index: 3;
      width: min(calc(100% - 48px), var(--page));
      margin: 0 auto;
      padding: 86px 0;
      color: var(--white);
    }
    .hero h1 { margin: 0; font-size: clamp(44px, 6vw, 76px); line-height: 112%; letter-spacing: -4px; text-wrap: balance; }
    .hero p { max-width: 580px; margin: 28px 0 0; color: #E7EEEB; font-size: 19px; line-height: 180%; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
    .hero-note { position: absolute; right: 24px; bottom: 20px; z-index: 3; color: #FFFFFFB8; font-size: 11px; }

    @keyframes hero-drift {
      from { scale: 106%; translate: 0 0; }
      to { scale: 112%; translate: -2% -1%; }
    }
    @keyframes hero-atmosphere {
      from { opacity: 42%; translate: 3% 0; }
      to { opacity: 72%; translate: -3% 1%; }
    }
    @keyframes hero-copy-enter {
      from { opacity: 0; translate: 0 18px; }
      to { opacity: 1; translate: 0 0; }
    }
    .hero-content.is-visible > * { animation: hero-copy-enter 700ms ease both; }
    .hero-content.is-visible > :nth-child(2) { animation-delay: 100ms; }
    .hero-content.is-visible > :nth-child(3) { animation-delay: 200ms; }
    .hero-content.is-visible > :nth-child(4) { animation-delay: 300ms; }

    .trust-strip { padding: 72px 0 28px; }
    .trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .trust-item {
      min-height: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 24px;
      padding: 34px 30px 32px;
      background: var(--white);
      border-radius: var(--radius-small);
      box-shadow: var(--shadow-soft);
      text-align: center;
    }
    .trust-number {
      color: var(--orange-deep);
      font-family: "Paperlogy", "Noto Sans KR", sans-serif;
      font-size: 34px;
      font-weight: 800;
      line-height: 110%;
    }
    .trust-text {
      color: var(--ink-deep);
      font-family: "Paperlogy", "Noto Sans KR", sans-serif;
      font-size: 19px;
      font-weight: 600;
      line-height: 160%;
      letter-spacing: -0.4px;
    }

    .intro { padding: 110px 0; background: var(--white); }
    .intro-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 100px; align-items: start; }
    .intro-statement { position: sticky; top: 130px; }
    .intro-copy { display: grid; gap: 26px; }
    .intro-copy p { margin: 0; color: #455551; font-size: 20px; line-height: 190%; }
    .intro-copy strong { color: var(--ink-deep); }
    .signature { width: 100%; margin-top: 32px; display: flex; align-items: center; justify-content: flex-end; gap: 12px; color: var(--ink); font-size: 15px; font-weight: 800; line-height: 140%; text-align: right; white-space: nowrap; }
    .signature img { width: 150px; height: auto; flex: none; transform: translateY(-6px); }

    .values { padding: 72px 0 120px; }
    .section-head { max-width: 720px; margin-bottom: 54px; }
    .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .value-card {
      min-height: 340px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 34px;
      background: var(--white);
      border-radius: var(--radius-large);
      box-shadow: var(--shadow-card);
      transition: color 260ms ease, background-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
    }
    .value-index { color: var(--orange-deep); font-size: 13px; font-weight: 850; letter-spacing: 1px; }
    .value-card > div:first-child { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
    .value-card > div:last-child { margin-top: 28px; }
    .value-icon { width: 56px; height: 56px; display: grid; place-items: center; background: var(--sage-soft); color: var(--ink); border-radius: 18px; }
    .value-card .value-icon { transition: color 260ms ease, background-color 260ms ease; }
    .value-icon svg { width: 28px; height: 28px; }
    .value-card h3 { margin: 0 0 12px; color: var(--ink-deep); font-size: 28px; line-height: 130%; }
    .value-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 175%; }

    .programs { padding: 130px 0; background: var(--ink-deep); color: var(--white); }
    .programs .section-title { color: var(--white); }
    .programs .section-copy { color: #C4D0CC; }
    .program-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
    .program-card {
      position: relative;
      min-height: 350px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      padding: 32px;
      border-radius: var(--radius-large);
      isolation: isolate;
      color: var(--white);
      background: #234844;
      box-shadow: 0 20px 46px #061C1D30;
      transition: box-shadow 280ms ease, transform 280ms ease;
    }
    .program-card::before {
      position: absolute;
      inset: 0;
      z-index: -2;
      background-size: auto 118%;
      background-repeat: no-repeat;
      content: '';
      opacity: 58%;
      transition: opacity 280ms ease;
    }
    .program-card::after {
      position: absolute;
      inset: 0;
      z-index: -1;
      content: '';
    }
    .program-card:nth-child(1)::before { background-image: url('/img/program-emergency-support.png'); background-position: 66% center; }
    .program-card:nth-child(2)::before { background-image: url('/img/program-self-reliance.png'); background-position: 48% center; }
    .program-card:nth-child(3)::before { background-image: url('/img/program-community-network.png'); background-position: 52% center; }
    .program-card:nth-child(1)::after { background: linear-gradient(180deg, #16393633 0%, #163936F2 78%); }
    .program-card:nth-child(2)::after { background: linear-gradient(180deg, #7B624333 0%, #59452FF2 78%); }
    .program-card:nth-child(3)::after { background: linear-gradient(180deg, #8B4D413D 0%, #61372FF2 78%); }
    .program-label {
      position: relative;
      align-self: flex-start;
      padding: 8px 12px;
      color: var(--white);
      background: #FFFFFF1F;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      backdrop-filter: blur(8px);
    }
    .program-card h3 { position: relative; max-width: 440px; margin: 16px 0 10px; font-size: 28px; line-height: 130%; letter-spacing: -1px; }
    .program-card p { position: relative; max-width: 560px; margin: 0; color: #F0F3F0; font-size: 15px; line-height: 175%; }
    .program-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 5px; }
    @media (hover: hover) {
      .program-card:hover { transform: translateY(-6px); box-shadow: 0 28px 58px #061C1D45; }
      .program-card:hover::before { opacity: 72%; }
    }

    .story { padding: 130px 0; background: var(--white); }
    .story-shell { display: grid; grid-template-columns: 6fr 5fr; gap: 70px; align-items: center; }
    .story-visual {
      position: relative;
      min-height: 570px;
      overflow: hidden;
      border-radius: 36px;
      box-shadow: var(--shadow-card);
      background: var(--sand);
    }
    .story-visual img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; object-position: 68% center; }
    .story-badge { position: absolute; left: 24px; top: 24px; padding: 10px 14px; background: #FFFFFFE6; color: var(--ink-deep); border-radius: 12px; font-size: 12px; font-weight: 800; box-shadow: var(--shadow-soft); }
    .story-quote { margin: 28px 0 0; color: var(--ink-deep); font-size: 25px; font-weight: 750; line-height: 160%; }
    .story-copy { margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 185%; }
    .text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--orange-deep); font-weight: 800; }

    .transparency { padding: 110px 0; }
    .transparency-shell {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 60px;
      padding: 56px;
      background: #F1DED8;
      border-radius: 36px;
      box-shadow: var(--shadow-soft);
    }
    .promise-list { display: grid; gap: 14px; }
    .promise-item { display: flex; align-items: center; gap: 18px; padding: 20px 22px; background: #FFFFFFB8; border-radius: 16px; box-shadow: 0 8px 22px #102E290A; }
    .promise-item .promise-check { width: 34px; height: 34px; flex: none; display: grid; place-items: center; background: var(--ink); color: var(--white); border-radius: 50%; font-weight: 850; }
    .promise-item strong { display: block; color: var(--ink-deep); }
    .promise-item span { color: var(--muted); font-size: 14px; }

    .donate { padding: 120px 0 140px; }
    .donate-shell {
      display: grid;
      grid-template-columns: 5fr 6fr;
      overflow: hidden;
      border-radius: 38px;
      background: var(--ink);
      box-shadow: 0 30px 80px #0B292A24;
    }
    .donate-copy { padding: 70px; color: var(--white); }
    .donate-copy h2 { margin: 0; font-size: 46px; line-height: 125%; letter-spacing: -2px; }
    .donate-copy p { margin: 24px 0 0; color: #CDDBD6; font-size: 17px; line-height: 180%; }
    .donate-copy .notice { padding: 18px 20px; color: #4D5D59; background: var(--sand); border-radius: 16px; font-size: 14px; line-height: 170%; }
    .donate-form { display: flex; flex-direction: column; gap: 22px; margin: 16px; padding: 42px; background: var(--white); border-radius: 28px; box-shadow: var(--shadow-card); }
    .field { display: flex; flex-direction: column; gap: 9px; }
    .field label, .field legend { color: var(--ink-deep); font-size: 14px; font-weight: 800; }
    .field legend { margin-bottom: 10px; }
    fieldset { margin: 0; padding: 0; border: 0; }
    input, select {
      width: 100%;
      height: 52px;
      padding: 0 16px;
      border: 0;
      outline: 0;
      background: #F0F3EF;
      color: var(--text);
      border-radius: 12px;
    }
    .amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .amount-button { min-height: 46px; padding: 0 10px; background: #EEF2EE; color: var(--ink); border-radius: 12px; font-weight: 800; }
    .amount-button.is-selected { background: var(--ink); color: var(--white); box-shadow: 0 8px 20px #143A3A24; }
    .choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .choice { position: relative; }
    .choice input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
    .choice label {
      min-height: 50px;
      display: grid;
      place-items: center;
      padding: 0 14px;
      color: var(--ink);
      background: #EEF2EE;
      border-radius: 12px;
      cursor: pointer;
      transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
    }
    .choice input:checked + label { color: var(--white); background: var(--ink); box-shadow: 0 8px 20px #143A3A24; }
    .choice input:focus-visible + label { outline: 3px solid #E7A181; outline-offset: 3px; }
    .custom-amount { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; padding: 18px; background: var(--paper); border-radius: 14px; }
    .custom-amount[hidden] { display: none; }
    .custom-amount label { color: var(--ink-deep); font-size: 14px; font-weight: 800; }
    .amount-input-wrap { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; }
    .amount-input-wrap span { color: var(--ink-deep); font-weight: 800; }
    .custom-amount p { margin: 0; color: var(--muted); font-size: 12px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-note { margin: -4px 0 0; color: var(--muted); font-size: 12px; line-height: 160%; }
    .form-status { min-height: 24px; margin: 0; color: var(--orange-deep); font-size: 13px; font-weight: 750; }
    .check-row { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: center; color: var(--muted); font-size: 13px; line-height: 160%; cursor: pointer; }
    .check-row input { width: 20px; height: 20px; padding: 0; accent-color: var(--ink); border-radius: 5px; }
    .conditional-note { margin: -10px 0 0 32px; color: var(--muted); font-size: 12px; line-height: 160%; }
    .conditional-note[hidden] { display: none; }

    .site-footer { padding: 44px 0 64px; background: #082426; color: #BFCBC8; }
    .footer-grid { display: grid; grid-template-columns: 5fr 3fr 3fr; gap: 50px; }
    .footer-brand { color: var(--white); font-size: 21px; font-weight: 850; }
    .footer-copy { margin: 16px 0 0; font-size: 13px; line-height: 190%; }
    .footer-title { margin: 0 0 14px; color: var(--white); font-size: 13px; font-weight: 800; }
    .footer-links { display: grid; gap: 10px; font-size: 13px; }
    .footer-links a { width: fit-content; transition: color 180ms ease; }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom { margin-top: 32px; padding-top: 18px; color: #849693; font-size: 11px; }

    .mobile-donate { display: none; }

    .donation-float {
      position: fixed;
      right: 38px;
      bottom: 38px;
      z-index: 120;
      width: 108px;
      height: 108px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-direction: column;
      gap: 4px;
      padding: 16px 12px 15px;
      color: var(--white);
      background: linear-gradient(145deg, #FF8580 0%, var(--orange) 48%, var(--orange-deep) 100%);
      border-radius: 50%;
      box-shadow: inset 0 1px 1px #FFFFFF70, inset 0 -12px 22px #B7384930, 0 18px 38px #B63F4A3D;
      isolation: isolate;
    }
    .donation-float::before { display: none; }
    .donation-float::after { display: none; }
    .donation-float img { width: 50px; height: 42px; object-fit: contain; filter: drop-shadow(0 3px 7px #A938465C); }
    .donation-float span { font-size: 14px; font-weight: 900; line-height: 120%; letter-spacing: -1px; text-shadow: 0 2px 7px #A9384666; }
    .donation-float:hover { color: var(--white); transform: translateY(-4px); background: linear-gradient(145deg, #FF948D 0%, #FF6B6B 48%, #C94755 100%); box-shadow: inset 0 1px 1px #FFFFFF8A, inset 0 -12px 22px #A82D3E38, 0 24px 46px #B63F4A4D; }
    .donation-float:focus-visible { outline: 3px solid var(--orange); outline-offset: 5px; }

    .review-toolbar {
      position: fixed;
      left: 18px;
      bottom: 18px;
      z-index: 1000;
      width: min(360px, calc(100% - 36px));
      padding: 16px;
      color: var(--white);
      background: #0B292AF2;
      border-radius: 18px;
      box-shadow: 0 18px 50px #061C1D42;
    }
    .review-toolbar strong { display: block; font-size: 14px; }
    .review-toolbar p { margin: 6px 0 12px; color: #DCE6E2; font-size: 13px; line-height: 150%; }
    .review-toolbar-actions { display: flex; gap: 8px; }
    .review-toolbar button {
      min-height: 36px;
      padding: 8px 12px;
      color: var(--ink-deep);
      background: var(--white);
      border-radius: 10px;
      font: inherit;
      font-size: 12px;
      font-weight: 800;
    }
    .review-toolbar .review-exit { color: var(--white); background: var(--orange); }
    body.review-mode [data-review-id] { cursor: crosshair; }
    body.review-mode [data-review-id]:hover {
      outline: 2px dashed var(--orange);
      outline-offset: 5px;
    }
    body.review-mode [data-review-selected="true"] {
      outline: 4px solid var(--orange);
      outline-offset: 6px;
      box-shadow: 0 0 0 8px #FF6B6B24, var(--shadow-card);
    }
    body.review-mode .value-card.reveal.is-visible:hover { animation: none; transform: none; }

    .reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    @keyframes value-card-bounce {
      0% { transform: translateY(0); }
      60% { transform: translateY(-10px); }
      80% { transform: translateY(-6px); }
      100% { transform: translateY(-8px); }
    }

    @media (hover: hover) {
      .value-card.reveal.is-visible:hover {
        color: var(--white);
        background: var(--ink);
        box-shadow: 0 28px 60px #0B292A33;
        animation: value-card-bounce 360ms ease-out both;
      }
      .value-card:hover h3, .value-card:hover p { color: var(--white); }
      .value-card:hover .value-icon { color: #EAF1EB; background: #FFFFFF17; }
    }

    @media (max-width: 960px) {
      .desktop-nav, .header-actions { display: none; }
      .menu-toggle { display: grid; place-items: center; }
      .hero-shell { min-height: 660px; }
      .hero-content { padding: 64px 0; }
      .intro-grid, .story-shell, .transparency-shell, .donate-shell { grid-template-columns: 1fr; }
      .intro-statement { position: static; }
      .value-grid { grid-template-columns: 1fr; }
      .value-card { min-height: 260px; }
      .program-grid { grid-template-columns: 1fr; }
      .program-card { min-height: 300px; }
      .story-visual, .story-visual img { min-height: 440px; }
    }

    @media (max-width: 640px) {
      .container { width: min(calc(100% - 32px), var(--page)); }
      .header-inner { min-height: 72px; }
      .brand-mark { width: 46px; height: 39px; }
      .brand-name small, .brand-name span { display: none; }
      .brand-name strong { font-size: 17px; }
      .hero { padding: 72px 0 0; }
      .hero-shell { min-height: 790px; align-items: end; }
      .hero-image { object-position: 62% center; }
      .hero-overlay { background: linear-gradient(0deg, #0B292AF7 0%, #0B292AA8 58%, #0B292A1F 100%); }
      .hero-content { width: min(calc(100% - 32px), var(--page)); padding: 36px 0 124px; }
      .hero h1 { font-size: 42px; letter-spacing: -3px; }
      .hero p { font-size: 16px; }
      .hero-actions { display: grid; }
      .hero-note { right: 18px; bottom: 92px; }
      .trust-strip { padding: 40px 0 20px; }
      .trust-list { grid-template-columns: 1fr; }
      .trust-item { min-height: 180px; gap: 18px; padding: 28px 24px; }
      .trust-number { font-size: 30px; }
      .trust-text { font-size: 17px; }
      .intro, .programs, .story, .transparency, .donate { padding: 84px 0; }
      .values { padding: 56px 0 84px; }
      .intro-grid { gap: 44px; }
      .intro-copy p { font-size: 17px; }
      .signature { gap: 8px; font-size: 11px; }
      .signature img { width: 96px; transform: translateY(-4px); }
      .section-title { font-size: 34px; letter-spacing: -2px; }
      .section-copy { font-size: 16px; }
      .value-card { padding: 28px; border-radius: 24px; }
      .program-grid { gap: 16px; }
      .program-card { padding: 28px; border-radius: 24px; }
      .story-shell { gap: 42px; }
      .story-visual, .story-visual img { min-height: 360px; }
      .transparency-shell { gap: 36px; padding: 28px; border-radius: 24px; }
      .donate-shell { border-radius: 26px; }
      .donate-copy { padding: 42px 28px 18px; }
      .donate-copy h2 { font-size: 34px; }
      .donate-form { margin: 12px; padding: 28px 20px; border-radius: 22px; }
      .amounts { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .site-footer { padding-bottom: 104px; }
      .mobile-donate {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        z-index: 90;
        display: block;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 8px;
        background: #FFFFFFE6;
        backdrop-filter: blur(16px);
        border-radius: 20px;
        box-shadow: 0 16px 46px #0B292A38;
        transition: transform 220ms ease, opacity 220ms ease;
      }
      .mobile-donate .button { width: 100%; }
      .mobile-donate .button-outline { color: var(--ink); background: var(--white); box-shadow: inset 0 0 0 1px #143A3A1F; }
      .mobile-donate.is-hidden { opacity: 0; transform: translateY(140px); pointer-events: none; }
      .donation-float { right: 18px; bottom: 92px; width: 78px; height: 78px; gap: 1px; padding: 11px 8px 10px; }
      .donation-float::after { top: 8px; right: 17px; left: 17px; height: 16px; }
      .donation-float img { width: 36px; height: 31px; }
      .donation-float span { font-size: 11px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0ms !important; transition-duration: 0ms !important; }
      .reveal { opacity: 1; transform: none; }
    }
