/* Light A Candle — public donation page */

:root {
    --lac-blue: #14615A;
    --lac-darkblue: #10504A;
    --lac-surface: #F3F0E1;
    --lac-surface-raised: #ffffff;
    --lac-brass: #14615A;
    --lac-brass-deep: #10504A;
    --lac-rose: #F7C93F;
    --lac-offwhite: #F3F0E1;
    --lac-ink: #2C2622;
    --lac-muted: #76726F;
    --lac-border: rgba(44, 38, 34, 0.12);
    --lac-card-shadow: 0 20px 50px -28px rgba(20, 97, 90, 0.14);
    --lac-radius: 1.25rem;
    --font-display: 'Anton', Impact, sans-serif;
    --font-body: 'Mulish', system-ui, sans-serif;
    --font-script: 'Caveat', 'Segoe Script', cursive;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.donate-page {
    margin: 0;
    min-height: 100dvh;
    font-family: var(--font-body);
    color: var(--lac-ink);
    background:
        radial-gradient(ellipse 80% 50% at 10% 20%, rgba(247, 201, 63, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 45% at 90% 10%, rgba(20, 97, 90, 0.06), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(247, 201, 63, 0.12), transparent 55%),
        linear-gradient(180deg, #F3F0E1 0%, var(--lac-surface) 45%, #F3F0E1 100%);
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

/* Header */

.donate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, var(--lac-darkblue) 0%, var(--lac-blue) 100%);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 8px 24px -16px rgba(10, 34, 43, 0.6);
}

.donate-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.donate-brand img {
    height: 2.25rem;
    width: auto;
}

.donate-header-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    justify-content: flex-end;
}

.donate-header-link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.donate-header-link:hover {
    color: #fff;
    border-bottom-color: var(--lac-brass);
}

/* Hero */

.donate-hero {
    position: relative;
    text-align: center;
    padding: 3.5rem 1.5rem 2rem;
    max-width: 46rem;
    margin: 0 auto;
}

.donate-hero__glow {
    position: absolute;
    inset: 10% 20% auto;
    height: 10rem;
    background: radial-gradient(ellipse, rgba(247, 201, 63, 0.28), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.donate-eyebrow {
    position: relative;
    z-index: 1;
    margin: 0 0 0.75rem;
    font-family: var(--font-script);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--lac-brass-deep);
    letter-spacing: 0.02em;
}

.donate-title {
    position: relative;
    z-index: 1;
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.donate-title__line {
    display: block;
}

.donate-title__line--accent {
    color: var(--lac-brass-deep);
    font-style: italic;
    font-weight: 500;
}

.donate-lede {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 36rem;
    font-size: 1.08rem;
    line-height: 1.55;
    color: var(--lac-muted);
}

/* Main layout */

.donate-main {
    width: min(44rem, 100% - 2rem);
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.donate-main--success {
    width: min(36rem, 100% - 2rem);
    margin-top: 2rem;
}

/* Alerts */

.donate-alert {
    padding: 0.9rem 1.1rem;
    border-radius: 0.85rem;
    font-size: 0.98rem;
    line-height: 1.4;
}

.donate-alert--error {
    background: #fdecea;
    color: #8a2b2b;
    border: 1px solid rgba(138, 43, 43, 0.15);
}

.donate-alert--notice {
    background: #eef6f3;
    color: #1f4d40;
    border: 1px solid rgba(31, 77, 64, 0.12);
}

.donate-noscript {
    margin: 0;
    padding: 1.25rem 1.5rem;
    background: #fdecea;
    color: #8a2b2b;
    border-bottom: 1px solid rgba(138, 43, 43, 0.18);
    text-align: center;
}

.donate-noscript p {
    margin: 0 auto;
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 1.45;
    font-weight: 600;
}

/* Panels */

.donate-panel {
    background: var(--lac-surface-raised);
    border: 1px solid var(--lac-border);
    border-radius: var(--lac-radius);
    box-shadow: var(--lac-card-shadow);
    padding: 1.6rem 1.5rem 1.75rem;
}

.donate-panel__head {
    margin-bottom: 1.25rem;
}

.donate-panel__script {
    margin: 0 0 0.2rem;
    font-family: var(--font-script);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lac-brass-deep);
}

.donate-panel__title {
    margin: 0 0 0.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.25;
}

.donate-panel__sub {
    margin: 0;
    color: var(--lac-muted);
    font-size: 0.98rem;
    line-height: 1.45;
}

/* Destination cards (general + each fund + missionaries + trips) */

.donate-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .donate-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.donate-card {
    position: relative;
    margin: 0;
    cursor: pointer;
    display: block;
}

.donate-card > input[data-card],
.donate-card__hit > input[data-card] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.donate-card__inner {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
    padding: 1.15rem 1.15rem 1.2rem;
    border-radius: 1rem;
    border: 1.5px solid var(--lac-border);
    background: #faf8f5;
    min-height: 7.5rem;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
    position: relative;
}

.donate-card:hover .donate-card__inner {
    border-color: rgba(247, 201, 63, 0.55);
    transform: translateY(-1px);
}

.donate-card > input[data-card]:checked + .donate-card__inner,
.donate-card__hit > input[data-card]:checked + .donate-card__inner,
.donate-card.is-open .donate-card__inner {
    border-color: var(--lac-brass);
    background: linear-gradient(165deg, #fff 0%, #fdf6f2 100%);
    box-shadow: 0 0 0 3px rgba(247, 201, 63, 0.18), var(--lac-card-shadow);
}

.donate-card__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--lac-brass);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}

.donate-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(20, 97, 90, 0.08);
    color: var(--lac-blue);
    font-size: 0.95rem;
    font-style: normal;
    margin-bottom: 0.15rem;
}

.donate-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--lac-ink);
    padding-right: 4.5rem;
}

.donate-card__desc {
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--lac-muted);
}

.donate-card--expandable {
    cursor: default;
}

.donate-card--expandable .donate-card__hit {
    display: block;
    cursor: pointer;
    margin: 0;
}

.donate-card__fields {
    margin-top: 0.15rem;
    padding: 0 1.15rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.donate-card__fields[hidden] {
    display: none !important;
}

.donate-card.is-open .donate-card__fields {
    border-top: 0;
}

/* Full-width expandable cards on 2-col grid */
@media (min-width: 640px) {
    .donate-card--expandable {
        grid-column: 1 / -1;
    }
}

/* Fields */

.donate-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.donate-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.donate-field--memo {
    margin-top: 1.1rem;
    margin-bottom: 0;
}

.donate-field__label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lac-ink);
}

.donate-field__label em {
    font-weight: 400;
    color: var(--lac-muted);
    font-style: normal;
}

.donate-field__control {
    appearance: none;
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: 0.75rem;
    border: 1.5px solid var(--lac-border);
    background: #fff;
    color: var(--lac-ink);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.3;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.donate-field__control:focus {
    outline: none;
    border-color: var(--lac-brass);
    box-shadow: 0 0 0 3px rgba(247, 201, 63, 0.2);
}

select.donate-field__control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a7280' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.2rem;
}

/* Frequency */

.donate-freq {
    display: inline-flex;
    padding: 0.25rem;
    border-radius: 999px;
    background: #efeae4;
    gap: 0.15rem;
    margin-bottom: 1rem;
}

.donate-freq__option {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.donate-freq__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.donate-freq__option span {
    display: block;
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lac-muted);
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.donate-freq__option input:checked + span {
    background: #fff;
    color: var(--lac-ink);
    box-shadow: 0 2px 8px rgba(20, 97, 90, 0.1);
}

/* Amount chips */

.donate-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    margin-bottom: 0.55rem;
}

.donate-amount {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.donate-amount input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.donate-amount > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.55rem 0.5rem;
    border-radius: 0.8rem;
    border: 1.5px solid var(--lac-border);
    background: #faf8f5;
    font-weight: 600;
    font-size: 1.02rem;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.donate-amount input:checked + span,
.donate-amount input:checked + .donate-amount__custom-inner {
    border-color: var(--lac-brass);
    background: linear-gradient(180deg, #fff 0%, #fdf6f2 100%);
    box-shadow: 0 0 0 3px rgba(247, 201, 63, 0.18);
    color: var(--lac-brass-deep);
}

.donate-amount:hover > span,
.donate-amount:hover .donate-amount__custom-inner {
    border-color: rgba(247, 201, 63, 0.55);
}

.donate-amount--custom {
    display: block;
    margin-top: 0.55rem;
}

.donate-amount__custom-inner {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 3.25rem;
    padding: 0.45rem 0.85rem !important;
    border-radius: 0.8rem;
    border: 1.5px solid var(--lac-border);
    background: #faf8f5;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.donate-amount__custom-label {
    font-weight: 600;
    font-size: 0.98rem;
    white-space: nowrap;
}

.donate-amount__input-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: #fff;
    border: 1px solid var(--lac-border);
    border-radius: 0.55rem;
    padding: 0.25rem 0.55rem;
    min-width: 7rem;
}

.donate-amount__currency {
    color: var(--lac-muted);
    font-weight: 600;
}

.donate-amount__input {
    width: 5.5rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lac-ink);
    padding: 0.2rem 0;
}

.donate-amount__input:focus {
    outline: none;
}

.donate-amount__input::-webkit-outer-spin-button,
.donate-amount__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.donate-amount__input[type='number'] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Summary */

.donate-summary__card {
    background: linear-gradient(160deg, var(--lac-blue) 0%, var(--lac-darkblue) 100%);
    color: #fff;
    border-radius: var(--lac-radius);
    padding: 1.75rem 1.5rem;
    box-shadow: 0 24px 48px -28px rgba(10, 34, 43, 0.55);
    text-align: center;
}

.donate-summary__script {
    margin: 0 0 0.25rem;
    font-family: var(--font-script);
    font-size: 1.35rem;
    color: var(--lac-rose);
}

.donate-summary__title {
    margin: 0 0 0.45rem;
    font-size: 1.45rem;
    font-weight: 600;
}

.donate-summary__detail {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.45;
}

/* Buttons */

.donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: none;
    font-family: inherit;
    font-size: 1.02rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.donate-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.donate-btn--primary {
    background: linear-gradient(180deg, var(--lac-brass) 0%, var(--lac-brass-deep) 100%);
    color: #fff;
    box-shadow: 0 10px 24px -12px rgba(184, 125, 104, 0.7);
}

.donate-btn--primary:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px -12px rgba(184, 125, 104, 0.85);
}

.donate-btn--glow {
    width: 100%;
}

.donate-btn--ghost {
    background: transparent;
    color: var(--lac-ink);
    border: 1.5px solid var(--lac-border);
}

.donate-btn--ghost:hover {
    border-color: var(--lac-brass);
    color: var(--lac-brass-deep);
}

.donate-soft-note {
    margin: 0.9rem 0 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65);
}

.donate-panel .donate-soft-note,
.donate-success .donate-soft-note {
    color: var(--lac-muted);
}

/* Quote */

.donate-quote {
    text-align: center;
    padding: 0.5rem 1rem 0;
}

.donate-quote__text {
    margin: 0 0 0.4rem;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--lac-muted);
}

.donate-quote__cite {
    margin: 0;
    font-family: var(--font-script);
    font-size: 1.15rem;
    color: var(--lac-brass-deep);
}

/* Footer */

.donate-footer {
    text-align: center;
    padding: 1.5rem 1rem 2.5rem;
    color: var(--lac-muted);
    font-size: 0.92rem;
}

.donate-footer a {
    color: var(--lac-brass-deep);
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 125, 104, 0.35);
}

.donate-footer a:hover {
    border-bottom-color: var(--lac-brass-deep);
}

/* Success */

.donate-success {
    text-align: center;
    padding: 1rem 0 2rem;
}

.donate-success__script {
    margin: 0 0 0.35rem;
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--lac-brass-deep);
}

.donate-success__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 600;
    line-height: 1.2;
}

.donate-success__lede {
    margin: 0 auto 1.5rem;
    max-width: 30rem;
    color: var(--lac-muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.donate-success__card {
    background: var(--lac-surface-raised);
    border: 1px solid var(--lac-border);
    border-radius: var(--lac-radius);
    box-shadow: var(--lac-card-shadow);
    padding: 1.5rem;
    text-align: left;
}

.donate-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
    margin: 0 0 1rem;
}

.donate-meta__item {
    margin: 0;
}

.donate-meta__item dt {
    margin: 0 0 0.15rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lac-muted);
    font-weight: 600;
}

.donate-meta__item dd {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 600;
}

.donate-success__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.donate-success__actions .donate-btn {
    flex: 1 1 auto;
    min-width: 8rem;
}

/* Responsive */

@media (max-width: 640px) {
    .donate-type-tabs {
        grid-template-columns: 1fr;
    }

    .donate-form__fields {
        grid-template-columns: 1fr;
    }

    .donate-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .donate-meta {
        grid-template-columns: 1fr;
    }

    .donate-header {
        padding: 0.85rem 1rem;
    }

    .donate-header-link {
        font-size: 0.88rem;
    }

    .donate-hero {
        padding: 2.5rem 1.15rem 1.5rem;
    }

    .donate-panel {
        padding: 1.25rem 1.1rem 1.4rem;
    }
}

/* ============================================================
   my.lightacandle.global/donate — matching layout
   ============================================================ */

.donate-page--mylac {
    font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
    background: #0b1f27;
    color: #f3f1ed;
}

/* Transparent overlay header — sits on the hero photo */
.donate-page--mylac .donate-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: transparent;
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    padding: 0.7rem 1.2rem 0.4rem;
    align-items: center;
}

.donate-page--mylac .donate-brand img {
    height: 3.25rem;
    width: auto;
    max-width: min(210px, 48vw);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.donate-page--mylac .donate-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.donate-page--mylac .donate-header-nav {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Pill buttons on the transparent bar so only controls read as solid */
.donate-page--mylac .donate-header-link {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(10, 34, 43, 0.45);
    color: #fff;
    font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.4);
    transition: background 0.15s ease, border-color 0.15s ease;
}

.donate-page--mylac .donate-header-link:hover {
    background: rgba(10, 34, 43, 0.7);
    border-color: rgba(247, 201, 63, 0.55);
    border-bottom-color: rgba(247, 201, 63, 0.55);
    color: #fff;
}

.donate-page--mylac .donate-header-link.is-active {
    background: #F7C93F;
    border-color: #F7C93F;
    color: #10504A;
}

.donate-page--mylac .donate-header-link.is-active:hover {
    background: #e6b82e;
    border-color: #e6b82e;
    color: #10504A;
}

.donate-page--mylac .donate-cart-btn {
    background: rgba(247, 201, 63, 0.92);
    border-color: transparent;
    color: #10504A;
    box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.4);
}

.donate-page--mylac .donate-cart-btn:hover {
    background: #F7C93F;
}

.donate-page--mylac .donate-cart-btn__count {
    background: #10504A;
    color: #fff;
}

.donate-main--wide {
    width: min(72rem, 100% - 2rem);
    margin: 0 auto 4rem;
}

/* Hero — mid-height photo band; room for logo + headline + overlapping card */
.mylac-hero {
    position: relative;
    isolation: isolate;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible; /* allow card to hang below */
    background: #0a1c24;
    z-index: 4;
}

.mylac-hero__media {
    position: relative;
    overflow: hidden;
    /* Tall enough that headline + card sit mid-page, not under the logo */
    height: clamp(28rem, 52vw, 38rem);
    background: #0a1c24;
}

.mylac-hero__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    pointer-events: none;
    user-select: none;
}

.mylac-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            100deg,
            rgba(8, 22, 28, 0.86) 0%,
            rgba(10, 34, 43, 0.68) 38%,
            rgba(10, 34, 43, 0.4) 68%,
            rgba(10, 34, 43, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 22, 28, 0.35) 0%,
            transparent 45%,
            rgba(8, 22, 28, 0.52) 100%
        ),
        radial-gradient(
            ellipse 55% 70% at 12% 55%,
            rgba(247, 201, 63, 0.16),
            transparent 60%
        );
}

.mylac-hero__inner {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1.15rem, 2.75vw, 2.25rem);
    width: min(72rem, 100% - 2rem);
    margin: 0 auto;
    /* leave photo space above logo clearance — content sits lower in the band */
    padding: 5.5rem 0 0;
    line-height: normal;
    pointer-events: none;
}

.mylac-hero__inner .mylac-hero__copy,
.mylac-hero__inner .mylac-hero__card-wrap {
    pointer-events: auto;
}

.mylac-hero__copy {
    flex: 1 1 16rem;
    max-width: 34rem;
    min-width: 0;
    /* lift copy a bit so it reads mid-band; card hangs lower */
    padding-bottom: 5.5rem;
}

.mylac-hero__eyebrow {
    margin: 0 0 0.55rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F7C93F;
}

.mylac-hero__title {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.mylac-hero__lede {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.55vw, 1.15rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(243, 241, 237, 0.9);
    max-width: 32rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* General Donation — right of headline, lower in the hero, hangs into content */
.mylac-hero__card-wrap {
    flex: 0 0 min(24.5rem, 100%);
    width: min(24.5rem, 100%);
    max-width: 24.5rem;
    position: relative;
    z-index: 6;
    /* less negative = card sits lower / more of it in the photo band */
    margin-bottom: -3.75rem;
    filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.4));
}

.mylac-card--hero-overlap {
    width: 100%;
    border-color: rgba(247, 201, 63, 0.35);
    box-shadow:
        0 28px 60px -20px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.mylac-card--hero-overlap .mylac-card__face--plain {
    min-height: 6.5rem;
    padding: 1.1rem 1.15rem 0.95rem;
}

.mylac-card--hero-overlap .mylac-card__title {
    font-size: 1.4rem;
}

.mylac-card--hero-overlap .mylac-card__desc {
    -webkit-line-clamp: 2;
}

.mylac-card--hero-overlap .mylac-card__compose {
    padding: 0.9rem 1rem 1.05rem;
}

/* Room under the hanging general card so grid doesn't collide */
.donate-main--after-overlap {
    position: relative;
    z-index: 1;
    padding-top: 4.75rem;
}

/* Card grid */
.mylac-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-bottom: 1.5rem;
}

.mylac-grid--compose {
    margin-top: 0.5rem;
}

/* On-card compose (freq / amount / memo / add) */
.mylac-card--compose {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1.15rem;
    overflow: hidden;
    border: 1px solid rgba(247, 201, 63, 0.18);
    box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.45);
    color: #10504A;
}

.mylac-card--compose .mylac-card__face {
    min-height: 9.5rem;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.mylac-card--compose .mylac-card__face--plain {
    background: linear-gradient(145deg, #14615A 0%, #10504A 55%, #10504A 100%);
    min-height: 8.5rem;
}

.mylac-card--compose.is-active {
    box-shadow:
        0 0 0 2px rgba(247, 201, 63, 0.55),
        0 18px 40px -28px rgba(0, 0, 0, 0.45);
}

.mylac-card__compose {
    padding: 1rem 1.05rem 1.15rem;
    background: #faf8f5;
    border-top: 1px solid rgba(20, 97, 90, 0.06);
    font-family: Inter, system-ui, sans-serif;
}

.mylac-compose__field {
    margin-bottom: 0.75rem;
}

.mylac-compose__label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3d5560;
    letter-spacing: 0.02em;
}

.mylac-compose__label em {
    font-style: normal;
    font-weight: 400;
    color: #7a9099;
}

.mylac-compose__control {
    width: 100%;
    box-sizing: border-box;
    padding: 0.6rem 0.75rem;
    border: 1.5px solid rgba(20, 97, 90, 0.14);
    border-radius: 0.65rem;
    background: #fff;
    color: #10504A;
    font: inherit;
    font-size: 0.92rem;
    outline: none;
}

.mylac-compose__control:focus {
    border-color: #F7C93F;
    box-shadow: 0 0 0 3px rgba(247, 201, 63, 0.18);
}

.mylac-compose__freq {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    margin-bottom: 0.75rem;
    padding: 0.25rem;
    background: #efeae4;
    border-radius: 0.75rem;
}

.mylac-compose__freq-btn {
    border: 0;
    background: transparent;
    color: #76726F;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.55rem 0.25rem;
    border-radius: 0.55rem;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}

.mylac-compose__freq-btn.is-on {
    background: #fff;
    color: #10504A;
    box-shadow: 0 2px 8px rgba(20, 97, 90, 0.1);
}

.mylac-compose__amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.mylac-compose__amt {
    border: 1.5px solid rgba(20, 97, 90, 0.12);
    background: #fff;
    color: #10504A;
    border-radius: 0.6rem;
    padding: 0.55rem 0.2rem;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.mylac-compose__amt:hover {
    border-color: rgba(247, 201, 63, 0.55);
}

.mylac-compose__amt.is-on {
    border-color: #F7C93F;
    background: #10504A;
    color: #fff;
}

.mylac-compose__custom {
    margin-bottom: 0.75rem;
}

.mylac-compose__money {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #fff;
    border: 1.5px solid rgba(20, 97, 90, 0.14);
    border-radius: 0.65rem;
    padding: 0.5rem 0.7rem;
}

.mylac-compose__money:focus-within {
    border-color: #F7C93F;
    box-shadow: 0 0 0 3px rgba(247, 201, 63, 0.18);
}

.mylac-compose__currency {
    color: #D2AB36;
    font-weight: 700;
}

.mylac-compose__money-input {
    border: 0;
    background: transparent;
    color: #10504A;
    font: inherit;
    font-size: 1.05rem;
    width: 100%;
    outline: none;
}

.mylac-compose__error {
    margin: 0 0 0.55rem;
    color: #b42318;
    font-size: 0.85rem;
}

.mylac-compose__actions {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mylac-compose__add,
.mylac-compose__add-view {
    width: 100%;
    border-radius: 999px !important;
}

.donate-page--mylac .mylac-card--compose .donate-btn--ghost {
    background: transparent !important;
    border: 1.5px solid rgba(20, 97, 90, 0.18) !important;
    color: #10504A !important;
    box-shadow: none !important;
}

.donate-cart__memo {
    margin: 0.25rem 0 0 !important;
    font-size: 0.8rem !important;
    font-style: italic;
    color: #7a9099 !important;
}

@media (max-width: 480px) {
    .mylac-compose__amounts {
        grid-template-columns: repeat(3, 1fr);
    }

    .mylac-compose__freq-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.15rem;
    }
}

@media (min-width: 640px) {
    .mylac-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .mylac-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.mylac-card {
    position: relative;
    margin: 0;
    display: block;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
}

.mylac-card > input[data-card],
.mylac-card__hit > input[data-card] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mylac-card__face {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.45rem;
    min-height: 14rem;
    padding: 1.25rem 1.2rem 1.15rem;
    background: linear-gradient(160deg, #143844 0%, #0f2a33 100%);
    border: 1px solid rgba(247, 201, 63, 0.14);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.mylac-card--photo .mylac-card__face {
    min-height: 16rem;
}

.mylac-card__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

.mylac-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 34, 43, 0.15) 0%, rgba(10, 34, 43, 0.55) 45%, rgba(10, 34, 43, 0.92) 100%);
}

.mylac-card__kicker,
.mylac-card__title,
.mylac-card__desc,
.mylac-card__cta {
    position: relative;
    z-index: 1;
}

.mylac-card__kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F7C93F;
}

.mylac-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.mylac-card__desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(243, 241, 237, 0.82);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mylac-card__cta {
    margin-top: 0.35rem;
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #10504A;
    background: #F7C93F;
    padding: 0.4rem 0.85rem;
    border-radius: 0;
}

.mylac-card:hover .mylac-card__face {
    border-color: rgba(247, 201, 63, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.55);
}

.mylac-card:hover .mylac-card__photo {
    transform: scale(1.06);
}

.mylac-card > input[data-card]:checked + .mylac-card__face,
.mylac-card__hit > input[data-card]:checked + .mylac-card__face,
.mylac-card.is-open .mylac-card__face {
    border-color: #F7C93F;
    box-shadow: 0 0 0 2px rgba(247, 201, 63, 0.35), 0 18px 40px -20px rgba(0, 0, 0, 0.5);
}

.mylac-card--hero .mylac-card__face {
    min-height: 12.5rem;
    background: linear-gradient(145deg, #14615A 0%, #10504A 55%, #10504A 100%);
    border-color: rgba(247, 201, 63, 0.28);
}

.mylac-card--expandable {
    cursor: default;
}

.mylac-card--expandable .mylac-card__hit {
    display: block;
    cursor: pointer;
    margin: 0;
}

.mylac-card__panel {
    padding: 0.85rem 1rem 1rem;
    background: rgba(15, 42, 51, 0.95);
    border: 1px solid rgba(247, 201, 63, 0.2);
    border-top: 0;
    border-radius: 0 0 1rem 1rem;
    margin-top: -0.35rem;
}

.mylac-card__panel[hidden] {
    display: none !important;
}

.mylac-card.is-open {
    grid-column: 1 / -1;
}

.donate-page--mylac .donate-field__label {
    color: rgba(243, 241, 237, 0.75);
}

.donate-page--mylac .donate-field__control {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(247, 201, 63, 0.22);
    color: #f3f1ed;
}

.donate-page--mylac .donate-field__control option {
    color: #10504A;
    background: #fff;
}

/* Checkout strip */
.mylac-checkout {
    margin-top: 0.5rem;
}

.mylac-checkout__card {
    background: linear-gradient(165deg, #143844 0%, #0f2a33 100%);
    border: 1px solid rgba(247, 201, 63, 0.22);
    border-radius: 1.15rem;
    padding: 1.6rem 1.4rem 1.5rem;
    box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.55);
    max-width: 36rem;
    margin: 0 auto;
}

.mylac-checkout__kicker {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F7C93F;
}

.mylac-checkout__title {
    margin: 0 0 0.35rem;
    font-family: 'Vollkorn', Georgia, serif;
    font-size: 1.55rem;
    color: #fff;
}

.mylac-checkout__desc {
    margin: 0 0 1.15rem;
    color: rgba(243, 241, 237, 0.75);
    font-size: 0.95rem;
    line-height: 1.45;
}

.donate-page--mylac .donate-freq {
    background: rgba(0, 0, 0, 0.25);
}

.donate-page--mylac .donate-freq__option span {
    color: rgba(243, 241, 237, 0.85);
}

.donate-page--mylac .donate-freq__option input:checked + span {
    background: #F7C93F;
    color: #10504A;
}

.donate-page--mylac .donate-amount span {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(247, 201, 63, 0.2);
    color: #f3f1ed;
}

.donate-page--mylac .donate-amount input:checked + span {
    border-color: #F7C93F;
    background: rgba(247, 201, 63, 0.18);
    color: #fff;
    box-shadow: 0 0 0 2px rgba(247, 201, 63, 0.25);
}

.donate-page--mylac .donate-amount--custom .donate-amount__input {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border-color: rgba(247, 201, 63, 0.25);
}

.donate-page--mylac .donate-soft-note {
    color: rgba(243, 241, 237, 0.55);
}

.donate-page--mylac .donate-success .donate-soft-note,
.donate-page--mylac .donate-success__card .donate-soft-note {
    color: #F3F0E1;
    font-family: var(--font-body);
}

.donate-page--mylac .donate-footer {
    background: #071418;
    color: rgba(243, 241, 237, 0.55);
    border-top: 1px solid rgba(247, 201, 63, 0.1);
}

.donate-page--mylac .donate-footer a {
    color: #F7C93F;
}

.mylac-checkout__btn {
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 999px !important;
}

@media (max-width: 960px) {
    .donate-page--mylac .donate-header {
        padding: 0.55rem 0.9rem 0.3rem;
    }

    .donate-page--mylac .donate-brand img {
        height: 2.85rem;
    }

    .mylac-hero__media {
        height: clamp(30rem, 62vw, 36rem);
    }

    .mylac-hero__inner {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
        gap: 1rem;
        padding: 4rem 0 0;
    }

    .mylac-hero__copy {
        max-width: none;
        padding-bottom: 0.5rem;
    }

    .mylac-hero__card-wrap {
        width: 100%;
        max-width: 28rem;
        flex-basis: auto;
        margin-bottom: -3rem;
        align-self: center;
    }

    .donate-main--after-overlap {
        padding-top: 4rem;
    }
}

@media (max-width: 720px) {
    .donate-page--mylac .donate-header-nav {
        display: none;
    }

    .donate-page--mylac .donate-brand img {
        height: 2.55rem;
    }

    .mylac-hero__media {
        height: 26rem;
    }

    .mylac-hero__shade {
        background:
            linear-gradient(
                180deg,
                rgba(8, 22, 28, 0.38) 0%,
                rgba(10, 34, 43, 0.55) 38%,
                rgba(8, 22, 28, 0.86) 100%
            ),
            linear-gradient(
                90deg,
                rgba(8, 22, 28, 0.35) 0%,
                transparent 100%
            );
    }

    .mylac-hero__title {
        font-size: clamp(1.95rem, 7.5vw, 2.45rem);
    }

    .mylac-hero__lede {
        font-size: 0.98rem;
    }

    .mylac-hero__copy {
        padding-bottom: 0.35rem;
    }

    .mylac-hero__card-wrap {
        width: 100%;
        max-width: none;
        margin-bottom: -2.5rem;
    }

    .donate-main--after-overlap {
        padding-top: 3.5rem;
    }
}

/* ============================================================
   Cart + add-to-cart: right slide-out drawers
   ============================================================ */

.donate-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.donate-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(247, 201, 63, 0.35);
    background: rgba(247, 201, 63, 0.15);
    color: #fff;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
}

.donate-cart-btn__count {
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: #F7C93F;
    color: #10504A;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Lock page scroll while a drawer is open */
body.donate-page--drawer-open {
    overflow: hidden;
}

/* Dimmed backdrop */
.donate-scrim {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(8, 22, 28, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.donate-scrim.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/*
 * Right edge panel. Parked off-canvas until .is-open.
 * Close button is absolutely pinned so nothing can cover it.
 */
.donate-drawer {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(24.5rem, 100vw);
    max-width: 100vw;
    margin: 0;
    padding: 0;
    /* closed drawers stay below open ones so they never steal clicks */
    z-index: 205;
    display: flex;
    flex-direction: column;
    background: #faf8f5;
    color: #10504A;
    border: 0;
    border-left: 1px solid rgba(20, 97, 90, 0.08);
    border-radius: 0;
    box-shadow: -18px 0 48px -16px rgba(10, 34, 43, 0.35);
    transform: translate3d(105%, 0, 0);
    visibility: hidden;
    pointer-events: none !important;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.28s;
    will-change: transform;
}

.donate-drawer.is-open {
    z-index: 220;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto !important;
}

/* Absolute close — large hit target, never covered by title text */
.donate-drawer__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 20;
    box-sizing: content-box;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(20, 97, 90, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #10504A;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px -4px rgba(20, 97, 90, 0.25);
    transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.donate-drawer__close:hover,
.donate-drawer__close:focus-visible {
    background: #10504A;
    border-color: #10504A;
    color: #fff;
    outline: none;
}

.donate-drawer__close:active {
    transform: scale(0.96);
}

.donate-drawer__close svg {
    display: block;
    pointer-events: none;
}

.donate-drawer__head {
    position: relative;
    flex-shrink: 0;
    padding: 1.35rem 4rem 1.1rem 1.35rem;
    border-bottom: 1px solid rgba(20, 97, 90, 0.08);
    background: #fff;
}

.donate-drawer__kicker {
    margin: 0 0 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D2AB36;
    font-family: Inter, system-ui, sans-serif;
}

.donate-drawer__title {
    margin: 0;
    font-family: 'Vollkorn', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #10504A;
    line-height: 1.25;
    padding-right: 0.25rem;
    word-wrap: break-word;
}

.donate-drawer__desc {
    margin: 0.55rem 0 0;
    color: #76726F;
    font-size: 0.92rem;
    line-height: 1.45;
    font-family: Inter, system-ui, sans-serif;
    font-weight: 400;
}

.donate-drawer__body {
    flex: 1 1 auto;
    overflow: auto;
    overscroll-behavior: contain;
    padding: 1.15rem 1.35rem 1.35rem;
    -webkit-overflow-scrolling: touch;
    font-family: Inter, system-ui, sans-serif;
}

.donate-drawer__foot {
    flex-shrink: 0;
    padding: 1rem 1.35rem 1.25rem;
    border-top: 1px solid rgba(20, 97, 90, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    background: #fff;
}

.donate-drawer__foot .donate-btn {
    width: 100%;
    border-radius: 999px !important;
}

/* Light drawer form fields (beat .donate-page--mylac dark-field rules) */
.donate-page--mylac .donate-drawer .donate-field {
    margin-bottom: 0.9rem;
}

.donate-page--mylac .donate-drawer .donate-field__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3d5560;
    font-family: Inter, system-ui, sans-serif;
}

.donate-page--mylac .donate-drawer .donate-field__label em {
    font-style: normal;
    font-weight: 400;
    color: #7a9099;
}

.donate-page--mylac .donate-drawer .donate-field__control {
    width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0.85rem;
    border: 1.5px solid rgba(20, 97, 90, 0.14);
    border-radius: 0.7rem;
    background: #fff;
    color: #10504A;
    font: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.donate-page--mylac .donate-drawer .donate-field__control:focus {
    border-color: #F7C93F;
    box-shadow: 0 0 0 3px rgba(247, 201, 63, 0.2);
}

.donate-page--mylac .donate-drawer .donate-soft-note {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    color: #7a9099;
    line-height: 1.4;
}

/* Frequency: pill segmented control on light surface */
.donate-page--mylac .donate-drawer .donate-freq {
    display: flex;
    width: 100%;
    padding: 0.25rem;
    border-radius: 0.85rem;
    background: #efeae4;
    gap: 0.2rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.donate-page--mylac .donate-drawer .donate-freq__option {
    position: relative;
    flex: 1;
    margin: 0;
    cursor: pointer;
}

.donate-page--mylac .donate-drawer .donate-freq__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.donate-page--mylac .donate-drawer .donate-freq__option span {
    display: block;
    text-align: center;
    padding: 0.65rem 0.5rem;
    border-radius: 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #76726F;
    background: transparent;
    box-shadow: none;
    transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}

.donate-page--mylac .donate-drawer .donate-freq__option input:checked + span {
    background: #fff;
    color: #10504A;
    box-shadow: 0 2px 8px rgba(20, 97, 90, 0.1);
}

.donate-page--mylac .donate-drawer .donate-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.donate-page--mylac .donate-drawer .donate-amount-chip {
    border: 1.5px solid rgba(20, 97, 90, 0.12);
    background: #fff;
    color: #10504A;
    border-radius: 0.7rem;
    padding: 0.7rem 0.4rem;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.donate-page--mylac .donate-drawer .donate-amount-chip:hover {
    border-color: rgba(247, 201, 63, 0.55);
}

.donate-page--mylac .donate-drawer .donate-amount-chip.is-on {
    border-color: #F7C93F;
    background: #10504A;
    color: #fff;
}

.donate-page--mylac .donate-drawer .donate-amount__input-wrap--dark,
.donate-page--mylac .donate-drawer .donate-amount__input-wrap {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff;
    border: 1.5px solid rgba(20, 97, 90, 0.14);
    border-radius: 0.7rem;
    padding: 0.55rem 0.75rem;
}

.donate-page--mylac .donate-drawer .donate-amount__input-wrap--dark:focus-within,
.donate-page--mylac .donate-drawer .donate-amount__input-wrap:focus-within {
    border-color: #F7C93F;
    box-shadow: 0 0 0 3px rgba(247, 201, 63, 0.2);
}

.donate-page--mylac .donate-drawer .donate-amount__currency {
    color: #D2AB36;
    font-weight: 700;
}

.donate-page--mylac .donate-drawer .donate-amount__input {
    border: 0;
    background: transparent;
    color: #10504A;
    font: inherit;
    font-size: 1.1rem;
    width: 100%;
    outline: none;
}

.donate-page--mylac .donate-drawer .donate-composer-error {
    color: #b42318;
    font-size: 0.88rem;
    margin: 0.35rem 0 0;
}

.donate-page--mylac .donate-drawer .donate-btn--ghost {
    background: transparent !important;
    border: 1.5px solid rgba(20, 97, 90, 0.18) !important;
    color: #10504A !important;
    box-shadow: none !important;
}

.donate-page--mylac .donate-drawer .donate-btn--ghost:hover {
    border-color: #F7C93F !important;
    background: rgba(247, 201, 63, 0.1) !important;
}

.donate-cart__empty {
    color: #76726F;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0.5rem 0 0;
}

.donate-cart__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.donate-cart__item {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid rgba(20, 97, 90, 0.1);
}

.donate-cart__item-main {
    min-width: 0;
    flex: 1;
}

.donate-cart__item strong {
    display: block;
    color: #10504A;
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
}

.donate-cart__item p {
    margin: 0;
    color: #76726F;
    font-size: 0.85rem;
    line-height: 1.35;
}

.donate-cart__meta {
    margin-top: 0.35rem !important;
    color: #D2AB36 !important;
    font-weight: 600;
}

.donate-cart__remove {
    border: 0;
    background: transparent;
    color: #7a9099;
    font-size: 0.78rem;
    cursor: pointer;
    text-decoration: underline;
    flex-shrink: 0;
    padding: 0.15rem 0;
}

.donate-cart__remove:hover {
    color: #b42318;
}

.donate-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.85rem;
    color: #76726F;
    font-family: Inter, system-ui, sans-serif;
}

.donate-cart__total strong {
    font-size: 1.35rem;
    color: #10504A;
    font-family: 'Vollkorn', Georgia, serif;
}

.donate-cart__checkout {
    width: 100%;
    border-radius: 999px !important;
}

.donate-btn--ghost {
    background: transparent !important;
    border: 1.5px solid rgba(247, 201, 63, 0.4) !important;
    color: #F7C93F !important;
    box-shadow: none !important;
}

.donate-amount-chip {
    border: 1.5px solid rgba(247, 201, 63, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #f3f1ed;
    border-radius: 0.75rem;
    padding: 0.7rem 0.85rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease;
}

.donate-amount-chip.is-on {
    border-color: #F7C93F;
    background: rgba(247, 201, 63, 0.2);
    color: #fff;
}

.donate-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.donate-custom-row {
    margin-bottom: 0.85rem;
}

.donate-amount__input-wrap--dark {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1.5px solid rgba(247, 201, 63, 0.25);
    border-radius: 0.75rem;
    padding: 0.55rem 0.75rem;
}

.donate-amount__input-wrap--dark .donate-amount__currency {
    color: #F7C93F;
    font-weight: 700;
}

.donate-amount__input-wrap--dark .donate-amount__input {
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 1.1rem;
    width: 100%;
    outline: none;
}

.donate-composer-error {
    color: #f5b5b5;
    font-size: 0.9rem;
    margin: 0.35rem 0 0;
}

.mylac-card--featured .mylac-card__face {
    background: linear-gradient(145deg, #14615A 0%, #10504A 55%, #10504A 100%);
    border-color: rgba(247, 201, 63, 0.35);
}

.mylac-card.is-active .mylac-card__face {
    border-color: #F7C93F;
    box-shadow: 0 0 0 2px rgba(247, 201, 63, 0.4);
}

.mylac-card__hit {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font: inherit;
}

@media (max-width: 640px) {
    .donate-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
    .donate-header-nav {
        display: none;
    }
}

/* Grid cards: teal fill (general donation in the hero is excluded) */
.mylac-grid .mylac-card--compose {
    background: var(--lac-blue);
    color: var(--lac-offwhite);
    border-color: rgba(247, 201, 63, 0.28);
}

.mylac-grid .mylac-card--compose .mylac-card__face--plain {
    background: var(--lac-blue);
}

.mylac-grid .mylac-card__compose {
    background: var(--lac-blue);
    border-top-color: rgba(255, 255, 255, 0.12);
    color: var(--lac-offwhite);
    font-family: var(--font-body);
}

.mylac-grid .mylac-compose__label,
.mylac-grid .mylac-compose__label em {
    color: rgba(243, 240, 225, 0.82);
}

.mylac-grid .mylac-compose__freq {
    background: rgba(16, 80, 74, 0.55);
}

.mylac-grid .mylac-compose__freq-btn {
    color: rgba(243, 240, 225, 0.75);
}

.mylac-grid .mylac-compose__freq-btn.is-on {
    background: #F7C93F;
    color: #10504A;
    box-shadow: none;
}

.mylac-grid .mylac-compose__amt {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 201, 63, 0.28);
    color: #F3F0E1;
}

.mylac-grid .mylac-compose__amt.is-on {
    background: #F7C93F;
    border-color: #F7C93F;
    color: #10504A;
}

.mylac-grid .mylac-compose__control,
.mylac-grid .mylac-compose__money {
    background: #fff;
    color: #10504A;
}

.mylac-grid .donate-page--mylac .mylac-card--compose .donate-btn--ghost,
.mylac-grid .mylac-card--compose .donate-btn--ghost {
    background: #F7C93F !important;
    border: 0 !important;
    color: #10504A !important;
}

/* Gold square buttons */
.donate-page--mylac .donate-btn,
.donate-page--mylac .mylac-compose__add,
.donate-page--mylac .mylac-compose__add-view,
.donate-page--mylac .donate-drawer__foot .donate-btn,
.donate-page--mylac .donate-cart__checkout {
    border-radius: 0 !important;
    font-family: var(--font-body);
}

.donate-page--mylac .donate-btn--primary,
.donate-page--mylac .donate-btn--glow,
.donate-page--mylac .mylac-compose__add {
    background: #F7C93F !important;
    color: #10504A !important;
    box-shadow: none !important;
}

.donate-page--mylac .donate-btn--primary:not(:disabled):hover,
.donate-page--mylac .mylac-compose__add:hover {
    background: #e6b82e !important;
    transform: none;
}

.donate-page--mylac .donate-btn--ghost,
.donate-page--mylac .donate-drawer .donate-btn--ghost,
.donate-page--mylac .donate-drawer .donate-btn--ghost:hover,
.donate-page--mylac .mylac-card--compose .donate-btn--ghost {
    background: #F7C93F !important;
    border: 0 !important;
    color: #10504A !important;
}

.donate-page--mylac .mylac-compose__freq-btn,
.donate-page--mylac .mylac-compose__amt {
    border-radius: 0;
    font-family: var(--font-body);
}

.donate-page--mylac .mylac-hero__title,
.donate-page--mylac .mylac-card__title,
.donate-page--mylac .donate-cart__total strong,
.donate-page--mylac .donate-success__title {
    font-family: var(--font-display);
    font-weight: 400;
}

.donate-page--mylac .donate-success__title {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--lac-darkblue);
}

.donate-page--mylac .donate-success__lede,
.donate-page--mylac .donate-success__card {
    font-family: var(--font-body);
}

.donate-page--mylac .donate-success__lede {
    color: var(--lac-ink);
    max-width: 36rem;
}

.donate-page--mylac .donate-success__card {
    background: var(--lac-blue);
    color: var(--lac-offwhite);
    border: 1px solid rgba(247, 201, 63, 0.28);
    border-radius: 0;
}

.donate-page--mylac .donate-success .donate-meta__item dt {
    color: #F7C93F;
}

.donate-page--mylac .donate-success .donate-meta__item dd {
    color: #fff;
    font-weight: 600;
}
