@font-face {
    font-family: 'Prompt';
    src: url('/assets/font/google/Prompt-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/font/google/Prompt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/font/google/Prompt-SemiBold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/font/google/Prompt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --page-bg: #edf2ef;
    --card-bg: #ffffff;
    --ink-strong: #134e4a;
    --ink-main: #115e59;
    --ink-soft: #2d6b65;
    --line: rgba(15, 118, 110, 0.12);
    --brand-dark: #0f766e;
    --brand-main: #0d9488;
    --brand-light: #2dd4bf;
    --brand-bar-gradient: linear-gradient(to right, #042f2e 0%, #0f766e 60%, #14b8a6 100%);
    --footer-dark: #011c1b;
    --shadow-soft: 0 14px 40px rgba(4, 47, 46, 0.1);
    --site-header-offset: 120px;
    /* cursor glow — updated by JS pointermove */
    --pointer-x: 50vw;
    --pointer-y: 40vh;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: var(--font-main, 'Prompt', sans-serif);
    background: var(--page-bg);
    color: var(--ink-main);
}

html {
    scrollbar-gutter: stable;
}

body {
    overflow-x: hidden;
    overflow-anchor: none;
}

/* ─── Cursor Glow Overlay ───────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(
        circle 480px at var(--pointer-x) var(--pointer-y),
        rgba(15, 118, 110, 0.07) 0%,
        rgba(46, 139, 87, 0.04) 40%,
        transparent 70%
    );
    mix-blend-mode: multiply;
    transition: background 60ms linear;
}

a {
    color: inherit;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 140;
    overflow: visible;
}

.site-top-strip {
    height: 28px;
    background: var(--footer-dark);
}

.nav-row {
    position: relative;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-bar-gradient);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(4, 26, 17, 0.16);
    padding: 0 24px;
    overflow: visible;
}

.brand-float {
    position: absolute;
    left: 32px;
    top: -34px;
    width: 138px;
    height: 138px;
    border-radius: 30px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 42%),
        linear-gradient(to right, #0f766e 0%, #0d9488 100%);
    border: 1px solid rgba(45, 212, 191, 0.25);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 42px rgba(0, 0, 0, 0.32);
    text-decoration: none;
}

.brand-float img {
    width: 108px;
    height: 108px;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3));
}

.donate-float {
    position: absolute;
    right: 32px;
    top: -18px;
    width: 140px;
    height: auto;
    padding: 6px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(to bottom, #0f5132 0%, #14b8a6 100%) border-box;
    border: 3px solid transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 100;
}

.donate-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.donate-float img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Donate Modal */
.donate-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.donate-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 450px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    animation: modalPopIn 0.3s ease-out;
}

@keyframes modalPopIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.donate-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.donate-modal-close:hover {
    color: var(--brand-danger);
}

.donate-modal-title {
    color: var(--brand-primary);
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 600;
}

.donate-modal-text {
    margin-top: 24px;
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-base);
    font-weight: 500;
}

body.is-animated .brand-float {
    animation: logoFloat 4.6s ease-in-out infinite;
}

body.is-animated .donate-float {
    animation: logoFloat 4.6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.12);
}

.sidebar-brand,
.sidebar-close {
    display: none;
}

.main-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: var(--ink-main);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 999px;
    white-space: nowrap;
    overflow: hidden;
    transition: background 900ms ease, color 900ms ease, box-shadow 900ms ease;
}

.main-nav__icon {
    flex-shrink: 0;
    font-size: 1.12rem;
    line-height: 1;
}

.main-nav__label {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    margin-left: 0;
    transition: max-width 900ms ease-in-out, opacity 700ms ease, margin-left 900ms ease-in-out;
}

.main-nav__link:hover,
.main-nav__link:focus-visible {
    background: rgba(15, 118, 110, 0.08);
    color: #0c5e58;
    outline: none;
    transition: background 400ms ease, color 400ms ease, box-shadow 400ms ease;
}

.main-nav__link:hover .main-nav__label,
.main-nav__link:focus-visible .main-nav__label {
    max-width: 240px;
    opacity: 1;
    margin-left: 8px;
    transition: max-width 520ms ease-in-out, opacity 380ms ease, margin-left 520ms ease-in-out;
}

.main-nav__link.is-active {
    background: var(--brand-main);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.28);
}

.main-nav__link.is-active:hover,
.main-nav__link.is-active:focus-visible {
    background: #0f766e;
    color: #ffffff;
    transition: background 400ms ease, color 400ms ease, box-shadow 400ms ease;
}

.main-nav__link.is-active:hover .main-nav__label,
.main-nav__link.is-active:focus-visible .main-nav__label {
    max-width: 240px;
    opacity: 1;
    margin-left: 8px;
    transition: max-width 520ms ease-in-out, opacity 380ms ease, margin-left 520ms ease-in-out;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(15, 118, 110, 0.2);
    background: #ffffff;
    color: var(--ink-main);
    border-radius: 10px;
    padding: 10px;
    width: 46px;
    height: 40px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
    will-change: transform;
}

.nav-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 118, 110, 0.18);
    background: #f2faf6;
    border-color: rgba(15, 118, 110, 0.4);
}

.nav-toggle:active {
    transform: translateY(1px) scale(0.95);
    box-shadow: 0 2px 6px rgba(15, 118, 110, 0.1);
    background: #e6f5ed;
}

.nav-toggle__bars {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle__bar {
    width: 18px;
    height: 2px;
    background: var(--ink-main);
    border-radius: 999px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.nav-backdrop {
    display: none;
}

.site-main {
    width: 100%;
    flex: 1;
    padding: 24px 48px 52px;
    background:
        radial-gradient(circle at 10% 16%, rgba(20, 184, 166, 0.18), transparent 28%),
        radial-gradient(circle at 92% 9%, rgba(15, 118, 110, 0.12), transparent 24%),
        linear-gradient(to right, #edf2ef 0%, #eef4f1 100%);
}

.home-showcase,
.quick-grid,
.page-wrap {
    opacity: 0;
    transform: translateY(20px);
}

body.is-animated .home-showcase {
    animation: fadeUp 620ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
}

body.is-animated .quick-grid {
    animation: fadeUp 620ms cubic-bezier(0.16, 1, 0.3, 1) 180ms forwards;
}

body.is-animated .page-wrap {
    animation: fadeUp 620ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
}

.home-showcase {
    width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .home-showcase {
        grid-template-columns: 1fr;
    }
}

.director-card {
    border-radius: 20px;
    border: 1px solid rgba(15, 118, 110, 0.16);
    background: #0f766e;
    box-shadow: var(--shadow-soft);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 220ms ease, box-shadow 220ms ease;
    perspective: 1000px;
}

.director-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(4, 47, 46, 0.2);
}

.director-card__eyebrow {
    margin: 0;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2dd4bf;
}

.director-card h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    color: #ffffff;
    line-height: 1.25;
}

.director-card__profile {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background: #e5e7eb;
    border: 2px solid #d1d5db;
    display: block;
    margin: 0 auto;
    box-shadow: 0 12px 28px rgba(7, 32, 20, 0.15);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.director-card:hover .director-card__profile {
    transform: rotateY(180deg);
}

.director-card__profile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.director-card__text {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

.director-card__quicklinks a {
    text-decoration: none;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    background: #ffffff;
    color: #0f766e;
    font-weight: 500;
}

.director-card__quicklinks a:hover {
    background: #ecfdf5;
}

.home-slider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 118, 110, 0.16);
    background: #0f766e;
    position: relative;
}

.home-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 45%, transparent 100%);
    transform: translateX(-120%);
    animation: sliderSheen 5.2s ease-in-out infinite;
}

.home-slider__track {
    position: relative;
    min-height: 420px;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
    padding: 42px 46px;
    display: grid;
    align-content: center;
}

.home-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.home-slide.is-active > div {
    animation: slideContentIn 520ms ease-out;
}

.home-slide:nth-child(1) {
    background: linear-gradient(to right, #0f766e 0%, #0d9488 48%, #14b8a6 100%);
}

.home-slide:nth-child(2) {
    background: linear-gradient(to right, #0a3659 0%, #15527f 45%, #2d8f7a 100%);
}

.home-slide:nth-child(3) {
    background: linear-gradient(to right, #17325f 0%, #355390 50%, #4f9f6f 100%);
}

.home-slide__eyebrow {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
}

.home-slide h2 {
    margin: 0;
    color: #f4fff7;
    font-size: clamp(1.75rem, 4vw, 3.3rem);
    line-height: 1.1;
}

.home-slide p {
    margin: 14px 0 0;
    color: rgba(244, 255, 247, 0.92);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.75;
    max-width: 820px;
}

.home-slider__dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.home-slider__dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.home-slider__dots button.is-active {
    background: #ffffff;
    width: 24px;
    border-radius: 999px;
}

.hero {
    width: 100%;
    border-radius: 24px;
    padding: 54px 60px;
    background: linear-gradient(to right, #0f766e 0%, #0d9488 48%, #14b8a6 100%);
    color: #effaf2;
    box-shadow: var(--shadow-soft);
}

.hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4.4vw, 4rem);
    line-height: 1.1;
}

.hero p {
    margin: 18px 0 0;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(239, 250, 242, 0.9);
}

.quick-grid {
    width: 100%;
    margin: 24px 0 0; /* Keep it grouped with info bar */
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.quick-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.quick-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

.page-wrap {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow-soft);
}

.page-wrap h1 {
    margin: 0 0 14px;
    color: var(--ink-strong);
    font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.page-wrap p {
    margin: 0;
    line-height: 1.8;
    color: var(--ink-soft);
}

.site-footer {
    background: var(--brand-bar-gradient);
    border-top: 3px solid #0f766e;
}

.footer-links-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col__toggle {
    width: 100%;
    display: block;
    text-align: left;
    border: none;
    background: transparent;
    cursor: default;
    font-family: inherit;
    font-weight: 500;
    margin: 0 0 14px;
    color: #5eead4;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    padding: 0;
}

.footer-col__panel {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-col a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #5eead4;
    text-decoration: underline;
}

.footer-meta {
    max-width: 100%;
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 22px 20px 28px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.93rem;
    background: var(--footer-dark);
}

.footer-policy-links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-policy-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-policy-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.footer-policy-links a:hover {
    color: #5eead4;
    text-decoration: underline;
}

.footer-meta p {
    margin: 4px 0;
    color: rgba(255, 255, 255, 0.55);
}

.reveal-item {
    opacity: 0;
    transform: translateY(18px);
    --reveal-delay: 0ms;
    transition:
        opacity 520ms ease var(--reveal-delay, 0ms),
        transform 520ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
    opacity: 1;
}

.reveal-item.is-visible:not(.quick-card) {
    transform: translateY(0);
}

.reveal-item.is-visible.quick-card {
    transform: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes logoFloatMobile {
    0%,
    100% {
        transform: translateX(calc(-50% - 55px)) translateY(0);
    }
    50% {
        transform: translateX(calc(-50% - 55px)) translateY(-6px);
    }
}

@keyframes donateFloatMobile {
    0%,
    100% {
        transform: translateX(calc(-50% + 55px)) translateY(0);
    }
    50% {
        transform: translateX(calc(-50% + 55px)) translateY(-6px);
    }
}

@keyframes sliderSheen {
    0% {
        transform: translateX(-120%);
    }
    40%,
    100% {
        transform: translateX(130%);
    }
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scalePop {
    0%   { opacity: 0; transform: scale(0.85) translateY(12px); }
    70%  { transform: scale(1.04) translateY(-2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
    .site-main {
        padding: 22px 24px 40px;
    }

    .home-slider__track {
        min-height: 320px;
    }

    .home-slide {
        padding: 28px;
    }

    .hero {
        padding: 32px 28px;
    }

    .page-wrap {
        padding: 24px;
    }

    .footer-links-grid {
        padding: 28px 24px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .brand-float {
        left: 18px;
        width: 118px;
        height: 118px;
        top: -28px;
    }

    .donate-float {
        right: 18px;
        width: 120px;
        height: auto;
        padding: 4px;
        top: -12px;
    }

    .brand-float img {
        width: 92px;
        height: 92px;
    }
}

@media (max-width: 760px) {
    .nav-row {
        min-height: auto;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 90px 14px 14px;
        overflow: visible;
    }

    .brand-float {
        position: absolute;
        top: -18px;
        left: 50%;
        transform: translateX(calc(-50% - 55px));
        width: 100px;
        height: 100px;
        border-radius: 20px;
    }

    .donate-float {
        display: flex;
        position: absolute;
        top: -18px;
        left: 50%;
        transform: translateX(calc(-50% + 55px));
        width: 104px;
        height: auto;
        padding: 6px;
        border-width: 2px;
        border-radius: 16px;
    }

    .donate-float:hover, .donate-float:active {
        transform: translateX(calc(-50% + 55px)) translateY(-3px);
    }

    body.is-animated .brand-float {
        animation: logoFloatMobile 4.6s ease-in-out infinite;
    }

    body.is-animated .donate-float {
        animation: donateFloatMobile 4.6s ease-in-out infinite;
    }

    .brand-float img {
        width: 84px;
        height: 84px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        margin-top: 6px;
    }

    .main-nav {
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(84vw, 340px);
        z-index: 150;
        background: linear-gradient(to right, #0f766e 0%, #0d9488 100%);
        padding: max(8px, env(safe-area-inset-top)) 12px 16px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform 480ms ease;
        border-radius: 0;
        box-shadow: 12px 0 30px rgba(0, 0, 0, 0.28);
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav__link {
        text-align: left;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(0, 0, 0, 0.14);
        color: #ffffff;
        width: 100%;
        padding: 13px 14px;
        font-size: 1.08rem;
        border-radius: 10px;
        box-shadow: none;
        gap: 12px;
    }

    .main-nav__label {
        max-width: none;
        opacity: 1;
        margin-left: 0;
    }

    .sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        font-size: 1.4rem;
        line-height: 1;
        cursor: pointer;
        transition: background 150ms ease, transform 150ms ease;
        z-index: 2;
    }

    .sidebar-close:hover {
        background: rgba(255, 255, 255, 0.28);
        transform: scale(1.1);
    }

    .sidebar-close:active {
        transform: scale(0.92);
    }

    .sidebar-brand {
        display: grid;
        place-items: center;
        width: 112px;
        height: 112px;
        margin: 0 0 8px;
        border-radius: 28px;
        background:
            radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 42%),
            linear-gradient(to right, #042f2e 0%, #0a4f4b 100%);
        border: 1px solid rgba(149, 223, 185, 0.24);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 26px rgba(0, 0, 0, 0.24);
    }

    .sidebar-brand img {
        width: 84px;
        height: 84px;
        object-fit: contain;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.24));
    }

    .main-nav__link.is-active {
        background: rgba(0, 28, 15, 0.45);
        color: #ffffff;
        box-shadow: none;
    }

    .main-nav__link:hover {
        color: #ffffff;
        background: rgba(0, 28, 15, 0.35);
        transform: none;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        pointer-events: none;
        transition: opacity 480ms ease;
        z-index: 120;
    }

    .nav-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .footer-links-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 16px;
    }

    .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .footer-col__toggle {
        position: relative;
        margin: 0;
        padding: 14px 28px 14px 0;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.04rem;
        letter-spacing: 0;
    }

    .footer-col__toggle::after {
        content: '';
        position: absolute;
        right: 2px;
        top: 50%;
        width: 9px;
        height: 9px;
        border-right: 2px solid rgba(149, 223, 185, 0.85);
        border-bottom: 2px solid rgba(149, 223, 185, 0.85);
        transform: translateY(-60%) rotate(45deg);
        transition: transform 180ms ease;
    }

    .footer-col__toggle.is-open::after {
        transform: translateY(-35%) rotate(-135deg);
    }

    .footer-col__panel {
        display: none;
        padding: 0 0 12px;
        gap: 8px;
    }

    .footer-col__panel.is-open {
        display: grid;
    }

    .hero {
        border-radius: 18px;
        padding: 22px;
    }

    .director-card__quicklinks {
        grid-template-columns: 1fr;
    }

    .home-slider__track {
        min-height: 320px;
    }

    .home-slide {
        padding: 24px;
    }

    .home-slide h2 {
        font-size: clamp(1.55rem, 8vw, 2.35rem);
    }

    .page-wrap {
        border-radius: 18px;
        padding: 22px;
    }

    .footer-meta {
        padding: 18px 16px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .home-showcase,
    .quick-grid,
    .page-wrap,
    .reveal-item,
    .motion-group__item {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ─── Policy Pages (privacy-policy, cookie-policy) ─────────────────────── */
.policy-page {
    padding: 0 0 60px;
    width: 100%;
}

.policy-page__hero {
    background: linear-gradient(to right, #0f766e 0%, #0d9488 60%, #14b8a6 100%);
    color: #fff;
    padding: 48px 24px 40px;
    border-radius: 16px;
}

.policy-page__hero-inner {
    max-width: none;
    width: 100%;
    margin: 0;
}

.policy-hero__layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    width: 100%;
    align-items: center;
}

.policy-hero__spacer {
    display: block;
}

@media (min-width: 861px) {
    .policy-page__hero {
        padding: 48px 0 40px;
    }
}

.policy-page__category {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
    margin: 0 0 8px;
}

.policy-page__heading {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
}

.policy-page__heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.policy-page__meta {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.policy-page__layout {
    max-width: none;
    width: 100%;
    margin: 36px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

/* TOC Sidebar */
.policy-toc {
    position: sticky;
    top: var(--site-header-offset);
    background: #f8faf9;
    border: 1px solid rgba(15,118,110,.12);
    border-radius: 12px;
    padding: 18px 16px 20px;
}

@media (min-width: 861px) {
    .policy-section[id],
    .policy-content > [id] {
        scroll-margin-top: var(--site-header-offset);
    }
}

.policy-toc__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    font-weight: 500;
    margin: 0 0 10px;
}

.policy-toc__list {
    list-style: decimal;
    padding-left: 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.policy-toc__list a {
    font-size: 0.82rem;
    color: #374151;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.policy-toc__list a:hover {
    color: #0f766e;
    text-decoration: underline;
}

/* Content Area */
.policy-content {
    min-width: 0;
}

.policy-section {
    margin-bottom: 36px;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f766e;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(15,118,110,.15);
}

.policy-section h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    margin: 20px 0 10px;
}

.policy-section p {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.75;
    margin: 0 0 12px;
}

/* Boxes */
.policy-box {
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

.policy-box--info {
    background: #ecfdf5;
    border: 1px solid rgba(15,118,110,.2);
    color: #0f766e;
}

/* Info Card */
.policy-info-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

/* Tables */
.policy-table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
    color: #374151;
}

.policy-table th,
.policy-table td {
    padding: 11px 14px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}

.policy-table th {
    background: #f3f4f6;
    font-weight: 500;
    color: #1f2937;
    white-space: nowrap;
}

.policy-table tbody tr:last-child td {
    border-bottom: none;
}

.policy-table tbody tr:hover td {
    background: #f9fafb;
}

.policy-table--simple th {
    width: 20%;
    background: #f9fafb;
}

/* Lists */
.policy-list {
    padding-left: 20px;
    margin: 10px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.policy-list li {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
}

/* Note */
.policy-note {
    font-size: 0.82rem !important;
    color: #6b7280 !important;
    font-style: italic;
    margin-top: 8px !important;
}

/* Rights Grid */
.policy-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.policy-right-item {
    display: flex;
    gap: 12px;
    background: #f8faf9;
    border: 1px solid rgba(15,118,110,.1);
    border-radius: 10px;
    padding: 14px;
    align-items: flex-start;
}

.policy-right-item__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.policy-right-item strong {
    display: block;
    font-size: 0.88rem;
    color: #0f766e;
    margin-bottom: 3px;
}

.policy-right-item p {
    font-size: 0.8rem !important;
    color: #6b7280 !important;
    margin: 0 !important;
}

/* Cookie Policy specific */
.policy-cookie-type {
    border: 0px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.policy-cookie-type__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
}

.policy-cookie-type__header--essential { background: #ecfdf5; border-bottom: 1px solid #d1fae5; }
.policy-cookie-type__header--analytics { background: #eff6ff; border-bottom: 1px solid #dbeafe; }
.policy-cookie-type__header--marketing { background: #fdf4ff; border-bottom: 1px solid #f3e8ff; }

.policy-cookie-type__header h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1f2937;
}

.policy-cookie-type p,
.policy-cookie-type .policy-list {
    padding-left: 18px;
    padding-right: 18px;
}

.policy-cookie-type p:last-of-type,
.policy-cookie-type .policy-list {
    padding-bottom: 16px;
}

.policy-cookie-type__title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 10px;
}

.policy-cookie-type__title h3 {
    margin: 0;
}

.policy-cookie-type__badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    background: #d1fae5;
    color: #0d9488;
    white-space: nowrap;
    flex-shrink: 0;
}

.policy-cookie-type__badge--on {
    background: #0f766e;
    color: #fff;
}

/* Badges */
.policy-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
}

.policy-badge--essential { background: #d1fae5; color: #0d9488; }
.policy-badge--analytics { background: #dbeafe; color: #1e40af; }
.policy-badge--marketing { background: #f3e8ff; color: #6b21a8; }

/* Cookie action buttons on policy page */
.policy-cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.policy-btn {
    border-radius: 10px;
    font-family: var(--font-main, 'Prompt', sans-serif);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 22px;
    cursor: pointer;
    transition: all 160ms ease;
    border: 1.5px solid transparent;
}

.policy-btn--primary {
    background: #0f766e;
    color: #fff;
    border-color: #0f766e;
    box-shadow: 0 4px 12px rgba(15,118,110,.25);
}

.policy-btn--primary:hover { background: #0c5e58; border-color: #0c5e58; }

.policy-btn--secondary {
    background: transparent;
    color: #374151;
    border-color: #d1d5db;
}

.policy-btn--secondary:hover { border-color: #9ca3af; color: #1f2937; }

/* Inline cookie button on privacy policy page */
.policy-cookie-btn {
    display: inline;
    background: none;
    border: none;
    color: #0f766e;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.policy-cookie-btn:hover { color: #0c5e58; }

/* Responsive: Policy layout */
@media (max-width: 860px) {
    .policy-hero__layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .policy-hero__spacer {
        display: none;
    }

    .policy-page__layout {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .policy-toc {
        position: static;
        width: 100%;
        max-width: none;
        margin: 0;
        box-sizing: border-box;
        align-self: stretch;
    }

    .policy-content {
        width: 100%;
        min-width: 0;
    }

    .policy-rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .policy-page__hero {
        padding: 32px 16px 28px;
        border-radius: 12px;
    }

    .policy-page__layout {
        padding: 0 12px;
        margin-top: 24px;
        gap: 16px;
    }

    .policy-toc {
        width: 100%;
        padding: 18px 20px 22px;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 2px 10px rgba(15, 81, 50, 0.06);
    }

    .policy-toc__list {
        width: 100%;
    }

    .policy-toc__list a {
        display: block;
        width: 100%;
        padding: 4px 0;
        font-size: 0.88rem;
    }
}

/* ─── Bootstrap Icons — heading icon styles ─────────────────────────────── */

/* Page h1 icon (.page-wrap, about/services/doctors/news/contact/terms) */
.page-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(to right, #0f766e 0%, #0d9488 100%);
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(15, 118, 110, 0.28);
    position: relative;
    top: -2px;
}

/* Quick-card h2 icons (home page) */
.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1.05rem;
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
    position: relative;
    top: -2px;
}

.card-icon--green {
    background: linear-gradient(to right, #a7f3d0 0%, #d1fae5 100%);
    color: #0d9488;
}

.card-icon--blue {
    background: linear-gradient(to right, #bfdbfe 0%, #dbeafe 100%);
    color: #1e40af;
}

.card-icon--orange {
    background: linear-gradient(to right, #fed7aa 0%, #ffedd5 100%);
    color: #c2410c;
}

/* Policy page h2 icons */
.policy-h2-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 20px;
    background: linear-gradient(to right, #0f766e 0%, #0d9488 100%);
    color: #ffffff;
    font-size: 0.9rem;
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
    position: relative;
    top: -2px;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.22);
}

/* ─── Homepage: Hero CTA Buttons ────────────────────────────── */
.home-slide__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.home-slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font-main, 'Prompt', sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms ease;
    white-space: nowrap;
    line-height: 1.3;
}

.home-slide__btn--primary {
    background: #ffffff;
    color: #0f766e;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.home-slide__btn--primary:hover {
    background: #ecfdf5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.home-slide__btn--outline {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
}

.home-slide__btn--outline:hover {
    background: rgba(255,255,255,0.24);
    border-color: #fff;
}

/* ─── Homepage: Emergency / Contact Info Bar ─────────────────── */
.home-info-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}

.home-info-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1 1 180px;
    padding: 18px 14px;
    text-align: center;
    color: rgba(255,255,255,0.88);
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: filter 180ms, brightness 180ms;
    text-decoration: none;
    background: #0f766e;
}

.home-info-bar__item:last-child {
    border-right: none;
}

/* Column 1 — Emergency */
.home-info-bar__item--emergency {
    background: #0f766e;
}

/* Column 2 — Phone */
.home-info-bar__item--blue {
    background: #0f766e;
    cursor: default;
}
.home-info-bar__item--blue:hover {
    background: #0d9488;
    color: #fff;
}

/* Column 3 — Hours */
.home-info-bar__item--teal {
    background: #0f766e;
}

/* Column 4 — Location */
.home-info-bar__item--purple {
    background: #0f766e;
}

.home-info-bar__item > i {
    font-size: 1.7rem;
    margin-bottom: 4px;
}

/* Icon color — white for all columns */
.home-info-bar__item--emergency > i { color: #ffffff; }
.home-info-bar__item--blue       > i { color: #ffffff; }
.home-info-bar__item--teal       > i { color: #ffffff; }
.home-info-bar__item--purple     > i { color: #ffffff; }

.home-info-bar__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
    font-weight: 500;
}

.home-info-bar__value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.info-bar__ext-link {
    color: #ccfbf1;
    text-decoration: underline dotted;
    text-underline-offset: 3px;
    transition: color 150ms;
}
.info-bar__ext-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ─── Homepage: Quick Cards (improved) ──────────────────────── */
.quick-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.quick-card__icon--green {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.quick-card__icon--blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.quick-card__icon--orange {
    background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.quick-card h2 {
    margin: 0 0 2px;
    font-size: 1.35rem;
    color: var(--ink-strong);
}

.quick-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.quick-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    background: #0f766e;
    border: 1px solid #0f766e;
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(15, 118, 110, 0.2);
    text-decoration: none;
    transition: all 200ms ease;
    align-self: flex-end;
}

.quick-card__link:hover {
    background: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
    gap: 10px;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(15, 118, 110, 0.3);
    text-decoration: none;
}

/* ─── Homepage: Section Header (reusable) ───────────────────── */
.home-section {
    margin: 64px 0 40px;
}

.home-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: wrap;
}

.home-section__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #2dd4bf;
    font-weight: 500;
    margin: 0 0 4px;
}

.home-section-about__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 4px;
}

.home-section__title {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: #042f2e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-section__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(to right, #0f766e, #0d9488);
    color: #fff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(15,118,110,.26);
}

.home-section__see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #ffffff;
    background: #0f766e;
    border: 1px solid #0f766e;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 200ms ease;
}

.home-section__see-all:hover {
    background: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
    gap: 10px;
    text-decoration: none;
}

/* ─── Homepage: Departments Grid ────────────────────────────── */
.home-dept-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home-dept-card {
    border-radius: 16px;
    padding: 18px 14px 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 200ms ease, box-shadow 200ms ease;
    display: flex;
    flex-direction: row;
    gap: 16px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    cursor: default;
    align-items: flex-start;
}

.home-dept-card {
    position: relative;
}

/* Card backgrounds — removed, using white */
.home-dept-card--green,
.home-dept-card--blue,
.home-dept-card--red,
.home-dept-card--pink,
.home-dept-card--purple,
.home-dept-card--teal,
.home-dept-card--sky,
.home-dept-card--orchid,
.home-dept-card--yellow,
.home-dept-card--orange,
.home-dept-card--cyan,
.home-dept-card--silver {
    background: #ffffff;
    border-color: #e5e7eb;
}

/* Colored left accent bar per theme */
.home-dept-card--sky     { border-left: 4px solid #0ea5e9; }
.home-dept-card--blue    { border-left: 4px solid #1e40af; }
.home-dept-card--red     { border-left: 4px solid #dc2626; }
.home-dept-card--pink    { border-left: 4px solid #be185d; }
.home-dept-card--orchid  { border-left: 4px solid #c026d3; }
.home-dept-card--purple  { border-left: 4px solid #6d28d9; }
.home-dept-card--teal    { border-left: 4px solid #0f766e; }
.home-dept-card--yellow  { border-left: 4px solid #d97706; }
.home-dept-card--orange  { border-left: 4px solid #ea580c; }
.home-dept-card--cyan    { border-left: 4px solid #0891b2; }
.home-dept-card--green   { border-left: 4px solid #15803d; }
.home-dept-card--silver  { border-left: 4px solid #64748b; }

.home-dept-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.home-dept-card__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Icon — deep accent tone matching card theme */
.home-dept-card__icon--sky    { background: #0ea5e9; color: #e0f2fe; }
.home-dept-card__icon--blue   { background: #1e40af; color: #bfdbfe; }
.home-dept-card__icon--red    { background: #dc2626; color: #fee2e2; }
.home-dept-card__icon--pink   { background: #be185d; color: #fbcfe8; }
.home-dept-card__icon--orchid { background: #c026d3; color: #f5d0fe; }
.home-dept-card__icon--purple { background: #6d28d9; color: #ddd6fe; }
.home-dept-card__icon--teal   { background: #0f766e; color: #99f6e4; }
.home-dept-card__icon--yellow { background: #d97706; color: #fef3c7; }
.home-dept-card__icon--orange { background: #ea580c; color: #ffedd5; }
.home-dept-card__icon--cyan   { background: linear-gradient(to right, #0891b2, #0ea5e9); color: #cffafe; }
.home-dept-card__icon--green  { background: #15803d; color: #bbf7d0; }
.home-dept-card__icon--silver { background: #64748b; color: #f1f5f9; }

.home-dept-card h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

/* Per-color overrides no longer needed — all dark on white bg */
.home-dept-card--green h3,
.home-dept-card--blue h3,
.home-dept-card--red h3,
.home-dept-card--pink h3,
.home-dept-card--purple h3,
.home-dept-card--teal h3,
.home-dept-card--sky h3,
.home-dept-card--orchid h3,
.home-dept-card--yellow h3,
.home-dept-card--orange h3,
.home-dept-card--cyan h3,
.home-dept-card--silver h3 { color: #1f2937; }

.home-dept-card p {
    margin: 0;
    font-size: 0.76rem;
    color: #6b7280;
    line-height: 1.55;
    flex: 1;
}

/* ─── Homepage: About + Trust Stats ─────────────────────────── */
.home-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(to right, #0f766e 0%, #0d9488 55%, #14b8a6 100%);
    border-radius: 20px;
    padding: 40px 40px;
    margin-top: 64px;
    margin-bottom: 40px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.home-about::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.home-about__title {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-about__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.16);
    color: #ffffff;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-section__eyebrow.about-eyebrow {
    color: #99f6e4;
}

.home-about__desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin: 0 0 12px;
}

.home-about__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    background: rgba(255,255,255,0.14);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 180ms, gap 160ms;
}

.home-about__more:hover {
    background: rgba(255,255,255,0.24);
    gap: 12px;
}

.home-about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.home-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: background 180ms;
}

.home-stat:hover {
    background: rgba(255,255,255,0.16);
}

.home-stat__num {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    display: block;
}

.home-about__stats.is-visible .home-stat__num {
    animation: scalePop 500ms cubic-bezier(0.16,1,0.3,1) both;
}
.home-about__stats.is-visible .home-stat:nth-child(1) .home-stat__num { animation-delay:  80ms; }
.home-about__stats.is-visible .home-stat:nth-child(2) .home-stat__num { animation-delay: 160ms; }
.home-about__stats.is-visible .home-stat:nth-child(3) .home-stat__num { animation-delay: 240ms; }
.home-about__stats.is-visible .home-stat:nth-child(4) .home-stat__num { animation-delay: 320ms; }

.home-stat__plus {
    font-size: 1.2rem;
    font-weight: 700;
    color: #99f6e4;
}

.home-stat__label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    line-height: 1.3;
}

.home-stat--accent {
    background: rgba(134,239,172,0.12);
    border-color: rgba(134,239,172,0.3);
}

.home-stat__badge {
    font-size: 2rem;
    color: #99f6e4;
}

/* ─── Homepage: News Grid ────────────────────────────────────── */
.home-news-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: stretch;
}

.home-news-card {
    background: #ffffff;
    border: 1px solid rgba(15,118,110,0.1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 200ms ease, box-shadow 200ms ease;
    display: flex;
    flex-direction: column;
}

.home-news-card--featured {
    border: 1px solid rgba(15,118,110,0.18);
    box-shadow: 0 4px 18px rgba(15,118,110,0.1);
}

.home-news-card__badge {
    display: block;
    padding: 9px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.home-news-card__badge--news   { background: #0f766e; color: #ffffff; }
.home-news-card__badge--health { background: #1e40af; color: #ffffff; }
.home-news-card__badge--event  { background: #6d28d9; color: #ffffff; }

.home-news-card__body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-news-card__date {
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-news-card h3 {
    font-size: 1.06rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
    margin: 0 0 8px;
}

.home-news-card--featured h3 {
    font-size: 1.12rem;
}

.home-news-card p {
    font-size: 0.83rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 14px;
}

/* Body text only — clamp to 2 lines for equal card height */
.home-news-card__body > p:not(.home-news-card__date) {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.home-news-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.84rem;
    font-weight: 500;
    color: #ffffff;
    background: #0f766e;
    border: 1px solid #0f766e;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 160ms ease;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.home-news-card__link:hover {
    background: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
    gap: 9px;
    text-decoration: none;
}

/* ─── Responsive: Homepage new sections ─────────────────────── */
@media (max-width: 1080px) {
    .home-dept-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-about {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .home-about__stats {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .home-news-card:last-child {
        display: none;
    }
}

@media (max-width: 700px) {
    .home-slide__cta {
        margin-top: 18px;
        gap: 10px;
    }

    .home-slide__btn {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .home-info-bar {
        border-radius: 12px;
    }

    .home-info-bar__item {
        flex: 1 1 140px;
        padding: 12px 10px;
    }

    .home-info-bar__label {
        display: none;
    }

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

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

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

    .home-news-card:last-child {
        display: flex;
    }

    .home-section__title {
        font-size: 1.15rem;
    }
}

/* ─── Footer: Social Media Links (Priority 3) ───────────────── */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social__link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-social__link--line:hover {
    background: #06c755;
    border-color: #06c755;
    color: #ffffff;
}

.footer-social__link--yt:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
}

.footer-social__link--tiktok:hover {
    background: #010101;
    border-color: #010101;
    color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS — New Sections
   ═══════════════════════════════════════════════════════════════ */

/* ── Info Bar ─────────────────────────────────────────────────── */
.home-info-bar {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 500ms cubic-bezier(0.16,1,0.3,1),
                transform 500ms cubic-bezier(0.16,1,0.3,1);
}
.home-info-bar.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Section Headers ──────────────────────────────────────────── */
.home-section__header {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms cubic-bezier(0.16,1,0.3,1),
                transform 520ms cubic-bezier(0.16,1,0.3,1);
}
.home-section__header.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Dept Cards — stagger inside .home-dept-grid ─────────────── */
.home-dept-card {
    opacity: 0;
    transform: translateY(24px);
    --reveal-delay: 0ms;
    transition:
        opacity 480ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        transform 480ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        box-shadow 340ms cubic-bezier(0.16, 1, 0.3, 1) 0ms,
        background 340ms ease 0ms;
}
.home-dept-grid.is-visible .home-dept-card { opacity: 1; transform: translateY(0); }
.home-dept-grid.is-visible .home-dept-card:nth-child(1)  { --reveal-delay:  30ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(2)  { --reveal-delay:  90ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(3)  { --reveal-delay: 150ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(4)  { --reveal-delay: 210ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(5)  { --reveal-delay: 270ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(6)  { --reveal-delay: 330ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(7)  { --reveal-delay: 390ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(8)  { --reveal-delay: 450ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(9)  { --reveal-delay: 510ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(10) { --reveal-delay: 570ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(11) { --reveal-delay: 630ms; }
.home-dept-grid.is-visible .home-dept-card:nth-child(12) { --reveal-delay: 690ms; }

/* ── About Section — slide in from sides ─────────────────────── */
.home-about__content {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 580ms cubic-bezier(0.16,1,0.3,1),
                transform 580ms cubic-bezier(0.16,1,0.3,1);
}
.home-about.is-visible .home-about__content {
    opacity: 1;
    transform: none;
}

/* ── Stats — stagger inside .home-about__stats ───────────────── */
.home-stat {
    opacity: 0;
    transform: translateY(20px) scale(0.94);
    --reveal-delay: 0ms;
    transition:
        opacity 420ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        transform 480ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        box-shadow 340ms cubic-bezier(0.16, 1, 0.3, 1) 0ms,
        background 340ms ease 0ms;
}
.home-about__stats.is-visible .home-stat { opacity: 1; transform: translateY(0); }
.home-about__stats.is-visible .home-stat:nth-child(1) { --reveal-delay:  60ms; }
.home-about__stats.is-visible .home-stat:nth-child(2) { --reveal-delay: 140ms; }
.home-about__stats.is-visible .home-stat:nth-child(3) { --reveal-delay: 220ms; }
.home-about__stats.is-visible .home-stat:nth-child(4) { --reveal-delay: 300ms; }

/* ── News Cards — stagger inside .home-news-grid ─────────────── */
.home-news-card {
    opacity: 0;
    transform: translateY(22px);
    --reveal-delay: 0ms;
    transition:
        opacity 480ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        transform 480ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        box-shadow 340ms cubic-bezier(0.16, 1, 0.3, 1) 0ms,
        background 340ms ease 0ms;
}
.home-news-grid.is-visible .home-news-card { opacity: 1; transform: translateY(0); }
.home-news-grid.is-visible .home-news-card:nth-child(1) { --reveal-delay:  40ms; }
.home-news-grid.is-visible .home-news-card:nth-child(2) { --reveal-delay: 140ms; }
.home-news-grid.is-visible .home-news-card:nth-child(3) { --reveal-delay: 240ms; }

/* ── Quick Cards — stagger (replaces simple reveal-item) ─────── */
.quick-card {
    --reveal-delay: 0ms;
}

.quick-card:nth-child(1) { --reveal-delay:  30ms; }
.quick-card:nth-child(2) { --reveal-delay: 110ms; }
.quick-card:nth-child(3) { --reveal-delay: 190ms; }

/* ── prefers-reduced-motion override ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .home-info-bar,
    .home-section__header,
    .home-dept-card,
    .home-about__content,
    .home-stat,
    .home-news-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CARD LIFT HOVER — straight up, no tilt
   ═══════════════════════════════════════════════════════════════ */

.quick-card,
.home-dept-card,
.home-news-card,
.home-stat,
.policy-page .policy-box,
.policy-page .policy-right-item,
.policy-page .policy-cookie-type,
.about-page .about-stat,
.about-page .about-award,
.about-page .about-contact-card,
.about-page .about-vm__card {
    transition:
        opacity 520ms ease var(--reveal-delay, 0ms),
        transform 340ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        box-shadow 340ms cubic-bezier(0.16, 1, 0.3, 1) 0ms,
        background 340ms ease 0ms;
}

.quick-card:hover,
.quick-card.reveal-item.is-visible:hover,
.home-dept-card:hover,
.home-dept-grid.is-visible .home-dept-card:hover,
.home-news-card:hover,
.home-news-grid.is-visible .home-news-card:hover,
.home-stat:hover,
.home-about__stats.is-visible .home-stat:hover,
.policy-page .policy-box:hover,
.policy-page .policy-right-item:hover,
.reveal-item.is-visible.policy-right-item:hover,
.policy-page .policy-cookie-type:hover,
.reveal-item.is-visible.policy-cookie-type:hover,
.about-page .about-stat:hover,
.motion-group__item.is-visible.about-stat:hover,
.about-page .about-award:hover,
.motion-group__item.is-visible.about-award:hover,
.about-page .about-contact-card:hover,
.motion-group__item.is-visible.about-contact-card:hover,
.about-page .about-vm__card:hover,
.motion-group__item.is-visible.about-vm__card:hover {
    transition:
        opacity 520ms ease 0ms,
        transform 340ms cubic-bezier(0.16, 1, 0.3, 1) 0ms,
        box-shadow 340ms cubic-bezier(0.16, 1, 0.3, 1) 0ms,
        background 340ms ease 0ms;
    transform: translateY(-10px) scale(1.02);
}

.quick-card:hover,
.quick-card.reveal-item.is-visible:hover {
    box-shadow: 0 22px 52px rgba(4, 47, 46, 0.16), 0 0 0 1px rgba(15, 118, 110, 0.08);
}

.home-dept-card:hover,
.home-dept-grid.is-visible .home-dept-card:hover {
    box-shadow: 0 20px 48px rgba(4, 47, 46, 0.18), 0 0 0 1px rgba(15, 118, 110, 0.08);
}

.home-news-card:hover,
.home-news-grid.is-visible .home-news-card:hover {
    box-shadow: 0 20px 48px rgba(4, 47, 46, 0.15), 0 0 0 1px rgba(15, 118, 110, 0.06);
}

.home-stat:hover,
.home-about__stats.is-visible .home-stat:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.policy-page .policy-box:hover,
.policy-page .policy-right-item:hover,
.reveal-item.is-visible.policy-right-item:hover,
.policy-page .policy-cookie-type:hover,
.reveal-item.is-visible.policy-cookie-type:hover {
    box-shadow: 0 16px 36px rgba(4, 47, 46, 0.12), 0 0 0 1px rgba(15, 118, 110, 0.08);
}

.about-page .about-stat:hover,
.motion-group__item.is-visible.about-stat:hover,
.about-page .about-award:hover,
.motion-group__item.is-visible.about-award:hover,
.about-page .about-contact-card:hover,
.motion-group__item.is-visible.about-contact-card:hover,
.about-page .about-vm__card:hover,
.motion-group__item.is-visible.about-vm__card:hover {
    box-shadow: 0 18px 40px rgba(4, 47, 46, 0.14), 0 0 0 1px rgba(15, 118, 110, 0.08);
}

@media (prefers-reduced-motion: reduce) {
    body::before { display: none; }

    .quick-card:hover,
    .home-dept-card:hover,
    .home-news-card:hover,
    .home-stat:hover,
    .policy-page .policy-box:hover,
    .policy-page .policy-right-item:hover,
    .policy-page .policy-cookie-type:hover,
    .about-page .about-stat:hover,
    .about-page .about-award:hover,
    .about-page .about-contact-card:hover,
    .about-page .about-vm__card:hover {
        transform: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   POLICY / ABOUT PAGE MOTION
   ═══════════════════════════════════════════════════════════════ */

@keyframes policyHeroIn {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes policyHeroTextIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes policyHeroIconIn {
    from {
        opacity: 0;
        transform: scale(0.72);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body.is-animated .policy-page:not(.about-page) .policy-page__hero {
    animation: policyHeroIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-animated .policy-page:not(.about-page) .policy-page__hero-inner > .policy-page__category,
body.is-animated .policy-page:not(.about-page) .policy-page__hero-inner > .policy-page__heading,
body.is-animated .policy-page:not(.about-page) .policy-page__hero-inner > .policy-page__meta {
    opacity: 0;
    animation: policyHeroTextIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.is-animated .policy-page:not(.about-page) .policy-page__hero-inner > .policy-page__category {
    animation-delay: 0.12s;
}

body.is-animated .policy-page:not(.about-page) .policy-page__hero-inner > .policy-page__heading {
    animation-delay: 0.24s;
}

body.is-animated .policy-page:not(.about-page) .policy-page__hero-inner > .policy-page__meta {
    animation-delay: 0.38s;
}

body.is-animated .policy-page:not(.about-page) .policy-page__heading-icon {
    animation: policyHeroIconIn 0.55s 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-animated .policy-page:not(.about-page) .policy-page__layout {
    animation: fadeUp 620ms cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.motion-group__item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.motion-group__item.is-visible,
.motion-group.is-visible .motion-group__item {
    opacity: 1;
}

.reveal-item.is-visible.quick-card,
.motion-group__item.is-visible.about-stat,
.motion-group__item.is-visible.about-award,
.motion-group__item.is-visible.about-contact-card,
.motion-group__item.is-visible.about-vm__card {
    transform: translateY(0);
}

.motion-group__item.is-visible:not(.about-stat):not(.about-award):not(.about-contact-card):not(.about-vm__card),
.motion-group.is-visible .motion-group__item:not(.about-stat):not(.about-award):not(.about-contact-card):not(.about-vm__card) {
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    body.is-animated .policy-page:not(.about-page) .policy-page__hero,
    body.is-animated .policy-page:not(.about-page) .policy-page__layout,
    body.is-animated .policy-page:not(.about-page) .policy-page__hero-inner > .policy-page__category,
    body.is-animated .policy-page:not(.about-page) .policy-page__hero-inner > .policy-page__heading,
    body.is-animated .policy-page:not(.about-page) .policy-page__hero-inner > .policy-page__meta,
    body.is-animated .policy-page:not(.about-page) .policy-page__heading-icon,
    .motion-group__item,
    .policy-page .reveal-item {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
