:root {
    --teal: #2C5F5D;
    --teal-dark: #1F4544;
    --teal-light: #3D7A77;
    --sage: #8FA68E;
    --sage-soft: #B8C9B5;
    --cream: #F4F1EA;
    --cream-deep: #E8E3D7;
    --ink: #1F2937;
    --ink-soft: #5C6470;
    --gold: #C9A961;
    --gold-soft: #E0C788;
    --coral: #D6856B;
    --shadow: 0 12px 32px rgba(31, 41, 55, .08);
    --shadow-lg: 0 20px 48px rgba(31, 41, 55, .12);
    --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dark); }

h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 .5em;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
.eyebrow {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--teal);
    font-weight: 600;
    margin: 0 0 .9em;
}
.lede { font-size: 1.15rem; color: var(--ink-soft); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.btn {
    display: inline-block;
    padding: .8em 1.6em;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s;
    text-decoration: none;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(44, 95, 93, .3); }
.btn-lg { padding: 1em 2em; font-size: 1.05rem; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); color: var(--ink); }

/* HEADER */
.site-header {
    border-bottom: 1px solid rgba(31, 41, 55, .08);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(140%) blur(8px);
    background: rgba(244, 241, 234, .92);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 600; }
.brand:hover { color: var(--ink); }
.brand-mark {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: #fff;
    display: grid; place-items: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: -.02em;
    box-shadow: 0 4px 12px rgba(44, 95, 93, .25);
}
.brand-name {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 600;
}
.primary-nav { display: flex; gap: 28px; }
.primary-nav a { color: var(--ink); font-weight: 500; font-size: .95rem; position: relative; padding: 4px 0; }
.primary-nav a:hover { color: var(--teal); }
.primary-nav a.active { color: var(--teal); }
.primary-nav a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}
.nav-cta { white-space: nowrap; }
.menu-toggle { display: none; }
@media (max-width: 880px) {
    .primary-nav, .nav-cta { display: none; }
    .menu-toggle {
        display: grid; place-items: center;
        width: 42px; height: 42px;
        border: 1px solid rgba(31, 41, 55, .15);
        background: transparent; border-radius: 10px;
        cursor: pointer;
    }
    .menu-toggle svg { width: 22px; height: 22px; }
    .site-header.open .primary-nav,
    .site-header.open .nav-cta {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 14px;
        border-bottom: 1px solid rgba(31, 41, 55, .08);
        box-shadow: var(--shadow);
    }
    .site-header.open .nav-cta { align-self: flex-start; }
}

/* HERO */
.hero {
    padding: 48px 0 56px;
    background:
        radial-gradient(circle at 90% 0%, rgba(143, 166, 142, .25), transparent 50%),
        radial-gradient(circle at 0% 80%, rgba(44, 95, 93, .1), transparent 45%),
        var(--cream);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
}
.hero-text h1 { margin-bottom: .35em; }
.hero-text .lede { margin-bottom: 1.6em; max-width: 32em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    max-height: 460px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--cream-deep);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide a, .hero-slide > img { display: block; width: 100%; height: 100%; }
.hero-slide img { object-fit: cover; }
.hero-slide-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px 64px;
    background: linear-gradient(to top, rgba(31, 41, 55, .72), transparent);
    color: var(--cream);
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 500;
    pointer-events: none;
}
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 0;
    background: rgba(244, 241, 234, .92);
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: grid; place-items: center;
    box-shadow: 0 4px 12px rgba(31, 41, 55, .15);
    transition: background .2s, transform .15s;
    z-index: 2;
}
.hero-slider-arrow:hover { background: var(--cream); transform: translateY(-50%) scale(1.06); }
.hero-slider-arrow.prev { left: 14px; }
.hero-slider-arrow.next { right: 14px; }
.hero-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}
.hero-slider-dots .dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(244, 241, 234, .55);
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .15s;
}
.hero-slider-dots .dot:hover { background: rgba(244, 241, 234, .9); }
.hero-slider-dots .dot.is-active { background: var(--gold); transform: scale(1.25); }

@media (max-width: 760px) {
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero { padding: 36px 0 48px; }
    .hero-slider { aspect-ratio: 16/10; }
}

/* PAGE HERO (compact, for inner pages) */
.page-hero {
    padding: 64px 0 56px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--cream);
    text-align: center;
}
.page-hero h1 { color: var(--cream); margin: 0 0 .35em; }
.page-hero .lede { color: rgba(244, 241, 234, .85); max-width: 36em; margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold-soft); }

/* SECTIONS */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-cream { background: var(--cream); }
.section-sand { background: var(--cream-deep); }
.section-teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--cream);
    text-align: center;
}
.section-teal h2 { color: var(--cream); }
.section-teal .lede { color: rgba(244, 241, 234, .9); max-width: 38em; margin: 0 auto 2em; }
.section-teal .btn-primary { background: var(--gold); color: var(--ink); }
.section-teal .btn-primary:hover { background: var(--gold-soft); color: var(--ink); }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}
.about-body p { margin: 0 0 1.2em; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 24px; } }

.section-head { text-align: center; max-width: 36em; margin: 0 auto 56px; }

/* SERVICES / PROGRAMS GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--cream);
    padding: 36px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sage-soft), var(--sage));
    color: var(--teal-dark);
    display: grid; place-items: center;
    margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: .5em; }
.service-card p { color: var(--ink-soft); margin: 0 0 1em; flex: 1; }
.service-card .more {
    color: var(--teal);
    font-weight: 600;
    font-size: .9rem;
    align-self: flex-start;
}

/* VALUES GRID (about page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.value-item {
    padding: 28px;
    border-left: 3px solid var(--sage);
    background: var(--cream);
    border-radius: 0 12px 12px 0;
}
.value-item h3 {
    color: var(--teal-dark);
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: .4em;
    letter-spacing: -.01em;
}
.value-item p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* STATS */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}
.stat .num {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--teal);
    line-height: 1;
}
.stat .label {
    color: var(--ink-soft);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 8px;
    display: block;
}

/* INVOLVEMENT TILES */
.involve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.involve-card {
    background: var(--cream);
    border: 1px solid rgba(31, 41, 55, .08);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.involve-card:hover {
    transform: translateY(-3px);
    border-color: var(--sage);
    box-shadow: var(--shadow);
}
.involve-card h3 { color: var(--teal-dark); margin-bottom: .4em; }
.involve-card p { color: var(--ink-soft); margin: 0 0 1em; }
.involve-card .more { color: var(--teal); font-weight: 600; font-size: .9rem; }

/* DONATE BAND */
.donate-band {
    background: var(--gold);
    color: var(--ink);
    padding: 56px 0;
}
.donate-band .container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
}
.donate-band h2 { color: var(--ink); margin: 0 0 .3em; }
.donate-band p { margin: 0; color: var(--ink); }
.donate-tiers {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.tier-pill {
    background: var(--cream);
    color: var(--ink);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .2s, transform .15s;
}
.tier-pill:hover { border-color: var(--teal); transform: translateY(-1px); }
@media (max-width: 760px) {
    .donate-band .container { grid-template-columns: 1fr; text-align: center; }
}

/* STORIES GRID */
.stories-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-pill {
    background: transparent;
    color: var(--ink-soft);
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    border: 1px solid rgba(31, 41, 55, .15);
    cursor: pointer;
    transition: all .2s;
}
.filter-pill:hover { border-color: var(--teal); color: var(--teal); }
.filter-pill.active { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.story-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-thumb {
    flex: 0 0 auto;
    height: 200px;
    background: linear-gradient(135deg, var(--sage), var(--teal-light));
    color: var(--cream);
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    text-align: center;
    padding: 14px;
    overflow: hidden;
}
.story-thumb img { object-position: center 30%; }
.story-thumb img { width: 100%; height: 100%; object-fit: cover; }
.story-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.story-cat {
    color: var(--teal);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    margin-bottom: 6px;
}
.story-card h3 { font-size: 1.1rem; margin-bottom: .4em; }
.story-card p { color: var(--ink-soft); font-size: .95rem; margin: 0 0 .6em; flex: 1; }
.story-meta { color: var(--ink-soft); font-size: .8rem; }

/* ACCREDITATIONS */
.accred-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.accred-badge {
    background: var(--cream);
    border: 1px solid rgba(31, 41, 55, .08);
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 200px;
}
.accred-badge .label {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--teal-dark);
}
.accred-badge .sub { font-size: .8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; }

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(31, 41, 55, .1);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: baseline;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-soft);
    font-weight: 600;
}
.contact-form {
    background: var(--cream);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-form .field { margin-bottom: 18px; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(31, 41, 55, .15);
    border-radius: 10px;
    font: inherit;
    background: #fff;
    color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: 0;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(44, 95, 93, .12);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
@media (max-width: 760px) {
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .section { padding: 64px 0; }
}

/* COMMUNITY-CTA */
.community-inner { max-width: 720px; margin: 0 auto; }

/* FOOTER */
.site-footer {
    background: var(--ink);
    color: var(--cream-deep);
    padding: 64px 0 24px;
}
.site-footer h4 {
    color: var(--cream);
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1em;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.site-footer a { color: var(--sage-soft); }
.site-footer a:hover { color: var(--cream); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-grid p { color: rgba(244, 241, 234, .75); margin: 0 0 .5em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-blurb { max-width: 36em; margin-top: 16px !important; }
.brand-footer .brand-name { color: var(--cream); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(244, 241, 234, .12);
    color: rgba(244, 241, 234, .5);
}
.footer-bottom a { color: rgba(244, 241, 234, .5); }
.footer-bottom a:hover { color: var(--cream); }
@media (max-width: 760px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* PROGRAMS DETAIL */
.program-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid rgba(31, 41, 55, .08);
}
.program-detail:last-of-type { border-bottom: 0; }
.program-detail.flip { direction: rtl; }
.program-detail.flip > * { direction: ltr; }
.program-art {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sage), var(--teal-light));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid; place-items: center;
    color: var(--cream);
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    padding: 32px;
    text-align: center;
}
.program-detail h2 { margin-bottom: .4em; }
.program-detail .program-points { list-style: none; padding: 0; margin: 16px 0 0; }
.program-detail .program-points li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    color: var(--ink-soft);
}
.program-detail .program-points li::before {
    content: '';
    position: absolute;
    left: 0; top: .55em;
    width: 16px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
@media (max-width: 760px) {
    .program-detail, .program-detail.flip { grid-template-columns: 1fr; direction: ltr; }
}

/* ADMIN */
.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr;
    background: var(--cream-deep);
}
.admin-bar {
    background: var(--ink);
    color: var(--cream);
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-bar a { color: var(--sage-soft); }
.admin-bar a:hover { color: var(--cream); }
.admin-main { padding: 40px 24px; max-width: 960px; margin: 0 auto; width: 100%; }
.admin-main h1 { font-size: 2rem; margin-bottom: 8px; }
.admin-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid rgba(31, 41, 55, .12);
    margin-bottom: 32px;
    overflow-x: auto;
}
.admin-tabs a {
    padding: 12px 18px;
    color: var(--ink-soft);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    font-size: .95rem;
}
.admin-tabs a:hover { color: var(--teal); }
.admin-tabs a.active { color: var(--teal); border-bottom-color: var(--teal); }

.flash-ok, .flash-err {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
}
.flash-ok { background: #E8F0DA; border-left: 4px solid var(--sage); color: #2E4220; }
.flash-err { background: #F8D7CE; border-left: 4px solid var(--coral); color: #5C2A1B; }
.field { margin-bottom: 20px; }
.field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: .9rem;
}
.field input, .field textarea, .field select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(31, 41, 55, .15);
    border-radius: 8px;
    font: inherit;
    background: #fff;
    color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: 0;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(44, 95, 93, .12);
}
.field textarea { min-height: 120px; resize: vertical; }
.fieldset {
    background: #fff;
    border: 1px solid rgba(31, 41, 55, .08);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
}
.fieldset h2 {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 6px;
    color: var(--teal);
}
.fieldset .hint { color: var(--ink-soft); font-size: .9rem; margin: 0 0 18px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 600px) {
    .row-2, .row-3 { grid-template-columns: 1fr; }
}
.service-edit, .story-edit {
    border: 1px dashed rgba(31, 41, 55, .15);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 16px;
    background: var(--cream);
}
.service-edit h3, .story-edit h3 { font-size: 1rem; font-family: 'Inter', sans-serif; margin-bottom: 12px; color: var(--teal-dark); }
.story-actions { display: flex; gap: 8px; margin-top: 12px; }
.btn-sm { padding: .5em 1em; font-size: .85rem; }
.btn-danger { background: var(--coral); color: #fff; }
.btn-danger:hover { background: #C06B53; color: #fff; }

table.admin-list {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(31,41,55,.06);
}
table.admin-list th, table.admin-list td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(31, 41, 55, .08);
}
table.admin-list th { background: var(--cream-deep); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
table.admin-list tr:last-child td { border-bottom: 0; }

.login-card {
    max-width: 380px;
    margin: 80px auto;
    padding: 40px 32px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.login-card h1 { text-align: center; font-size: 1.5rem; margin-bottom: 24px; }
.login-card .btn { width: 100%; }
