:root {
    --brand: #d92f68;
    --brand-deep: #aa1e51;
    --brand-soft: #fff0f5;
    --ink: #2d2730;
    --muted: #726a73;
    --line: #eadde2;
    --paper: #fffdfd;
    --cream: #fbf5f2;
    --success: #2f7d5d;
    --shadow: 0 18px 50px rgba(88, 48, 65, .11);
    font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
    color: var(--ink);
    background: var(--cream);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: #fff; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-brand { display: inline-flex; align-items: center; color: var(--ink); text-decoration: none; }
.site-brand img { width: min(440px, 52vw); height: auto; display: block; }
.social-links--header { gap: 9px; }
.social-links--header .social-link {
    width: 42px;
    height: 42px;
    color: var(--brand-deep);
    background: var(--brand-soft);
    border-color: rgba(217,47,104,.24);
}
.social-links--header .line-icon-word { fill: #fff; }
.social-links--header .social-link:hover,
.social-links--header .social-link:focus-visible {
    color: #fff;
    background: var(--brand);
    transform: translateY(-2px);
}
.social-links--header .social-link:hover .line-icon-word,
.social-links--header .social-link:focus-visible .line-icon-word { fill: var(--brand); }
.mobile-actions { display: none; }
.mobile-actions .button-primary {
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    background: var(--brand);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.mobile-actions .button-primary:hover,
.mobile-actions .button-primary:focus-visible { background: var(--brand-deep); }
.menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    background: #fff;
    font-size: 20px;
}

.main-site-navigation {
    color: #fff;
    background: #ef2b68;
    box-shadow: inset 0 -1px rgba(130, 16, 57, .16);
}
.main-site-navigation__inner {
    width: min(1440px, 100%);
    min-height: 78px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
.main-site-navigation a {
    min-width: 0;
    padding: 20px 12px;
    display: grid;
    place-items: center;
    color: inherit;
    font-size: clamp(17px, 1.55vw, 23px);
    font-weight: 750;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px rgba(117, 15, 49, .17);
    transition: background-color .18s ease, color .18s ease;
}
.main-site-navigation a:hover,
.main-site-navigation a:focus-visible {
    color: #fff;
    background: rgba(163, 18, 70, .23);
}
.main-site-navigation a:focus-visible { outline: 3px solid #fff; outline-offset: -5px; }
.mobile-menu {
    display: none;
    padding: 8px 20px 18px;
    border-top: 1px solid var(--line);
    background: #fff;
}
.mobile-menu > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}
.mobile-social {
    display: flex;
    gap: 12px;
    padding: 8px 0 14px;
    border-bottom: 1px solid var(--line);
}
.mobile-social .social-link {
    width: auto;
    min-height: 42px;
    flex-basis: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    color: var(--brand-deep);
    background: var(--brand-soft);
    border-color: rgba(217,47,104,.24);
    border-radius: 999px;
    font-size: 14px;
}
.mobile-social .line-icon-word { fill: #fff; }

.donation-stage {
    padding: 38px 0 54px;
    border-top: 1px solid #f4dbe4;
    background:
        radial-gradient(circle at 18% 4%, rgba(255,255,255,.76), transparent 34%),
        linear-gradient(180deg, #fdebf2 0%, #fbf3f3 64%, #fbf5f2 100%);
}
.result-stage { min-height: 540px; padding: 70px 24px; display: grid; place-items: center; border-top: 1px solid #f4dbe4; background: radial-gradient(circle at 50% 0, #fff 0, #fff4f7 45%, #fce9ef 100%); }
.result-stage--failure { background: radial-gradient(circle at 50% 0, #fff 0, #fff7f2 45%, #fceae5 100%); }
.result-card { width: min(100%, 650px); padding: 48px 54px; text-align: center; border: 1px solid #f0d8e1; border-radius: 28px; background: #fff; box-shadow: 0 20px 55px rgba(102, 43, 66, .13); }
.result-icon { width: 58px; height: 58px; margin: 0 auto 17px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--brand); box-shadow: 0 8px 20px rgba(217, 47, 104, .22); font-size: 29px; font-weight: 800; }
.result-stage--failure .result-icon { background: #a96a47; box-shadow: 0 8px 20px rgba(169, 106, 71, .2); }
.result-eyebrow { margin: 0; color: var(--brand-deep); font-size: 14px; font-weight: 800; letter-spacing: .08em; }
.result-stage--failure .result-eyebrow { color: #875236; }
.result-card h1 { margin: 10px 0 20px; color: #352a30; font-size: 31px; line-height: 1.35; }
.result-copy { text-align: left; color: #5b4a52; line-height: 1.85; }
.result-copy p { margin: 0; }
.result-copy p + p { margin-top: 14px; }
.result-actions { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.result-button { min-height: 50px; padding: 13px 16px; display: grid; place-items: center; border-radius: 12px; font-weight: 800; text-decoration: none; transition: .18s ease; }
.result-page .site-header,
.donation-page .site-header { padding-top: 10px; padding-bottom: 10px; }
.result-page .site-brand img,
.donation-page .site-brand img { width: min(380px, 48vw); }
.result-page .main-site-navigation__inner,
.donation-page .main-site-navigation__inner { min-height: 64px; }
.result-page .main-site-navigation a,
.donation-page .main-site-navigation a { padding: 15px 10px; font-size: clamp(16px, 1.35vw, 20px); }
.donation-page .donation-stage { padding-top: 26px; padding-bottom: 42px; }
.result-page .result-stage { min-height: 620px; padding: 54px 24px; }
.result-page .result-card { width: min(100%, 760px); padding: 56px 68px; }
.result-page .result-card h1 { font-size: 34px; }
.result-button:hover, .result-button:focus-visible { transform: translateY(-1px); }
.result-button--line { color: #fff; background: #06c755; box-shadow: 0 8px 18px rgba(6, 199, 85, .2); }
.result-button--home { color: var(--brand-deep); border: 1px solid #e4c4d0; background: #fff8fa; }
.donation-layout {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr);
    gap: 24px;
    align-items: stretch;
}
.project-column { min-width: 0; }
.project-card {
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid rgba(217, 47, 104, .12);
    border-radius: 26px;
    background: var(--paper);
    box-shadow: var(--shadow);
}
.project-primary { padding: clamp(26px, 3vw, 42px); }
.project-primary:first-child {
    color: #fff;
    background:
        radial-gradient(circle at 92% 7%, rgba(255,255,255,.19), transparent 25%),
        linear-gradient(145deg, #ed4b7f, #d92f68 54%, #b72159);
}
.project-primary:first-child .project-rich,
.project-primary:first-child .project-rich p,
.project-primary:first-child .project-rich a { color: rgba(255,255,255,.94); }
.project-primary:first-child .project-rich h2,
.project-primary:first-child .project-rich h3 { color: #fff; }
.project-cover {
    width: 100%;
    max-height: 520px;
    margin: 0 0 28px;
    display: block;
    object-fit: contain;
    background: rgba(255,255,255,.2);
    border-radius: 18px;
}
.project-title {
    margin: 0 0 24px;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.2;
    letter-spacing: -.035em;
}
.project-rich { font-size: 16px; line-height: 1.82; font-weight: 400; overflow-wrap: anywhere; }
.project-rich h2 { margin: 1.4em 0 .5em; color: var(--brand-deep); font-size: clamp(23px, 2.5vw, 32px); line-height: 1.35; }
.project-rich h3 { margin: 1.25em 0 .45em; color: var(--brand-deep); font-size: 20px; }
.project-rich p,
.project-rich li { font-size: 16px; line-height: 1.82; font-weight: 400; }
.project-rich strong,
.project-rich b { font-weight: 700; }
.project-rich p { color: #504950; }
.project-rich a { color: var(--brand-deep); text-underline-offset: 3px; }
.project-rich img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 760px;
    margin: 24px auto;
    object-fit: contain;
    border-radius: 16px;
}
.project-rich blockquote { margin: 24px 0; padding: 18px 22px; border-left: 4px solid var(--brand); background: var(--brand-soft); }
.project-rich hr[data-mobile-cut],
.project-rich [data-mobile-cut-spacer] {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}
.project-details summary {
    min-height: 92px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    cursor: pointer;
    font-size: 23px;
    font-weight: 800;
}
.project-details summary::-webkit-details-marker { display: none; }
.summary-action { color: var(--brand); font-size: 14px; white-space: nowrap; }
.project-details[open] .summary-action::first-letter { visibility: hidden; }
.project-details[open] .summary-action { font-size: 0; }
.project-details[open] .summary-action::after { content: "收起－"; font-size: 14px; }
.project-details-body { padding: 0 30px 30px; border-top: 1px solid var(--line); }
.collapse-project,
.global-read-more,
.global-collapse {
    min-width: 150px;
    padding: 12px 22px;
    color: var(--brand-deep);
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 9px;
    font-weight: 800;
}
.collapse-project { display: block; margin: 28px 0 0 auto; }
.global-read-more-wrap { display: none; }
.global-collapse-wrap { display: none; }
.mobile-read-more-fade { display: none; }
.global-read-more { display: none; margin-top: 22px; position: relative; z-index: 2; }
.project-primary:first-child .global-read-more {
    color: #fff;
    border-color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.08);
}
.project-primary:first-child .global-read-more:hover,
.project-primary:first-child .global-read-more:focus-visible { background: rgba(255,255,255,.18); }
.eyebrow { display: inline-block; margin-bottom: 15px; color: var(--brand-deep); font-weight: 800; letter-spacing: .12em; }
.information-card {
    overflow: hidden;
    margin-bottom: 22px;
    padding: clamp(28px, 4vw, 48px);
    color: #fff;
    background:
        radial-gradient(circle at 92% 8%, rgba(255,255,255,.15), transparent 25%),
        linear-gradient(145deg, #df3f73, #c2255b 58%, #a51d49);
    border-radius: 26px;
    box-shadow: var(--shadow);
}
.information-card > h2 {
    margin: 0 0 24px;
    padding: 0 0 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.45);
    font-size: clamp(25px, 3vw, 34px);
}
.information-card .project-rich,
.information-card .project-rich h2,
.information-card .project-rich h3,
.information-card .project-rich p,
.information-card .project-rich a { color: #fff; }
.information-card .project-rich a { text-decoration-color: rgba(255,255,255,.65); }

.donation-column { min-height: 0; }
.donation-card {
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(217, 47, 104, .15);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
}
.donation-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 18px;
    color: rgba(255,255,255,.62);
    background: linear-gradient(125deg, var(--brand), #f45b8d);
}
.donation-progress div { position: relative; display: grid; justify-items: center; gap: 7px; text-align: center; }
.donation-progress div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 13px;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
    border-top: 1px dashed rgba(255,255,255,.55);
}
.donation-progress span {
    position: relative;
    z-index: 1;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    font-size: 12px;
}
.donation-progress small { font-size: 12px; }
.donation-progress .active { color: #fff; font-weight: 800; }
.donation-progress .active span { color: var(--brand); background: #fff; border-color: #fff; }
.donation-step { min-width: 0; margin: 0; padding: 24px; border: 0; }
.donation-step[data-step="1"] { padding-top: 0; }
.donation-step legend { width: 100%; margin: 0 0 20px; padding: 0; font-size: 23px; font-weight: 850; }
.donation-step legend.donation-step-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 .32em;
    margin-bottom: 14px;
    color: var(--ink);
    font-size: clamp(24px, 2.25vw, 29px);
    line-height: 1.18;
    letter-spacing: -.045em;
}
.donation-step[data-step="1"] legend.donation-step-heading { padding-top: 14px; }
.donation-step-heading::before {
    content: "";
    width: 5px;
    height: .9em;
    flex: 0 0 5px;
    align-self: center;
    margin-right: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f45b8d, var(--brand));
}
.donation-step-heading-accent { color: var(--brand-deep); }
.donation-legal-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(217,47,104,.14);
    border-radius: 14px;
    background: linear-gradient(135deg, #fff8fa, #f8f2f4);
}
.donation-legal-info > div {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 13px 15px;
}
.donation-legal-info > div + div { border-left: 1px solid rgba(169,31,75,.12); }
.donation-legal-info dt {
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
}
.donation-legal-info dd {
    min-width: 0;
    margin: 0;
    color: #55484d;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.donation-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 20px;
    padding: 6px;
    border: 1px solid rgba(169,31,75,.07);
    border-radius: 16px;
    background: #f3edef;
}
.donation-tabs button {
    min-height: 50px;
    padding: 12px 14px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .025em;
}
.donation-tabs button.active { color: #fff; background: var(--brand); box-shadow: 0 6px 16px rgba(217,47,104,.2); }
.donation-tabs button:focus-visible { outline: 3px solid rgba(217,47,104,.25); outline-offset: 2px; }
.amount-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.amount-option {
    position: relative;
    min-height: 96px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
    transition: .18s ease;
}
.amount-option:has(input:checked) { color: var(--brand-deep); border-color: var(--brand); background: var(--brand-soft); box-shadow: inset 0 0 0 1px var(--brand); }
.amount-option:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(217,47,104,.14); }
.amount-option input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
.amount-option strong { font-size: 18px; }
.amount-option .amount-badge {
    align-self: flex-start;
    margin: -3px 0 2px;
    padding: 3px 8px;
    color: #fff;
    background: var(--brand);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}
.amount-option .amount-number {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 4px;
    max-width: 100%;
    white-space: nowrap;
    line-height: 1.15;
}
.amount-option .amount-number .amount-currency {
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.02em;
}
.amount-option .amount-number .amount-value {
    min-width: 0;
    font-size: 27px;
    font-weight: 850;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.045em;
}
.amount-option span { font-weight: 700; }
.amount-option small { color: var(--muted); line-height: 1.4; }
.amount-option .amount-gift { margin-top: 2px; color: var(--muted); }
.amount-option .amount-gift b { color: var(--brand-deep); font-weight: 800; }
.custom-amount { margin-top: 16px; display: grid; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 700; }
.money-input { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.money-input b { padding: 0 14px; color: var(--brand-deep); }
.money-input input { width: 100%; padding: 14px; border: 0; outline: none; }
.donation-next {
    width: 100%;
    margin-top: 20px;
    padding: 15px 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #ed4b7f);
    border: 0;
    border-radius: 12px;
    font-weight: 850;
    box-shadow: 0 9px 22px rgba(217,47,104,.22);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: grid; gap: 7px; color: #514951; font-size: 14px; font-weight: 750; }
.form-grid label > span { display: inline; }
.form-grid .field-label { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px; }
.form-grid .required-mark { color: var(--brand); }
.form-grid .conditional-note { color: var(--muted); font-size: 12px; font-weight: 650; }
.form-grid .reward-required .conditional-note { color: var(--brand-deep); font-weight: 800; }
.form-grid .field-hint { margin-left: 3px; color: var(--brand); font-size: 12px; font-weight: 700; }
.form-grid input {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: none;
}
.form-grid input::placeholder { color: #b6afb3; opacity: 1; }
.form-grid input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(217,47,104,.1); }
.span-2 { grid-column: 1 / -1; }
.organization-toggle {
    min-height: 54px;
    padding: 14px 16px;
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row;
    align-items: center;
    gap: 11px !important;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #faf7f8;
    cursor: pointer;
}
.organization-toggle input {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    accent-color: var(--brand);
}
.organization-toggle > span { color: #272127; font-size: 15px; }
.organization-fields {
    padding: 19px;
    border: 1px solid rgba(217,47,104,.18);
    border-radius: 14px;
    background: var(--brand-soft);
}
.organization-fields[hidden] { display: none; }
.organization-fields h3 { margin: 0 0 17px; font-size: 19px; }
.organization-fields .form-grid { gap: 14px; }
.receipt-choice { margin-top: 18px; padding: 16px; border-radius: 12px; background: #faf6f7; }
.receipt-choice label { display: flex; align-items: center; gap: 10px; color: #272127; font-size: 15px; font-weight: 750; cursor: pointer; }
.receipt-choice input {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #aaa2a7;
    border-radius: 50%;
    background: #fff;
}
.receipt-choice input:checked { border-color: var(--brand); background: var(--brand); box-shadow: inset 0 0 0 5px #fff; }
.receipt-choice input:focus-visible { outline: 3px solid rgba(217,47,104,.2); outline-offset: 2px; }
.step-actions { display: grid; grid-template-columns: .7fr 1.3fr; gap: 10px; }
.step-actions > button:first-child { margin-top: 20px; padding: 14px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 12px; font-weight: 800; }
.form-error { min-height: 1.2em; margin: 12px 0 0; color: #b42318; font-size: 14px; font-weight: 700; }
.donation-summary { padding: 17px; border-radius: 14px; background: var(--brand-soft); line-height: 1.8; }
.confirmation-information { margin-top: 20px; }
.confirmation-information h3 { margin: 0 0 9px; font-size: 18px; }
.confirmation-information p,
.reward-section-description { margin: 0; color: #4f474d; line-height: 1.75; white-space: pre-line; }
.confirmation-information .donation-purpose-heading { margin-top: 20px; color: var(--brand); }
.donation-purpose-options { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.donation-purpose-options label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.donation-purpose-options input { width: 18px; height: 18px; accent-color: var(--brand); }
.reward-section-title { margin: 24px 0 9px; font-size: 18px; }
.reward-section-title span { margin-left: 4px; color: var(--brand); }
.reward-section-description { margin-bottom: 16px; }
.reward-options { display: grid; gap: 10px; }
.reward-retry-button { justify-self: start; padding: 10px 14px; color: var(--brand-deep); border: 1px solid #e4c4d0; border-radius: 10px; background: #fff8fa; font-weight: 800; }
.reward-retry-button:hover, .reward-retry-button:focus-visible { border-color: var(--brand); background: var(--brand-soft); }
.reward-option { position: relative; padding: 12px; display: grid; grid-template-columns: 74px 1fr; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 13px; cursor: pointer; }
.reward-option:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.reward-option:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(217,47,104,.14); }
.reward-option input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
.reward-option img { width: 74px; height: 74px; object-fit: contain; border-radius: 10px; background: #fff; }
.reward-option .reward-placeholder { width: 74px; height: 74px; display: grid; place-items: center; color: var(--brand); background: #fff; border-radius: 10px; font-size: 24px; }
.reward-option strong, .reward-option small { display: block; }
.reward-option small { margin-top: 4px; color: var(--muted); }
.payment-disabled { padding: 25px; text-align: center; border: 1px solid #b8dfce; border-radius: 17px; background: #f0fbf6; }
.payment-disabled > span { display: inline-block; padding: 6px 10px; color: var(--success); background: #fff; border-radius: 99px; font-size: 12px; font-weight: 850; }
.payment-disabled h2 { margin: 16px 0 8px; }
.payment-disabled p { color: #4e675b; line-height: 1.6; }
.payment-methods { margin-top: 22px; padding: 18px; border: 1px solid rgba(217,47,104,.2); border-radius: 18px; background: #fff8fa; }
.payment-methods h3 { margin: 0 0 14px; font-size: 17px; }
.payment-method-list { display: grid; gap: 10px; }
.payment-method-option {
    display: flex;
    min-height: 66px;
    margin: 0;
    padding: 12px 14px;
    align-items: center;
    gap: 13px;
    border: 2px solid #ece8ea;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.payment-method-option:hover { border-color: rgba(217,47,104,.48); }
.payment-method-option:focus-within {
    outline: 3px solid rgba(217,47,104,.2);
    outline-offset: 2px;
}
.payment-method-option:has(input:checked) {
    border-color: var(--brand);
    background: #ffe9f0;
    box-shadow: 0 7px 20px rgba(170,30,81,.08);
}
.payment-method-option input[type="radio"] {
    width: 30px;
    height: 30px;
    margin: 0;
    flex: 0 0 30px;
    appearance: none;
    border: 3px solid #c9c6c8;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}
.payment-method-option input[type="radio"]:checked {
    border-color: var(--brand);
    background: var(--brand);
    box-shadow: inset 0 0 0 7px #fff;
}
.payment-method-name {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--ink);
    font-size: 17px;
    font-weight: 750;
    line-height: 1.35;
}
.payment-brand {
    display: inline-flex;
    min-height: 30px;
    padding: 5px 13px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}
.payment-brand--credit { background: linear-gradient(110deg, #587fe5, #7a3da6); }
.payment-brand--line { background: #06c755; }
.payment-brand--apple { background: #050505; }
.payment-brand--google { background: linear-gradient(110deg, #4285f4, #34a853 36%, #fbbc05 68%, #ea4335); }
.payment-brand--samsung { background: #1737a6; }
.payment-methods p { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.modal-open { overflow: hidden; }
.single-donation-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(39, 27, 33, .62);
    backdrop-filter: blur(4px);
}
.single-donation-modal[hidden] { display: none; }
.single-donation-dialog {
    width: min(640px, 100%);
    max-height: min(680px, calc(100vh - 40px));
    overflow-y: auto;
    border: 1px solid rgba(217,47,104,.12);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(31, 17, 23, .32);
    outline: none;
}
.single-donation-heading {
    position: relative;
    padding: 38px 44px 34px;
    overflow: hidden;
    border-bottom: 1px solid #f3dce5;
    background: linear-gradient(135deg, #fff8fa 0%, #fde8ef 100%);
}
.single-donation-heading::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -45px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(234,53,112,.08);
}
.single-donation-badge {
    position: relative;
    z-index: 1;
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--brand-deep);
    background: #fff;
    border: 1px solid #f0c5d4;
    border-radius: 999px;
    box-shadow: 0 5px 14px rgba(125,40,73,.07);
    font-size: 13px;
    font-weight: 800;
}
.single-donation-badge b { color: var(--brand); font-size: 14px; }
.single-donation-dialog h2 {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: #2d252b;
    font-size: clamp(27px, 3vw, 34px);
    line-height: 1.38;
    letter-spacing: -.02em;
}
.single-donation-dialog h2 span {
    display: block;
}
.single-donation-dialog h2 span + span { margin-top: 8px; color: var(--brand-deep); }
.single-donation-content { padding: 30px 44px 38px; }
.single-donation-copy {
    padding: 20px 22px;
    color: #40363d;
    background: #fcf9fa;
    border: 1px solid #eee3e7;
    border-left: 4px solid var(--brand);
    border-radius: 14px;
    font-size: 16px;
    line-height: 1.75;
}
.single-donation-copy p { margin: 0; white-space: pre-line; }
.single-donation-copy p + p { margin-top: 10px; }
.single-donation-actions { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; margin-top: 24px; }
.single-donation-actions button {
    min-height: 60px;
    padding: 13px 18px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 850;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.single-donation-actions .keep-recurring { color: #fff; border: 2px solid var(--brand); background: linear-gradient(135deg, var(--brand-deep), #ed487e); box-shadow: 0 9px 22px rgba(217,47,104,.22); }
.single-donation-actions .confirm-single { color: #4b3f46; border: 2px solid #ded3d8; background: #fff; }
.single-donation-actions .confirm-single:hover { border-color: #d7a2b5; background: #fff8fa; }
.single-donation-actions button:focus-visible { outline: 4px solid rgba(217,47,104,.22); outline-offset: 3px; }
.single-donation-actions button:hover { transform: translateY(-1px); }
.trust-row { border-top: 3px solid rgba(217,47,104,.18); background: linear-gradient(90deg, #fff4f7 0%, #fbdde7 100%); }
.trust-inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 168px;
    margin: 0 auto;
    padding: 34px 0;
    display: grid;
    grid-template-columns: 1.15fr .8fr .95fr 1.45fr;
    align-items: start;
    gap: 24px;
}
.trust-row h2 { margin: 0; font-size: 24px; line-height: 1.45; }
.trust-row p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.trust-copy h2 span, .trust-copy p span { display: block; white-space: nowrap; }
.trust-fact strong { display: block; font-size: 14px; }
.trust-fact span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.trust-bank { margin-top: 7px; }
.trust-bank > span { margin-top: 4px; }
.trust-bank small { margin-right: 6px; color: #826b74; font-size: 11px; }
.trust-account { display: flex !important; flex-wrap: wrap; align-items: center; gap: 5px; }
.trust-account code {
    padding: 2px 5px;
    color: var(--brand-deep);
    background: rgba(255,255,255,.72);
    border-radius: 4px;
    font-family: Consolas, "Courier New", monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
}
.trust-account button {
    min-height: 28px;
    padding: 3px 8px;
    border: 1px solid rgba(170,30,81,.3);
    border-radius: 5px;
    color: var(--brand-deep);
    background: #fff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}
.trust-account button:hover, .trust-account button:focus-visible { color: #fff; background: var(--brand-deep); }
.trust-holder { line-height: 1.5; }
.site-footer { padding: 44px 0; color: #fff3f7; background: linear-gradient(135deg, #cf285d 0%, #aa1f4c 100%); }
.footer-grid {
    width: min(1380px, calc(100% - 68px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr .8fr 1.05fr;
    gap: 44px;
}
.site-footer strong { color: #fff; font-size: 18px; }
.site-footer p { margin: 9px 0 0; font-size: 14px; line-height: 1.8; }
.site-footer a { color: inherit; }
.result-page .trust-inner,
.donation-page .trust-inner { min-height: 0; padding-top: 16px; padding-bottom: 16px; gap: 18px; }
.result-page .trust-row h2,
.donation-page .trust-row h2 { font-size: 20px; }
.result-page .trust-row p,
.donation-page .trust-row p { margin-top: 3px; font-size: 12px; line-height: 1.45; }
.result-page .trust-fact strong,
.donation-page .trust-fact strong { font-size: 13px; }
.result-page .trust-fact span,
.donation-page .trust-fact span { margin-top: 3px; font-size: 12px; }
.result-page .trust-bank,
.donation-page .trust-bank { margin-top: 4px; }
.result-page .site-footer,
.donation-page .site-footer { padding-top: 18px; padding-bottom: 18px; }
.result-page .footer-grid,
.donation-page .footer-grid { gap: 24px; }
.result-page .footer-brand,
.donation-page .footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.result-page .footer-logo-mark,
.donation-page .footer-logo-mark { width: 58px; height: 58px; flex-basis: 58px; border-radius: 13px; }
.result-page .footer-identity,
.donation-page .footer-identity { gap: 10px; }
.result-page .social-links--footer,
.donation-page .social-links--footer { margin-top: 0; }
.result-page .social-links--footer .social-link,
.donation-page .social-links--footer .social-link { width: 38px; height: 38px; }
.result-page .site-footer strong,
.donation-page .site-footer strong { font-size: 16px; }
.result-page .site-footer p,
.donation-page .site-footer p { margin-top: 4px; font-size: 13px; line-height: 1.5; }
.footer-identity { display: flex; align-items: center; gap: 16px; }
.footer-logo-mark { width: 76px; height: 76px; flex: 0 0 76px; object-fit: contain; object-position: center; border-radius: 17px; background: #fff; }
.footer-service-hours { display: inline-block; margin-top: 6px; }
.social-links { display: flex; align-items: center; gap: 10px; }
.social-links--footer { margin-top: 18px; }
.social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    transition: .18s ease;
}
.social-link:hover { color: var(--brand-deep); background: #fff; }
.social-link svg { width: 25px; height: 25px; fill: currentColor; }
.line-icon-word { fill: var(--brand-deep); font-size: 4px; font-weight: 900; }

@media (min-width: 821px) {
    .donation-layout {
        height: clamp(610px, calc(100vh - 160px), 780px);
    }
    .project-column {
        height: 100%;
        max-height: none;
        padding-right: 14px;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-color: rgba(217,47,104,.65) rgba(217,47,104,.12);
        scrollbar-width: thin;
    }
    .project-column::-webkit-scrollbar { width: 8px; }
    .project-column::-webkit-scrollbar-track { background: rgba(217,47,104,.1); border-radius: 99px; }
    .project-column::-webkit-scrollbar-thumb { background: rgba(217,47,104,.62); border-radius: 99px; }
    .donation-column { height: 100%; }
    .donation-card {
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-color: rgba(217,47,104,.48) rgba(217,47,104,.08);
        scrollbar-width: thin;
    }
    .donation-card::-webkit-scrollbar { width: 7px; }
    .donation-card::-webkit-scrollbar-track { background: rgba(217,47,104,.08); }
    .donation-card::-webkit-scrollbar-thumb { background: rgba(217,47,104,.48); border-radius: 99px; }
}

@media (max-width: 1060px) {
    .donation-layout { grid-template-columns: minmax(0, 1fr) 410px; gap: 22px; width: min(100% - 28px, 1100px); }
    .project-primary { padding: 34px; }
    .project-title { font-size: 36px; }
    .donation-step { padding: 24px; }
}

@media (max-width: 820px) {
    .site-header { padding: 16px 18px; gap: 10px; }
    .site-brand img { width: min(330px, 60vw); }
    .social-links--header { gap: 6px; }
    .social-links--header .social-link { width: 38px; height: 38px; }
    .donation-stage { padding: 20px 0 34px; }
    .result-stage { min-height: 440px; padding: 42px 18px; }
    .result-card { padding: 36px 24px; border-radius: 22px; }
    .result-card h1 { font-size: 27px; }
    .result-page .site-header,
    .donation-page .site-header { padding: 10px 14px; }
    .result-page .site-brand img,
    .donation-page .site-brand img { width: min(280px, 56vw); }
    .result-page .social-links--header .social-link,
    .donation-page .social-links--header .social-link { width: 36px; height: 36px; }
    .result-page .main-site-navigation__inner,
    .donation-page .main-site-navigation__inner { min-height: 50px; }
    .result-page .main-site-navigation a,
    .donation-page .main-site-navigation a { padding: 12px 8px; font-size: 16px; }
    .donation-page .donation-stage { padding: 14px 0 24px; }
    .result-page .result-stage { min-height: 500px; padding: 24px 8px 30px; }
    .result-page .result-card { padding: 40px 22px; border-radius: 24px; }
    .result-page .result-card h1 { font-size: 29px; }
    .result-actions { grid-template-columns: 1fr; }
    .donation-layout { width: min(100% - 24px, 650px); grid-template-columns: 1fr; }
    .donation-column { position: static; }
    .project-primary { padding: 30px 24px; }
    .project-title { font-size: clamp(30px, 9vw, 44px); }
    .project-rich { font-size: 16px; line-height: 1.85; }
    .project-rich img { max-height: 560px; }
    .project-details summary { min-height: 76px; padding: 20px 22px; font-size: 20px; }
    .project-details-body { padding: 0 22px 24px; }
    .global-read-more-wrap { display: block; position: relative; z-index: 2; }
    .global-read-more { display: inline-block; }
    .global-collapse-wrap:not([hidden]) {
        margin: 4px 0 22px;
        display: flex;
        justify-content: center;
    }
    .global-collapse {
        min-width: 170px;
        color: var(--brand-deep);
        background: #fff;
        box-shadow: 0 8px 22px rgba(72,20,42,.12);
    }
    .project-column.mobile-all-projects-expanded .collapse-project,
    .project-column.mobile-all-projects-expanded .summary-action { display: none !important; }
    .project-column.mobile-all-projects-expanded .project-details summary {
        pointer-events: none;
        cursor: default;
    }
    .mobile-cut-collapsed.mobile-cut-has-preview .global-read-more-wrap {
        margin-top: -78px;
        padding-top: 116px;
    }
    .mobile-cut-collapsed.mobile-cut-has-preview .mobile-read-more-fade {
        position: absolute;
        inset: 0 -24px auto;
        height: 124px;
        display: block;
        pointer-events: none;
        background: linear-gradient(
            to bottom,
            rgba(183,33,89,0) 0%,
            rgba(183,33,89,.35) 36%,
            rgba(183,33,89,.82) 72%,
            #b72159 100%
        );
    }
    .mobile-cut-collapsed.mobile-cut-has-preview.project-primary:not(:first-child) .mobile-read-more-fade {
        background: linear-gradient(
            to bottom,
            rgba(255,253,253,0) 0%,
            rgba(255,253,253,.7) 55%,
            var(--paper) 100%
        );
    }
    .mobile-cut-collapsed .global-read-more {
        margin-top: 0;
        box-shadow: 0 8px 22px rgba(72,20,42,.16);
    }
    .mobile-cut-expanded .global-read-more-wrap { display: none; }
    .mobile-cut-expanded .mobile-read-more-fade { display: none; }
    .donation-progress { padding: 19px 8px; }
    .donation-progress small { font-size: 11px; }
    .site-footer { padding: 34px 0; }
    .trust-inner { width: min(100% - 36px, 650px); min-height: 0; display: block; padding: 30px 0; }
    .trust-row h2 { font-size: 21px; }
    .trust-fact { padding: 16px 0; border-bottom: 1px solid rgba(169,31,75,.13); }
    .trust-fact:last-child { border-bottom: 0; }
    .trust-account code { font-size: 13px; }
    .footer-grid { width: min(100% - 36px, 650px); display: block; }
    .footer-grid > div + div { margin-top: 22px; }
    .footer-logo-mark { width: 62px; height: 62px; flex-basis: 62px; border-radius: 14px; }
    .result-page .trust-inner,
    .donation-page .trust-inner {
        width: min(100% - 24px, 680px);
        padding: 12px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 10px;
    }
    .result-page .trust-row h2,
    .donation-page .trust-row h2 { font-size: 18px; line-height: 1.35; }
    .result-page .trust-copy,
    .result-page .trust-fact--donation,
    .donation-page .trust-copy,
    .donation-page .trust-fact--donation { grid-column: 1 / -1; }
    .result-page .trust-fact,
    .donation-page .trust-fact { padding: 6px 0; border-bottom: 0; }
    .result-page .trust-fact--donation,
    .donation-page .trust-fact--donation {
        margin-top: 2px;
        padding-top: 8px;
        border-top: 1px solid rgba(169,31,75,.13);
    }
    .result-page .site-footer,
    .donation-page .site-footer { padding: 14px 0; }
    .result-page .footer-grid,
    .donation-page .footer-grid {
        width: min(100% - 24px, 680px);
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(105px, .8fr);
        gap: 10px 14px;
    }
    .result-page .footer-grid > div + div,
    .donation-page .footer-grid > div + div { margin-top: 0; }
    .result-page .footer-contact,
    .result-page .footer-office,
    .donation-page .footer-contact,
    .donation-page .footer-office { min-width: 0; }
    .result-page .footer-contact a,
    .donation-page .footer-contact a {
        max-width: 100%;
        display: inline-block;
        overflow-wrap: anywhere;
    }
    .result-page .footer-office p,
    .donation-page .footer-office p { overflow-wrap: anywhere; }
    .result-page .footer-brand,
    .donation-page .footer-brand { grid-column: 1 / -1; }
    .result-page .footer-logo-mark,
    .donation-page .footer-logo-mark { width: 46px; height: 46px; flex-basis: 46px; border-radius: 11px; }
    .result-page .footer-identity,
    .donation-page .footer-identity { gap: 9px; }
    .result-page .site-footer strong,
    .donation-page .site-footer strong { font-size: 15px; }
    .result-page .site-footer p,
    .donation-page .site-footer p { margin-top: 3px; font-size: 12px; line-height: 1.4; }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 68px;
        padding: 0 17px;
        gap: 12px;
    }
    .site-brand { min-width: 0; }
    .site-brand img,
    .result-page .site-brand img,
    .donation-page .site-brand img { width: min(170px, 44vw); }
    .social-links--header { display: none; }
    .mobile-actions { display: flex; align-items: center; gap: 8px; }
    .main-site-navigation { display: none; }
    .mobile-menu { display: block; }
}

@media (max-width: 480px) {
    .donation-layout { width: min(100% - 16px, 650px); gap: 14px; }
    .project-card, .donation-card { border-radius: 20px; }
    .project-primary { padding: 27px 20px; }
    .project-title { margin-bottom: 18px; }
    .donation-step { padding: 22px 18px; }
    .donation-step legend { font-size: 22px; }
    .donation-step legend.donation-step-heading {
        gap: 0 .28em;
        margin-bottom: 12px;
        font-size: 22px;
    }
    .donation-legal-info { grid-template-columns: 1fr; margin-bottom: 17px; }
    .donation-legal-info > div { padding: 11px 13px; }
    .donation-legal-info > div + div {
        border-top: 1px solid rgba(169,31,75,.12);
        border-left: 0;
    }
    .donation-tabs { margin-bottom: 18px; padding: 5px; border-radius: 14px; }
    .donation-tabs button { min-height: 48px; padding: 11px 9px; font-size: 15px; }
    .amount-options { grid-template-columns: 1fr 1fr; gap: 9px; }
    .amount-option { min-height: 105px; padding: 13px; }
    .amount-option strong { font-size: 17px; }
    .form-grid { grid-template-columns: 1fr; }
    .span-2 { grid-column: auto; }
    .reward-option { grid-template-columns: 60px 1fr; }
    .reward-option img, .reward-option .reward-placeholder { width: 60px; height: 60px; }
    .payment-methods { padding: 14px; }
    .payment-method-option { min-height: 62px; padding: 10px 11px; gap: 9px; }
    .payment-method-option input[type="radio"] { width: 26px; height: 26px; flex-basis: 26px; }
    .payment-method-option input[type="radio"]:checked { box-shadow: inset 0 0 0 6px #fff; }
    .payment-method-name { font-size: 15px; }
    .payment-brand { min-height: 27px; padding: 5px 9px; font-size: 11px; }
    .single-donation-modal { padding: 12px; }
    .single-donation-dialog { max-height: calc(100vh - 24px); border-radius: 22px; }
    .single-donation-heading { padding: 27px 22px 24px; }
    .single-donation-badge { padding: 6px 10px; font-size: 12px; }
    .single-donation-dialog h2 { margin-top: 14px; font-size: 23px; line-height: 1.42; }
    .single-donation-dialog h2 span + span { margin-top: 6px; }
    .single-donation-content { padding: 22px; }
    .single-donation-copy { padding: 16px 17px; font-size: 15px; }
    .single-donation-actions { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
    .single-donation-actions button { min-height: 54px; font-size: 16px; }
}
