:root {
    --ccp-primary: #af231c;
    --ccp-primary-hover: #8d1813;
    --ccp-primary-bright: #d1392f;
    --ccp-primary-soft: #f1c7c3;
    --ccp-primary-pale: #fff3f1;
    --ccp-ink: #212721;
    --ccp-ink-soft: #3d433e;
    --ccp-muted: #656b65;
    --ccp-paper: #f8f5ee;
    --ccp-paper-warm: #eee9dd;
    --ccp-surface: #ffffff;
    --ccp-line: #d8d3c7;
    --ccp-line-strong: #bcb5a8;
    --ccp-gold: #e9ad3f;
    --ccp-radius-sm: .15rem;
    --ccp-radius: .25rem;
    --ccp-radius-lg: .4rem;
    --ccp-shadow-sm: 0 12px 30px rgba(33, 39, 33, .08);
    --ccp-shadow: 0 28px 80px rgba(33, 39, 33, .16);
    --ccp-font-display: "Barlow Condensed", sans-serif;
    --ccp-font-body: "Source Sans 3", sans-serif;
    --bs-primary: #af231c;
    --bs-primary-rgb: 175, 35, 28;
    --bs-body-color: #212721;
    --bs-body-bg: #f8f5ee;
    --bs-font-sans-serif: var(--ccp-font-body);
}

body {
    font-family: var(--ccp-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--ccp-font-display);
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.eyebrow {
    letter-spacing: .18em;
}

.site-header {
    border-bottom: 1px solid rgba(33, 39, 33, .14);
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 10px 36px rgba(33, 39, 33, .12);
}

.utility-bar {
    min-height: 2.35rem;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--ccp-primary);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .025em;
}

.utility-bar a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #fff;
    text-decoration: none;
}

.utility-bar a:hover {
    color: #fff;
    text-decoration: underline;
}

.utility-bar .material-symbols-outlined {
    font-size: 1rem;
}

.utility-location strong {
    margin-right: .25rem;
    text-transform: uppercase;
}

.utility-phone {
    white-space: nowrap;
}

.site-header .navbar {
    min-height: 5.35rem;
}

.navbar-brand {
    width: clamp(13.5rem, 23vw, 17.5rem);
    padding: .4rem 0;
}

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

.navbar-nav .nav-link {
    color: var(--ccp-ink);
    font-size: .78rem;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.navbar-toggler {
    border-color: rgba(175, 35, 28, .25);
    border-radius: .15rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(175, 35, 28, .14);
}

.btn {
    border-radius: .1rem;
    letter-spacing: .1em;
}

.admin-hero {
    position: relative;
    min-height: 38rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--ccp-ink);
    isolation: isolate;
}

.admin-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        radial-gradient(circle at 10% 20%, rgba(175, 35, 28, .3), transparent 30rem),
        linear-gradient(128deg, #171b17 0%, #242a24 70%, #151815 100%);
}

.admin-hero-lines {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .2;
    background-image: repeating-linear-gradient(115deg, transparent 0, transparent 84px, rgba(255, 255, 255, .07) 85px, rgba(255, 255, 255, .07) 86px);
    mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.admin-breadcrumb {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    z-index: 2;
    display: flex;
    gap: .65rem;
    align-items: center;
    color: rgba(255, 255, 255, .48);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.admin-breadcrumb a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.admin-breadcrumb a:hover {
    color: #fff;
}

.admin-hero-layout {
    min-height: 38rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, .55fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    padding: 6.5rem 0 4.5rem;
}

.admin-hero-layout > * {
    min-width: 0;
}

.admin-hero-content {
    position: relative;
    z-index: 2;
    animation: admin-hero-in .7s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes admin-hero-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.hero-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 1.2rem;
    color: #f2b5b0;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-kicker span {
    color: rgba(255, 255, 255, .3);
}

.admin-hero h1 {
    margin: 0 0 1.25rem;
    color: #fff;
    font-size: clamp(5rem, 10.5vw, 10rem);
    font-weight: 800;
    line-height: .76;
}

.admin-hero-content > p {
    max-width: 45rem;
    margin-bottom: 2.25rem;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(1.08rem, 2vw, 1.25rem);
    line-height: 1.55;
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .32);
    background: transparent;
}

.btn-ghost:hover,
.btn-ghost:focus {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.admin-hero-mark {
    position: relative;
    min-height: 22rem;
    display: grid;
    place-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .035);
    box-shadow: 1.2rem 1.2rem 0 var(--ccp-primary);
    text-align: center;
    transform: rotate(2deg);
    animation: admin-mark-in .8s .12s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes admin-mark-in {
    from {
        opacity: 0;
        transform: rotate(2deg) translateX(30px);
    }
    to {
        opacity: 1;
        transform: rotate(2deg);
    }
}

.admin-hero-mark::before,
.admin-hero-mark::after {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, .16);
}

.admin-hero-mark::before {
    top: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: 1px;
}

.admin-hero-mark::after {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    height: 1px;
}

.admin-hero-number {
    font-family: var(--ccp-font-display);
    font-size: clamp(6rem, 10vw, 9rem);
    font-weight: 800;
    line-height: .65;
}

.admin-hero-label {
    margin-top: 1.3rem;
    color: #f2b5b0;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    line-height: 1.5;
    text-transform: uppercase;
}

.admin-hero-word {
    position: absolute;
    right: -1rem;
    bottom: -2.2rem;
    z-index: -1;
    color: transparent;
    font-family: var(--ccp-font-display);
    font-size: clamp(8rem, 18vw, 17rem);
    font-weight: 800;
    line-height: .72;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .055);
}

.office-strip {
    border-bottom: 1px solid var(--ccp-line);
    background: #fff;
}

.office-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.office-strip-grid > * {
    min-height: 6.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--ccp-ink);
    border-right: 1px solid var(--ccp-line);
    text-decoration: none;
}

.office-strip-grid > :first-child {
    border-left: 1px solid var(--ccp-line);
}

.office-strip-grid > a:hover {
    color: var(--ccp-primary);
    background: var(--ccp-primary-pale);
}

.office-strip-grid .material-symbols-outlined {
    width: 2.8rem;
    height: 2.8rem;
    color: #fff;
    background: var(--ccp-primary);
}

.office-strip-grid small,
.office-strip-grid strong {
    display: block;
}

.office-strip-grid small {
    color: var(--ccp-muted);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.office-strip-grid strong {
    font-family: var(--ccp-font-display);
    font-size: 1.3rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.leadership-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.leadership-section::after {
    position: absolute;
    width: 24rem;
    height: 24rem;
    right: -13rem;
    bottom: -16rem;
    content: "";
    border: 4.5rem solid var(--ccp-primary-pale);
    border-radius: 50%;
}

.leadership-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.leadership-section h2 {
    max-width: 36rem;
    margin: 0;
    color: var(--ccp-ink);
    font-size: clamp(3.5rem, 6.5vw, 6.4rem);
    line-height: .86;
}

.leadership-copy {
    padding-top: 1.4rem;
    border-top: 4px solid var(--ccp-primary);
}

.leadership-copy > p {
    color: var(--ccp-ink-soft);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.58;
}

.leadership-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-top: 2rem;
}

.support-section {
    background: var(--ccp-paper-warm);
}

.support-heading,
.resource-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 31rem);
    gap: 4rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.support-heading > p,
.resource-heading > p {
    margin: 0 0 .35rem;
    color: var(--ccp-muted);
    font-size: 1.08rem;
}

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

.support-card {
    position: relative;
    min-height: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.8rem, 3.5vw, 2.7rem);
    overflow: hidden;
    border: 1px solid var(--ccp-line);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.support-card:hover {
    box-shadow: var(--ccp-shadow);
    transform: translateY(-5px);
}

.support-card-red {
    color: #fff;
    border-color: var(--ccp-primary);
    background: var(--ccp-primary);
}

.support-card-dark {
    color: #fff;
    border-color: var(--ccp-ink);
    background: var(--ccp-ink);
}

.support-card > .material-symbols-outlined {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 3.2rem;
}

.support-card-red > .material-symbols-outlined,
.support-card-dark > .material-symbols-outlined {
    color: #f2b5b0;
}

.support-number {
    position: absolute;
    top: 1rem;
    right: 1.3rem;
    color: rgba(33, 39, 33, .1);
    font-family: var(--ccp-font-display);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.support-card-red .support-number,
.support-card-dark .support-number {
    color: rgba(255, 255, 255, .11);
}

.support-card h3 {
    margin-bottom: .7rem;
    color: inherit;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: .95;
}

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

.support-card-red p,
.support-card-dark p {
    color: rgba(255, 255, 255, .72);
}

.resource-section {
    background: #fff;
}

.resource-heading h2 {
    margin: 0;
    font-size: clamp(3.25rem, 6vw, 5.8rem);
    line-height: .88;
}

.resource-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
    gap: 1rem;
}

.admin-resource {
    position: relative;
    min-height: 29rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(2rem, 4.5vw, 3.5rem);
    overflow: hidden;
    border: 1px solid var(--ccp-line);
    border-radius: 0;
    background: var(--ccp-paper);
    transition: transform .25s ease, box-shadow .25s ease;
}

.admin-resource:hover {
    box-shadow: var(--ccp-shadow);
    transform: translateY(-5px);
}

.admin-resource-featured {
    color: #fff;
    border-color: var(--ccp-primary);
    background: var(--ccp-primary);
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ccp-muted);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.admin-resource-featured .resource-meta {
    color: rgba(255, 255, 255, .62);
}

.resource-icon {
    position: absolute;
    top: 5.2rem;
    right: clamp(2rem, 4vw, 3.5rem);
    color: rgba(33, 39, 33, .1);
    font-size: clamp(5rem, 9vw, 8rem);
}

.admin-resource-featured .resource-icon {
    color: rgba(255, 255, 255, .12);
}

.admin-resource h3 {
    position: relative;
    max-width: 33rem;
    margin-bottom: 1rem;
    color: inherit;
    font-size: clamp(2.65rem, 5vw, 4.6rem);
    line-height: .86;
}

.admin-resource p {
    position: relative;
    max-width: 34rem;
    color: var(--ccp-muted);
    font-size: 1.05rem;
}

.admin-resource-featured p {
    color: rgba(255, 255, 255, .74);
}

.admin-resource .btn {
    position: relative;
}

.document-route {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.2rem;
    align-items: center;
    margin-top: 1rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid var(--ccp-line);
    background: var(--ccp-paper);
}

.document-route > .material-symbols-outlined {
    width: 3rem;
    height: 3rem;
    color: var(--ccp-primary);
    background: var(--ccp-primary-pale);
}

.document-route p {
    margin: 0;
    color: var(--ccp-muted);
}

.document-route p strong {
    color: var(--ccp-ink);
}

.office-cta-section {
    background: var(--ccp-paper-warm);
}

.office-cta {
    position: relative;
    min-height: 26rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(2.5rem, 6vw, 5.5rem);
    overflow: hidden;
    color: #fff;
    background: var(--ccp-ink);
    box-shadow: 1rem 1rem 0 var(--ccp-primary);
}

.office-cta::after {
    position: absolute;
    width: 28rem;
    height: 28rem;
    right: -16rem;
    bottom: -18rem;
    content: "";
    border: 5rem solid rgba(175, 35, 28, .28);
    border-radius: 50%;
}

.office-cta > * {
    position: relative;
    z-index: 1;
}

.office-cta-mark {
    width: clamp(7rem, 11vw, 9rem);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
}

.office-cta-mark span {
    font-size: clamp(3rem, 5vw, 4.5rem);
}

.office-cta .eyebrow {
    color: #f2b5b0;
}

.office-cta h2 {
    max-width: 44rem;
    margin-bottom: .75rem;
    color: #fff;
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    line-height: .88;
}

.office-cta p {
    max-width: 39rem;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 1.08rem;
}

.office-cta-actions {
    display: grid;
    gap: 1.2rem;
}

.visit-link {
    display: grid;
    max-width: 16rem;
    color: #fff;
    font-family: var(--ccp-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.05;
    text-decoration: none;
    text-transform: uppercase;
}

.visit-link span:first-child {
    margin-bottom: .35rem;
    color: rgba(255, 255, 255, .55);
    font-family: var(--ccp-font-body);
    font-size: .65rem;
    letter-spacing: .15em;
}

.visit-link:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer {
    color: #cfd3cf;
    background: #171b17;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-top p {
    max-width: 28rem;
    margin: 0;
    color: #aeb4ae;
    font-size: 1.05rem;
    text-align: right;
}

.footer-logo {
    display: inline-flex;
    max-width: 19rem;
    padding: .8rem 1rem;
    background: #fff;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-heading {
    color: #f1a29d;
}

.footer-fax {
    display: block;
    margin-top: .25rem;
    color: #959c95;
    font-size: .9rem;
}

.footer-bottom {
    color: #8f968f;
}

@media (max-width: 1199.98px) {
    .navbar-brand {
        width: 15rem;
    }
}

@media (max-width: 991.98px) {
    .admin-hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(16rem, .45fr);
        gap: 3rem;
    }

    .admin-hero-mark {
        min-height: 18rem;
    }

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

    .support-card:last-child {
        grid-column: 1 / -1;
    }

    .office-cta {
        grid-template-columns: auto 1fr;
    }

    .office-cta-actions {
        grid-column: 2;
    }
}

@media (max-width: 767.98px) {
    .utility-location span:last-child {
        max-width: 14rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .admin-hero-layout {
        grid-template-columns: 1fr;
        padding-bottom: 5.5rem;
    }

    .admin-hero-mark {
        min-height: 16rem;
        margin-right: 1.2rem;
        animation: none;
        transform: none;
    }

    .office-strip-grid {
        grid-template-columns: 1fr;
    }

    .office-strip-grid > *,
    .office-strip-grid > :first-child {
        min-height: 5.5rem;
        border-right: 1px solid var(--ccp-line);
        border-bottom: 1px solid var(--ccp-line);
        border-left: 1px solid var(--ccp-line);
    }

    .leadership-layout,
    .support-heading,
    .resource-heading,
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .support-card:last-child {
        grid-column: auto;
    }

    .support-card {
        min-height: 21rem;
    }

    .admin-resource {
        min-height: 25rem;
    }

    .document-route {
        grid-template-columns: auto 1fr;
    }

    .document-route .inline-link {
        grid-column: 2;
    }

    .office-cta {
        grid-template-columns: 1fr;
        box-shadow: .65rem .65rem 0 var(--ccp-primary);
    }

    .office-cta-mark {
        width: 7rem;
    }

    .office-cta-actions {
        grid-column: 1;
    }

    .footer-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top p {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .utility-bar {
        min-height: 2.6rem;
    }

    .utility-location span:last-child {
        max-width: 10.5rem;
    }

    .utility-phone .material-symbols-outlined {
        display: none;
    }

    .navbar-brand {
        width: 12.5rem;
    }

    .admin-breadcrumb {
        left: 1.5rem;
    }

    .admin-hero h1 {
        font-size: clamp(3.6rem, 15.5vw, 5rem);
    }

    .admin-hero .btn,
    .office-cta-actions .btn {
        width: 100%;
    }

    .leadership-section h2 {
        font-size: clamp(3.4rem, 17vw, 5rem);
    }

    .leadership-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-resource {
        min-height: 27rem;
    }

    .resource-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: .25rem;
    }

    .resource-icon {
        top: 6.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .admin-hero-content,
    .admin-hero-mark {
        animation: none;
    }
}
