:root {
    --bg: #0d0714;
    --bg-deep: #08040d;
    --panel: #17101f;
    --panel-soft: #211429;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.7);
    --muted-soft: rgba(255, 255, 255, 0.52);
    --border: rgba(216, 180, 254, 0.18);
    --purple: #a855f7;
    --purple-light: #d8b4fe;
    --pink: #ec4899;
    --container: 1180px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --shadow:
        0 28px 80px
        rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family:
        "Rajdhani",
        sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(168, 85, 247, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(236, 72, 153, 0.11),
            transparent 28%
        ),
        var(--bg);
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-container {
    width:
        min(
            calc(100% - 40px),
            var(--container)
        );
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:
        rgba(8, 4, 13, 0.88);
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);
    backdrop-filter:
        blur(18px);
}

.site-header__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-brand {
    display: block;
    width: 210px;
}

.site-brand img {
    display: block;
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    text-decoration: none;
    transition:
        color .18s ease,
        background .18s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #fff;
    background:
        rgba(168, 85, 247, 0.14);
}

.site-nav-toggle {
    display: none;
}

/* HERO */

.hero,
.page-hero,
.profile-hero {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height:
        calc(
            100vh - 88px
        );
    display: flex;
    align-items: center;
    background:
        #100818
        url("/img/Banner2021-min.jpg")
        center / cover
        no-repeat;
}

.hero__backdrop,
.page-hero__backdrop,
.profile-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 4, 13, 0.96) 0%,
            rgba(13, 7, 20, 0.82) 48%,
            rgba(13, 7, 20, 0.58) 100%
        );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    padding:
        100px 0;
}

.eyebrow {
    margin:
        0 0 10px;
    color:
        var(--purple-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.profile-hero h1 {
    margin:
        0;
    color:
        #fff;
    line-height: .98;
    letter-spacing: -.04em;
}

.hero h1 {
    max-width: 800px;
    font-size:
        clamp(
            58px,
            9vw,
            118px
        );
}

.hero h1 span {
    color:
        var(--purple-light);
}

.hero__lead {
    max-width: 720px;
    margin:
        28px 0 0;
    color:
        rgba(255, 255, 255, 0.82);
    font-size:
        clamp(
            20px,
            2.5vw,
            28px
        );
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding:
        14px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.button:hover {
    transform:
        translateY(-2px);
}

.button--primary {
    background:
        linear-gradient(
            135deg,
            #7e22ce,
            #be185d
        );
    color: #fff;
    box-shadow:
        0 16px 40px
        rgba(126, 34, 206, 0.28);
}

.button--secondary {
    background:
        rgba(255, 255, 255, 0.08);
    border:
        1px solid
        rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* SECTIONS */

.site-section {
    padding:
        90px 0;
}

.site-section--muted {
    background:
        rgba(255, 255, 255, 0.025);
    border-top:
        1px solid
        rgba(255, 255, 255, 0.04);
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.04);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading h2,
.content-card h2,
.profile-cta h2,
.empty-state h1,
.empty-state h2 {
    margin:
        0 0 12px;
    color:
        #fff;
    font-size:
        clamp(
            36px,
            5vw,
            62px
        );
    line-height: 1.04;
    letter-spacing: -.03em;
}

.section-heading p,
.content-card p,
.profile-cta p,
.empty-state p {
    color:
        var(--muted);
}

.section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(280px, .8fr);
    align-items: end;
    gap: 40px;
}

.section-heading--split > p {
    margin:
        0;
}

/* FEATURES */

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

.feature-card {
    min-height: 260px;
    padding: 28px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(32, 18, 44, 0.96),
            rgba(14, 8, 22, 0.98)
        );
    box-shadow:
        var(--shadow);
}

.feature-card__number {
    display: block;
    margin-bottom: 46px;
    color:
        var(--purple-light);
    font-weight: 700;
}

.feature-card h3 {
    margin:
        0 0 10px;
    font-size: 28px;
}

.feature-card p {
    margin:
        0;
    color:
        var(--muted);
}

/* PAGE HERO */

.page-hero {
    min-height: 460px;
    display: flex;
    align-items: end;
    background:
        #100818
        url("/img/countdown-bg-team.jpg")
        center / cover
        no-repeat;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    padding:
        100px 0 70px;
}

.page-hero h1 {
    font-size:
        clamp(
            54px,
            8vw,
            96px
        );
}

.page-hero p:not(.eyebrow) {
    max-width: 700px;
    margin:
        18px 0 0;
    color:
        rgba(255, 255, 255, 0.8);
    font-size: 22px;
}

/* TEAM GRID */

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

.team-card {
    overflow: hidden;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        var(--panel);
    box-shadow:
        var(--shadow);
}

.team-card__link {
    display: block;
    text-decoration: none;
}

.team-card__image {
    aspect-ratio:
        4 / 5;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(168, 85, 247, 0.22),
            rgba(236, 72, 153, 0.16)
        );
}

.team-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .45s ease;
}

.team-card:hover
.team-card__image img {
    transform:
        scale(1.035);
}

.team-card__body {
    padding: 24px;
}

.team-card__role {
    margin:
        0 0 5px;
    color:
        var(--purple-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.team-card h2 {
    margin:
        0;
    font-size: 34px;
    line-height: 1.05;
}

.team-card__cta {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    color:
        var(--muted);
    font-weight: 600;
}

.profile-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #fff;
    font-size:
        clamp(
            72px,
            10vw,
            130px
        );
    font-weight: 700;
    background:
        radial-gradient(
            circle at top,
            rgba(216, 180, 254, 0.25),
            transparent 52%
        ),
        linear-gradient(
            145deg,
            #4c1d95,
            #831843
        );
}

/* PROFILE */

.profile-hero {
    min-height:
        720px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            180deg,
            #100818,
            #0d0714
        );
}

.profile-hero__backdrop {
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(168, 85, 247, 0.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(236, 72, 153, 0.12),
            transparent 32%
        );
}

.profile-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(320px, .78fr)
        minmax(0, 1.22fr);
    align-items: center;
    gap: 70px;
    padding:
        80px 0;
}

.profile-hero__image {
    aspect-ratio:
        4 / 5;
    overflow: hidden;
    border:
        1px solid
        rgba(216, 180, 254, 0.24);
    border-radius:
        36px;
    background:
        var(--panel);
    box-shadow:
        var(--shadow);
}

.profile-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-fallback--large {
    font-size: 160px;
}

.profile-hero h1 {
    font-size:
        clamp(
            58px,
            8vw,
            108px
        );
}

.back-link {
    display: inline-flex;
    margin-bottom: 34px;
    color:
        var(--muted);
    font-weight: 600;
    text-decoration: none;
}

.profile-intro {
    max-width: 720px;
    margin-top: 28px;
    color:
        rgba(255, 255, 255, 0.8);
    font-size:
        clamp(
            20px,
            2.2vw,
            26px
        );
}

.profile-intro p {
    margin:
        0 0 18px;
}

.profile-intro--empty {
    color:
        var(--muted);
}

.profile-content-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 820px);
}

.content-card {
    padding: 34px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(32, 18, 44, 0.96),
            rgba(14, 8, 22, 0.98)
        );
    box-shadow:
        var(--shadow);
}

.rich-text p {
    margin:
        0 0 16px;
}

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

.profile-gallery__item {
    aspect-ratio:
        1 / 1;
    overflow: hidden;
    border-radius:
        var(--radius-md);
    background:
        var(--panel);
}

.profile-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .35s ease;
}

.profile-gallery__item:hover img {
    transform:
        scale(1.04);
}

.profile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 38px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        linear-gradient(
            135deg,
            rgba(126, 34, 206, 0.22),
            rgba(190, 24, 93, 0.18)
        );
}

.profile-cta h2 {
    font-size:
        clamp(
            34px,
            4vw,
            54px
        );
}

.profile-cta p {
    max-width: 700px;
    margin-bottom: 0;
}

/* EMPTY / 404 */

.empty-state {
    padding:
        60px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        var(--panel);
    text-align: center;
}

.site-section--404 {
    min-height:
        70vh;
    display: flex;
    align-items: center;
}

/* FOOTER */

.site-footer {
    padding:
        70px 0 24px;
    background:
        #08040d
        url("/img/footer-bg.png")
        center bottom / cover
        no-repeat;
    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.site-footer__grid {
    display: grid;
    grid-template-columns:
        1.4fr
        1fr
        1fr;
    gap: 60px;
}

.site-footer__logo {
    width: 220px;
}

.site-footer p {
    color:
        var(--muted);
}

.site-footer h2 {
    margin:
        0 0 14px;
    font-size: 20px;
}

.site-footer__links {
    display: grid;
    gap: 8px;
}

.site-footer__links a {
    color:
        var(--muted);
    text-decoration: none;
}

.site-footer__links a:hover {
    color:
        #fff;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-top: 20px;
    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
    margin: 0;
    font-size: 15px;
}

.site-preview-label {
    color:
        var(--purple-light)
        !important;
}

/* RESPONSIVE */

@media (max-width: 960px) {
    .feature-grid,
    .team-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .profile-hero__grid {
        grid-template-columns:
            minmax(260px, .85fr)
            minmax(0, 1.15fr);
        gap: 40px;
    }

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

@media (max-width: 760px) {
    body {
        font-size: 17px;
    }

    .site-container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .site-header__inner {
        min-height: 76px;
    }

    .site-brand {
        width: 170px;
    }

    .site-nav-toggle {
        display: grid;
        width: 46px;
        height: 46px;
        place-content: center;
        gap: 5px;
        border:
            1px solid
            rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        background:
            rgba(255, 255, 255, 0.06);
    }

    .site-nav-toggle span:not(.sr-only) {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 14px;
        right: 14px;
        padding: 14px;
        border:
            1px solid
            var(--border);
        border-radius:
            18px;
        background:
            rgba(13, 7, 20, 0.98);
        box-shadow:
            var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        padding:
            12px 14px;
    }

    .hero {
        min-height:
            calc(
                100vh - 76px
            );
    }

    .hero__content {
        padding:
            78px 0;
    }

    .hero h1 {
        font-size:
            clamp(
                52px,
                17vw,
                82px
            );
    }

    .hero__actions,
    .profile-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .site-section {
        padding:
            64px 0;
    }

    .section-heading--split,
    .feature-grid,
    .team-grid,
    .profile-hero__grid,
    .site-footer__grid {
        grid-template-columns:
            1fr;
    }

    .profile-hero {
        min-height: auto;
    }

    .profile-hero__grid {
        gap: 34px;
        padding:
            52px 0;
    }

    .profile-hero__image {
        width:
            min(
                100%,
                500px
            );
        margin-inline: auto;
    }

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

    .profile-cta {
        padding: 26px;
    }

    .site-footer__bottom {
        flex-direction:
            column;
    }
}

@media (max-width: 460px) {
    .team-grid,
    .profile-gallery {
        grid-template-columns:
            1fr;
    }

    .page-hero {
        min-height:
            390px;
    }

    .empty-state {
        padding:
            34px 22px;
    }
}

/* EVENTS */

.page-hero--events {
    background:
        #100818
        url("/img/countdown-bg.jpg")
        center / cover
        no-repeat;
}

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

.event-card {
    overflow: hidden;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        var(--panel);
    box-shadow:
        var(--shadow);
}

.event-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.event-card__image {
    aspect-ratio:
        16 / 10;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(168, 85, 247, .22),
            rgba(236, 72, 153, .16)
        );
}

.event-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .4s ease;
}

.event-card:hover
.event-card__image img {
    transform:
        scale(1.035);
}

.event-card__fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background:
        radial-gradient(
            circle at top,
            rgba(216,180,254,.26),
            transparent 55%
        ),
        linear-gradient(
            145deg,
            #4c1d95,
            #831843
        );
}

.event-card__fallback span {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: .08em;
}

.event-card__body {
    padding: 24px;
}

.event-card__date {
    margin:
        0 0 8px;
    color:
        var(--purple-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.event-card h2 {
    margin:
        0;
    font-size: 32px;
    line-height: 1.08;
}

.event-card__location {
    margin:
        12px 0 0;
    color:
        var(--muted);
}

.event-detail-hero {
    min-height: 620px;
    display: flex;
    align-items: end;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(168,85,247,.22),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #160b21,
            #08040d
        );
    background-size: cover;
    background-position: center;
}

.event-detail-hero__content {
    position: relative;
    z-index: 1;
    padding:
        100px 0 70px;
}

.event-detail-hero h1 {
    max-width: 1000px;
    margin:
        0;
    font-size:
        clamp(
            54px,
            8vw,
            100px
        );
    line-height: .98;
    letter-spacing: -.04em;
}

.event-meta-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 1000px;
    margin-top: 34px;
}

.event-meta-item {
    padding: 18px 20px;
    border:
        1px solid
        rgba(255,255,255,.12);
    border-radius:
        18px;
    background:
        rgba(8,4,13,.62);
    backdrop-filter:
        blur(12px);
}

.event-meta-item span {
    display: block;
    margin-bottom: 5px;
    color:
        var(--purple-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.event-meta-item strong {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
}

.event-detail-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 360px);
    align-items: start;
    gap: 28px;
}

.event-ticket-card {
    padding: 30px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(91,33,182,.28),
            rgba(131,24,67,.22)
        );
    box-shadow:
        var(--shadow);
}

.event-ticket-card h2 {
    margin:
        0 0 12px;
    font-size: 36px;
    line-height: 1.08;
}

.event-ticket-card p:not(.eyebrow) {
    color:
        var(--muted);
}

.event-ticket-card .button {
    width: 100%;
    margin-top: 12px;
}

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

    .event-detail-grid {
        grid-template-columns:
            1fr;
    }
}

@media (max-width: 760px) {
    .event-meta-grid,
    .event-grid {
        grid-template-columns:
            1fr;
    }

    .event-detail-hero {
        min-height: 520px;
    }
}

/* ==================================================
   DYNAMIC HOMEPAGE
   ================================================== */

.home-hero .hero__backdrop {
    background:
        linear-gradient(
            90deg,
            rgba(8, 4, 13, .97) 0%,
            rgba(13, 7, 20, .82) 48%,
            rgba(13, 7, 20, .42) 100%
        );
}

.home-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, .75fr);
    align-items: stretch;
    gap: 28px;
}

.home-intro-copy {
    padding:
        20px 0;
}

.home-intro-copy h2 {
    max-width: 800px;
    margin:
        0 0 24px;
    font-size:
        clamp(
            42px,
            6vw,
            76px
        );
    line-height: .98;
    letter-spacing: -.04em;
}

.home-intro-copy > p {
    max-width: 780px;
    color:
        var(--muted);
}

.home-intro-lead {
    color:
        rgba(255,255,255,.88)
        !important;
    font-size:
        clamp(
            21px,
            2.4vw,
            28px
        );
}

.home-inline-actions {
    margin-top: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color:
        var(--purple-light);
    font-weight: 700;
    text-decoration: none;
}

.text-link span {
    transition:
        transform .18s ease;
}

.text-link:hover span {
    transform:
        translateX(4px);
}

.home-purpose-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        radial-gradient(
            circle at top right,
            rgba(236,72,153,.2),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(76,29,149,.34),
            rgba(20,9,31,.96)
        );
    box-shadow:
        var(--shadow);
}

.home-purpose-card__mark {
    display: block;
    margin-bottom: 70px;
    color:
        rgba(255,255,255,.11);
    font-size:
        clamp(
            80px,
            10vw,
            130px
        );
    font-weight: 700;
    line-height: .8;
    letter-spacing: -.06em;
}

.home-purpose-card h3 {
    margin:
        0 0 14px;
    font-size:
        clamp(
            34px,
            4vw,
            52px
        );
    line-height: 1;
}

.home-purpose-card p:not(.eyebrow) {
    color:
        var(--muted);
}

.section-heading__aside p {
    margin-top: 0;
}

.section-heading__aside .text-link {
    margin-top: 10px;
}

.home-events-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 34px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        linear-gradient(
            135deg,
            rgba(91,33,182,.18),
            rgba(131,24,67,.12)
        );
}

.home-events-empty h3 {
    margin:
        0 0 10px;
    font-size:
        clamp(
            30px,
            4vw,
            46px
        );
    line-height: 1.05;
}

.home-events-empty p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
    color:
        var(--muted);
}

.home-event-grid
.event-card h3 {
    margin: 0;
    font-size: 32px;
    line-height: 1.08;
}

.home-team-grid--count-1 {
    grid-template-columns:
        minmax(
            280px,
            420px
        );
}

.home-team-grid--count-2 {
    grid-template-columns:
        repeat(
            2,
            minmax(
                280px,
                420px
            )
        );
}

.home-team-grid
.team-card h3 {
    margin: 0;
    font-size: 34px;
    line-height: 1.05;
}

.home-action-section {
    padding:
        0 0 90px;
}

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

.home-action-card {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 42px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    box-shadow:
        var(--shadow);
}

.home-action-card--charity {
    background:
        radial-gradient(
            circle at top right,
            rgba(236,72,153,.28),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #311044,
            #14091f
        );
}

.home-action-card--join {
    background:
        radial-gradient(
            circle at top left,
            rgba(168,85,247,.25),
            transparent 44%
        ),
        linear-gradient(
            145deg,
            #221039,
            #100818
        );
}

.home-action-card h2 {
    max-width: 650px;
    margin:
        0 0 16px;
    font-size:
        clamp(
            38px,
            5vw,
            64px
        );
    line-height: 1;
    letter-spacing: -.035em;
}

.home-action-card > p:not(.eyebrow) {
    max-width: 600px;
    margin:
        0 0 28px;
    color:
        var(--muted);
}

.home-newsletter-section {
    padding-top:
        0;
}

.home-newsletter-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 500px);
    gap: 60px;
    align-items: center;
    padding: 48px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        linear-gradient(
            135deg,
            rgba(61,20,89,.96),
            rgba(18,8,29,.98)
        );
    box-shadow:
        var(--shadow);
}

.home-newsletter-copy h2 {
    margin:
        0 0 16px;
    font-size:
        clamp(
            40px,
            5vw,
            68px
        );
    line-height: .98;
    letter-spacing: -.035em;
}

.home-newsletter-copy p:not(.eyebrow) {
    max-width: 650px;
    color:
        var(--muted);
}

.home-newsletter-form {
    display: grid;
    gap: 16px;
}

.home-newsletter-form > label:not(
    .home-newsletter-consent
) {
    display: grid;
    gap: 7px;
}

.home-newsletter-form label > span {
    font-weight: 600;
}

.home-newsletter-form label small {
    margin-left: 5px;
    color:
        var(--muted-soft);
    font-size: 13px;
}

.home-newsletter-form input[type="text"],
.home-newsletter-form input[type="email"] {
    width: 100%;
    min-height: 54px;
    padding:
        13px 16px;
    border:
        1px solid
        rgba(216,180,254,.27);
    border-radius:
        15px;
    outline: 0;
    background:
        rgba(8,4,13,.58);
    color: #fff;
}

.home-newsletter-form input:focus {
    border-color:
        var(--purple-light);
    box-shadow:
        0 0 0 3px
        rgba(168,85,247,.15);
}

.home-newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color:
        var(--muted);
    font-size: 16px;
    line-height: 1.45;
}

.home-newsletter-consent input {
    flex:
        0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color:
        var(--purple);
}

.home-newsletter-form
.button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.home-newsletter-form
.button:disabled {
    opacity: .65;
    cursor: wait;
}

.home-newsletter-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.home-newsletter-status {
    padding:
        14px 16px;
    border-radius:
        14px;
    font-weight: 600;
}

.home-newsletter-status[hidden] {
    display:
        none !important;
}

.home-newsletter-status.success {
    border:
        1px solid
        rgba(34,197,94,.32);
    background:
        rgba(34,197,94,.12);
    color:
        #dcfce7;
}

.home-newsletter-status.error {
    border:
        1px solid
        rgba(239,68,68,.34);
    background:
        rgba(239,68,68,.12);
    color:
        #fee2e2;
}

.home-newsletter-status.working {
    border:
        1px solid
        rgba(216,180,254,.25);
    background:
        rgba(168,85,247,.12);
    color:
        #f3e8ff;
}

.home-social-section {
    padding:
        35px 0 80px;
}

.home-social-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 34px;
    border-top:
        1px solid
        rgba(255,255,255,.08);
}

.home-social-inner h2 {
    margin: 0;
    font-size:
        clamp(
            32px,
            4vw,
            52px
        );
}

.home-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-social-links a,
.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding:
        10px 16px;
    border:
        1px solid
        rgba(255,255,255,.11);
    border-radius:
        999px;
    background:
        rgba(255,255,255,.05);
    color:
        var(--muted);
    font-weight: 600;
    text-decoration: none;
}

.home-social-links a:hover,
.site-footer__social a:hover {
    color: #fff;
    border-color:
        rgba(216,180,254,.34);
    background:
        rgba(168,85,247,.12);
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.site-footer__bottom a {
    color:
        var(--purple-light);
    text-decoration: none;
}

@media (max-width: 960px) {
    .home-intro-grid,
    .home-newsletter-card {
        grid-template-columns:
            1fr;
    }

    .home-action-card {
        min-height:
            400px;
    }
}

@media (max-width: 760px) {
    .home-events-empty,
    .home-social-inner {
        align-items:
            stretch;
        flex-direction:
            column;
    }

    .home-action-grid {
        grid-template-columns:
            1fr;
    }

    .home-action-card {
        min-height:
            auto;
        padding:
            30px;
    }

    .home-newsletter-card {
        padding:
            28px;
        gap:
            36px;
    }

    .home-team-grid--count-1,
    .home-team-grid--count-2 {
        grid-template-columns:
            1fr;
    }

    .home-social-links {
        display: grid;
        grid-template-columns:
            1fr;
    }

    .home-social-links a {
        width:
            100%;
    }
}

/* ==================================================
   CHARITY + CONTACT MIGRATION
   ================================================== */

.page-hero--charities {
    background:
        #100818
        url("/img/countdown-bg.jpg")
        center / cover
        no-repeat;
}

.page-hero--contact {
    background:
        #100818
        url("/img/countdown-bg.jpg")
        center / cover
        no-repeat;
}

.charity-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, .75fr);
    gap: 28px;
    align-items: stretch;
}

.charity-intro-grid h2 {
    max-width: 820px;
    margin:
        0 0 24px;
    font-size:
        clamp(
            42px,
            6vw,
            76px
        );
    line-height: .98;
    letter-spacing: -.04em;
}

.charity-intro-grid > div:first-child > p {
    max-width: 780px;
    color:
        var(--muted);
}

.charity-intro-lead {
    color:
        rgba(255,255,255,.88)
        !important;
    font-size:
        clamp(
            21px,
            2.4vw,
            28px
        );
}

.charity-intro-card {
    padding: 34px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        radial-gradient(
            circle at top right,
            rgba(236,72,153,.18),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(76,29,149,.3),
            rgba(20,9,31,.96)
        );
    box-shadow:
        var(--shadow);
}

.charity-intro-card h3 {
    margin:
        0 0 14px;
    font-size:
        clamp(
            34px,
            4vw,
            50px
        );
    line-height: 1;
}

.charity-intro-card p:not(.eyebrow) {
    color:
        var(--muted);
}

.charity-intro-card .text-link {
    margin-top: 18px;
}

/*
 * The existing isolated form styles use .spad from
 * the old site. Restore suitable spacing in the new shell.
 */
.hcc-contact-section {
    padding:
        80px 0;
}

.hcc-contact-section .site-container,
.hcc-website-booking-section .site-container {
    width:
        min(
            calc(100% - 40px),
            var(--container)
        );
    margin-inline:
        auto;
}

/*
 * Harmonise form typography with the new design.
 */
.hcc-website-booking-heading h2,
.hcc-contact-card h2 {
    font-size:
        clamp(
            34px,
            5vw,
            56px
        ) !important;
    line-height:
        1.04 !important;
    letter-spacing:
        -.03em !important;
}

.hcc-contact-card h3 {
    font-size:
        clamp(
            27px,
            4vw,
            38px
        );
    line-height:
        1.08;
}

@media (max-width: 760px) {
    .charity-intro-grid {
        grid-template-columns:
            1fr;
    }

    .hcc-contact-section {
        padding:
            50px 0;
    }

    .hcc-contact-section .site-container,
    .hcc-website-booking-section .site-container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }
}

/* ==================================================
   JOIN PAGE
   ================================================== */

.page-hero--join {
    background:
        #100818
        url("/img/countdown-bg-join.jpg")
        center / cover
        no-repeat;
}

.join-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .8fr);
    gap: 28px;
}

.join-intro-grid h2 {
    margin:
        0 0 22px;
    font-size:
        clamp(
            42px,
            6vw,
            76px
        );
    line-height: .98;
    letter-spacing: -.04em;
}

.join-intro-grid > div > p {
    max-width: 760px;
    color:
        var(--muted);
}

.join-intro-lead {
    color:
        rgba(255,255,255,.88)
        !important;
    font-size:
        clamp(
            21px,
            2.4vw,
            28px
        );
}

.join-probation-card {
    padding: 34px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        radial-gradient(
            circle at top right,
            rgba(236,72,153,.2),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(76,29,149,.34),
            rgba(20,9,31,.96)
        );
    box-shadow:
        var(--shadow);
}

.join-probation-card > strong {
    display: block;
    color:
        var(--purple-light);
    font-size:
        clamp(
            58px,
            7vw,
            92px
        );
    line-height: .9;
}

.join-probation-card h3 {
    margin:
        22px 0 14px;
    font-size:
        clamp(
            30px,
            4vw,
            46px
        );
    line-height: 1;
}

.join-probation-card p:not(.eyebrow) {
    color:
        var(--muted);
}

.join-form-shell {
    max-width: 980px;
    margin-inline: auto;
}

.join-gate-card,
.join-blocked-card,
.join-application {
    padding: 32px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(31,17,44,.98),
            rgba(15,8,24,.98)
        );
    box-shadow:
        var(--shadow);
}

.join-gate-card[hidden],
.join-blocked-card[hidden],
.join-application[hidden],
.join-status[hidden] {
    display: none !important;
}

.join-step {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background:
        rgba(168,85,247,.13);
    color:
        var(--purple-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.join-gate-card h3,
.join-blocked-card h3,
.join-application-heading h3 {
    margin:
        0 0 14px;
    font-size:
        clamp(
            34px,
            5vw,
            56px
        );
    line-height: 1.02;
}

.join-gate-card p,
.join-blocked-card p,
.join-application-heading p {
    color:
        var(--muted);
}

.join-choice-grid,
.join-blocked-actions {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.join-choice {
    min-height: 60px;
    padding: 15px 20px;
    border: 0;
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            #7e22ce,
            #be185d
        );
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.join-choice--secondary {
    border:
        1px solid
        rgba(255,255,255,.14);
    background:
        rgba(255,255,255,.06);
}

.join-application {
    display: grid;
    gap: 24px;
}

.join-application fieldset {
    min-width: 0;
    margin: 0;
    padding: 28px;
    border:
        1px solid
        var(--border);
    border-radius:
        22px;
    background:
        rgba(255,255,255,.025);
}

.join-application legend {
    padding:
        0 10px;
    color:
        var(--purple-light);
    font-size: 22px;
    font-weight: 700;
}

.join-application label:not(.join-check) {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.join-application label:not(.join-check):last-child {
    margin-bottom: 0;
}

.join-application label > span {
    font-weight: 600;
}

.join-application label em,
.join-application label small {
    margin-left: 5px;
    font-size: 12px;
    font-style: normal;
}

.join-application label em {
    color:
        var(--purple-light);
}

.join-application label small {
    color:
        var(--muted-soft);
}

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

.join-application input[type="text"],
.join-application input[type="email"],
.join-application input[type="tel"],
.join-application textarea {
    width: 100%;
    padding: 14px 16px;
    border:
        1px solid
        rgba(192,132,252,.38);
    border-radius: 15px;
    outline: 0;
    background:
        #140b1d;
    color: #fff;
    font: inherit;
}

.join-application textarea {
    min-height: 120px;
    resize: vertical;
}

.join-application input:focus,
.join-application textarea:focus {
    border-color:
        var(--purple-light);
    box-shadow:
        0 0 0 3px
        rgba(168,85,247,.15);
}

.join-check {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 12px;
    padding: 16px 17px;
    border:
        1px solid
        rgba(255,255,255,.09);
    border-radius: 16px;
    background:
        rgba(255,255,255,.045);
    cursor: pointer;
}

.join-check input {
    flex:
        0 0 21px;
    width: 21px;
    height: 21px;
    margin-top: 2px;
    accent-color:
        var(--purple);
}

.join-check span {
    color:
        rgba(255,255,255,.84);
}

.join-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.join-submit:disabled {
    opacity: .65;
    cursor: wait;
}

.join-status {
    margin-top: 20px;
    padding: 18px;
    border-radius: 16px;
    font-weight: 600;
}

.join-status.success {
    border:
        1px solid
        rgba(34,197,94,.32);
    background:
        rgba(34,197,94,.12);
    color:
        #dcfce7;
}

.join-status.error {
    border:
        1px solid
        rgba(239,68,68,.34);
    background:
        rgba(239,68,68,.12);
    color:
        #fee2e2;
}

.join-status.working {
    border:
        1px solid
        rgba(216,180,254,.25);
    background:
        rgba(168,85,247,.12);
    color:
        #f3e8ff;
}

.hcc-public-form-trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ==================================================
   VIDEOS PAGE
   ================================================== */

.page-hero--videos {
    background:
        #100818
        url("/img/countdown-bg-video.jpg")
        center / cover
        no-repeat;
}

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

.video-card {
    overflow: hidden;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        var(--panel);
    box-shadow:
        var(--shadow);
}

.video-card a {
    display: block;
    text-decoration: none;
}

.video-card__image {
    position: relative;
    aspect-ratio:
        16 / 9;
    overflow: hidden;
    background:
        var(--panel-soft);
}

.video-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .4s ease;
}

.video-card:hover
.video-card__image img {
    transform:
        scale(1.035);
}

.video-card__play {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border:
        1px solid
        rgba(255,255,255,.18);
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            #7e22ce,
            #be185d
        );
    color: #fff;
    font-size: 22px;
    box-shadow:
        0 14px 35px
        rgba(0,0,0,.28);
}

.video-card__body {
    padding: 25px;
}

.video-card__body h2 {
    margin: 0;
    font-size:
        clamp(
            28px,
            3vw,
            40px
        );
    line-height: 1.06;
}

@media (max-width: 760px) {
    .join-intro-grid,
    .join-field-grid,
    .join-choice-grid,
    .join-blocked-actions,
    .video-grid {
        grid-template-columns:
            1fr;
    }

    .join-gate-card,
    .join-blocked-card,
    .join-application,
    .join-application fieldset {
        padding: 22px;
    }
}

/* ==================================================
   POLICY + ACCOUNT DELETION PAGES
   ================================================== */

.page-hero--policy {
    background:
        #100818
        url("/img/countdown-bg-member.jpg")
        center / cover
        no-repeat;
}

.policy-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(240px, 320px);
    gap: 34px;
    align-items: start;
}

.policy-document {
    min-width: 0;
    padding: 42px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(31,17,44,.98),
            rgba(15,8,24,.98)
        );
    box-shadow:
        var(--shadow);
}

.policy-document__header {
    padding-bottom: 28px;
    margin-bottom: 32px;
    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}

.policy-document__header h2 {
    margin:
        0 0 18px;
    font-size:
        clamp(
            40px,
            6vw,
            68px
        );
    line-height: .98;
    letter-spacing: -.04em;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color:
        var(--muted-soft);
    font-size: 15px;
}

.policy-document section {
    margin-top: 38px;
}

.policy-document section:first-of-type {
    margin-top: 0;
}

.policy-document h2 {
    margin:
        0 0 16px;
    font-size:
        clamp(
            28px,
            3vw,
            38px
        );
    line-height: 1.06;
}

.policy-document h3 {
    margin:
        28px 0 10px;
    color:
        var(--purple-light);
    font-size:
        clamp(
            21px,
            2vw,
            27px
        );
}

.policy-document p,
.policy-document li {
    color:
        var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.policy-document ul,
.policy-document ol {
    padding-left: 24px;
}

.policy-document li {
    margin-bottom: 9px;
}

.policy-document a {
    color:
        var(--purple-light);
    overflow-wrap: anywhere;
}

.policy-document .button {
    color: #fff;
}

.policy-callout,
.policy-contact-card {
    padding: 24px;
    margin:
        28px 0;
    border:
        1px solid
        rgba(192,132,252,.24);
    border-radius: 20px;
    background:
        rgba(168,85,247,.08);
}

.policy-callout p:last-child,
.policy-contact-card p:last-child {
    margin-bottom: 0;
}

.policy-contact-card h3 {
    margin-top: 0;
}

.policy-sidebar {
    position: sticky;
    top: 110px;
}

.policy-sidebar-card {
    display: grid;
    gap: 10px;
    padding: 24px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    background:
        rgba(20,9,31,.9);
    box-shadow:
        var(--shadow);
}

.policy-sidebar-card a {
    display: block;
    padding:
        13px 15px;
    border:
        1px solid
        rgba(255,255,255,.08);
    border-radius: 14px;
    background:
        rgba(255,255,255,.035);
    color:
        var(--muted);
    font-weight: 600;
    text-decoration: none;
}

.policy-sidebar-card a:hover {
    color: #fff;
    border-color:
        rgba(216,180,254,.3);
    background:
        rgba(168,85,247,.1);
}

@media (max-width: 900px) {
    .policy-layout {
        grid-template-columns:
            1fr;
    }

    .policy-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    .policy-document {
        padding: 24px;
    }

    .policy-document p,
    .policy-document li {
        font-size: 16px;
    }
}

/* ==================================================
   LIVE FOOTER CONTRAST OVERRIDE
   ================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(126, 34, 206, .22),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(190, 24, 93, .13),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #12081c 0%,
            #09050e 55%,
            #050307 100%
        );
    background-image:
        radial-gradient(
            circle at 15% 0%,
            rgba(126, 34, 206, .22),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(190, 24, 93, .13),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #12081c 0%,
            #09050e 55%,
            #050307 100%
        );
    border-top:
        1px solid
        rgba(216, 180, 254, .18);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .025),
            transparent
        );
}

.site-footer__grid,
.site-footer__bottom {
    position: relative;
    z-index: 1;
}

.site-footer p {
    color:
        rgba(255, 255, 255, .82);
}

.site-footer h2 {
    color:
        #ffffff;
}

.site-footer__links a {
    color:
        rgba(255, 255, 255, .84);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color:
        #ffffff;
}

.site-footer__social a {
    color:
        #ffffff;
    border-color:
        rgba(216, 180, 254, .26);
    background:
        rgba(255, 255, 255, .055);
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    color:
        #ffffff;
    border-color:
        rgba(216, 180, 254, .55);
    background:
        rgba(168, 85, 247, .18);
}

.site-footer__bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, .12);
}

.site-footer__bottom p {
    color:
        rgba(255, 255, 255, .68);
}

.site-footer__bottom a {
    color:
        #e9d5ff;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
    color:
        #ffffff;
}

/* ==================================================
   TEAM CARD INTERACTION
   ================================================== */

.team-card {
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.team-card__image img {
    filter:
        brightness(.78);
    transition:
        transform .42s ease,
        filter .42s ease;
}

@media (hover: hover) and (pointer: fine) {

    .team-card:hover,
    .team-card:focus-within {
        transform:
            translateY(-6px);
        border-color:
            rgba(216, 180, 254, .38);
        box-shadow:
            0 24px 60px
            rgba(0, 0, 0, .38);
    }

    .team-card:hover
    .team-card__image img,
    .team-card:focus-within
    .team-card__image img {
        filter:
            brightness(1);
        transform:
            scale(1.035);
    }

    .team-card:hover
    .team-card__cta,
    .team-card:focus-within
    .team-card__cta {
        color:
            #ffffff;
    }
}

