/* ═══════════════════════════════════════════════════════
   Annai Teresa Old Age Home — annai-teresa.css
   Only custom classes/IDs. No tag-level styles.
   Uses project's existing :root variables.
   Requires: Bootstrap 5.3.2
   Fonts: Playfair Display + DM Sans (add to your <head>)
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet"/>
════════════════════════════════════════════════════════ */


/* ── HERO ────────────────────────────────────────────── */
.at-hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 520px;
}

@media (min-width: 992px) {
    .at-hero {
        grid-template-columns: 55% 45%;
        min-height: 580px;
    }
}

.at-hero__img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

@media (min-width: 992px) {
    .at-hero__img-wrap {
        min-height: 580px;
    }
}

.at-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 8s ease;
}

.at-hero__img-wrap:hover .at-hero__img {
    transform: scale(1.04);
}

.at-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(24, 24, 24, 0.08), rgba(24, 24, 24, 0.5));
}

@media (min-width: 992px) {
    .at-hero__overlay {
        background: linear-gradient(to right, rgba(24, 24, 24, 0.38) 0%, rgba(24, 24, 24, 0.05) 70%, transparent 100%);
    }
}

.at-hero__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow1);
}

.at-hero__badge-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.at-hero__badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--main);
    line-height: 1;
    display: block;
}

.at-hero__badge-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--secondary-2);
    font-weight: 500;
    margin-top: 2px;
    display: block;
}

.at-hero__content {
    background: var(--main);
    padding: 36px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .at-hero__content {
        padding: 64px 56px;
    }
}

.at-hero__content::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(18, 159, 255, 0.06);
    pointer-events: none;
}

.at-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: normal;
}

.at-hero__eyebrow-line {
    width: 24px;
    height: 2px;
    background: var(--primary);
}

.at-hero__h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.at-hero__h1 em {
    font-style: italic;
    color: var(--primary);
}

.at-hero__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 300;
    margin-bottom: 32px;
    max-width: 420px;
}

.at-hero__stats {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}

.at-hero__stat {
    flex: 1;
    padding: 14px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.at-hero__stat:last-child {
    border-right: none;
}

.at-hero__stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: block;
}

.at-hero__stat-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.at-hero__btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(18, 159, 255, 0.35);
}

.at-hero__btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.at-hero__btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 13px 22px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.at-hero__btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

/* ── SECTION COMMONS ─────────────────────────────────── */
.at-sec-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.at-sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 700;
    color: var(--main);
    line-height: 1.15;
}

.at-sec-title em {
    font-style: italic;
    color: var(--primary);
}

.at-sec-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.8;
    font-weight: 400;
}

/* ── ABOUT ───────────────────────────────────────────── */
.at-about {
    background: var(--white);
}

.at-about__text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: var(--secondary);
    margin-bottom: 12px;
}

.at-about__quote {
    border-left: 3px solid var(--primary);
    background: var(--surface);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin-top: 24px;
}

.at-about__quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--main);
    line-height: 1.7;
    margin: 0 0 6px 0;
}

.at-about__quote-cite {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--secondary-2);
    font-weight: 600;
}

.at-about__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 340px;
}

@media (max-width: 767px) {
    .at-about__mosaic {
        height: 220px;
    }
}

.at-about__mosaic-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.at-about__mosaic-item:first-child {
    grid-row: span 2;
}

.at-about__mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s;
}

.at-about__mosaic-item:hover .at-about__mosaic-img {
    transform: scale(1.06);
}

.at-about__mosaic-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--white);
    border-radius: 6px;
    padding: 4px 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
}

/* ── FEATURES ────────────────────────────────────────── */
.at-features {
    background: var(--surface);
}

.at-feat-card {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--line);
    padding: 28px 24px;
    height: 100%;
    transition: all 0.22s;
    position: relative;
    overflow: hidden;
}

.at-feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.at-feat-card:hover {
    box-shadow: var(--shadow1);
    transform: translateY(-4px);
}

.at-feat-card:hover::before {
    transform: scaleX(1);
}

.at-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: background 0.2s;
}

.at-feat-card:hover .at-feat-icon {
    background: rgba(18, 159, 255, 0.1);
}

.at-feat-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 8px;
}

.at-feat-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--secondary);
    line-height: 1.65;
}

/* ── MEAL SECTION ────────────────────────────────────── */
.at-meals {
    background: var(--white);
}

/* Full day packages */
.at-pkg-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-2);
    margin-bottom: 10px;
    display: block;
}

.at-pkg {
    border: 2px solid var(--line);
    border-radius: 16px;
    cursor: pointer;
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.22s;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.at-pkg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.2s;
}

.at-pkg--veg::after {
    background: linear-gradient(90deg, var(--success), #5ecb3e);
}

.at-pkg--nveg::after {
    background: linear-gradient(90deg, var(--critical), #f56565);
}

.at-pkg.is-on {
    box-shadow: var(--shadow1);
}

.at-pkg.is-on::after {
    opacity: 1;
}

.at-pkg--veg.is-on {
    border-color: var(--success);
    background: rgba(61, 171, 37, 0.04);
}

.at-pkg--nveg.is-on {
    border-color: var(--critical);
    background: rgba(240, 62, 62, 0.04);
}

.at-pkg__emoji {
    font-size: 26px;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.at-pkg__check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}

.at-pkg--veg.is-on .at-pkg__check {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.at-pkg--nveg.is-on .at-pkg__check {
    background: var(--critical);
    border-color: var(--critical);
    color: #fff;
}

.at-pkg__title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--main);
    line-height: 1.2;
    margin-bottom: 15px;
}

.at-pkg__meals {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--secondary-2);
    margin-bottom: 12px;
    line-height: normal;
}

.at-pkg__price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--main);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.at-pkg--veg.is-on .at-pkg__price {
    color: var(--success);
}

.at-pkg--nveg.is-on .at-pkg__price {
    color: var(--critical);
}

.at-pkg__badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(240, 167, 80, 0.12);
    color: var(--yellow);
    padding: 3px 8px;
    border-radius: 4px;
    line-height: normal;
}

/* Or divider */
.at-or {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
}

.at-or::before,
.at-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

.at-or__text {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-2);
    white-space: nowrap;
}

/* Individual meal cards */
.at-mc {
    border: 2px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    cursor: pointer;
    transition: all 0.22s;
    -webkit-tap-highlight-color: transparent;
}

.at-mc:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow1);
}

.at-mc.is-on {
    border-color: var(--primary);
    background: rgba(18, 159, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(18, 159, 255, 0.12);
}

.at-mc__img {
    object-fit: cover;
    width: 100%;
    display: block;
}

@media (max-width: 575px) {
    .at-mc__img {
        height: 150px;
    }
}

@media (min-width: 576px) {
    .at-mc__img {
        width: 120px;
        height: 100%;
        min-height: 130px;
        flex-shrink: 0;
    }
}

.at-mc__body {
    padding: 16px;
    flex: 1;
}

.at-mc__name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 8px;
}

.at-mc__veg-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--success);
    background: rgba(61, 171, 37, 0.1);
    padding: 3px 9px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.at-mc__nveg-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--critical);
    background: rgba(240, 62, 62, 0.1);
    padding: 3px 9px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.at-mc__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.at-mc__dot--veg {
    background: var(--success);
}

.at-mc__dot--nveg {
    background: var(--critical);
}

.at-mc__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.at-mc__chip {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    background: var(--surface);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* Lunch toggle */
.at-lunch-toggle {
    display: inline-flex;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.at-lunch-toggle__sep {
    width: 1px;
    background: var(--line);
    flex-shrink: 0;
}

.at-lunch-btn {
    padding: 5px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    background: var(--white);
    color: var(--secondary-2);
    transition: all 0.18s;
    border-radius: 0;
}

.at-lunch-btn--veg.is-active {
    background: rgba(61, 171, 37, 0.1);
    color: var(--success);
    border-radius: 0;
}

.at-lunch-btn--nveg.is-active {
    background: rgba(240, 62, 62, 0.1);
    color: var(--critical);
    border-radius: 0;
}

/* Meal card right panel */
.at-mc__right {
    background: var(--surface);
    border-top: 1.5px solid var(--line);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: background 0.2s;
}

@media (min-width: 576px) {
    .at-mc__right {
        border-top: none;
        border-left: 1.5px solid var(--line);
        min-width: 120px;
        flex-direction: column;
        justify-content: center;
        padding: 16px;
    }
}

.at-mc.is-on .at-mc__right {
    background: rgba(18, 159, 255, 0.07);
}

.at-mc__price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.at-mc__for {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: var(--secondary-2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
    margin-top: 3px;
}

.at-mc__check {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--line);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: transparent;
    transition: all 0.22s;
    flex-shrink: 0;
}

.at-mc.is-on .at-mc__check {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ── DONATION FORM CARD ───────────────────────────────── */
.at-form-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow2);
    border: 1.5px solid var(--line);
    background: var(--white);
}

@media (min-width: 992px) {
    .at-form-card {
        position: sticky;
        top: 24px;
    }
}

.at-form-card__head {
    background: var(--main);
    padding: 22px 24px;
}

.at-form-card__head-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.at-form-card__head-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.at-form-card__head-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Donors strip */
.at-donors {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.at-donors::-webkit-scrollbar {
    display: none;
}

.at-donor {
    flex-shrink: 0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.at-donor__av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.at-donor__name {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    font-weight: 500;
}

.at-donor__amt {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--yellow);
    font-weight: 700;
    white-space: nowrap;
}

/* Form body */
.at-form-body {
    padding: 20px 22px 24px;
}

.at-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 16px;
}

/* BS5 scoped overrides */
.at-form-card .form-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0;
}

.at-form-card .form-control,
.at-form-card .form-select {}

.at-form-card .form-control:focus,
.at-form-card .form-select:focus {
    /* border-color: var(--primary); */
    box-shadow: 0 0 0 0;
    background: var(--white);
    color: var(--main);
    outline: none;
}

.at-form-card .form-control::placeholder {
    color: var(--secondary-2);
    opacity: 0.8;
}

.at-form-card .invalid-feedback {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
}

.at-form-card .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.at-form-card .form-check-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--secondary);
    line-height: 1.5;
}

.at-form-card .alert-info {
    background: rgba(18, 159, 255, 0.06);
    border-color: rgba(18, 159, 255, 0.2);
    color: var(--secondary);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    border-radius: 10px;
}

/* Order summary */
.at-order-box {
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.at-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--secondary-2);
}

.at-order-row.is-active {
    color: var(--main);
    font-weight: 600;
}

.at-order-row__val {}

.at-order-row.is-active .at-order-row__val {
    color: var(--primary);
    font-weight: 700;
}

.at-order-sep {
    height: 1px;
    background: var(--line);
    margin: 8px 0;
}

.at-order-total-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--main);
}

.at-order-total-val {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* Pay button */
.at-pay-btn {
    width: 100%;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(18, 159, 255, 0.3);
    transition: all 0.2s;
    margin-bottom: 12px;
}

.at-pay-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.at-form-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--secondary-2);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 12px;
}

.at-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.at-trust__item {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--secondary-2);
    font-weight: 600;
}

/* ── GALLERY ─────────────────────────────────────────── */
.at-gallery {
    background: var(--main);
}

.at-gallery .at-sec-label {
    color: var(--yellow);
}

.at-gallery .at-sec-title {
    color: var(--white);
}

.at-gallery .at-sec-desc {
    color: rgba(255, 255, 255, 0.5);
}

.at-gallery__grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

@media (min-width: 576px) {
    .at-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .at-gallery__grid {
        grid-template-columns: 1.7fr 1fr 1fr;
        grid-template-rows: 240px 200px;
    }

    .at-gi:nth-child(1) {
        grid-row: span 2;
    }

    .at-gi:nth-child(4) {
        grid-column: span 2;
    }
}

.at-gi {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.at-gi--main {
    grid-column: span 2;
    aspect-ratio: 16/8;
}

@media (min-width: 576px) {
    .at-gi--main {
        aspect-ratio: 16/9;
    }
}

@media (min-width: 992px) {
    .at-gi--main {
        grid-column: unset;
        aspect-ratio: unset;
    }
}

.at-gi--sq {
    aspect-ratio: 1;
}

@media (min-width: 992px) {
    .at-gi--sq {
        aspect-ratio: unset;
    }
}

.at-gi__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s;
}

.at-gi:hover .at-gi__img {
    transform: scale(1.06);
}

.at-gi__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 24, 24, 0.7) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.at-gi:hover .at-gi__overlay {
    opacity: 1;
}

.at-gi__lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--white);
    font-weight: 700;
}

/* ── CTA ─────────────────────────────────────────────── */
.at-cta {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.at-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(18, 159, 255, 0.05);
    pointer-events: none;
}

.at-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.at-cta__icon {
    font-size: 28px;
    letter-spacing: 8px;
    display: block;
    margin-bottom: 16px;
}

.at-cta__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    color: var(--main);
    line-height: 1.12;
    margin-bottom: 16px;
}

.at-cta__title em {
    font-style: italic;
    color: var(--primary);
}

.at-cta__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.75;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto 32px;
}

.at-cta__btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 16px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(18, 159, 255, 0.3);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.at-cta__btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.at-cta__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--secondary-2);
    margin-top: 16px;
    display: block;
}




:root {


    /* Mapped to project root — no hardcoded colours */
    --ink: var(--main);
    --paper: var(--surface);
    --paper-2: var(--white);
    --accent: var(--primary);
    --accent-2: var(--success);
}

/* ── RESET & BASE ── */
.u-page {
    background: var(--paper);
    font-family: 'Mulish', sans-serif;
    color: var(--ink);
    overflow-x: hidden;
}

/* ── TICKER ── */
.u-ticker {
    background: var(--ink);
    padding: 0;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.u-ticker__label {
    background: var(--accent);
    color: var(--ink);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.u-ticker__track {
    display: flex;
    white-space: nowrap;
    animation: u-run 36s linear infinite;
    flex: 1;
    overflow: hidden;
}

.u-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.u-ticker__item strong {
    color: var(--accent);
    font-weight: 800;
}

.u-ticker__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .6;
    flex-shrink: 0;
}

@keyframes u-run {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ── ① HERO — full viewport, image left, giant text right ── */
.u-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}

@media(min-width:992px) {
    .u-hero {
        grid-template-columns: 52% 48%;
        min-height: 90vh;
    }
}

.u-hero__img-col {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
}

@media(min-width:992px) {
    .u-hero__img-col {
        min-height: 100vh;
    }
}

.u-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s ease;
}

.u-hero:hover .u-hero__img {
    transform: scale(1.04);
}

.u-hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--ink) 100%);
}



/* Floating stat cards on image */
.u-hero__float {
    position: absolute;
    bottom: 28px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media(min-width:992px) {
    .u-hero__float {
        bottom: 40px;
        left: 36px;
    }
}

.u-hero__fcard {
    background: var(--white);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow2);
    animation: u-floatin .6s ease both;
}

.u-hero__fcard:nth-child(2) {
    animation-delay: .15s;
}

.u-hero__fcard:nth-child(3) {
    animation-delay: .3s;
}

@keyframes u-floatin {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.u-hero__fcard-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.u-hero__fcard-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    line-height: 1;
    color: var(--ink);
    display: block;
}

.u-hero__fcard-lbl {
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--secondary-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 1px;
}

/* ── HERO TEXT COL — redesigned ── */
.u-hero__text-col {
    background: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 15px 48px;
    position: relative;
    overflow: hidden;
}

@media(min-width:992px) {
    .u-hero__text-col {
        padding: 72px 56px 72px 52px;
    }
}

/* Dot grid texture */
.u-hero__text-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--line) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .45;
    pointer-events: none;
}

/* Big accent number watermark */


.u-hero__tag-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.u-hero__tag {
    background: var(--ink);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    padding: 5px 12px;
    border-radius: 3px;
}

.u-hero__tag--accent {
    background: var(--accent);
    color: var(--ink);
}

.u-hero__tag-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.u-hero__headline {
    font-family: 'Lora', serif;
    font-size: clamp(32px, 5.5vw, 68px);
    font-weight: 600;
    font-style: italic;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.u-hero__headline strong {
    font-style: normal;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 7.5vw, 96px);
    line-height: .9;
    color: var(--ink);
    display: block;
    letter-spacing: 1px;
}

.u-hero__headline em {
    color: var(--accent);
    font-style: italic;
}

.u-hero__sub {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--secondary);
    max-width: 400px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* Stat strip */
.u-hero__stat-strip {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    max-width: 380px;
}

.u-hero__hstat {
    flex: 1;
    padding: 14px 8px;
    text-align: center;
    border-right: 1.5px solid var(--line);
    background: var(--white);
    transition: background .2s;
}

.u-hero__hstat:last-child {
    border-right: none;
}

.u-hero__hstat:hover {
    background: var(--accent);
}

.u-hero__hstat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--ink);
    display: block;
    line-height: 1;
}

.u-hero__hstat-lbl {
    font-family: 'Mulish', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--secondary-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 3px;
}

/* Action row */
.u-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.u-hero__act-primary {
    background: var(--ink);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 14px 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.u-hero__act-primary:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-2px);
}

.u-hero__act-link {
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s;
}

.u-hero__act-link:hover {
    color: var(--ink);
}

/* ── TORN PAPER DIVIDER ── */
.u-torn {
    height: 48px;
    position: relative;
    overflow: hidden;
}

.u-torn--down {
    background: var(--ink);
}

.u-torn--down::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2%;
    width: 104%;
    height: 48px;
    background: var(--paper);
    clip-path: polygon(0 40%, 2% 20%, 4% 35%, 6% 10%, 8% 28%, 10% 5%, 12% 22%, 14% 8%, 16% 30%, 18% 12%, 20% 32%, 22% 15%, 24% 35%, 26% 8%, 28% 25%, 30% 5%, 32% 20%, 34% 10%, 36% 30%, 38% 15%, 40% 35%, 42% 8%, 44% 22%, 46% 5%, 48% 28%, 50% 10%, 52% 32%, 54% 18%, 56% 38%, 58% 12%, 60% 28%, 62% 6%, 64% 22%, 66% 12%, 68% 35%, 70% 8%, 72% 25%, 74% 10%, 76% 30%, 78% 5%, 80% 22%, 82% 15%, 84% 35%, 86% 10%, 88% 28%, 90% 8%, 92% 25%, 94% 12%, 96% 30%, 98% 18%, 100% 40%, 100% 100%, 0 100%);
}

.u-torn--up {
    background: var(--paper);
}

.u-torn--up::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2%;
    width: 104%;
    height: 48px;
    background: var(--paper-2);
    clip-path: polygon(0 60%, 2% 80%, 4% 65%, 6% 90%, 8% 72%, 10% 95%, 12% 78%, 14% 92%, 16% 70%, 18% 88%, 20% 68%, 22% 85%, 24% 65%, 26% 92%, 28% 75%, 30% 95%, 32% 80%, 34% 90%, 36% 70%, 38% 85%, 40% 65%, 42% 92%, 44% 78%, 46% 95%, 48% 72%, 50% 90%, 52% 68%, 54% 82%, 56% 62%, 58% 88%, 60% 72%, 62% 94%, 64% 78%, 66% 88%, 68% 65%, 70% 92%, 72% 75%, 74% 90%, 76% 70%, 78% 95%, 80% 78%, 82% 85%, 84% 65%, 86% 90%, 88% 72%, 90% 92%, 92% 75%, 94% 88%, 96% 70%, 98% 82%, 100% 60%, 100% 0, 0 0);
}

/* ── SECTION COMMONS ── */
.u-sec {
    padding: 72px 0;
}

.u-sec--paper {
    background: var(--paper);
}

.u-sec--paper2 {
    background: var(--paper-2);
}

.u-sec--ink {
    background: var(--ink);
}

.u-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.u-label--light {
    color: var(--accent);
}

.u-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1;
    color: var(--ink);
    letter-spacing: .5px;
    margin: 0;
}

.u-title--light {
    color: var(--white);
}

.u-title em {
    font-style: italic;
    font-family: 'Lora', sans-serif;
    color: var(--accent);
}

.u-body {
    font-family: 'Lora', serif;
    font-size: 15px;
    line-height: 1.85;
    color: var(--secondary);
}

.u-body--light {
    color: rgba(255, 255, 255, 0.6);
}

/* ── ② ABOUT ── */
.u-about__pull {
    font-family: 'Lora', serif;
    font-size: clamp(20px, 3vw, 32px);
    font-style: italic;
    color: var(--ink);
    line-height: 1.3;
    border-left: 5px solid var(--accent);
    padding: 16px 24px;
    margin: 28px 0;
    background: var(--paper-2);
    border-radius: 0 8px 8px 0;
}

.u-about__pull cite {
    font-size: 12px;
    font-style: normal;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    color: var(--secondary-2);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 8px;
}

/* Mosaic */
.u-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 380px;
}

@media(max-width:767px) {
    .u-mosaic {
        height: 240px;
    }
}

.u-mosaic__item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.u-mosaic__item:first-child {
    grid-row: span 2;
}

.u-mosaic__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.u-mosaic__item:hover .u-mosaic__img {
    transform: scale(1.06);
}

.u-mosaic__tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--accent);
    border-radius: 3px;
    padding: 4px 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--ink);
}

/* Meal contents */
.u-meal-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}

@media(min-width:576px) {
    .u-meal-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

.u-meal-item {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    border: 1.5px solid var(--line);
    transition: all .2s;
}

.u-meal-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow1);
}

.u-meal-item__icon {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.u-meal-item__lbl {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
}

/* ── ③ FEATURES — big numbered cards ── */
.u-feat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

@media(min-width:576px) {
    .u-feat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width:992px) {
    .u-feat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.u-feat {
    background: var(--main);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background .25s;
}

.u-feat:hover {
    background: var(--secondary);
}

.u-feat__bg-num {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.u-feat__accent {
    width: 32px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 20px;
    transition: width .3s;
}

.u-feat:hover .u-feat__accent {
    width: 56px;
}

.u-feat__icon {
    font-size: 30px;
    display: block;
    margin-bottom: 14px;
}

.u-feat__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 10px;
}

.u-feat__desc {
    font-family: 'Lora', serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}

/* ── ④ MEALS + FORM ── */
/* meals grid handled by Bootstrap row/col */
@media(min-width:992px) {
    .u-form-card {
        position: sticky;
        top: 24px;
    }
}

/* Donation tracker */
.u-tracker {
    background: var(--white);
    border-radius: 12px;
    padding: 22px 24px;
    border: 1.5px solid var(--line);
    margin-bottom: 32px;
}

.u-tracker__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.u-tracker__lbl {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-2);
}

.u-tracker__val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--ink);
    letter-spacing: 1px;
}

.u-tracker__bar {
    height: 8px;
    background: var(--line);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.u-tracker__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success), var(--accent));
    border-radius: 10px;
    width: 68%;
    transition: width 1s ease;
}

.u-tracker__sub {
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
    color: var(--secondary-2);
}

/* Pill qty */
.u-pill-label {
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    display: block;
    letter-spacing: .3px;
}

.u-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.u-pill {
    padding: 11px 28px;
    border-radius: 4px;
    border: 2px solid var(--line);
    background: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--secondary);
    cursor: pointer;
    transition: all .18s;
    outline: none;
}

.u-pill:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.u-pill.is-on {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.u-custom-row {
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.u-custom-row.is-show {
    display: flex;
}

.u-custom-input {
    flex: 1;
    border: 2px solid var(--line);
    border-radius: 4px;
    padding: 11px 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--ink);
    background: var(--surface);
    outline: none;
    transition: border-color .2s;
    letter-spacing: 1px;
}

.u-custom-input:focus {
    border-color: var(--ink);
    background: var(--white);
}

.u-custom-input::placeholder {
    color: var(--secondary-2);
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
}

.u-custom-lbl {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    color: var(--secondary-2);
    white-space: nowrap;
}

/* Summary box */
.u-summary {
    background: var(--ink);
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 32px;
}

.u-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.u-summary__lbl {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.u-summary__val {
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.u-summary__sep {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 10px 0;
}

.u-summary__total-lbl {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.u-summary__total-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--accent);
    letter-spacing: 2px;
    line-height: 1;
}

/* Donors */
.u-donor-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
    transition: all .15s;
    cursor: default;
}

.u-donor-row:last-child {
    border-bottom: none;
}

.u-donor-row:hover {
    padding-left: 8px;
}

.u-donor__av {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--paper-2);
    color: var(--ink);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid var(--line);
}

.u-donor__name {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    display: block;
    line-height: 1;
}

.u-donor__time {
    font-family: 'Lora', serif;
    font-size: 12px;
    color: var(--secondary-2);
    display: block;
    margin-top: 3px;
    font-style: italic;
}

.u-donor__amt {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--primary);
    margin-left: auto;
    flex-shrink: 0;
    letter-spacing: 1px;
}

/* ── FORM CARD ── */
.u-form-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow2);
    border: 2px solid var(--ink);
}

.u-form-card__head {
    background: var(--ink);
    padding: 22px 24px;
}

.u-form-card__head-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
}

.u-form-card__head-sub {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
    font-weight: 500;
}

.u-form-card__head-accent {
    width: 36px;
    height: 3px;
    background: var(--accent);
    margin-top: 10px;
}

.u-form-card__price-strip {
    background: var(--accent);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.u-form-card__price-lbl {
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .65;
}

.u-form-card__price-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--ink);
    letter-spacing: 2px;
}

/* Donors strip */
.u-fstrip {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    border-top: 1.5px solid var(--line);
}

.u-fstrip::-webkit-scrollbar {
    display: none;
}

.u-fdonor {
    flex-shrink: 0;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid var(--line);
}

.u-fdonor__av {
    width: 26px;
    height: 26px;
    border-radius: 3px;
    background: var(--paper-2);
    color: var(--ink);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--line);
}

.u-fdonor__name {
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
    color: var(--secondary);
    white-space: nowrap;
    font-weight: 600;
}

.u-fdonor__amt {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    color: var(--primary);
    white-space: nowrap;
    letter-spacing: .5px;
}

.u-form-body {
    padding: 22px 22px 26px;
}

.u-form-title {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 20px;
}

/* BS5 scoped */
.u-form-card .form-label {
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--secondary-2);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.u-form-card .form-control {}

.u-form-card .form-control:focus {

    box-shadow: none;

    outline: none;
}

.u-form-card .form-control::placeholder {
    color: var(--secondary-2);
    opacity: .7;
}

.u-form-card .invalid-feedback {
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
}

.u-form-card .form-check-input:checked {
    background-color: var(--ink);
    border-color: var(--ink);
}

.u-form-card .form-check-label {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    color: var(--secondary-2);
    line-height: 1.5;
}

.u-form-card .alert-info {
    background: var(--paper-2);
    border-color: var(--line);
    color: var(--secondary);
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    border-radius: 6px;
}

.u-pay-btn {
    width: 100%;
    background: var(--ink);
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all .2s;
    margin-bottom: 12px;
}

.u-pay-btn:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-2px);
}

.u-form-note {
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
    color: var(--secondary-2);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 10px;
}

.u-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding-top: 12px;
    border-top: 1.5px dashed var(--line);
}

.u-trust-item {
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
    color: var(--secondary-2);
    font-weight: 700;
}

/* ── ⑤ GALLERY ── */
.u-gallery-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
}

@media(min-width:576px) {
    .u-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width:992px) {
    .u-gallery-grid {
        grid-template-columns: 1.8fr 1fr 1fr;
        grid-template-rows: 260px 200px;
    }
}

.u-gi {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

@media(min-width:992px) {
    .u-gi {
        aspect-ratio: unset;
    }
}

.u-gi--tall {
    grid-column: span 2;
    aspect-ratio: 16/8;
}

@media(min-width:576px) {
    .u-gi--tall {
        aspect-ratio: 16/7;
    }
}

@media(min-width:992px) {
    .u-gi--tall {
        grid-column: unset;
        grid-row: span 2;
        aspect-ratio: unset;
    }
}

.u-gi--wide {}

@media(min-width:992px) {
    .u-gi--wide {
        grid-column: span 2;
    }
}

.u-gi__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.u-gi:hover .u-gi__img {
    transform: scale(1.07);
}

.u-gi__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 24, 24, 0.8) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.u-gi:hover .u-gi__overlay {
    opacity: 1;
}

.u-gi__lbl {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--white);
}

.u-gi__num {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    background: var(--accent);
    color: var(--ink);
    padding: 2px 8px;
    border-radius: 2px;
}

/* ── ⑥ CTA — split layout ── */
.u-cta {
    background: var(--surface);
    padding: 0;
}

.u-cta__grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 400px;
}

@media(min-width:992px) {
    .u-cta__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left dark panel */
.u-cta__left {
    background: var(--ink);
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media(min-width:992px) {
    .u-cta__left {
        padding: 72px 60px;
    }
}

.u-cta__left::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--main-rgba-1);
    pointer-events: none;
}

.u-cta__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.u-cta__kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.u-cta__kicker-txt {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--secondary-2);
}

.u-cta__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: .95;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.u-cta__title em {
    font-style: italic;
    font-family: 'Lora', serif;
    color: var(--accent);
    display: block;
}

.u-cta__desc {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--secondary-2);
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.u-cta__btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 15px 32px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.u-cta__btn:hover {
    background: var(--white);
    color: var(--ink);
    transform: translateY(-2px);
}

.u-cta__sub {
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
    color: var(--secondary-2);
    margin-top: 14px;
    display: block;
    font-weight: 600;
    letter-spacing: .5px;
    position: relative;
    z-index: 1;
}

/* Right stats panel */
.u-cta__right {
    background: var(--white);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-left: 1.5px solid var(--line);
}

@media(min-width:992px) {
    .u-cta__right {
        padding: 60px 52px;
    }
}

.u-cta__stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    transition: all .2s;
}

.u-cta__stat-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow1);
    transform: translateX(4px);
}

.u-cta__stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: background .2s;
}

.u-cta__stat-card:hover .u-cta__stat-icon {
    background: var(--accent);
}

.u-cta__stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--ink);
    line-height: 1;
    display: block;
}

.u-cta__stat-lbl {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-2);
    text-transform: uppercase;
    letter-spacing: .8px;
    display: block;
    margin-top: 2px;
}

/* Trust row */
.u-cta__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
    border-top: 1.5px dashed var(--line);
}

.u-cta__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
}