* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.35;
    overflow-x: hidden;
}

body.public-syncing {
    cursor: progress;
}

body.public-syncing > * {
    opacity: 0;
    animation: public-sync-fallback 6s steps(1, end) forwards;
}

body.public-ready > * {
    opacity: 1;
    transition: opacity 0.16s ease;
}

@keyframes public-sync-fallback {
    to {
        opacity: 1;
    }
}

body::after {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    width: 14px;
    height: 100vh;
    pointer-events: none;
    background: linear-gradient(180deg, #007a3d 0 42%, #ce1126 42% 56%, #f2b705 56% 100%);
    content: "";
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    z-index: 50;
    padding: 10px 14px;
    background: #fff;
    color: #000;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 0 46px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand span {
    display: grid;
    line-height: 1.02;
}

.brand strong {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 950;
}

.brand small {
    color: #fff;
    font-size: 0.54rem;
    font-weight: 800;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2.3vw, 40px);
    opacity: 1;
    pointer-events: auto;
}

.desktop-nav a {
    position: relative;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 3px;
    background: #f2b705;
    content: "";
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: #f2b705;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-join {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    min-height: 38px;
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, #f2b705, #d99b00);
    color: #050505;
    font-size: 0.82rem;
    font-weight: 950;
    text-transform: uppercase;
}

.motion-banner {
    position: sticky;
    top: 74px;
    z-index: 29;
    width: 100%;
    height: 30px;
    overflow: hidden;
    background: #ce1126;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.motion-track {
    position: absolute;
    inset: 0 auto 0 0;
    display: flex;
    width: max-content;
    height: 100%;
    align-items: center;
    gap: 56px;
    animation: ticker-move 34s linear infinite;
    white-space: nowrap;
}

.motion-track span {
    color: #fff;
    font-size: clamp(0.78rem, 1.4vw, 1.03rem);
    font-weight: 950;
    text-transform: uppercase;
}

@keyframes ticker-move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.menu-button {
    position: relative;
    z-index: 33;
    display: none;
    width: 52px;
    min-height: 52px;
    border: 0;
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
}

.menu-button span {
    display: block;
    height: 3px;
    margin: 8px 0;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(11px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-nav {
    position: sticky;
    top: 104px;
    z-index: 32;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
    background: #101010;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a {
    display: grid;
    min-height: 48px;
    place-items: center;
    padding: 10px 12px;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
    color: #f2b705;
}

.mobile-nav a[aria-current="page"] {
    background: #111;
    box-shadow: inset 0 -3px 0 #f2b705;
}

main {
    width: 100%;
    margin: 0 auto;
    background: #000;
}

.top-hero {
    position: relative;
    min-height: 412px;
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 1.15fr;
    overflow: hidden;
    background: #000;
}

.top-hero::before,
.top-hero::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    content: "";
}

.top-hero::before {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.94)),
        radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68) 78%);
}

.top-hero::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.58)),
        linear-gradient(180deg, transparent 78%, rgba(0, 80, 45, 0.4));
}

.hero-panel {
    min-height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-left {
    background-image: url("../images/Gallery/photo_2026-06-04_02-52-14.jpg");
}

.hero-center {
    display: grid;
    place-items: start center;
    padding-top: 0;
    background-image: url("../images/Gallery/DSC_8233.jpg");
}

.hero-center img {
    width: min(290px, 24vw);
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.7));
}

.hero-right {
    background-image: url("../images/Gallery/photo_2026-06-04_04-37-36.jpg");
}

.hero-copy {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 5;
    width: min(850px, calc(100% - 32px));
    transform: translateX(-50%);
    text-align: center;
}

.hero-copy h1 {
    color: #fff;
    font-size: clamp(1.7rem, 2.25vw, 2.2rem);
    line-height: 1.12;
    font-weight: 950;
    text-transform: uppercase;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.84);
}

.red {
    color: #ce1126;
}

.gold {
    color: #f2b705;
}

.hero-copy p {
    max-width: 700px;
    margin: 10px auto 18px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    min-height: 38px;
    padding: 10px 18px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.green-action {
    background: linear-gradient(180deg, #18a85e, #08743d);
}

.blue-action {
    background: linear-gradient(180deg, #2b62e7, #173da5);
}

.gold-action {
    background: linear-gradient(180deg, #f2b705, #d99b00);
    color: #050505 !important;
}

.top-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 24px 9vw;
    background:
        linear-gradient(90deg, rgba(0, 135, 68, 0.35), rgba(6, 14, 11, 0.95), rgba(0, 135, 68, 0.28)),
        #06100c;
    border-bottom: 1px solid rgba(242, 183, 5, 0.22);
}

.top-stats article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 78px;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.top-stats article:last-child {
    border-right: 0;
}

.stat-icon {
    display: grid;
    place-items: center;
    min-width: 52px;
    width: 52px;
    height: 52px;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.green-icon {
    color: #18a85e;
}

.red-icon {
    color: #ce1126;
}

.gold-icon {
    color: #f2b705;
}

.top-stats h2 {
    color: #fff;
    font-size: clamp(2rem, 2.8vw, 2.7rem);
    line-height: 1;
    font-weight: 950;
}

.top-stats p {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.home-mission {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 48px 24px 42px;
    border-top: 1px solid rgba(242, 183, 5, 0.2);
    border-bottom: 1px solid rgba(242, 183, 5, 0.2);
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 122, 61, 0.24), transparent 30%),
        radial-gradient(circle at 84% 32%, rgba(206, 17, 38, 0.18), transparent 28%),
        linear-gradient(180deg, #050505, #063b27);
    text-align: center;
}

.home-mission p {
    color: #f2b705;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.home-mission h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.home-mission span {
    width: min(860px, 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    line-height: 1.65;
    font-weight: 750;
}

.lower-page {
    width: min(100%, 1180px);
    margin: 0 auto;
    background: #000;
}

.art-hero {
    min-height: 665px;
    display: grid;
    place-items: center;
    padding: 64px 48px 0;
    background: #66635f;
}

.art-hero img {
    width: 677px;
}

.intro {
    position: relative;
    min-height: 900px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #111;
}

.intro-photo {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55) 58%, rgba(0, 0, 0, 0.96)),
        url("../images/Gallery/DSC_8233.jpg");
    background-size: cover;
    background-position: center top;
}

.intro-copy {
    position: relative;
    z-index: 1;
    padding: 0 48px 82px;
    text-align: center;
}

.join-link {
    display: inline-flex;
    margin-bottom: 26px;
    padding: 16px 36px;
    background: #f2b705;
    color: #000;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.intro h1 {
    color: #fff;
    font-size: 47px;
    line-height: 1.08;
    font-weight: 950;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.intro p {
    max-width: 640px;
    margin: 30px auto 32px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.intro-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.intro-actions a,
.event a,
.learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: #0868ff;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.intro-actions a:first-child {
    background: #0b9c58;
}

.intro-actions a:last-child,
.event a {
    background: #f2b705;
    color: #000;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 48px 42px;
    background: #000;
    text-align: center;
}

.metrics h3 {
    color: #fff;
    font-size: 47px;
    line-height: 1;
    font-weight: 950;
}

.metrics p {
    margin-top: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.initiatives {
    padding: 46px 36px 54px;
    background: #064b33;
}

.initiatives {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.initiatives > h2 {
    grid-column: 1 / -1;
}

.initiatives > h2,
.spotlight h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.initiative-card {
    overflow: hidden;
    margin-top: 8px;
    border-radius: 12px;
    background: #071109;
}

.initiative-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.initiative-card div {
    padding: 28px 26px 30px;
}

.initiative-card h3 {
    color: #ffe000;
    font-size: clamp(1.45rem, 2.25vw, 2.05rem);
    line-height: 1.1;
    font-weight: 950;
    text-transform: uppercase;
}

.initiative-card ul {
    margin: 22px 0 0;
    padding-left: 28px;
    color: #fff;
    font-size: clamp(0.95rem, 1.35vw, 1.12rem);
    font-weight: 700;
}

.learn-more {
    width: 100%;
    min-height: 56px;
    font-size: 1.05rem;
}

.event {
    padding: 48px 36px;
    background: #000;
    text-align: center;
}

.event,
.spotlight {
    max-width: 100%;
}

.event h2 {
    color: #ffe000;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 950;
    text-transform: uppercase;
}

.event p {
    margin: 22px auto 28px;
    color: #fff;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 700;
}

.event a {
    width: 100%;
    min-height: 58px;
    font-size: 1.05rem;
}

.convention-highlights {
    border-top: 1px solid rgba(242, 183, 5, 0.2);
    border-bottom: 1px solid rgba(242, 183, 5, 0.2);
}

.convention-highlights h2 {
    width: min(980px, 100%);
    margin: 0 auto;
}

.flag-icon {
    display: inline-block;
    margin-left: 8px;
    vertical-align: 0.04em;
}

.flag-icon img {
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    object-fit: contain;
    vertical-align: -0.08em;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(1040px, 100%);
    margin: 30px auto 0;
}

.video-gallery article {
    overflow: hidden;
    border: 1px solid rgba(242, 183, 5, 0.32);
    border-radius: 10px;
    background: #071109;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.video-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease, filter 0.22s ease;
}

.video-card::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.32));
    content: "";
}

.video-card span {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 70px;
    height: 50px;
    border-radius: 14px;
    background: #ce1126;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.48);
    transform: translate(-50%, -50%);
}

.video-card span::after {
    position: absolute;
    left: 28px;
    top: 14px;
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid #fff;
    content: "";
}

.video-card:hover img {
    filter: saturate(1.12) brightness(1.06);
    transform: scale(1.035);
}

.spotlight {
    overflow: hidden;
    padding: 48px 36px;
    background:
        radial-gradient(circle at 10% 15%, rgba(242, 183, 5, 0.16), transparent 26%),
        linear-gradient(135deg, #ce1126 0%, #520812 38%, #050505 100%);
    text-align: center;
}

.spotlight > p {
    margin: 20px auto 30px;
    color: #fff;
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    font-weight: 700;
}

.spotlight > div {
    --spotlight-visible: 3;
    --spotlight-gap: 18px;
    display: flex;
    align-items: start;
    gap: var(--spotlight-gap);
    transition: transform 0.55s ease;
    will-change: transform;
}

.spotlight article {
    flex: 0 0 calc((100% - (var(--spotlight-gap) * (var(--spotlight-visible) - 1))) / var(--spotlight-visible));
    min-height: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 20px;
    padding: 20px;
    background: #efe9df;
    color: #000;
}

.spotlight.is-static > div {
    justify-content: center;
    transform: none !important;
}

.spotlight .spotlight-photo-frame,
.spotlight article > img {
    width: 132px;
    height: 132px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    background: #d8c6b8;
}

.spotlight .spotlight-photo-frame img,
.spotlight article > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
    transform: scale(var(--photo-crop-zoom, 1));
    transform-origin: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
}

.spotlight article p {
    font-size: 1.05rem;
    font-weight: 800;
}

.spotlight article small {
    display: block;
    margin-top: -4px;
    color: rgba(0, 0, 0, 0.62);
    font-size: 0.78rem;
    font-weight: 800;
}

.spotlight article blockquote {
    max-width: 280px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
    color: #17412d;
    font-size: 0.92rem;
    font-weight: 650;
    line-height: 1.45;
    text-align: left;
}

.spotlight article blockquote span {
    width: auto;
    height: auto;
    display: block;
    border-radius: 0;
    background: transparent;
    color: #008f8c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.8rem;
    font-weight: 950;
    line-height: 0.74;
}

.spotlight article blockquote span:last-child {
    align-self: end;
    transform: none;
}

.spotlight article blockquote em {
    display: block;
    color: #17412d;
    font-style: normal;
}

.footer {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #050505;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 18px 44px;
    background:
        radial-gradient(circle at left center, rgba(0, 120, 73, 0.38), transparent 34%),
        radial-gradient(circle at right center, rgba(0, 120, 73, 0.35), transparent 30%),
        linear-gradient(90deg, #073d28, #062e20 58%, #063420);
    border-top: 1px solid rgba(242, 183, 5, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
    color: #fff;
    font-size: clamp(1.6rem, 2.5vw, 2.45rem);
    line-height: 1.02;
    font-weight: 950;
    text-transform: uppercase;
}

.footer-cta p {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.footer-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 240px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 6px;
    background: linear-gradient(180deg, #f7b918, #e29a00);
    color: #070707;
    font-weight: 950;
    text-transform: uppercase;
}

.footer-cta a span {
    font-size: 1.4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr)) minmax(290px, 1.05fr) minmax(260px, 1fr);
    align-items: center;
    gap: 0;
    padding: 24px 36px;
    background: #060707;
}

.footer-value,
.footer-contact,
.footer-brand {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.footer-brand {
    border-right: 0;
}

.footer-value svg {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.footer-value.connect {
    color: #19a35a;
}

.footer-value.grow,
.footer-value.celebrate {
    color: #f2b705;
}

.footer-value.give {
    color: #ff283c;
}

.footer-value h3,
.footer-contact h3 {
    margin-bottom: 4px;
    font-size: 0.88rem;
    font-weight: 950;
    text-transform: uppercase;
}

.footer-value p {
    color: #fff;
    font-size: 0.86rem;
    font-weight: 600;
}

.footer-contact {
    display: grid;
    align-content: center;
    gap: 7px;
}

.footer-contact h3 {
    color: #fff;
    font-size: 1.38rem;
    text-transform: none;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 750;
}

.footer-contact a > svg {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-contact img {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-contact span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.social-sprite {
    display: none;
}

.social-svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

.footer-social a:not(:has(.social-svg)) {
    font-size: 0;
}

.footer-social a:not(:has(.social-svg))[aria-label="Instagram"]::before,
.footer-social a:not(:has(.social-svg))[aria-label="TikTok"]::before {
    content: "";
    width: 16px;
    height: 16px;
    background: currentColor;
    display: block;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.footer-social a:not(:has(.social-svg))[aria-label="Instagram"]::before {
    mask-image: url("../images/icons/instagram.svg");
    -webkit-mask-image: url("../images/icons/instagram.svg");
}

.footer-social a:not(:has(.social-svg))[aria-label="TikTok"]::before {
    mask-image: url("../images/icons/tiktok.svg");
    -webkit-mask-image: url("../images/icons/tiktok.svg");
}

.footer-social a:not(:has(.social-svg))[aria-label="YouTube"]::before {
    content: "YT";
    color: currentColor;
    font-size: 0.7rem;
    font-weight: 950;
}

.footer-brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.footer-brand span {
    display: grid;
    line-height: 1.04;
}

.footer-brand strong {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 950;
}

.footer-brand small {
    color: #fff;
    font-size: 0.54rem;
    font-weight: 800;
}

.footer-copy {
    display: grid;
    min-height: 32px;
    place-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: #050505;
}

.footer-copy p {
    color: #fff;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.about-page {
    background:
        linear-gradient(180deg, #050505, #000 22%),
        #000;
}

.about-page > .footer {
    width: 100%;
    margin-left: 0;
}

.about-hero {
    position: relative;
    display: grid;
    min-height: 360px;
    place-items: center;
    overflow: hidden;
    padding: 72px 24px;
    background:
        radial-gradient(circle at 18% 20%, rgba(24, 168, 94, 0.28), transparent 34%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.82)),
        var(--about-hero-image, url("../images/Gallery/DSC_8234.jpg"));
    background-position: center 28%;
    background-size: cover;
    border-bottom: 1px solid rgba(242, 183, 5, 0.35);
}

.about-hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, #000);
    content: "";
}

.about-hero > div {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    text-align: center;
}

.about-hero p,
.about-section-heading p {
    color: #f2b705;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.about-hero h1,
.about-section-heading h2,
.executives h2 {
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
}

.about-hero h1 {
    margin-top: 12px;
    font-size: clamp(3rem, 8vw, 6rem);
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.72);
}

.about-hero span {
    display: inline-flex;
    margin-top: 18px;
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
}

.about-content,
.executives {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.events-page {
    background: #000;
    color: #fff;
}

.error-page {
    min-height: calc(100vh - 92px);
    display: grid;
    place-items: center;
    padding: 64px 24px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.48), #000 82%),
        radial-gradient(circle at 25% 20%, rgba(0, 122, 61, 0.32), transparent 34%),
        radial-gradient(circle at 82% 72%, rgba(206, 17, 38, 0.24), transparent 30%),
        #000;
    color: #fff;
    text-align: center;
}

.error-page section {
    width: min(720px, 100%);
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 42px 28px;
    border: 1px solid rgba(242, 183, 5, 0.32);
    border-radius: 10px;
    background: rgba(5, 5, 5, 0.82);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

.error-page img {
    width: 98px;
    height: 98px;
    object-fit: contain;
}

.error-page p {
    color: #f2b705;
    font-size: 1rem;
    font-weight: 950;
    letter-spacing: 0.28em;
}

.error-page h1 {
    color: #fff;
    font-size: clamp(2.5rem, 7vw, 5.4rem);
    line-height: 0.95;
    font-weight: 950;
    text-transform: uppercase;
}

.error-page span {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.55;
}

.error-page div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.error-page a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 6px;
    background: #f2b705;
    color: #050505;
    font-weight: 950;
    text-transform: uppercase;
}

.error-page a:last-child {
    background: #063b27;
    color: #fff;
}

.join-page {
    background:
        linear-gradient(180deg, #050505, #000 26%),
        #000;
    color: #fff;
}

.join-page > .footer {
    width: 100%;
    margin-left: 0;
}

.join-hero {
    position: relative;
    min-height: 380px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 78px 24px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.9)),
        radial-gradient(circle at 18% 18%, rgba(0, 122, 61, 0.34), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(242, 183, 5, 0.22), transparent 30%),
        url("../images/Gallery/DSC_8234.jpg");
    background-position: center 32%;
    background-size: cover;
    border-bottom: 4px solid #f2b705;
    text-align: center;
}

.join-hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, #000);
    content: "";
}

.join-hero > div {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    display: grid;
    justify-items: center;
}

.join-hero img {
    width: 108px;
    height: 108px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.65));
}

.join-hero p,
.join-intro p,
.panel-kicker,
.snapshot-heading p,
.membership-fee p,
.ready-to-join p {
    color: #f2b705;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.join-hero h1 {
    margin-top: 12px;
    color: #fff;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    font-weight: 950;
    text-transform: uppercase;
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.72);
}

.join-hero span {
    max-width: 760px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 750;
    line-height: 1.55;
}

.join-intro,
.membership-details,
.membership-snapshot,
.membership-fee,
.ready-to-join {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.join-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 64px 0 30px;
}

.join-intro h2,
.snapshot-heading h2,
.ready-to-join h2 {
    margin-top: 10px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.05;
    font-weight: 950;
    text-transform: uppercase;
}

.join-intro a,
.ready-to-join a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 6px;
    background: #007a3d;
    color: #fff;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(0, 122, 61, 0.28);
}

.membership-details {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 22px;
    padding: 18px 0 32px;
}

.membership-panel,
.membership-fee,
.ready-to-join {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        #080808;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.membership-panel {
    padding: 30px;
}

.accent-panel {
    border-color: rgba(242, 183, 5, 0.28);
}

.membership-panel h2 {
    margin-top: 12px;
    color: #fff;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.18;
    font-weight: 950;
}

.check-list,
.member-types {
    display: grid;
    gap: 13px;
    margin-top: 22px;
    padding: 0;
    list-style: none;
}

.check-list li,
.member-types li {
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.55;
}

.check-list li::before,
.member-types li::before {
    position: absolute;
    top: 0.18em;
    left: 0;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: #007a3d;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 950;
    content: "+";
}

.member-types li::before {
    background: #ce1126;
}

.accent-panel p {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 650;
    line-height: 1.65;
}

.membership-snapshot {
    padding: 34px 0 28px;
}

.snapshot-heading {
    text-align: center;
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.snapshot-grid article {
    min-height: 154px;
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #0b0b0b;
}

.snapshot-grid span {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 8px;
    background: rgba(0, 122, 61, 0.16);
    color: #52d686;
    font-size: 0.92rem;
    font-weight: 950;
}

.snapshot-grid article:nth-child(2) span,
.snapshot-grid article:nth-child(4) span {
    background: rgba(242, 183, 5, 0.16);
    color: #f2b705;
}

.snapshot-grid article:nth-child(3) span,
.snapshot-grid article:nth-child(6) span {
    background: rgba(206, 17, 38, 0.18);
    color: #ff6b78;
}

.snapshot-grid h3 {
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 900;
}

.membership-fee {
    display: grid;
    grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin-top: 22px;
    padding: 30px;
    border-color: rgba(0, 122, 61, 0.34);
}

.membership-fee strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 1;
    font-weight: 950;
}

.membership-fee span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.65;
}

.ready-to-join {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 64px;
    padding: 34px;
    border-color: rgba(242, 183, 5, 0.34);
    background:
        linear-gradient(110deg, rgba(0, 122, 61, 0.18), rgba(206, 17, 38, 0.12)),
        #080808;
}

.ready-to-join span {
    display: block;
    max-width: 780px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
}

.events-page > .footer {
    width: 100%;
    margin-left: 0;
}

.events-hero {
    position: relative;
    min-height: 330px;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 58px 48px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 67, 38, 0.64), rgba(0, 0, 0, 0.08)),
        url("../images/Gallery/photo_2026-06-04_02-52-21.jpg");
    background-position: center 45%;
    background-size: cover;
    border-bottom: 4px solid #f2b705;
}

.events-hero-copy {
    width: min(640px, 100%);
}

.events-hero-copy p {
    color: #f2b705;
    font-size: 0.86rem;
    font-weight: 950;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.events-hero-copy h1 {
    margin-top: 8px;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.95;
    font-weight: 950;
    text-transform: uppercase;
}

.events-hero-copy span {
    display: block;
    width: min(480px, 100%);
    margin-top: 16px;
    color: #fff;
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    font-weight: 800;
}

.events-list {
    width: min(1160px, calc(100% - 44px));
    margin: 0 auto;
    padding: 44px 0 28px;
}

.events-heading {
    margin: 0 auto 26px;
    text-align: center;
}

.events-heading p {
    color: #ce1126;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.events-heading h2 {
    margin-top: 8px;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
}

.events-heading span {
    display: block;
    width: min(640px, 100%);
    margin: 12px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    font-weight: 700;
}

.past-events {
    padding-top: 24px;
}

.past-events .events-heading {
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.event-cards {
    position: relative;
    display: grid;
    gap: 18px;
    padding-left: 92px;
}

.event-cards::before {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 34px;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, #007a3d, #ce1126 50%, #f2b705);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 36px rgba(0, 0, 0, 0.34);
    content: "";
}

.event-card {
    position: relative;
    display: grid;
    grid-template-columns: 124px minmax(260px, 0.82fr) minmax(280px, 1fr);
    min-height: 240px;
    overflow: hidden;
    border: 1px solid rgba(0, 67, 38, 0.18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
}

.event-card::before {
    position: absolute;
    top: 50%;
    left: -77px;
    z-index: 1;
    width: 26px;
    height: 26px;
    border: 6px solid #000;
    border-radius: 50%;
    background: #f2b705;
    box-shadow: 0 0 0 3px #fff, 0 0 0 8px rgba(206, 17, 38, 0.65);
    content: "";
    transform: translateY(-50%);
}

.networking-event::before {
    background: #007a3d;
    box-shadow: 0 0 0 3px #fff, 0 0 0 8px rgba(242, 183, 5, 0.7);
}

.event-card::after {
    position: absolute;
    top: calc(50% + 27px);
    left: -92px;
    width: 58px;
    color: #fff;
    content: attr(data-timeline-label);
    font-size: 0.58rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.event-card[data-status="past"]::before {
    background: #ce1126;
    box-shadow: 0 0 0 3px #fff, 0 0 0 8px rgba(255, 255, 255, 0.18);
}

.event-card img,
.event-flyer-art {
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.event-card img {
    object-fit: cover;
}

.event-flyer-art {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 24px 18px;
    overflow: hidden;
    text-align: center;
}

.school-drive-flyer {
    position: relative;
    background:
        radial-gradient(circle at 10% 12%, rgba(242, 183, 5, 0.28), transparent 18%),
        radial-gradient(circle at 88% 82%, rgba(206, 17, 38, 0.28), transparent 22%),
        linear-gradient(135deg, rgba(0, 122, 61, 0.72), rgba(7, 18, 12, 0.96)),
        url("../images/LOGOCAMYOUA.png");
    background-position: center;
    background-size: cover, cover, cover, 46%;
    color: #fff;
}

.school-drive-flyer::before {
    position: absolute;
    inset: 22px;
    border: 8px solid #c54922;
    border-radius: 6px;
    background: rgba(5, 44, 29, 0.88);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.08);
    content: "";
}

.school-drive-flyer > * {
    position: relative;
    z-index: 1;
}

.school-drive-flyer small {
    color: #fff;
    font-size: 0.64rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.school-drive-flyer strong {
    max-width: 92%;
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2.5rem);
    line-height: 0.95;
    font-weight: 950;
    text-transform: uppercase;
}

.school-drive-flyer span {
    color: #f2e85e;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 950;
    text-transform: uppercase;
}

.school-drive-flyer em,
.school-drive-flyer p {
    color: #fff;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 950;
}

.school-drive-flyer p {
    color: #f2e85e;
}

.event-date {
    display: grid;
    min-height: 100%;
    place-items: center;
    align-content: center;
    gap: 2px;
    padding: 20px 12px;
    background: #07120c;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.networking-event .event-date {
    background: linear-gradient(180deg, #f2b705, #d99b00);
    color: #07120c;
}

.past-event .event-date {
    background: linear-gradient(180deg, #ce1126, #8f0d1b);
    color: #fff;
}

.past-event .event-date strong {
    color: #fff;
}

.event-date span,
.event-date small,
.event-date em {
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.event-date strong {
    color: #f2b705;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 0.9;
    font-weight: 950;
}

.networking-event .event-date strong {
    color: #07120c;
}

.event-details {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 28px 32px;
}

.event-details > p {
    color: #19a35a;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.event-details h3 {
    color: #07120c;
    font-size: clamp(1.35rem, 2.4vw, 2.15rem);
    line-height: 1.05;
    font-weight: 950;
}

.event-details > span {
    color: #25352d;
    font-size: 0.98rem;
    font-weight: 650;
}

.event-details ul {
    display: grid;
    gap: 7px;
    list-style: none;
}

.event-details li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #07120c;
    font-size: 0.9rem;
    font-weight: 800;
}

.event-details li svg {
    width: 17px;
    height: 17px;
    fill: #ce1126;
}

.event-details a,
.event-idea a {
    display: inline-flex;
    width: max-content;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 4px;
    background: #07120c;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.networking-event .event-details a,
.event-idea a {
    background: linear-gradient(180deg, #f2b705, #d99b00);
    color: #07120c;
}

.event-idea {
    display: flex;
    width: min(1160px, calc(100% - 44px));
    min-height: 96px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 12px auto 48px;
    padding: 22px 28px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 67, 38, 0.86)),
        url("../images/Gallery/photo_2026-06-04_04-37-25.jpg");
    background-position: center;
    background-size: cover;
    color: #fff;
}

.event-idea div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.event-idea svg {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    fill: #f2b705;
}

.event-idea span {
    display: grid;
    gap: 5px;
}

.event-idea strong {
    font-size: 1.35rem;
    font-weight: 950;
    text-transform: uppercase;
}

.event-idea small {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
}

.about-content {
    padding: 68px 0 44px;
}

.about-section-heading h2,
.executives h2 {
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.about-section-heading {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.about-section-heading h2 {
    margin-top: 8px;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.65fr);
    gap: 26px;
    align-items: stretch;
}

.blank-content,
.about-copy {
    min-height: 170px;
    padding: 34px 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(6, 75, 51, 0.82), rgba(7, 17, 9, 0.94)),
        #071109;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.about-copy p {
    color: #fff;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    font-weight: 650;
    line-height: 1.75;
}

.about-copy p + p {
    margin-top: 18px;
}

.about-facts {
    display: grid;
    gap: 16px;
}

.about-facts div {
    display: grid;
    align-content: center;
    min-height: 132px;
    padding: 24px;
    border-left: 4px solid #f2b705;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(242, 183, 5, 0.12), rgba(206, 17, 38, 0.08)),
        #080b09;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.about-facts strong {
    color: #fff;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.15;
    font-weight: 950;
}

.about-facts span {
    margin-top: 8px;
    color: #f2b705;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.executives {
    padding: 38px 0 82px;
}

.executive-showcase {
    text-align: center;
}

.executive-eyebrow {
    margin-bottom: 10px;
    color: #f2b705;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 38px;
}

.executive-card {
    display: grid;
    align-content: start;
    justify-items: center;
    padding: 8px 8px 30px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 6px;
    background: #f8f6ef;
    color: #090909;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    text-align: center;
}

.executive-photo {
    display: grid;
    width: 100%;
    aspect-ratio: 1 / 1.42;
    place-items: center;
    overflow: hidden;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(6, 75, 51, 0.95), rgba(242, 183, 5, 0.86)),
        #064b33;
    color: #fff;
    font-size: 3rem;
    font-weight: 950;
}

.executive-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
    transform: scale(var(--photo-crop-zoom, 1));
    transform-origin: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
}

.seraphin-photo img {
    object-position: center 18%;
}

.executive-card h3 {
    margin-top: 16px;
    color: #080808;
    font-size: clamp(1.05rem, 1.7vw, 1.42rem);
    line-height: 1.15;
    font-weight: 950;
    text-transform: uppercase;
}

.executive-nickname {
    display: inline-grid;
    grid-template-columns: auto minmax(0, auto) auto;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    color: #17412d;
    font-size: 0.9rem;
    font-weight: 900;
}

.executive-nickname span {
    color: #008f8c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 950;
    line-height: 0.75;
}

.executive-nickname em {
    color: #d99b00;
    font-style: italic;
    line-height: 1;
}

.executive-card p {
    margin-top: 4px;
    color: #ce1126;
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
}

.executive-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.executive-socials a {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 50%;
    background: #050505;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 950;
    transition: transform 0.18s ease, background 0.18s ease;
}

.executive-socials a:hover {
    background: #063b27;
    transform: translateY(-2px);
}

.executive-socials .social-svg {
    width: 17px;
    height: 17px;
}

.executive-socials img {
    display: block;
    width: 17px;
    height: 17px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.gallery-page {
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 61, 0.28), transparent 30%),
        radial-gradient(circle at 88% 45%, rgba(206, 17, 38, 0.18), transparent 28%),
        #000;
    color: #fff;
}

.gallery-page > .footer {
    width: 100%;
    margin-left: 0;
}

.gallery-hero {
    position: relative;
    display: grid;
    min-height: 340px;
    place-items: center;
    overflow: hidden;
    padding: 72px 24px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 67, 38, 0.68), rgba(0, 0, 0, 0.35)),
        url("../images/Gallery/photo_2026-06-04_04-40-40.jpg");
    background-position: center 42%;
    background-size: cover;
    border-bottom: 4px solid #f2b705;
}

.gallery-hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(180deg, transparent, #000);
    content: "";
}

.gallery-hero > div {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    text-align: center;
}

.gallery-hero p,
.gallery-section-heading p {
    color: #f2b705;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.gallery-hero h1,
.gallery-section-heading h2 {
    margin-top: 10px;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.7rem);
    line-height: 0.95;
    font-weight: 950;
    text-transform: uppercase;
}

.gallery-hero span,
.gallery-section-heading span {
    display: block;
    width: min(620px, 100%);
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    font-weight: 750;
    line-height: 1.5;
}

.public-gallery-section {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    padding: 58px 0 70px;
}

.gallery-section-heading {
    margin: 0 auto 28px;
    text-align: center;
}

.gallery-section-heading p {
    color: #ce1126;
}

.gallery-section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.public-gallery-shell {
    display: grid;
    gap: 22px;
}

.public-gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.public-gallery-tabs button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(7, 18, 12, 0.88);
    color: #fff;
    cursor: pointer;
    font-weight: 950;
    text-transform: uppercase;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.public-gallery-tabs button:hover,
.public-gallery-tabs button.is-active {
    border-color: rgba(242, 183, 5, 0.84);
    background: linear-gradient(135deg, #f2b705, #d99b00);
    color: #061108;
    transform: translateY(-1px);
}

.public-gallery-tabs span {
    display: inline-grid;
    min-width: 26px;
    min-height: 22px;
    place-items: center;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: inherit;
    font-size: 0.72rem;
}

.public-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gallery-loading {
    grid-column: 1 / -1;
    padding: 36px 20px;
    border: 1px solid rgba(242, 183, 5, 0.24);
    border-radius: 8px;
    background: rgba(7, 18, 12, 0.74);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.public-gallery-card {
    min-width: 0;
}

.public-gallery-card button {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.76;
    overflow: hidden;
    border: 1px solid rgba(242, 183, 5, 0.28);
    border-radius: 8px;
    background: #07120c;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.public-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.public-gallery-card button:hover img {
    filter: brightness(0.8) saturate(1.08);
    transform: scale(1.045);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(10px);
}

.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox-bar {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(7, 18, 12, 0.92);
}

.gallery-lightbox-bar > div:first-child {
    display: grid;
    gap: 3px;
}

.gallery-lightbox-bar strong {
    color: #f2b705;
    font-size: 0.92rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-lightbox-bar span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 800;
}

.gallery-lightbox-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.gallery-lightbox-actions button,
.gallery-lightbox-nav {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: #050505;
    color: #fff;
    cursor: pointer;
    font-weight: 950;
}

.gallery-lightbox-actions button {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.gallery-lightbox-actions button:hover,
.gallery-lightbox-nav:hover {
    border-color: #f2b705;
    background: #f2b705;
    color: #07120c;
}

.gallery-lightbox-stage {
    display: grid;
    grid-column: 2;
    place-items: center;
    min-height: 0;
    overflow: auto;
}

.gallery-lightbox-stage img {
    max-width: 100%;
    max-height: 76vh;
    object-fit: contain;
    transform-origin: center;
    transition: transform 0.2s ease;
}

.gallery-lightbox-nav {
    align-self: center;
    width: 54px;
    height: 72px;
    font-size: 3rem;
    line-height: 1;
}

.gallery-lightbox-nav.previous {
    grid-column: 1;
}

.gallery-lightbox-nav.next {
    grid-column: 3;
}

@media (max-width: 1320px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav,
    .header-join {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-nav {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        visibility: hidden;
        transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .mobile-nav.is-open {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }
}

@media (max-width: 900px) {
    .top-hero {
        min-height: 520px;
    }

    .top-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 20px 32px;
    }

    .top-stats article:nth-child(2) {
        border-right: 0;
    }

    .top-stats article:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .home-mission {
        padding: 40px 28px 36px;
    }

    .lower-page {
        width: min(100%, 720px);
    }

    .initiatives {
        grid-template-columns: 1fr;
    }

    .initiative-card {
        margin-top: 28px;
    }

    .footer-cta {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .footer-brand,
    .footer-contact {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .about-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-facts div {
        min-height: 118px;
    }

    .executive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-card {
        grid-template-columns: 112px minmax(220px, 0.85fr) minmax(280px, 1fr);
    }

    .event-cards {
        padding-left: 70px;
    }

    .event-cards::before {
        left: 26px;
    }

    .event-card::before {
        left: -57px;
    }

    .event-card::after {
        left: -70px;
        width: 52px;
        font-size: 0.52rem;
    }

    .event-details {
        padding: 24px;
    }

    .join-intro,
    .membership-details,
    .membership-fee,
    .ready-to-join {
        grid-template-columns: 1fr;
    }

    .join-intro,
    .ready-to-join {
        align-items: start;
    }

    .snapshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    body::after {
        display: none;
    }

    .site-header {
        height: auto;
        min-height: 76px;
        padding: 10px 16px;
        top: 0;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand {
        min-width: 0;
    }

    .brand strong {
        font-size: 1.38rem;
    }

    .brand small {
        max-width: 170px;
        font-size: 0.5rem;
        line-height: 1.2;
    }

    .mobile-nav {
        top: 76px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .motion-banner {
        position: relative;
        top: 0;
        height: 30px;
    }

    .top-hero {
        min-height: 540px;
        grid-template-columns: 1fr;
    }

    .hero-panel {
        grid-area: 1 / 1;
    }

    .hero-left,
    .hero-right {
        opacity: 0.32;
    }

    .hero-center img {
        width: min(280px, 74vw);
    }

    .hero-copy {
        bottom: 28px;
    }

    .hero-copy h1 {
        font-size: clamp(1.7rem, 8vw, 2rem);
    }

    .hero-copy p {
        font-size: 0.88rem;
    }

    .hero-actions {
        display: grid;
        gap: 12px;
    }

    .hero-actions a {
        width: 100%;
        min-width: 0;
    }

    .top-stats {
        grid-template-columns: 1fr;
        padding: 16px 20px;
    }

    .top-stats article {
        justify-content: flex-start;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .top-stats article:first-child {
        border-top: 0;
    }

    .top-stats article:nth-child(2) {
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .top-stats h2 {
        font-size: 2.15rem;
    }

    .stat-icon {
        font-size: 2.45rem;
    }

    .home-mission {
        padding: 34px 20px 32px;
    }

    .home-mission p {
        letter-spacing: 0.22em;
    }

    .home-mission h2 {
        overflow-wrap: anywhere;
        text-decoration-thickness: 4px;
    }

    .initiatives,
    .event,
    .spotlight {
        padding-left: 22px;
        padding-right: 22px;
    }

    .initiatives {
        padding-top: 36px;
        padding-bottom: 42px;
    }

    .initiative-card {
        margin-top: 28px;
    }

    .initiative-card img {
        height: 190px;
    }

    .initiative-card div {
        padding: 26px 24px 30px;
    }

    .spotlight > div {
        --spotlight-visible: 1;
    }

    .initiative-card ul {
        font-size: 1.02rem;
        margin: 18px 0 24px;
    }

    .initiative-card h3,
    .initiatives > h2,
    .event h2,
    .spotlight h2 {
        overflow-wrap: anywhere;
    }

    .footer-cta {
        padding: 24px 22px;
    }

    .footer-cta a {
        width: 100%;
        min-width: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 0 22px;
    }

    .footer-value,
    .footer-contact,
    .footer-brand {
        min-height: 98px;
        padding: 18px 0;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-value:first-child {
        border-top: 0;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-copy {
        padding: 10px 18px;
        text-align: center;
    }

    .join-hero {
        min-height: 260px;
        padding: 34px 20px 38px;
        background-position: center top;
    }

    .join-hero img {
        width: 70px;
        height: 70px;
        margin-bottom: 14px;
    }

    .join-hero p,
    .join-intro p,
    .panel-kicker,
    .snapshot-heading p,
    .membership-fee p,
    .ready-to-join p {
        font-size: 0.72rem;
        letter-spacing: 0.2em;
    }

    .join-hero h1 {
        margin-top: 8px;
        font-size: clamp(2.4rem, 15vw, 3.35rem);
    }

    .join-hero span {
        max-width: 310px;
        margin-top: 12px;
        font-size: 0.98rem;
        line-height: 1.45;
    }

    .join-intro,
    .membership-details,
    .membership-snapshot,
    .membership-fee,
    .ready-to-join {
        width: min(100% - 40px, 560px);
    }

    .join-intro {
        gap: 16px;
        padding-top: 34px;
        padding-bottom: 20px;
    }

    .join-intro h2,
    .snapshot-heading h2,
    .ready-to-join h2 {
        font-size: clamp(1.38rem, 7.5vw, 1.86rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .join-intro a,
    .ready-to-join a {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        padding: 12px 16px;
    }

    .membership-panel,
    .membership-fee,
    .ready-to-join {
        padding: 22px 20px;
    }

    .membership-details {
        gap: 18px;
        padding-bottom: 22px;
    }

    .membership-panel h2 {
        font-size: clamp(1.18rem, 6vw, 1.48rem);
        overflow-wrap: anywhere;
    }

    .check-list,
    .member-types {
        gap: 10px;
        margin-top: 18px;
    }

    .check-list li,
    .member-types li,
    .accent-panel p {
        font-size: 0.94rem;
        line-height: 1.48;
    }

    .snapshot-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .snapshot-grid article {
        min-height: 92px;
        gap: 12px;
        padding: 18px;
    }

    .snapshot-grid span {
        width: 42px;
        height: 42px;
    }

    .snapshot-grid h3 {
        font-size: 1rem;
    }

    .membership-snapshot {
        padding-top: 22px;
        padding-bottom: 18px;
    }

    .membership-fee {
        gap: 14px;
        margin-top: 14px;
    }

    .membership-fee strong {
        font-size: clamp(2.2rem, 14vw, 3.25rem);
    }

    .membership-fee span,
    .ready-to-join span {
        font-size: 0.96rem;
        line-height: 1.52;
    }

    .ready-to-join {
        gap: 18px;
        margin-top: 18px;
        margin-bottom: 42px;
    }

    .footer-contact span,
    .footer-brand small {
        overflow-wrap: anywhere;
    }

    .events-hero {
        min-height: 240px;
        padding: 42px 22px;
        align-items: end;
        background-position: center top;
    }

    .events-hero-copy {
        width: min(420px, 100%);
    }

    .events-hero-copy p {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    .events-hero-copy h1 {
        font-size: clamp(2.45rem, 14vw, 3.8rem);
    }

    .events-hero-copy span {
        margin-top: 10px;
        font-size: 0.94rem;
        line-height: 1.4;
    }

    .events-list {
        width: min(100% - 28px, 520px);
        padding: 32px 0 18px;
    }

    .events-heading {
        margin-bottom: 20px;
    }

    .events-heading p {
        font-size: 0.66rem;
        letter-spacing: 0.2em;
    }

    .events-heading h2 {
        font-size: clamp(1.65rem, 9vw, 2.3rem);
    }

    .events-heading span {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .past-events {
        padding-top: 8px;
    }

    .past-events .events-heading {
        padding-top: 24px;
    }

    .event-cards {
        gap: 16px;
        padding-left: 0;
    }

    .event-cards::before,
    .event-card::before,
    .event-card::after {
        display: none;
    }

    .event-card {
        grid-template-columns: 92px minmax(0, 1fr);
        min-height: 0;
        border-radius: 7px;
    }

    .event-date {
        min-height: 136px;
        padding: 14px 8px;
    }

    .event-date span,
    .event-date small,
    .event-date em {
        font-size: 0.66rem;
        letter-spacing: 0.05em;
    }

    .event-date strong {
        font-size: 2.7rem;
    }

    .event-card img,
    .event-flyer-art {
        min-height: 136px;
        height: 136px;
    }

    .event-details {
        grid-column: 1 / -1;
        gap: 10px;
        padding: 22px 18px 20px;
    }

    .event-details > p {
        font-size: 0.66rem;
        letter-spacing: 0.12em;
    }

    .event-details h3 {
        font-size: clamp(1.28rem, 7vw, 1.75rem);
    }

    .event-details > span {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .event-details li {
        align-items: flex-start;
        font-size: 0.84rem;
        line-height: 1.35;
    }

    .event-details li svg {
        flex: 0 0 16px;
        margin-top: 2px;
    }

    .event-details a {
        width: 100%;
        min-height: 42px;
    }

    .school-drive-flyer {
        padding: 18px 12px;
    }

    .school-drive-flyer::before {
        inset: 12px;
        border-width: 5px;
    }

    .school-drive-flyer small {
        font-size: 0.48rem;
    }

    .school-drive-flyer strong {
        font-size: 1rem;
    }

    .school-drive-flyer span,
    .school-drive-flyer em,
    .school-drive-flyer p {
        font-size: 0.66rem;
    }

    .event-idea {
        width: min(100% - 28px, 520px);
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        margin: 10px auto 34px;
        padding: 20px;
    }

    .event-idea div {
        align-items: flex-start;
    }

    .event-idea svg {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .event-idea strong {
        font-size: 1.08rem;
    }

    .event-idea small {
        font-size: 0.86rem;
        line-height: 1.42;
    }

    .event-idea a {
        width: 100%;
    }

    .about-content,
    .executives {
        width: min(100% - 36px, 520px);
    }

    .about-hero {
        min-height: 300px;
        padding: 54px 20px;
    }

    .about-content {
        padding-top: 48px;
    }

    .about-copy {
        padding: 26px 22px;
    }

    .blank-content {
        min-height: 140px;
    }

    .about-facts {
        grid-template-columns: 1fr;
    }

    .about-facts div {
        min-height: 108px;
    }

    .executive-grid {
        grid-template-columns: 1fr;
    }

    .executive-card {
        min-height: 0;
    }

    .executive-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1.32;
    }

    .events-hero {
        min-height: 240px;
        padding: 42px 22px;
        align-items: end;
        background-position: center top;
    }

    .events-list {
        width: min(100% - 28px, 520px);
        padding-top: 32px;
    }

    .event-cards {
        padding-left: 0;
    }

    .event-cards::before,
    .event-card::before,
    .event-card::after {
        display: none;
    }

    .event-card {
        grid-template-columns: 92px minmax(0, 1fr);
        min-height: 0;
        border-radius: 7px;
    }

    .event-date {
        min-height: 136px;
        grid-template-columns: none;
        gap: 2px;
        padding: 14px 8px;
    }

    .event-date strong {
        font-size: 2.7rem;
    }

    .event-card img,
    .event-flyer-art {
        min-height: 136px;
        height: 136px;
        aspect-ratio: auto;
    }

    .event-details {
        grid-column: 1 / -1;
        padding: 22px 18px 20px;
    }

    .event-details a {
        width: 100%;
    }

    .video-gallery {
        grid-template-columns: 1fr;
    }

    .event-idea {
        width: min(100% - 28px, 560px);
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 34px;
    }

    .event-idea div {
        align-items: flex-start;
    }

    .event-idea a {
        width: 100%;
    }
}

@media (max-width: 1050px) {
    .public-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .gallery-hero {
        min-height: 300px;
        padding: 54px 18px;
    }

    .public-gallery-section {
        width: min(100% - 28px, 720px);
        padding: 42px 0 54px;
    }

    .public-gallery-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .public-gallery-tabs button {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 9px 13px;
        font-size: 0.78rem;
    }

    .public-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
    }

    .public-gallery-card button {
        aspect-ratio: 1 / 0.86;
        border-radius: 7px;
    }

    .gallery-lightbox {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto minmax(0, 1fr) auto;
        padding: 10px;
    }

    .gallery-lightbox-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .gallery-lightbox-actions {
        justify-content: stretch;
    }

    .gallery-lightbox-actions button {
        flex: 1 1 110px;
    }

    .gallery-lightbox-stage {
        grid-column: 1 / -1;
    }

    .gallery-lightbox-stage img {
        max-height: 62vh;
    }

    .gallery-lightbox-nav {
        align-self: stretch;
        width: auto;
        height: 48px;
        font-size: 2.3rem;
    }

    .gallery-lightbox-nav.previous {
        grid-row: 3;
        grid-column: 1;
    }

    .gallery-lightbox-nav.next {
        grid-row: 3;
        grid-column: 2;
    }
}

@media (max-width: 430px) {
    .public-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .events-hero {
        min-height: 210px;
        padding: 30px 34px;
        align-items: center;
    }

    .events-hero-copy h1 {
        font-size: clamp(2.6rem, 9vw, 4.2rem);
    }

    .events-hero-copy span {
        width: min(520px, 100%);
        font-size: 0.95rem;
    }

    .events-list {
        width: min(100% - 42px, 760px);
        padding-top: 30px;
    }

    .event-cards {
        padding-left: 54px;
    }

    .event-cards::before {
        display: block;
        left: 20px;
    }

    .event-card::before {
        display: block;
        left: -47px;
        width: 20px;
        height: 20px;
        border-width: 5px;
    }

    .event-card::after {
        display: none;
    }

    .event-card {
        grid-template-columns: 92px minmax(210px, 0.86fr) minmax(260px, 1fr);
        min-height: 190px;
    }

    .event-date {
        min-height: 190px;
        padding: 14px 8px;
    }

    .event-date strong {
        font-size: 2.8rem;
    }

    .event-card img,
    .event-flyer-art {
        height: 100%;
        min-height: 190px;
    }

    .event-details {
        grid-column: auto;
        gap: 8px;
        padding: 18px 20px;
    }

    .event-details h3 {
        font-size: clamp(1.18rem, 3.2vw, 1.6rem);
    }

    .event-details > span,
    .event-details li {
        font-size: 0.82rem;
    }

    .event-details a {
        width: max-content;
    }

    .event-idea {
        width: min(100% - 42px, 760px);
        flex-direction: row;
        align-items: center;
        margin-bottom: 34px;
    }

    .event-idea a {
        width: auto;
    }
}

@media (max-width: 700px) and (orientation: landscape) {
    .events-hero {
        min-height: 180px;
        padding: 24px 28px;
    }

    .events-hero-copy h1 {
        font-size: clamp(2.25rem, 10vw, 3.2rem);
    }

    .events-hero-copy span {
        max-width: 420px;
        margin-top: 8px;
        font-size: 0.86rem;
    }

    .events-list {
        width: min(100% - 30px, 620px);
        padding-top: 24px;
    }

    .event-cards {
        padding-left: 42px;
    }

    .event-cards::before {
        left: 16px;
        width: 4px;
    }

    .event-card::before {
        left: -38px;
        width: 18px;
        height: 18px;
        border-width: 4px;
    }

    .event-card {
        grid-template-columns: 86px minmax(0, 1fr);
        min-height: 0;
    }

    .event-date {
        min-height: 128px;
        padding: 12px 8px;
    }

    .event-date strong {
        font-size: 2.4rem;
    }

    .event-card img,
    .event-flyer-art {
        height: 128px;
        min-height: 128px;
    }

    .event-details {
        grid-column: 1 / -1;
        padding: 18px;
    }

    .event-details h3 {
        font-size: clamp(1.16rem, 5vw, 1.45rem);
    }

    .event-details a {
        width: 100%;
    }

    .event-idea {
        width: min(100% - 30px, 620px);
        flex-direction: column;
        align-items: stretch;
    }

    .event-idea a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .motion-track {
        animation: none;
        transform: none;
    }
}

.announcement-strip {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #ce1126;
    color: #fff;
    text-align: center;
}

.announcement-strip strong {
    color: #f2b705;
    text-transform: uppercase;
}

.executive-bio {
    display: block;
    margin: 10px auto 0;
    color: #2d2d2d;
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1.4;
}

body[data-admin-page] {
    background: #080908;
    color: #fff;
}

body[data-admin-page]::after {
    display: none;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        radial-gradient(circle at 15% 15%, rgba(0, 122, 61, 0.28), transparent 28%),
        radial-gradient(circle at 85% 80%, rgba(206, 17, 38, 0.28), transparent 30%),
        #050505;
}

.admin-login section {
    width: min(430px, 100%);
    padding: 34px;
    border: 1px solid rgba(242, 183, 5, 0.32);
    border-radius: 10px;
    background: rgba(8, 9, 8, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

.admin-login img {
    width: 86px;
    margin: 0 auto 12px;
}

.admin-login p,
.admin-panel-head p,
.admin-topbar p {
    color: #f2b705;
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.admin-login h1 {
    margin: 8px 0 18px;
    font-size: 2.4rem;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    background: #0b0d0b;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    align-content: start;
    gap: 26px;
    padding: 26px 18px;
    background: #000;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px;
}

.admin-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.admin-brand span {
    display: grid;
    line-height: 1.05;
}

.admin-brand strong {
    font-size: 1.25rem;
    font-weight: 950;
}

.admin-brand small {
    color: #f2b705;
    font-weight: 850;
}

.admin-sidebar nav {
    display: grid;
    gap: 8px;
}

.admin-sidebar a,
.admin-sidebar button,
.admin-topbar button,
.admin-panel-head button,
.admin-actions button,
.admin-table button,
.admin-form button {
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-sidebar nav a,
.admin-sidebar nav button {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: transparent;
    color: #fff;
    text-align: left;
}

.admin-sidebar nav a[aria-current="page"],
.admin-sidebar nav a:hover {
    background: #063b27;
    color: #f2b705;
}

.admin-sidebar nav button {
    margin-top: 16px;
    background: #ce1126;
    color: #fff;
}

.admin-main {
    min-width: 0;
    padding: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(242, 183, 5, 0.08), transparent 30%),
        linear-gradient(180deg, #0b0d0b, #060706 72%);
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.admin-topbar h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-topbar button,
.admin-panel-head button,
.admin-actions button,
.admin-form button {
    padding: 10px 18px;
    background: linear-gradient(180deg, #f2b705, #d99b00);
    color: #050505;
}

.admin-message {
    min-height: 0;
    margin: 0 0 14px;
    padding: 0;
    color: #fff;
    font-weight: 800;
}

.admin-message.success,
.admin-message.error {
    min-height: 42px;
    display: grid;
    align-items: center;
    padding: 10px 14px;
    border-radius: 6px;
}

.admin-message.success {
    background: #063b27;
}

.admin-message.error {
    background: #ce1126;
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.admin-welcome,
.admin-cards article,
.admin-panel {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: #111411;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.admin-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 16px;
    padding: 26px;
    background:
        linear-gradient(110deg, rgba(6, 59, 39, 0.96), rgba(5, 5, 5, 0.96)),
        #063b27;
}

.admin-welcome p,
.admin-seed-panel > p,
.admin-dashboard-grid .admin-panel > p {
    margin-bottom: 8px;
    color: #f2b705;
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.admin-welcome h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 0.98;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-welcome span {
    display: block;
    max-width: 760px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.admin-welcome a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 6px;
    background: #f2b705;
    color: #050505;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-cards article {
    padding: 24px;
}

.admin-cards span {
    color: #f2b705;
    font-size: 3rem;
    line-height: 1;
    font-weight: 950;
}

.admin-cards p {
    margin-top: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-panel {
    overflow: hidden;
    padding: 22px;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 16px;
}

.admin-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-panel h2,
.admin-panel-head h2 {
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-weight: 950;
    text-transform: uppercase;
}

.admin-form {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.admin-form[hidden] {
    display: none;
}

.admin-form label {
    display: grid;
    gap: 6px;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-form-section {
    margin-top: 10px;
    padding: 12px 14px;
    border-left: 4px solid #f2b705;
    border-radius: 6px;
    background: rgba(242, 183, 5, 0.08);
}

.admin-form-section:first-child {
    margin-top: 0;
}

.admin-form-section h3 {
    color: #f2b705;
    font-size: 0.9rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: #050505;
    color: #fff;
    font: inherit;
}

.admin-form textarea {
    min-height: 118px;
    resize: vertical;
}

.admin-check {
    display: flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
}

.admin-check input {
    width: 18px;
    min-height: 18px;
}

.admin-help {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.55;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-quick-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.admin-quick-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: #050505;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-quick-links a:hover {
    border-color: rgba(242, 183, 5, 0.58);
    color: #f2b705;
}

.admin-spotlight-list {
    display: grid;
    gap: 12px;
}

.admin-spotlight-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #050505;
}

.admin-spotlight-card img {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
    background: #063b27;
}

.admin-spotlight-card h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 950;
}

.admin-spotlight-card p {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.45;
}

.admin-spotlight-card nav {
    display: flex;
    gap: 8px;
}

.admin-spotlight-card button {
    min-height: 34px;
    padding: 7px 11px;
    border: 0;
    border-radius: 6px;
    background: #063b27;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-spotlight-card button[data-delete-spotlight] {
    background: #ce1126;
}

.admin-actions button[data-cancel],
.admin-table button[data-delete] {
    background: #ce1126;
    color: #fff;
}

.admin-list {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.admin-table th,
.admin-table td {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.admin-table th {
    color: #f2b705;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-table td {
    color: #fff;
    font-weight: 750;
}

.admin-table td:last-child {
    display: flex;
    gap: 8px;
}

.admin-table button {
    min-height: 34px;
    padding: 7px 11px;
    background: #063b27;
    color: #fff;
    font-size: 0.78rem;
}

.admin-empty {
    padding: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

body[data-admin-page] {
    background: #000;
}

.admin-shell {
    grid-template-columns: 318px minmax(0, 1fr);
    background: #000;
}

.admin-sidebar {
    position: sticky;
    overflow: hidden;
    padding: 24px 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
        linear-gradient(180deg, #121923, #07100c 72%, #050505);
    border-right: 0;
}

.admin-sidebar::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, #007a3d 0 42%, #ce1126 42% 56%, #f2b705 56% 100%);
    content: "";
}

.admin-brand {
    margin-bottom: 8px;
    padding: 0 8px 18px;
}

.admin-brand img {
    width: 68px;
    height: 68px;
}

.admin-brand strong {
    color: #fff;
    font-size: 1.42rem;
    letter-spacing: 0.02em;
}

.admin-brand small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.admin-nav-group {
    display: block;
    margin: 20px 10px 6px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-sidebar nav {
    gap: 4px;
}

.admin-sidebar nav a,
.admin-sidebar nav button {
    min-height: 44px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 750;
    text-transform: none;
}

.admin-sidebar nav a {
    gap: 11px;
}

.admin-sidebar nav a[aria-current="page"],
.admin-sidebar nav a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #19a35a;
}

.admin-nav-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.admin-sidebar nav a[aria-current="page"] .admin-nav-icon,
.admin-sidebar nav a:hover .admin-nav-icon {
    color: #19a35a;
}

.admin-sidebar nav button {
    margin-top: 18px;
    background: rgba(206, 17, 38, 0.9);
    color: #fff;
}

.admin-view-site {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, #198754, #0b5c35);
    color: #fff;
    font-weight: 900;
}

.admin-main {
    padding: 0;
    background: #050505;
}

.admin-topbar {
    min-height: 76px;
    margin: 0;
    padding: 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a0a;
}

.admin-menu-toggle {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
}

.admin-menu-toggle .admin-nav-icon {
    width: 20px;
    height: 20px;
}

.admin-topbar h1 {
    font-size: 1.45rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.admin-user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.admin-user span {
    display: grid;
}

.admin-user strong {
    color: #fff;
    font-size: 0.98rem;
}

.admin-user small {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 700;
}

.admin-notification-wrap {
    position: relative;
    margin-left: auto;
}

.admin-notification {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.admin-notification .admin-nav-icon {
    width: 21px;
    height: 21px;
}

.admin-notification em {
    position: absolute;
    top: 1px;
    right: 1px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ce1126;
    color: #fff;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 950;
}

.admin-notification-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 20;
    width: 260px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #080808;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

.admin-notification-menu[hidden] {
    display: none;
}

.admin-notification-menu strong {
    color: #f2b705;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-notification-menu a {
    padding: 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.admin-notification-menu a:hover {
    background: rgba(25, 163, 90, 0.14);
    color: #19a35a;
}

[data-admin-content] {
    padding: 30px 36px 44px;
}

.admin-main > .motion-banner {
    top: 0;
    z-index: 18;
    flex: 0 0 auto;
}

.admin-dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(6, 59, 39, 0.86), rgba(5, 5, 5, 0.96)),
        #080b09;
}

.admin-dashboard-hero p {
    color: #f2b705;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.admin-dashboard-hero h2 {
    margin-top: 4px;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.3rem);
    line-height: 1.05;
    font-weight: 950;
}

.admin-dashboard-hero span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 700;
}

.admin-dashboard-hero a,
.admin-panel-head a {
    flex: 0 0 auto;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(242, 183, 5, 0.14);
    color: #f2b705;
    font-size: 0.82rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-dashboard-hero a:hover,
.admin-panel-head a:hover,
.admin-action-grid a:hover {
    background: #f2b705;
    color: #050505;
}

.admin-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}

.admin-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 110px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
        #101210;
}

.admin-stat-card i {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    font-style: normal;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.admin-stat-card i svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

.admin-stat-card > div {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.admin-stat-card.green i {
    background: linear-gradient(180deg, #24c66b, #0f8d48);
}

.admin-stat-card.gold i {
    background: linear-gradient(180deg, #f2b705, #d98300);
}

.admin-stat-card.red i {
    background: linear-gradient(180deg, #ce1126, #8e0b19);
}

.admin-stat-card.blue i {
    background: linear-gradient(180deg, #2388ff, #115cc8);
}

.admin-stat-card p,
.admin-stat-card small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.admin-stat-card span {
    color: #fff;
    font-size: 2.15rem;
    line-height: 1.05;
    font-weight: 950;
}

.admin-stat-card small {
    color: #19a35a;
    letter-spacing: 0;
    text-transform: none;
}

@media (max-width: 1280px) {
    .admin-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.admin-panel {
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%),
        #101010;
}

.admin-dashboard-grid-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.admin-dashboard-list {
    display: grid;
}

.admin-dashboard-list a {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 4px 14px;
    align-items: center;
    min-height: 78px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-dashboard-list a:first-child {
    border-top: 0;
}

.admin-list-thumb {
    grid-column: 1;
    grid-row: span 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(25, 163, 90, 0.18);
    color: #19a35a;
    font-weight: 950;
}

.admin-list-thumb.announcement {
    background: rgba(242, 183, 5, 0.16);
    color: #f2b705;
}

.admin-dashboard-list strong {
    grid-column: 2;
    grid-row: 1;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
}

.admin-dashboard-list small {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    color: rgba(255, 255, 255, 0.62);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.admin-dashboard-list em {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(25, 163, 90, 0.16);
    color: #19a35a;
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 900;
    text-transform: capitalize;
}

.admin-dashboard-grid .admin-panel-head h2 {
    font-size: clamp(1.45rem, 2.5vw, 1.95rem);
    line-height: 1.05;
}

.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.admin-action-grid a {
    display: flex;
    min-height: 74px;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
        #080808;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    text-align: left;
}

.admin-action-grid .admin-nav-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 8px;
    background: rgba(25, 163, 90, 0.18);
    color: #19a35a;
}

.admin-action-grid span {
    min-width: 0;
    line-height: 1.2;
}

.admin-events-workspace {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 22px;
    min-height: calc(100vh - 150px);
}

.admin-events-list-panel,
.admin-events-editor-panel {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #090909;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.admin-events-list-panel {
    padding: 20px;
}

.admin-event-filters {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 128px;
    gap: 10px;
    margin-bottom: 14px;
}

.admin-event-filters label,
.admin-event-form label {
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-event-filters span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.admin-event-filters input,
.admin-event-filters select,
.admin-event-form input,
.admin-event-form select,
.admin-event-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 7px;
    background: #050505;
    color: #fff;
    font: inherit;
    font-weight: 700;
}

.admin-events-list {
    display: grid;
    gap: 10px;
}

.admin-event-list-card {
    width: 100%;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #050505;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.admin-event-list-card:hover,
.admin-event-list-card.is-active {
    border-color: rgba(25, 163, 90, 0.75);
    background: rgba(25, 163, 90, 0.12);
}

.admin-event-list-card img {
    width: 74px;
    height: 58px;
    border-radius: 7px;
    object-fit: cover;
    background: #063b27;
}

.admin-event-list-card span {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.admin-event-list-card strong {
    overflow: hidden;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-event-list-card small {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-event-status {
    align-self: start;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(25, 163, 90, 0.16);
    color: #19a35a;
    font-size: 0.66rem;
    font-weight: 950;
    text-transform: capitalize;
}

.admin-event-status.past {
    background: rgba(242, 183, 5, 0.16);
    color: #f2b705;
}

.admin-events-editor-panel {
    overflow: hidden;
}

.admin-events-editor-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(90deg, rgba(0, 122, 61, 0.2), transparent 35%),
        #0d0d0d;
}

.admin-events-editor-head p {
    color: #f2b705;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.admin-events-editor-head h2 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 950;
}

.admin-events-editor-head > div:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.admin-events-editor-head button,
.admin-event-actions button {
    min-height: 38px;
    padding: 9px 13px;
    border: 0;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-events-editor-head button[data-new-event],
.admin-event-actions button[data-publish] {
    background: linear-gradient(180deg, #19a35a, #0b6f3c);
}

.admin-events-editor-head button[data-event-delete] {
    background: rgba(206, 17, 38, 0.18);
    color: #ff7784;
}

.admin-event-form {
    margin: 0;
    padding: 22px;
}

.admin-event-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 26px;
}

.admin-event-form-main,
.admin-event-form-side {
    display: grid;
    align-content: start;
    gap: 14px;
}

.admin-two-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.admin-event-form textarea {
    min-height: 112px;
}

.admin-event-form-side img {
    width: 100%;
    aspect-ratio: 16 / 8.4;
    border-radius: 8px;
    border: 1px solid rgba(242, 183, 5, 0.24);
    object-fit: cover;
    background: #063b27;
}

.admin-event-form-side small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: none;
}

.admin-switch {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-switch input {
    width: 42px;
    min-height: 24px;
    accent-color: #19a35a;
}

.admin-event-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-event-actions button[type="submit"]:not([data-publish]) {
    background: linear-gradient(180deg, #f2b705, #d99b00);
    color: #050505;
}

.admin-event-actions button[data-event-cancel] {
    margin-right: auto;
}

body[data-admin-page="dashboard"] {
    background: #000;
}

body[data-admin-page="dashboard"] .admin-main {
    background: #050505;
}

body[data-admin-page="dashboard"] .admin-topbar {
    min-height: 76px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a0a;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

body[data-admin-page="dashboard"] .admin-topbar > div {
    display: none;
}

body[data-admin-page="dashboard"] .admin-menu-toggle {
    background: transparent;
    color: #fff;
}

body[data-admin-page="dashboard"] .admin-user strong {
    color: #fff;
}

body[data-admin-page="dashboard"] .admin-user small {
    color: rgba(255, 255, 255, 0.62);
}

body[data-admin-page="dashboard"] .admin-topbar > button[data-logout],
.admin-sidebar nav button[data-logout] {
    display: none;
}

body[data-admin-page="dashboard"] .admin-dashboard-page {
    min-height: calc(100vh - 76px);
    padding: 30px 36px 38px;
    background:
        radial-gradient(circle at 14% 0%, rgba(25, 163, 90, 0.16), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(242, 183, 5, 0.08), transparent 24%),
        #050505;
    color: #fff;
}

.admin-dashboard-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-dashboard-welcome h2 {
    color: #fff;
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    line-height: 1.1;
    font-weight: 950;
}

.admin-dashboard-welcome span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 750;
}

.admin-date-range {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #0d0d0d;
    color: #fff;
    font: inherit;
    font-weight: 850;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.admin-date-range .admin-nav-icon {
    color: #19a35a;
}

body[data-admin-page="dashboard"] .admin-cards {
    margin-bottom: 22px;
}

body[data-admin-page="dashboard"] .admin-stat-card,
body[data-admin-page="dashboard"] .admin-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
        #101010;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

body[data-admin-page="dashboard"] .admin-stat-card p {
    color: rgba(255, 255, 255, 0.68);
}

body[data-admin-page="dashboard"] .admin-stat-card span,
body[data-admin-page="dashboard"] .admin-panel h2,
body[data-admin-page="dashboard"] .admin-dashboard-list strong {
    color: #fff;
}

body[data-admin-page="dashboard"] .admin-stat-card.gold small {
    color: #d98300;
}

body[data-admin-page="dashboard"] .admin-stat-card.purple i {
    background: linear-gradient(180deg, #9b5cf6, #6d28d9);
}

body[data-admin-page="dashboard"] .admin-stat-card.purple small {
    color: #7c3aed;
}

body[data-admin-page="dashboard"] .admin-panel-head {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-admin-page="dashboard"] .admin-panel-head h2 {
    font-size: 1.1rem;
}

body[data-admin-page="dashboard"] .admin-panel-head a {
    background: transparent;
    color: #0b72e7;
    text-transform: none;
}

body[data-admin-page="dashboard"] .admin-dashboard-list a {
    border-top-color: rgba(255, 255, 255, 0.09);
}

body[data-admin-page="dashboard"] .admin-dashboard-list small {
    color: rgba(255, 255, 255, 0.62);
}

body[data-admin-page="dashboard"] .admin-dashboard-list em {
    background: rgba(25, 163, 90, 0.12);
    color: #0f8d48;
}

body[data-admin-page="dashboard"] .admin-list-thumb {
    background: rgba(25, 163, 90, 0.14);
}

body[data-admin-page="dashboard"] .admin-list-thumb.event-photo {
    overflow: hidden;
    background: #063b27;
}

body[data-admin-page="dashboard"] .admin-list-thumb.event-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body[data-admin-page="dashboard"] .admin-list-thumb svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

body[data-admin-page="dashboard"] .admin-list-thumb.announcement {
    background: rgba(242, 183, 5, 0.16);
}

body[data-admin-page="dashboard"] .admin-list-thumb.activity {
    background: rgba(35, 136, 255, 0.12);
    color: #2388ff;
}

body[data-admin-page="dashboard"] .admin-action-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

body[data-admin-page="dashboard"] .admin-action-grid a {
    min-height: 98px;
    flex-direction: column;
    justify-content: center;
    border-color: rgba(255, 255, 255, 0.12);
    background: #080808;
    color: #fff;
    text-align: center;
}

body[data-admin-page="dashboard"] .admin-site-overview > div:last-child {
    display: grid;
}

body[data-admin-page="dashboard"] .admin-site-overview p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

body[data-admin-page="dashboard"] .admin-site-overview p:first-child {
    border-top: 0;
}

body[data-admin-page="dashboard"] .admin-site-overview span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body[data-admin-page="dashboard"] .admin-site-overview .admin-nav-icon {
    width: 19px;
    height: 19px;
    color: #19a35a;
}

body[data-admin-page="dashboard"] .admin-site-overview strong {
    color: #fff;
    font-weight: 950;
}

body[data-admin-page="dashboard"] .admin-seed-panel {
    align-content: start;
}

body[data-admin-page="dashboard"] .admin-seed-panel .admin-help {
    color: rgba(255, 255, 255, 0.62);
}

.admin-media-manager {
    display: grid;
    gap: 20px;
}

.admin-media-api-note {
    min-height: 40px;
    display: grid;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(242, 183, 5, 0.2);
    border-radius: 8px;
    background: rgba(242, 183, 5, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    font-weight: 800;
}

.admin-media-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-media-panel {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background:
        radial-gradient(circle at 100% 0%, rgba(242, 183, 5, 0.08), transparent 34%),
        #090909;
}

.admin-media-panel textarea {
    min-height: 138px;
}

.admin-media-tools {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #050505;
}

.admin-media-tools label {
    margin: 0;
}

.admin-media-tools input,
.admin-media-tools select {
    width: 100%;
    min-height: 40px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 7px;
    background: #000;
    color: #fff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-media-tools input[type="file"] {
    padding: 8px;
}

.admin-media-tools button {
    min-height: 40px;
    padding: 9px 12px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(180deg, #19a35a, #0b6f3c);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-media-tools button[data-add-existing-media] {
    background: linear-gradient(180deg, #f2b705, #d99b00);
    color: #050505;
}

.admin-media-panel small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: none;
}

.admin-media-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.admin-media-preview article {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #050505;
}

.admin-media-preview img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #063b27;
}

.admin-media-preview span {
    display: block;
    overflow: hidden;
    padding: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.72rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-media-form > .admin-actions {
    grid-column: 1 / -1;
}

.admin-gallery-manager {
    display: grid;
    gap: 20px;
}

.admin-gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 122, 61, 0.22), transparent 34%),
        #090909;
}

.admin-gallery-head p,
.admin-gallery-toolbar p {
    color: #f2b705;
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.admin-gallery-head h2,
.admin-gallery-toolbar h2 {
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1;
    font-weight: 950;
}

.admin-gallery-head span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.66);
    font-weight: 750;
}

.admin-gallery-upload {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.admin-gallery-upload input {
    max-width: 260px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #050505;
    color: #fff;
    font: inherit;
    font-size: 0.82rem;
}

.admin-gallery-upload button {
    min-height: 42px;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #19a35a, #0b6f3c);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-upload-progress[hidden] {
    display: none;
}

.admin-upload-progress {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    border: 1px solid rgba(25, 163, 90, 0.24);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(25, 163, 90, 0.1), rgba(255, 255, 255, 0.02)),
        #070707;
}

.admin-upload-progress > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.admin-upload-progress p,
.admin-upload-progress strong,
.admin-upload-progress small {
    color: #fff;
}

.admin-upload-progress p {
    font-size: 0.88rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-upload-progress strong {
    color: #52d686;
    font-size: 1rem;
    font-weight: 950;
}

.admin-upload-progress small {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-upload-progress-track {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.admin-upload-progress-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #19a35a, #f2b705);
    transition: width 0.18s ease;
}

.admin-upload-progress[data-state="complete"] {
    border-color: rgba(25, 163, 90, 0.58);
}

.admin-upload-progress[data-state="error"] {
    border-color: rgba(206, 17, 38, 0.58);
    background:
        linear-gradient(180deg, rgba(206, 17, 38, 0.12), rgba(255, 255, 255, 0.02)),
        #070707;
}

.admin-upload-progress[data-state="error"] strong {
    color: #ff7784;
}

.admin-upload-progress[data-state="error"] .admin-upload-progress-track span {
    background: #ce1126;
}

.admin-gallery-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-gallery-overview article {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 112px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #101010;
}

.admin-gallery-overview i {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(25, 163, 90, 0.18);
    color: #19a35a;
    font-style: normal;
    font-weight: 950;
}

.admin-gallery-overview article:nth-child(2) i {
    background: rgba(242, 183, 5, 0.16);
    color: #f2b705;
}

.admin-gallery-overview article:nth-child(3) i {
    background: rgba(206, 17, 38, 0.16);
    color: #ff7784;
}

.admin-gallery-overview article:nth-child(4) i {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.admin-gallery-overview strong {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 950;
}

.admin-gallery-overview span,
.admin-gallery-overview small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 750;
}

.admin-gallery-layout {
    display: grid;
    grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
    gap: 18px;
}

.admin-gallery-albums,
.admin-gallery-photos-panel {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #090909;
}

.admin-gallery-albums > div:last-child {
    display: grid;
    gap: 10px;
}

.admin-gallery-album-builder {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 12px;
    border: 1px solid rgba(242, 183, 5, 0.18);
    border-radius: 8px;
    background: #050505;
}

.admin-gallery-album-builder label {
    display: grid;
    gap: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-gallery-album-builder input {
    width: 100%;
    min-height: 40px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 7px;
    background: #000;
    color: #fff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-gallery-album-builder button {
    min-height: 40px;
    padding: 9px 12px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(180deg, #19a35a, #0b6f3c);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-gallery-album-builder button[data-gallery-delete-album] {
    background: rgba(206, 17, 38, 0.86);
}

.admin-gallery-album-builder small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.45;
}

.admin-gallery-album {
    width: 100%;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #050505;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.admin-gallery-album.is-active,
.admin-gallery-album:hover {
    border-color: rgba(25, 163, 90, 0.75);
    background: rgba(25, 163, 90, 0.12);
}

.admin-gallery-album span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(242, 183, 5, 0.14);
    color: #f2b705;
    font-weight: 950;
}

.admin-gallery-album strong {
    overflow: hidden;
    font-size: 0.92rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-gallery-album em {
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 950;
}

.admin-gallery-toolbar {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 260px) minmax(150px, 190px) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 14px;
}

.admin-gallery-toolbar label {
    display: grid;
    gap: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-gallery-toolbar input,
.admin-gallery-toolbar select {
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #050505;
    color: #fff;
    font: inherit;
    font-weight: 700;
}

.admin-gallery-actions {
    display: flex;
    gap: 8px;
}

.admin-gallery-toolbar button,
.admin-gallery-selection-bar button {
    min-height: 42px;
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
    background: rgba(242, 183, 5, 0.14);
    color: #f2b705;
    cursor: pointer;
    font: inherit;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-gallery-selection-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #050505;
}

.admin-gallery-selection-bar.has-selection {
    border-color: rgba(242, 183, 5, 0.36);
    background: rgba(242, 183, 5, 0.08);
}

.admin-gallery-selection-bar strong {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 950;
}

.admin-gallery-selection-bar span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 750;
}

.admin-gallery-selection-bar button {
    background: rgba(206, 17, 38, 0.9);
    color: #fff;
}

.admin-gallery-selection-bar button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-gallery-photo {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    background: #050505;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.admin-gallery-photo:hover,
.admin-gallery-photo.is-selected {
    border-color: rgba(25, 163, 90, 0.74);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.admin-gallery-photo label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.58);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.admin-gallery-photo input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.admin-gallery-photo label span {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.admin-gallery-photo input:checked + span {
    background: #19a35a;
    box-shadow: inset 0 0 0 3px #050505;
}

.admin-gallery-photo:has(input:checked) label,
.admin-gallery-photo.is-selected label {
    border-color: #19a35a;
    background: rgba(25, 163, 90, 0.22);
}

.admin-gallery-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #063b27;
}

.admin-gallery-photo div {
    padding: 10px;
}

.admin-gallery-photo strong,
.admin-gallery-photo span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-gallery-photo strong {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
}

.admin-gallery-photo span,
.admin-gallery-count {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 750;
}

.admin-leadership-manager {
    display: grid;
    gap: 20px;
}

.admin-leadership-manager > .admin-gallery-head > button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #19a35a, #0b6f3c);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-leadership-layout {
    display: grid;
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
    gap: 18px;
}

.admin-leadership-list-panel,
.admin-leadership-editor-panel {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #090909;
}

.admin-leadership-editor-panel {
    overflow: hidden;
    padding: 0;
}

.admin-leadership-list {
    display: grid;
    gap: 10px;
}

.admin-leader-list-card {
    width: 100%;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #050505;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.admin-leader-list-card:hover,
.admin-leader-list-card.is-active {
    border-color: rgba(25, 163, 90, 0.75);
    background: rgba(25, 163, 90, 0.12);
}

.admin-crop-thumb {
    width: 58px;
    height: 58px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #063b27;
}

.admin-crop-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
    transform: scale(var(--photo-crop-zoom, 1));
    transform-origin: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
}

.admin-leader-list-text {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.admin-leader-list-text strong,
.admin-leader-list-text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-leader-list-text strong {
    color: #fff;
    font-size: 0.94rem;
    font-weight: 950;
}

.admin-leader-list-text small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 750;
}

.admin-leader-form {
    margin: 0;
    padding: 22px;
}

.admin-leader-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 26px;
}

.admin-leader-form-main,
.admin-leader-form-side {
    display: grid;
    align-content: start;
    gap: 14px;
}

.admin-leader-form label {
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-leader-form input,
.admin-leader-form select,
.admin-leader-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 7px;
    background: #050505;
    color: #fff;
    font: inherit;
    font-weight: 700;
}

.admin-leader-form textarea {
    min-height: 160px;
    resize: vertical;
}

.admin-social-editor {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #050505;
}

.admin-social-editor p {
    color: #f2b705;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-social-icons button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #000;
    cursor: pointer;
}

.admin-social-icons button.is-active,
.admin-social-icons button:hover {
    border-color: rgba(25, 163, 90, 0.76);
    background: rgba(25, 163, 90, 0.14);
    box-shadow: 0 0 0 3px rgba(25, 163, 90, 0.12);
}

.admin-social-icon {
    width: 22px;
    height: 22px;
    display: block;
    fill: #fff;
}

.admin-social-fields {
    display: grid;
    gap: 10px;
}

.admin-social-fields label {
    display: none;
}

.admin-social-fields label.is-open,
.admin-social-fields label.has-value {
    display: grid;
}

.admin-profile-photo-card,
.admin-spotlight-photo-card {
    display: grid;
    gap: 9px;
    justify-items: center;
    overflow: hidden;
}

.admin-profile-photo-card p,
.admin-spotlight-photo-card p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-profile-photo-frame {
    width: min(320px, 100%);
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(242, 183, 5, 0.24);
    border-radius: 50%;
    background: #063b27;
}

.admin-leader-photo-frame {
    width: min(320px, 100%);
    aspect-ratio: 1 / 1.42;
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(6, 75, 51, 0.95), rgba(242, 183, 5, 0.86)),
        #064b33;
}

.admin-profile-photo-card img,
.admin-profile-photo-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
    transform: scale(var(--photo-crop-zoom, 1));
    transform-origin: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
}

.admin-leader-form-side > label img {
    width: min(320px, 100%);
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(242, 183, 5, 0.24);
    border-radius: 50%;
    object-fit: cover;
    object-position: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
    transform: scale(var(--photo-crop-zoom, 1));
    transform-origin: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
    background: #063b27;
}

.admin-profile-photo-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}

.admin-profile-photo-actions button {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: linear-gradient(180deg, #19a35a, #0b6f3c);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-profile-photo-actions button[data-leader-photo-crop],
.admin-profile-photo-actions button[data-spotlight-photo-crop] {
    border-color: rgba(242, 183, 5, 0.32);
    background: rgba(242, 183, 5, 0.12);
    color: #f2b705;
}

.admin-profile-photo-actions button:last-child {
    border-color: rgba(206, 17, 38, 0.35);
    background: rgba(206, 17, 38, 0.12);
    color: #ff8a95;
}

.admin-profile-photo-tip {
    margin-top: -2px;
    padding: 10px 12px;
    border: 1px solid rgba(242, 183, 5, 0.2);
    border-radius: 8px;
    background: rgba(242, 183, 5, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.45;
}

.admin-leader-form-side .admin-media-tools {
    grid-template-columns: 1fr;
}

.admin-leadership-overview article:nth-child(1) i {
    background: rgba(25, 163, 90, 0.18);
    color: #19a35a;
}

.admin-leadership-overview article:nth-child(2) i {
    background: rgba(36, 136, 255, 0.16);
    color: #53a5ff;
}

.admin-leadership-overview article:nth-child(3) i {
    background: rgba(206, 17, 38, 0.16);
    color: #ff7784;
}

.admin-spotlight-manager {
    display: grid;
    gap: 20px;
}

.admin-spotlight-manager > .admin-gallery-head > button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #19a35a, #0b6f3c);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-spotlight-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-spotlight-list-card .admin-crop-thumb {
    border-radius: 50%;
}

.admin-spotlight-tabs {
    display: flex;
    gap: 8px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-spotlight-tabs button {
    position: relative;
    padding: 14px 2px 13px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    cursor: default;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-spotlight-tabs button.is-active {
    color: #19a35a;
}

.admin-spotlight-tabs button.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: #19a35a;
}

.admin-spotlight-photo-tools {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.admin-spotlight-photo-tools label:last-of-type,
.admin-spotlight-photo-tools button[data-spotlight-photo-select] {
    grid-column: 1 / -1;
}

.admin-spotlight-upload-button input {
    margin-top: 7px;
}

.admin-spotlight-photo-tools button[data-spotlight-photo-remove] {
    border-color: rgba(206, 17, 38, 0.35);
    background: rgba(206, 17, 38, 0.12);
    color: #ff8a95;
}

.admin-photo-modal[hidden] {
    display: none;
}

.admin-photo-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-photo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(2px);
}

.admin-photo-dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: min(860px, calc(100vh - 48px));
    overflow: auto;
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: #fff;
    color: #111827;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.admin-photo-dialog header,
.admin-photo-dialog footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.admin-photo-dialog h2 {
    color: #111827;
    font-size: 1.35rem;
    font-weight: 950;
}

.admin-photo-dialog header button,
.admin-photo-dialog footer button {
    min-height: 40px;
    padding: 9px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.admin-photo-dialog header button {
    width: 38px;
    padding: 0;
    border: 0;
    font-size: 1.45rem;
}

.admin-photo-dialog footer {
    justify-content: flex-end;
}

.admin-photo-dialog footer button:last-child {
    border-color: transparent;
    background: linear-gradient(180deg, #19a35a, #0b6f3c);
    color: #fff;
}

.admin-photo-dialog footer button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.admin-photo-tabs {
    display: flex;
    gap: 22px;
    border-bottom: 1px solid #e2e8f0;
}

.admin-photo-tabs button {
    position: relative;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: #475569;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.admin-photo-tabs button.is-active {
    color: #19a35a;
}

.admin-photo-tabs button.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: #19a35a;
}

.admin-photo-tab-panel {
    display: none;
}

.admin-photo-tab-panel.is-active {
    display: block;
}

.admin-photo-dropzone {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 9px;
    padding: 44px 20px;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    text-align: center;
    cursor: pointer;
}

.admin-photo-dropzone.is-dragging {
    border-color: #19a35a;
    background: rgba(25, 163, 90, 0.08);
}

.admin-photo-dropzone:focus-within {
    border-color: #19a35a;
    box-shadow: 0 0 0 3px rgba(25, 163, 90, 0.16);
}

.admin-photo-dropzone input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.admin-photo-dropzone span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 3px solid #19a35a;
    color: #19a35a;
    font-size: 1.8rem;
    font-weight: 950;
}

.admin-photo-dropzone strong {
    color: #111827;
    font-size: 1.05rem;
    font-weight: 950;
}

.admin-photo-dropzone small,
.admin-photo-dropzone em {
    color: #64748b;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 750;
}

.admin-photo-dropzone button {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    min-height: 40px;
    padding: 9px 18px;
    border: 1px solid #19a35a;
    border-radius: 8px;
    background: #fff;
    color: #0f8d48;
    cursor: pointer;
    font: inherit;
    font-weight: 950;
}

.admin-photo-section-title {
    margin-bottom: 12px;
    color: #111827;
    font-weight: 950;
}

.admin-photo-recent {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.admin-photo-recent button {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #e2e8f0;
    cursor: pointer;
}

.admin-photo-recent button.is-selected {
    border-color: #19a35a;
    box-shadow: 0 0 0 3px rgba(25, 163, 90, 0.18);
}

.admin-photo-recent button.is-selected::after {
    content: "Selected";
    position: absolute;
    top: 6px;
    right: 6px;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #19a35a;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-photo-recent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-photo-selection {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(25, 163, 90, 0.24);
    border-radius: 10px;
    background: rgba(25, 163, 90, 0.07);
}

.admin-photo-selection[hidden] {
    display: none;
}

.admin-photo-selection img {
    width: 82px;
    height: 82px;
    border-radius: 8px;
    object-fit: cover;
    background: #e2e8f0;
}

.admin-photo-selection div {
    min-width: 0;
}

.admin-photo-selection p {
    overflow: hidden;
    color: #111827;
    font-size: 0.94rem;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-photo-selection span {
    display: block;
    margin-top: 4px;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 750;
    line-height: 1.35;
}

.admin-photo-selection button {
    min-height: 36px;
    padding: 8px 11px;
    border: 1px solid rgba(206, 17, 38, 0.28);
    border-radius: 8px;
    background: #fff;
    color: #ce1126;
    cursor: pointer;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-photo-crop {
    display: grid;
    gap: 14px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
}

.admin-photo-crop[hidden] {
    display: none;
}

.admin-photo-crop > div:first-child p {
    color: #111827;
    font-weight: 950;
}

.admin-photo-crop > div:first-child span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 0.86rem;
    font-weight: 750;
}

.admin-photo-crop-stage {
    width: min(280px, 100%);
    aspect-ratio: 1 / 1;
    justify-self: center;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 50%;
    background:
        linear-gradient(45deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(-45deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e2e8f0 75%),
        linear-gradient(-45deg, transparent 75%, #e2e8f0 75%),
        #f8fafc;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
    background-size: 20px 20px;
}

.admin-photo-crop-stage[data-crop-shape="portrait"] {
    width: min(220px, 100%);
    aspect-ratio: 1 / 1.42;
    border-radius: 8px;
}

.admin-photo-crop-stage[data-crop-shape="circle"] {
    border-radius: 50%;
}

.admin-photo-crop-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
    transform: scale(var(--photo-crop-zoom, 1));
    transform-origin: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
}

.admin-photo-crop-controls {
    display: grid;
    gap: 12px;
}

.admin-photo-crop-controls label {
    display: grid;
    gap: 7px;
    color: #111827;
    font-weight: 850;
}

.admin-photo-crop-controls label span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.86rem;
}

.admin-photo-crop-controls output {
    color: #0f8d48;
    font-weight: 950;
}

.admin-photo-crop-controls input[type="range"] {
    width: 100%;
    accent-color: #19a35a;
}

.admin-photo-crop > button {
    justify-self: start;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 950;
}

.admin-photo-progress {
    margin: 0;
    background: #f8fafc;
    color: #111827;
}

.admin-photo-progress .admin-upload-progress-track {
    background: #e2e8f0;
}

.admin-photo-status {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 800;
}

.admin-photo-status[data-state="success"] {
    border-color: rgba(25, 163, 90, 0.28);
    background: rgba(25, 163, 90, 0.08);
    color: #0b6f3c;
}

.admin-photo-status[data-state="error"] {
    border-color: rgba(206, 17, 38, 0.28);
    background: rgba(206, 17, 38, 0.08);
    color: #b10e20;
}

.admin-photo-tip {
    padding: 13px 14px;
    border-radius: 8px;
    background: #f8fafc;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 750;
}

.admin-spotlight-hide-check {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 10px !important;
    min-height: 42px;
    padding: 11px 12px;
    border: 1px solid rgba(242, 183, 5, 0.2);
    border-radius: 8px;
    background: rgba(242, 183, 5, 0.08);
    color: #f2b705 !important;
}

.admin-spotlight-hide-check input {
    width: 18px;
    min-height: 18px;
    accent-color: #19a35a;
}

.admin-spotlight-preview {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(242, 183, 5, 0.18);
    border-radius: 10px;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 122, 61, 0.18), transparent 34%),
        #050505;
}

.admin-spotlight-preview > p {
    color: #f2b705;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-spotlight-preview-card {
    width: min(280px, 100%);
    display: grid;
    justify-items: center;
    gap: 10px;
    min-height: 360px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, #f7f2ec, #fff);
    color: #050505;
    text-align: center;
}

.admin-spotlight-preview-photo {
    width: 172px;
    height: 172px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    background: #d8c6b8;
}

.admin-spotlight-preview-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
    transform: scale(var(--photo-crop-zoom, 1));
    transform-origin: var(--photo-crop-x, 50%) var(--photo-crop-y, 50%);
}

.admin-spotlight-preview-card p {
    color: #007a3d;
    font-size: 1.05rem;
    font-weight: 950;
}

.admin-spotlight-preview-card small {
    display: block;
    color: rgba(0, 0, 0, 0.62);
    font-size: 0.78rem;
    font-weight: 850;
}

.admin-spotlight-preview-card blockquote {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    color: #17412d;
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.45;
    text-align: left;
}

.admin-spotlight-preview-card blockquote span {
    color: #008f8c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.8rem;
    font-weight: 950;
    line-height: 0.78;
}

.is-admin-loading {
    cursor: progress;
}

@media (max-width: 980px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-main {
        padding: 0;
    }

    [data-admin-content] {
        padding: 24px;
    }

    .admin-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-welcome,
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-events-workspace,
    .admin-event-form-grid,
    .admin-media-form,
    .admin-gallery-layout,
    .admin-leadership-layout,
    .admin-leader-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-gallery-overview,
    .admin-spotlight-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-gallery-toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .admin-gallery-selection-bar {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .admin-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-events-list-panel,
    .admin-events-editor-panel {
        width: 100%;
    }

    .admin-welcome {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .admin-login {
        padding: 16px;
    }

    .admin-login section {
        padding: 24px 18px;
    }

    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }

    .admin-panel-head,
    .admin-events-editor-head {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-topbar {
        min-height: 0;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 14px 18px;
    }

    .admin-topbar > div {
        min-width: 0;
    }

    .admin-topbar h1 {
        font-size: 1.15rem;
    }

    .admin-user {
        width: 100%;
        margin-left: 0;
    }

    .admin-topbar button,
    .admin-panel-head button {
        width: auto;
    }

    [data-admin-content] {
        padding: 18px;
    }

    .admin-cards,
    .admin-action-grid {
        grid-template-columns: 1fr;
    }

    .admin-quick-links {
        grid-template-columns: 1fr;
    }

    .admin-spotlight-card {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .admin-gallery-toolbar {
        grid-template-columns: 1fr;
    }

    .admin-gallery-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .admin-gallery-actions button,
    .admin-gallery-selection-bar button {
        width: 100%;
    }

    .admin-spotlight-card nav {
        width: 100%;
        flex-wrap: wrap;
    }

    .admin-event-filters,
    .admin-two-fields,
    .admin-event-list-card,
    .admin-leader-list-card,
    .admin-gallery-head,
    .admin-gallery-toolbar,
    .admin-gallery-overview {
        grid-template-columns: 1fr;
    }

    .admin-gallery-head {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-gallery-upload {
        justify-content: stretch;
    }

    .admin-gallery-upload input,
    .admin-gallery-upload button {
        width: 100%;
        max-width: none;
    }

    .admin-event-list-card img {
        width: 100%;
        height: 150px;
    }

    .admin-crop-thumb {
        width: 58px;
        height: 58px;
    }

    .admin-event-status {
        justify-self: start;
    }

    .admin-events-editor-head > div:last-child,
    .admin-event-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .admin-media-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-media-tools {
        grid-template-columns: 1fr;
    }

    .admin-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-event-actions button[data-event-cancel] {
        margin-right: 0;
    }
}
