:root {
    --bg: #080808;
    --surface: #f5f5f5;
    --surface-soft: #fff3f3;
    --ink: #1d232c;
    --muted: #6f7782;
    --red: #c80d1b;
    --red-dark: #990914;
    --red-soft: rgba(200, 13, 27, 0.12);
    --line: rgba(29, 35, 44, 0.12);
    --shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #151515;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 22px;
    color: var(--ink);
    background:
        radial-gradient(circle at 50% 0, rgba(200, 13, 27, 0.25), transparent 26rem),
        linear-gradient(180deg, #1a1a1a 0, #080808 100%);
    font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.donation-page {
    width: min(100%, 760px);
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.compact-page {
    width: min(100%, 680px);
}

.admin-page {
    width: min(100%, 980px);
}

.hero,
.panel,
.footer-note {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.hero {
    position: relative;
    min-height: 330px;
    display: grid;
    place-items: center;
    padding: clamp(34px, 7vw, 64px) clamp(24px, 6vw, 58px);
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px),
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14), transparent 18rem);
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-dark {
    color: #f2f2f2;
    background:
        radial-gradient(circle at 50% 10%, rgba(200, 13, 27, 0.28), transparent 21rem),
        #111;
}

.hero-red {
    min-height: 260px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
        linear-gradient(180deg, #e21827, #b00b17);
}

.hero-icon {
    width: clamp(96px, 23vw, 180px);
    height: clamp(96px, 23vw, 180px);
    margin: 0 auto 22px;
    color: var(--red);
    filter: drop-shadow(0 0 18px rgba(200, 13, 27, 0.38));
}

.hero-red .hero-icon {
    color: #fff;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--red);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-red .eyebrow,
.hero-dark .eyebrow {
    color: #fff;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.button,
.user-pill {
    text-transform: uppercase;
}

h1 {
    max-width: 620px;
    margin-bottom: 14px;
    font-family: "Oswald", "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(2.25rem, 7vw, 4.7rem);
    line-height: 1.02;
}

h1 span {
    color: #ff2534;
}

.hero-copy {
    max-width: 560px;
    margin-inline: auto;
    color: inherit;
    font-size: clamp(1.25rem, 3.8vw, 1.7rem);
    line-height: 1.28;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.panel {
    padding: clamp(22px, 5vw, 34px);
    background: var(--surface);
}

.compact-panel {
    width: min(100%, 560px);
    margin: 0 auto;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.section-icon,
.material-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--red);
    background: var(--red-soft);
}

.section-icon {
    width: 58px;
    height: 58px;
    padding: 13px;
    border-radius: 14px;
}

.section-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.9rem, 5vw, 3rem);
    line-height: 1;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 68px;
    height: 4px;
    margin-top: 10px;
    background: var(--red);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.button-primary {
    color: #fff;
    background: linear-gradient(180deg, #e21a2a, var(--red));
    box-shadow: 0 10px 22px rgba(200, 13, 27, 0.28);
}

.button-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.56);
    background: rgba(0, 0, 0, 0.18);
}

.panel .button-ghost {
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
}

.button-danger {
    color: #fff;
    background: #2b2f38;
}

.button-large {
    min-height: 62px;
    padding-inline: clamp(20px, 6vw, 42px);
    font-size: clamp(1.15rem, 4vw, 1.8rem);
}

.button-full {
    width: 100%;
}

.button:disabled {
    cursor: default;
    opacity: 0.65;
    transform: none;
}

.user-pill {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.flash {
    padding: 15px 18px;
    scroll-margin-top: 18px;
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.flash-success {
    background: #167a3d;
}

.flash-error {
    background: var(--red-dark);
}

.empty-state {
    padding: 20px;
    border: 1px dashed var(--line);
    border-radius: 14px;
    color: var(--muted);
    background: #fff;
    font-size: 1.2rem;
}

.work-card {
    display: grid;
    gap: 18px;
    padding: clamp(18px, 4vw, 28px);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.work-card + .work-card {
    margin-top: 18px;
}

.work-details {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 14px;
    background: var(--surface-soft);
    font-size: clamp(1.15rem, 3.3vw, 1.35rem);
    line-height: 1.3;
}

.work-details strong {
    color: var(--ink);
    margin-right: 8px;
}

.signup-list {
    padding-top: 4px;
}

.signup-list h3 {
    margin-bottom: 10px;
    font-size: 1.65rem;
}

.signup-list p {
    color: var(--muted);
}

.signup-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 12px;
    border-top: 1px solid var(--line);
    font-size: 1.25rem;
    font-weight: 700;
}

.signup-row span {
    width: 28px;
    height: 28px;
    color: var(--red);
}

.material-list {
    display: grid;
    gap: 12px;
}

.material-card {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.material-icon {
    width: 58px;
    height: 58px;
    padding: 13px;
    border-radius: 12px;
}

.material-card h3 {
    margin-bottom: 4px;
    font-size: 1.55rem;
}

.material-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-grid label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.span-all {
    grid-column: 1 / -1;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    background: #fff;
    font-size: 1.15rem;
    padding: 12px 13px;
}

textarea {
    min-height: 92px;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: var(--red);
    outline: 3px solid rgba(200, 13, 27, 0.16);
}

.check-row {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 10px !important;
}

.check-row input {
    width: auto;
}

.admin-list,
.offer-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.admin-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.admin-item summary {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    cursor: pointer;
    font-size: 1.35rem;
    font-weight: 800;
}

.admin-item summary small {
    color: var(--muted);
}

.admin-item .form-grid {
    padding: 0 16px 16px;
}

.inline-delete {
    padding: 0 16px 16px;
}

.offer-row {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font-size: 1.1rem;
}

.offer-row small {
    color: var(--muted);
}

.footer-note {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 20px clamp(20px, 5vw, 30px);
    color: var(--red-dark);
    background: #ffe8e8;
    font-size: 1.25rem;
}

@media (max-width: 680px) {
    body {
        padding: 0;
        background: var(--surface);
    }

    .donation-page,
    .admin-page,
    .compact-page {
        width: 100%;
        gap: 0;
    }

    .hero,
    .panel,
    .footer-note {
        border-radius: 0;
        box-shadow: none;
    }

    .panel {
        border-top: 1px solid var(--line);
    }

    .material-card {
        grid-template-columns: 58px 1fr;
    }

    .material-card form,
    .material-card .button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-note {
        display: grid;
    }
}

/* Poster-style public donations landing page */
.donation-poster {
    width: min(100%, 560px);
    min-height: calc(100vh - 44px);
    gap: 0;
    padding: clamp(26px, 5vw, 54px) clamp(18px, 5vw, 42px) clamp(24px, 5vw, 44px);
    color: #dedede;
    background:
        radial-gradient(circle at 50% 10%, rgba(200, 13, 27, 0.22), transparent 16rem),
        radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.035), transparent 24rem),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 17%, transparent 83%, rgba(255, 255, 255, 0.018)),
        #101010;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.72);
    position: relative;
    isolation: isolate;
}

.donation-poster::before,
.donation-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.donation-poster::before {
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px),
        repeating-radial-gradient(circle at 45% 30%, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 7px);
    opacity: 0.42;
}

.donation-poster::after {
    background: radial-gradient(circle at 50% 0%, transparent 38%, rgba(0, 0, 0, 0.34));
}

.donation-poster .hero,
.donation-poster .landing-menu,
.donation-poster .contact-strip {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.donation-poster .landing-hero {
    min-height: auto;
    padding: 0 0 20px;
}

.donation-poster .hero::before {
    display: none;
}

.donation-poster .hero-icon {
    width: clamp(158px, 42vw, 250px);
    height: clamp(158px, 42vw, 250px);
    margin-bottom: 16px;
    color: #ed1b2f;
    filter:
        drop-shadow(0 0 7px rgba(237, 27, 47, 0.9))
        drop-shadow(0 0 22px rgba(237, 27, 47, 0.48));
}

.donation-poster h1 {
    max-width: none;
    margin-bottom: 12px;
    color: #eeeeee;
    font-size: clamp(2.15rem, 6.9vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px #000;
}

.donation-poster h1 span {
    color: #ed1b2f;
}

.hero-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    width: min(100%, 330px);
    margin: 0 auto 17px;
    color: #ed1b2f;
}

.hero-divider::before,
.hero-divider::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(237, 27, 47, 0.78));
    box-shadow: 0 0 10px rgba(237, 27, 47, 0.42);
}

.hero-divider::after {
    background: linear-gradient(90deg, rgba(237, 27, 47, 0.78), transparent);
}

.hero-divider span {
    width: 17px;
    height: 17px;
    display: block;
    position: relative;
}

.hero-divider span::before,
.hero-divider span::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 15px;
    border: 2px solid currentColor;
    border-left: 0;
    border-radius: 9px 9px 0 0;
    transform: rotate(45deg);
    transform-origin: 0 100%;
}

.hero-divider span::after {
    left: 9px;
    transform: rotate(-45deg);
    transform-origin: 100% 100%;
}

.donation-poster .hero-copy {
    max-width: 430px;
    margin-bottom: 0;
    color: #dddddd;
    font-size: clamp(1.1rem, 3.6vw, 1.42rem);
    line-height: 1.34;
    text-transform: none;
    text-shadow: 0 2px 8px #000;
}

.donation-poster .hero-copy strong {
    color: #ed1b2f;
    text-transform: uppercase;
}

.donation-poster .landing-menu {
    gap: 10px;
    padding: 0;
}

.donation-poster .landing-card {
    grid-template-columns: clamp(72px, 17vw, 96px) 1fr;
    min-height: clamp(104px, 19vw, 124px);
    gap: clamp(13px, 3vw, 22px);
    padding: 15px clamp(16px, 4vw, 27px);
    border: 1px solid rgba(237, 27, 47, 0.78);
    border-radius: 7px;
    color: #eeeeee;
    background: rgba(15, 15, 15, 0.48);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.026),
        0 0 12px rgba(237, 27, 47, 0.36),
        inset 0 0 20px rgba(237, 27, 47, 0.06);
}

.donation-poster .landing-card-icon {
    width: clamp(50px, 11vw, 74px);
    height: clamp(50px, 11vw, 74px);
    justify-self: center;
    color: #ed1b2f;
    filter: drop-shadow(0 0 8px rgba(237, 27, 47, 0.58));
}

.donation-poster .landing-card strong {
    margin-bottom: 3px;
    color: #f2f2f2;
    font-size: clamp(1.65rem, 6vw, 2.33rem);
    letter-spacing: 0.055em;
    line-height: 1.02;
}

.donation-poster .landing-card:first-child strong,
.donation-poster .landing-card:first-child small {
    font-size: clamp(1.72rem, 6vw, 2.16rem);
}

.donation-poster .landing-card small {
    color: #d7d7d7;
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    letter-spacing: 0.035em;
    line-height: 1.1;
}

.donation-poster .contact-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 19px;
    border-top: 1px solid rgba(237, 27, 47, 0.26);
}

.donation-poster .contact-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 10px 0;
    color: #dedede;
    background: transparent;
    border-bottom: 1px solid rgba(237, 27, 47, 0.28);
}

.donation-poster .contact-item:nth-child(2) {
    padding-left: 14px;
}

.donation-poster .contact-item-wide {
    grid-column: 1 / -1;
}

.donation-poster .contact-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 9px;
    border: 1px solid rgba(237, 27, 47, 0.7);
    border-radius: 50%;
    color: #ed1b2f;
    filter: drop-shadow(0 0 6px rgba(237, 27, 47, 0.34));
}

.donation-poster .contact-item strong {
    display: block;
    margin-bottom: 3px;
    color: #b9b9b9;
    font-size: clamp(0.88rem, 2.7vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.donation-poster .contact-item a,
.donation-poster .contact-item span span {
    color: #e4e4e4;
    font-size: clamp(1rem, 3vw, 1.22rem);
    letter-spacing: 0.055em;
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-shadow: 0 2px 8px #000;
}

.donation-poster .footer-note {
    display: none;
}

@media (max-width: 680px) {
    body:has(.donation-poster) {
        background: #101010;
    }

    .donation-poster {
        width: 100%;
        min-height: 100vh;
        padding-inline: clamp(18px, 5vw, 28px);
        box-shadow: none;
    }

    .donation-poster .contact-strip {
        grid-template-columns: 1fr;
    }

    .donation-poster .contact-item:nth-child(2) {
        padding-left: 0;
    }
}
:root {
    --bg: #080808;
    --paper: #101010;
    --text: #d6d6d6;
    --text-strong: #eeeeee;
    --red: #bc1824;
    --red-soft: rgba(188, 24, 36, 0.55);
    --shadow: rgba(0, 0, 0, 0.72);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #050505;
}

body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    place-items: center;
    padding: 28px;
    color: var(--text);
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.07), transparent 20rem),
        radial-gradient(circle at 50% 86%, rgba(188, 24, 36, 0.08), transparent 22rem),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px),
        var(--bg);
    font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.visually-hidden {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.contact-poster {
    width: min(100%, 540px);
    min-height: min(900px, calc(100vh - 56px));
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(48px, 8vh, 86px) 34px clamp(42px, 7vh, 72px);
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.045), transparent 19rem),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.018)),
        var(--paper);
    box-shadow: 0 24px 65px var(--shadow);
    isolation: isolate;
}

.contact-poster::before,
.contact-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-poster::before {
    z-index: -1;
    background:
        linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.025) 18% 19%, transparent 19% 100%),
        repeating-radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 7px);
    opacity: 0.38;
    mix-blend-mode: screen;
}

.contact-poster::after {
    background:
        linear-gradient(rgba(255, 255, 255, 0.016) 50%, transparent 50%),
        radial-gradient(circle at 50% 0%, transparent 42%, rgba(0, 0, 0, 0.36));
    background-size: 100% 4px, 100% 100%;
    opacity: 0.6;
}

.brand,
.contact-list {
    width: 100%;
    position: relative;
    z-index: 1;
}

.brand {
    text-align: center;
    margin-bottom: clamp(24px, 5vh, 48px);
}

.brand-logo {
    width: min(100%, 465px);
    height: auto;
    display: block;
    margin: 0 auto;
    filter:
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.72))
        drop-shadow(0 0 18px rgba(188, 24, 36, 0.18));
}

.brand-line {
    width: 118px;
    height: 3px;
    margin: clamp(22px, 4vh, 34px) auto 0;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    box-shadow: 0 0 17px var(--red-soft);
}

.contact-list {
    display: grid;
    justify-items: center;
}

.contact-item {
    width: min(100%, 390px);
    display: grid;
    justify-items: center;
    padding: clamp(18px, 3.5vh, 28px) 0;
    text-align: center;
}

.contact-item + .contact-item {
    border-top: 1px solid rgba(188, 24, 36, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.item-icon {
    width: clamp(44px, 10vw, 62px);
    height: clamp(44px, 10vw, 62px);
    margin-bottom: 16px;
    color: var(--red);
    filter: drop-shadow(0 0 8px rgba(188, 24, 36, 0.22));
}

svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.item-label {
    margin: 0;
    color: #dedede;
    font-size: clamp(1.45rem, 5.3vw, 2.2rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0.13em;
    text-shadow: 0 2px 8px #000;
    overflow-wrap: anywhere;
}

.bank-details {
    width: 100%;
    display: grid;
    gap: 16px;
}

.bank-detail {
    display: grid;
    justify-items: center;
    gap: 7px;
}

.bank-detail-name {
    color: var(--red);
    font-size: clamp(0.95rem, 3.2vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.18em;
}

.bank-detail-value {
    color: #dedede;
    font-size: clamp(1.12rem, 4.2vw, 1.58rem);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 0.09em;
    text-shadow: 0 2px 8px #000;
    overflow-wrap: anywhere;
}

a.item-label {
    transition: color 160ms ease, text-shadow 160ms ease;
}

a.item-label:hover {
    color: #ffffff;
    text-shadow: 0 0 16px rgba(188, 24, 36, 0.44);
}

.copy-button {
    margin-top: 18px;
    padding: 9px 22px 10px;
    border: 1px solid rgba(188, 24, 36, 0.72);
    border-radius: 0;
    color: #eeeeee;
    background:
        linear-gradient(180deg, rgba(188, 24, 36, 0.2), rgba(188, 24, 36, 0.05)),
        rgba(10, 10, 10, 0.76);
    cursor: pointer;
    font-size: clamp(1rem, 3.4vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        0 0 14px rgba(188, 24, 36, 0.18);
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.bank-copy-button {
    margin-top: 4px;
}

.copy-button:hover,
.copy-button:focus-visible {
    border-color: var(--red);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 20px rgba(188, 24, 36, 0.35);
    outline: none;
}

@media (max-width: 520px) {
    body {
        padding: 0;
    }

    .contact-poster {
        width: 100%;
        min-height: 100vh;
        padding-inline: 22px;
        box-shadow: none;
    }

    .brand-logo {
        width: min(100%, 410px);
    }

    .contact-item {
        width: min(100%, 340px);
    }

    .item-label {
        letter-spacing: 0.09em;
    }

    .copy-button {
        letter-spacing: 0.12em;
    }
}

/* Donation registration flow overrides */
:root {
    --surface: #f5f5f5;
    --surface-soft: #fff3f3;
    --ink: #1d232c;
    --muted: #6f7782;
    --red: #c80d1b;
    --red-dark: #990914;
    --red-soft: rgba(200, 13, 27, 0.12);
    --line: rgba(29, 35, 44, 0.12);
    --shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

body {
    display: block;
    place-items: initial;
    padding: 22px;
    color: var(--ink);
    background:
        radial-gradient(circle at 50% 0, rgba(200, 13, 27, 0.25), transparent 26rem),
        linear-gradient(180deg, #1a1a1a 0, #080808 100%);
    text-transform: none;
}

input,
textarea {
    font: inherit;
}

.donation-page {
    width: min(100%, 760px);
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.compact-page {
    width: min(100%, 680px);
}

.admin-page {
    width: min(100%, 980px);
}

.hero,
.panel,
.footer-note,
.landing-menu,
.contact-strip {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.hero {
    min-height: 270px;
    display: grid;
    place-items: center;
    padding: clamp(34px, 7vw, 64px) clamp(24px, 6vw, 58px);
    text-align: center;
}

.landing-hero {
    min-height: 390px;
    color: #f2f2f2;
    background:
        radial-gradient(circle at 50% 16%, rgba(200, 13, 27, 0.34), transparent 22rem),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px),
        #101010;
}

.hero-red {
    min-height: 260px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
        linear-gradient(180deg, #e21827, #b00b17);
}

.hero-icon {
    width: clamp(105px, 25vw, 190px);
    height: clamp(105px, 25vw, 190px);
    margin: 0 auto 22px;
    color: var(--red);
    filter: drop-shadow(0 0 20px rgba(200, 13, 27, 0.48));
}

.hero-red .hero-icon {
    color: #fff;
}

.eyebrow,
h1,
h2,
h3,
.button,
.user-pill,
.landing-card strong,
.landing-card small,
.section-heading label {
    text-transform: uppercase;
}

.hero-copy {
    max-width: 560px;
    margin-inline: auto;
    color: inherit;
    font-size: clamp(1.2rem, 3.8vw, 1.7rem);
    line-height: 1.28;
    opacity: 0.9;
}

.landing-menu {
    display: grid;
    gap: 12px;
    padding: clamp(18px, 5vw, 28px);
    background: #101010;
}

.landing-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: center;
    gap: 18px;
    min-height: 112px;
    padding: 18px;
    border: 1px solid rgba(255, 36, 51, 0.62);
    border-radius: 10px;
    color: #f2f2f2;
    background:
        linear-gradient(90deg, rgba(200, 13, 27, 0.14), transparent),
        rgba(255, 255, 255, 0.02);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.035),
        0 0 18px rgba(200, 13, 27, 0.2);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.landing-card:hover,
.landing-card:focus-visible {
    transform: translateY(-1px);
    border-color: #ff2636;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 24px rgba(200, 13, 27, 0.36);
    outline: none;
}

.landing-card-icon {
    width: 58px;
    height: 58px;
    color: var(--red);
}

.landing-card strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-family: "Oswald", "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(1.7rem, 5vw, 2.35rem);
    line-height: 1;
    letter-spacing: 0.06em;
}

.landing-card small {
    display: block;
    color: #d7d7d7;
    font-size: clamp(1.03rem, 3.4vw, 1.25rem);
    line-height: 1.22;
    letter-spacing: 0.04em;
}

.contact-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(200, 13, 27, 0.42);
}

.contact-strip div {
    display: grid;
    gap: 4px;
    padding: 18px 20px;
    color: #e7e7e7;
    background: #101010;
}

.contact-strip strong {
    color: #a8a8a8;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-strip a {
    font-size: 1.16rem;
}

.panel {
    padding: clamp(22px, 5vw, 34px);
    background: var(--surface);
}

.material-list-simple .material-card {
    grid-template-columns: 1fr auto;
}

.material-list-simple .material-card > div {
    min-width: 0;
}

.material-list-simple .material-icon {
    display: none;
}

@media (max-width: 680px) {
    body {
        padding: 0;
        background: var(--surface);
    }

    .donation-page,
    .admin-page,
    .compact-page {
        width: 100%;
        gap: 0;
    }

    .hero,
    .panel,
    .footer-note,
    .landing-menu,
    .contact-strip {
        border-radius: 0;
        box-shadow: none;
    }

    .contact-strip,
    .material-list-simple .material-card {
        grid-template-columns: 1fr;
    }
}
