:root {
    --ink: #292a2c;
    --ink-deep: #171719;
    --ink-soft: #58595b;
    --paper: #fcfafb;
    --paper-warm: #f4f1f3;
    --white: #ffffff;
    --brand-primary: #d62975;
    --brand-primary-light: #f06ca6;
    --brand-primary-dark: #b61f61;
    --brand-charcoal: #58595b;
    --graphite: #37353a;
    --graphite-deep: #2d2c30;
    --text-on-dark: #f0ecee;
    --text-on-dark-muted: #bfb8bc;
    --line: #e6dfe2;
    --shadow: 0 24px 70px rgba(28, 22, 25, 0.14);
    --radius: 22px;
    --bs-primary-rgb: 214, 41, 117;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    min-height: 100vh;
    margin: 0;
    flex-direction: column;
    color: var(--ink);
    background: var(--paper);
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1 0 auto;
}

a {
    color: inherit;
}

svg {
    display: block;
}

.skip-link {
    position: fixed;
    z-index: 1100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--ink-deep);
    background: var(--brand-primary-light);
    border-radius: 8px;
    font-weight: 750;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--brand-primary-light);
    outline-offset: 4px;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    background: rgba(55, 53, 58, 0.98);
    border-bottom: 1px solid rgba(214, 41, 117, 0.24);
    transition:
        background 180ms ease,
        box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(55, 53, 58, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.site-header > .container {
    min-height: 96px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.brand-logo-header {
    height: 72px;
}

.site-header .navbar-brand {
    padding: 4px 6px;
    background: var(--paper-warm);
    border-radius: 8px;
}

.site-primary-nav {
    margin-left: 1.25rem;
}

.site-header .navbar-toggler {
    border-color: rgba(240, 236, 238, 0.32);
}

.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(214, 41, 117, 0.25);
}

.site-header .nav-link {
    color: rgba(240, 236, 238, 0.78);
    font-size: 0.92rem;
    font-weight: 650;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.active {
    color: var(--brand-primary-light);
}

.site-header .nav-link.active {
    text-decoration: underline;
    text-decoration-color: var(--brand-primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
}

.btn-brand {
    --bs-btn-color: var(--white);
    --bs-btn-bg: var(--brand-primary);
    --bs-btn-border-color: var(--brand-primary);
    --bs-btn-hover-color: var(--ink-deep);
    --bs-btn-hover-bg: var(--brand-primary-light);
    --bs-btn-hover-border-color: var(--brand-primary-light);
    --bs-btn-active-color: var(--ink-deep);
    --bs-btn-active-bg: var(--brand-primary-light);
    --bs-btn-active-border-color: var(--brand-primary-light);
    --bs-btn-focus-shadow-rgb: 214, 41, 117;
    padding: 0.72rem 1.2rem;
    font-size: 0.92rem;
    font-weight: 780;
}

.btn-brand.active {
    box-shadow: 0 0 0 3px rgba(214, 41, 117, 0.18);
}

.btn svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.home-intro {
    padding: 178px 0 72px;
    color: var(--text-on-dark);
    background: transparent;
}

.home-page,
.interior-page {
    background: var(--graphite);
}

.home-page main,
.interior-page main {
    background: linear-gradient(
        135deg,
        var(--graphite-deep) 0%,
        var(--graphite-deep) 58%,
        #342d32 80%,
        #3b2d35 100%
    );
}

.home-intro .row > div {
    width: 100%;
}

.home-intro h1 {
    max-width: none;
    margin: 0;
    color: var(--brand-primary-light);
    font-size: clamp(1.75rem, 2.4vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    white-space: nowrap;
}

.home-intro-copy {
    max-width: 790px;
    margin: 34px 0 0;
    color: var(--text-on-dark-muted);
    font-size: 1.14rem;
    line-height: 1.8;
}

.home-contact-link {
    color: var(--brand-primary-light);
}

.home-contact-link:hover,
.home-contact-link:focus {
    color: var(--white);
}

.home-links-section {
    padding: 0 0 78px;
    color: var(--text-on-dark);
    background: transparent;
}

.home-links-layout {
    padding-top: 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-links-section h2 {
    margin: 0 0 29px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
    font-weight: 780;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-page-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.home-page-link {
    position: relative;
    display: flex;
    min-height: 190px;
    padding: 31px 55px 30px 30px;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition:
        background-color 160ms ease,
        border-color 160ms ease;
}

.home-page-link:first-child {
    border-left: 0;
}

.home-page-link-title,
.home-page-link-copy {
    display: block;
}

.home-page-link-title {
    color: var(--text-on-dark);
    font-size: 1.15rem;
    font-weight: 730;
}

.home-page-link-copy {
    max-width: 330px;
    margin-top: 15px;
    color: var(--text-on-dark-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.home-page-link-arrow {
    position: absolute;
    top: 32px;
    right: 30px;
    color: var(--brand-primary);
    transition: transform 160ms ease;
}

.home-page-link:hover,
.home-page-link:focus {
    background: rgba(214, 41, 117, 0.045);
    border-color: rgba(214, 41, 117, 0.5);
}

.home-page-link:hover .home-page-link-title,
.home-page-link:focus .home-page-link-title {
    color: var(--brand-primary-light);
}

.home-page-link:hover .home-page-link-arrow,
.home-page-link:focus .home-page-link-arrow {
    transform: translateX(4px);
}

.page-intro {
    padding: 178px 0 72px;
    color: var(--text-on-dark);
}

.page-label,
.content-kicker {
    color: var(--brand-primary-light);
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.page-label {
    margin: 0 0 19px;
}

.page-intro h1 {
    max-width: none;
    margin: 0;
    color: var(--brand-primary-light);
    font-size: clamp(1.75rem, 2.4vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.page-intro-copy {
    max-width: 790px;
    margin: 34px 0 0;
    color: var(--text-on-dark-muted);
    font-size: 1.14rem;
    line-height: 1.8;
}

.content-section {
    padding: 0 0 78px;
    color: var(--text-on-dark);
}

.about-history-section {
    padding-top: 126px;
}

.content-section-heading {
    padding: 45px 0 31px;
    border-top: 1px solid rgba(240, 236, 238, 0.14);
}

.content-section-heading > h2 {
    margin: 0;
    color: rgba(240, 236, 238, 0.58);
    font-size: 0.78rem;
    font-weight: 780;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.content-section-heading > .brand-heading {
    color: var(--brand-primary-light);
}

.content-row {
    display: grid;
    padding: 52px 0;
    grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
    gap: 8%;
}

.content-row + .content-row {
    border-top: 1px solid rgba(240, 236, 238, 0.17);
}

.content-row-divided {
    border-top: 1px solid rgba(240, 236, 238, 0.17);
}

.content-kicker {
    margin: 0 0 15px;
}

.content-row-heading h3,
.content-row-body > h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 680;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.content-row-body > h3 {
    margin-bottom: 28px;
}

.content-row-body > p,
.content-lede {
    margin: 0 0 22px;
    color: var(--text-on-dark-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.content-row-body > p:last-of-type {
    margin-bottom: 0;
}

.lined-list {
    display: grid;
    margin: 34px 0 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    list-style: none;
}

.lined-list li {
    position: relative;
    padding: 15px 0 15px 18px;
    border-top: 1px solid rgba(240, 236, 238, 0.14);
    color: rgba(240, 236, 238, 0.78);
    font-size: 0.88rem;
}

.lined-list li::before {
    position: absolute;
    top: 24px;
    left: 1px;
    width: 5px;
    height: 5px;
    background: var(--brand-primary);
    border-radius: 50%;
    content: "";
}

.founder-portrait {
    display: block;
    width: min(100%, 320px);
    height: auto;
    border: 1px solid rgba(240, 236, 238, 0.17);
    border-radius: 8px;
}

.page-cta {
    padding: 0 0 78px;
    color: var(--text-on-dark);
}

.page-cta-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
    border-top: 1px solid rgba(240, 236, 238, 0.18);
    border-bottom: 1px solid rgba(240, 236, 238, 0.18);
}

.page-cta-copy {
    padding: 49px 55px 49px 0;
}

.page-cta-copy h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.3vw, 2rem);
    font-weight: 680;
    letter-spacing: -0.035em;
    line-height: 1.16;
}

.page-cta-copy > p:last-child {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--text-on-dark-muted);
    line-height: 1.8;
}

.page-cta-link {
    display: flex;
    padding: 35px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: var(--text-on-dark);
    border-left: 1px solid rgba(240, 236, 238, 0.18);
    font-size: 0.92rem;
    font-weight: 720;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease;
}

.page-cta-link span:last-child {
    color: var(--brand-primary-light);
    font-size: 1.25rem;
    transition: transform 160ms ease;
}

.page-cta-link:hover,
.page-cta-link:focus {
    color: var(--brand-primary-light);
    background: rgba(214, 41, 117, 0.055);
}

.page-cta-link:hover span:last-child,
.page-cta-link:focus span:last-child {
    transform: translateX(4px);
}

.contact-alert {
    margin: 0 0 45px;
    padding: 24px 28px;
    color: #e4f5eb;
    background: #294137;
    border-color: #47705d;
    border-radius: 8px;
}

.contact-alert h2 {
    margin: 0;
    color: inherit;
    font-size: 1.16rem;
    font-weight: 760;
}

.contact-alert p {
    margin: 6px 0 0;
}

.contact-section {
    background: transparent;
}

.contact-form-panel {
    padding: 0;
    color: var(--text-on-dark);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color-scheme: dark;
}

.contact-form-panel h3,
.contact-sidebar h3 {
    margin: 0;
    color: var(--text-on-dark);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 680;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.form-field {
    height: 100%;
}

.form-intro {
    max-width: 610px;
    margin: 20px 0 38px;
    color: var(--text-on-dark-muted);
}

.form-label {
    margin-bottom: 8px;
    color: var(--text-on-dark);
    font-size: 0.85rem;
    font-weight: 720;
}

.optional-label {
    color: rgba(240, 236, 238, 0.57);
    font-size: 0.72rem;
}

.form-control,
.form-select {
    min-height: 49px;
    color: var(--text-on-dark);
    background-color: #403e43;
    border-color: rgba(240, 236, 238, 0.24);
}

textarea.form-control {
    min-height: 170px;
}

.form-control:focus,
.form-select:focus {
    color: var(--text-on-dark);
    background-color: #454248;
    border-color: var(--brand-primary-light);
    box-shadow: 0 0 0 0.22rem rgba(240, 108, 166, 0.17);
}

.field-error {
    margin: 7px 0 0;
    color: #ff9fba;
    font-size: 0.8rem;
    font-weight: 650;
}

.form-submit-row {
    display: flex;
    margin-top: 35px;
    padding-top: 30px;
    align-items: center;
    gap: 24px;
    border-top-color: rgba(240, 236, 238, 0.16);
    border-top-style: solid;
    border-top-width: 1px;
}

.contact-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    white-space: nowrap !important;
}

.contact-sidebar {
    position: sticky;
    top: 125px;
    padding-top: 12px;
    color: var(--text-on-dark);
}

.contact-sidebar .content-kicker {
    margin-bottom: 15px;
}

.contact-sidebar dl {
    margin: 35px 0 0;
}

.contact-sidebar dl > div {
    padding: 19px 0;
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: rgba(240, 236, 238, 0.16);
}

.contact-sidebar dt {
    margin-bottom: 4px;
    color: var(--brand-primary-light);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.contact-sidebar dd {
    margin: 0;
    color: var(--text-on-dark-muted);
}

.contact-guidance {
    margin-top: 32px;
    padding: 26px 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(240, 236, 238, 0.16);
    border-radius: 0;
}

.contact-guidance h4 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 740;
}

.contact-guidance ul {
    margin: 15px 0 0;
    padding-left: 19px;
    color: var(--text-on-dark-muted);
    font-size: 0.82rem;
}

.contact-guidance li + li {
    margin-top: 7px;
}

.site-footer {
    flex: 0 0 auto;
    padding: 70px 0 25px;
    color: var(--text-on-dark-muted);
    background: var(--graphite);
    border-top: 1px solid rgba(214, 41, 117, 0.24);
}

.brand-footer {
    margin-bottom: 17px;
}

.footer-logo-plate {
    display: inline-flex;
    padding: 8px 12px;
    align-items: center;
    background: var(--paper-warm);
    border-radius: 8px;
}

.brand-logo-footer {
    height: 38px;
}

.brand-footer + p {
    margin: 0;
    font-size: 0.83rem;
}

.footer-nav a {
    color: rgba(240, 236, 238, 0.78);
    font-size: 0.82rem;
    font-weight: 620;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: var(--brand-primary-light);
}

.footer-divider {
    border-bottom: 1px solid rgba(240, 236, 238, 0.14);
}

.footer-meta {
    color: rgba(240, 236, 238, 0.62);
    font-size: 0.7rem;
}

.footer-meta p {
    margin: 0;
}

@media (max-width: 991.98px) {
    .site-header > .container {
        min-height: 86px;
    }

    .site-header .navbar-collapse {
        padding: 13px 0 19px;
    }

    .site-primary-nav {
        margin-left: 0;
    }

    .site-header .nav-link {
        padding-block: 0.7rem;
    }

    .site-header .nav-link.active {
        text-underline-offset: 4px;
    }

    .home-intro {
        padding: 145px 0 75px;
    }

    .page-intro {
        padding: 145px 0 75px;
    }

    .about-history-section {
        padding-top: 93px;
    }

    .content-row,
    .page-cta-layout {
        grid-template-columns: 1fr;
    }

    .content-row {
        gap: 32px;
    }

    .content-row-heading {
        max-width: 680px;
    }

    .page-cta-copy {
        padding: 45px 0;
    }

    .page-cta-link {
        min-height: 105px;
        padding: 28px 0;
        border-top: 1px solid rgba(240, 236, 238, 0.18);
        border-left: 0;
    }

    .contact-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .home-page-links {
        grid-template-columns: 1fr;
        border: 0;
    }

    .home-page-link {
        display: grid;
        min-height: 0;
        padding: 25px 38px 25px 0;
        grid-template-columns: minmax(92px, 0.3fr) minmax(0, 1fr);
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-left: 0;
    }

    .home-page-link:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .home-page-link-copy {
        max-width: none;
        margin-top: 0;
    }

    .home-page-link-arrow {
        top: 26px;
        right: 3px;
    }

    .content-section,
    .page-cta {
        padding-bottom: 58px;
    }

    .about-history-section {
        padding-top: 90px;
    }

    .content-section-heading {
        padding: 38px 0 27px;
    }

    .content-row {
        padding: 40px 0;
    }

    .lined-list {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 0;
        border-radius: 0;
    }

    .form-submit-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .brand-logo-header {
        height: 60px;
    }

    .home-intro h1 {
        font-size: clamp(0.7rem, 3.8vw, 1.15rem);
    }

    .home-intro {
        padding: 130px 0 65px;
    }

    .home-intro-copy {
        font-size: 1rem;
    }

    .home-links-section {
        padding: 0 0 58px;
    }

    .home-links-layout {
        padding-top: 48px;
    }

    .home-links-section h2 {
        margin: 0 0 26px;
    }

    .page-intro {
        padding: 130px 0 65px;
    }

    .page-intro h1 {
        font-size: clamp(1.65rem, 8vw, 2.15rem);
    }

    .page-intro-copy {
        font-size: 1rem;
    }

    .content-row-heading h3,
    .content-row-body > h3 {
        font-size: clamp(1.3rem, 6.5vw, 1.65rem);
    }

    .founder-portrait {
        width: min(100%, 280px);
    }

    .contact-form-panel {
        padding: 0;
        border-radius: 0;
    }

    .footer-meta {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Shared light visual system for the public site */
.site-header {
    background: rgba(55, 53, 58, 0.98);
    border-bottom: 3px solid var(--brand-primary);
}

.site-header.is-scrolled {
    background: rgba(55, 53, 58, 0.97);
    box-shadow: 0 10px 30px rgba(28, 22, 25, 0.16);
}

.site-header > .container {
    min-height: 78px;
}

.site-header .navbar-brand {
    padding: 6px 9px;
    background: var(--paper-warm);
    border-radius: 6px;
}

.brand-logo-header {
    width: 174px;
    height: auto;
}

.home-page,
.interior-page,
.home-page main,
.interior-page main {
    color: var(--ink);
    background: var(--paper-warm);
}

.home-intro,
.page-intro {
    padding: 148px 0 64px;
    color: var(--ink);
}

.home-intro h1,
.page-intro h1 {
    color: var(--ink-deep);
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 720;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.home-intro h1 {
    white-space: normal;
}

.home-intro-copy,
.page-intro-copy {
    margin-top: 27px;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.75;
}

.home-contact-link {
    color: var(--brand-primary-dark);
    font-weight: 680;
}

.home-contact-link:hover,
.home-contact-link:focus {
    color: var(--ink-deep);
}

.home-links-section {
    padding-bottom: 82px;
    color: var(--ink);
}

.home-links-layout {
    padding-top: 0;
    border-top: 0;
}

.home-links-section h2,
.content-section-heading > h2 {
    color: var(--ink-soft);
}

.home-page-links {
    gap: 18px;
    border: 0;
}

.home-page-links .home-page-link {
    min-height: 205px;
    padding: 30px 52px 30px 30px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(28, 22, 25, 0.07);
}

.home-page-links .home-page-link:first-child {
    border-left: 1px solid var(--line);
}

.home-page-link-title {
    color: var(--ink-deep);
}

.home-page-link-copy {
    color: var(--ink-soft);
}

.home-page-link-arrow {
    color: var(--brand-primary-dark);
}

.home-page-links .home-page-link:hover,
.home-page-links .home-page-link:focus {
    background: var(--white);
    border-color: rgba(214, 41, 117, 0.5);
    box-shadow: 0 16px 46px rgba(28, 22, 25, 0.11);
}

.home-page-link:hover .home-page-link-title,
.home-page-link:focus .home-page-link-title {
    color: var(--brand-primary-dark);
}

.page-label,
.content-kicker {
    color: var(--brand-primary-dark);
}

.content-section {
    padding-bottom: 82px;
    color: var(--ink);
}

.about-history-section {
    padding-top: 128px;
}

.content-section-heading {
    padding: 0 0 24px;
    border-top: 0;
}

.content-section-heading > .brand-heading {
    color: var(--brand-primary-dark);
}

.content-row {
    margin-bottom: 20px;
    padding: 42px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(28, 22, 25, 0.07);
}

.content-row + .content-row,
.content-row-divided {
    border-top: 1px solid var(--line);
}

.content-row-heading h3,
.content-row-body > h3 {
    color: var(--ink-deep);
}

.content-row-body > p,
.content-lede {
    color: var(--ink-soft);
}

.lined-list li {
    color: var(--ink);
    border-top-color: var(--line);
}

.founder-portrait {
    border-color: var(--line);
    box-shadow: 0 12px 34px rgba(28, 22, 25, 0.1);
}

.page-cta {
    padding-bottom: 82px;
    color: var(--ink);
}

.page-cta-layout {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(28, 22, 25, 0.07);
}

.page-cta-copy {
    padding: 42px;
}

.page-cta-copy h2 {
    color: var(--ink-deep);
}

.page-cta-copy > p:last-child {
    color: var(--ink-soft);
}

.page-cta-link {
    color: var(--ink-deep);
    background: #faf7f9;
    border-left-color: var(--line);
}

.page-cta-link span:last-child {
    color: var(--brand-primary-dark);
}

.page-cta-link:hover,
.page-cta-link:focus {
    color: var(--brand-primary-dark);
    background: #f8eaf0;
}

.content-row-body > .home-page-link {
    display: inline-flex;
    min-height: 0;
    margin-top: 28px;
    padding: 11px 17px;
    color: var(--white);
    background: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 720;
}

.content-row-body > .home-page-link:hover,
.content-row-body > .home-page-link:focus {
    color: var(--ink-deep);
    background: var(--brand-primary-light);
    border-color: var(--brand-primary-light);
}

.contact-form-panel,
.contact-sidebar {
    padding: 32px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(28, 22, 25, 0.07);
    color-scheme: light;
}

.contact-form-panel h3,
.contact-sidebar h3 {
    color: var(--ink-deep);
}

.form-intro,
.contact-sidebar dd,
.contact-guidance ul {
    color: var(--ink-soft);
}

.contact-page .form-label {
    color: var(--ink);
}

.contact-page .optional-label {
    color: var(--ink-soft);
}

.contact-page .form-control,
.contact-page .form-select {
    color: var(--ink);
    background-color: var(--white);
    border-color: #bbb3b7;
}

.contact-page .form-control:focus,
.contact-page .form-select:focus {
    color: var(--ink);
    background-color: var(--white);
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.22rem rgba(214, 41, 117, 0.14);
}

.contact-page .field-error {
    color: #a91e4f;
}

.form-submit-row,
.contact-sidebar dl > div,
.contact-guidance {
    border-color: var(--line);
}

.contact-sidebar {
    top: 108px;
}

.contact-sidebar dt {
    color: var(--brand-primary-dark);
}

@media (max-width: 991.98px) {
    .site-header > .container {
        min-height: 74px;
    }

    .home-intro,
    .page-intro {
        padding: 132px 0 58px;
    }

    .about-history-section {
        padding-top: 112px;
    }

    .page-cta-copy {
        padding: 36px;
    }

    .page-cta-link {
        padding: 28px 36px;
        border-top-color: var(--line);
    }
}

@media (max-width: 767.98px) {
    .home-page-links {
        gap: 14px;
    }

    .home-page-links .home-page-link {
        display: flex;
        min-height: 0;
        padding: 26px 48px 26px 26px;
        border: 1px solid var(--line);
    }

    .home-page-links .home-page-link:last-child {
        border-bottom: 1px solid var(--line);
    }

    .home-page-link-copy {
        margin-top: 12px;
    }

    .home-page-link-arrow {
        top: 27px;
        right: 24px;
    }

    .content-row {
        padding: 30px 26px;
    }

    .contact-form-panel,
    .contact-sidebar {
        padding: 28px 24px;
    }
}

@media (max-width: 575.98px) {
    .brand-logo-header {
        width: 145px;
        height: auto;
    }

    .home-intro,
    .page-intro {
        padding: 120px 0 52px;
    }

    .home-intro h1,
    .page-intro h1 {
        font-size: clamp(1.85rem, 10vw, 2.55rem);
    }

    .about-history-section {
        padding-top: 106px;
    }

    .page-cta-copy {
        padding: 30px 24px;
    }
}

/* Conversion-focused public pages */
.site-services-menu {
    width: min(390px, calc(100vw - 32px));
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(22, 18, 20, 0.18);
}

.site-services-menu .dropdown-item {
    padding: 10px 12px;
    color: var(--ink);
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 650;
    white-space: normal;
}

.site-services-menu .dropdown-item:hover,
.site-services-menu .dropdown-item:focus {
    color: var(--ink-deep);
    background: #f8eaf0;
}

.home-hero,
.offer-hero {
    padding: 152px 0 76px;
    color: var(--ink);
    background:
        radial-gradient(circle at 88% 15%, rgba(214, 41, 117, 0.12), transparent 27rem),
        var(--paper-warm);
}

.home-hero h1,
.offer-hero h1 {
    max-width: 840px;
    margin: 13px 0 0;
    color: var(--ink-deep);
    font-size: clamp(2.45rem, 4.8vw, 4.65rem);
    font-weight: 760;
    letter-spacing: -0.058em;
    line-height: 1.01;
}

.offer-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.hero-lede {
    max-width: 700px;
    margin: 27px 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    margin-top: 32px;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-actions .btn,
.offer-hero .btn {
    display: inline-flex;
    min-height: 54px;
    padding: 0.78rem 1.35rem;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 760;
    line-height: 1.2;
}

.hero-brand-line {
    margin: 0;
    padding: 20px 0 4px 23px;
    color: var(--ink-soft);
    border-left: 3px solid var(--brand-primary);
    font-size: 0.86rem;
    font-weight: 720;
    line-height: 1.55;
}

.site-section {
    padding: 76px 0;
    color: var(--ink);
    background: var(--paper-warm);
}

.section-muted {
    background: #ebe6e9;
}

.section-dark {
    color: var(--text-on-dark);
    background: var(--graphite-deep);
}

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

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.62fr);
    align-items: end;
    gap: 60px;
}

.section-heading h2,
.site-section h2 {
    margin: 8px 0 0;
    color: var(--ink-deep);
    font-size: clamp(1.9rem, 3.1vw, 2.85rem);
    font-weight: 735;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-heading > p:last-child,
.section-heading-split > p,
.section-lede {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.72;
}

.section-dark h2,
.section-dark h3 {
    color: var(--text-on-dark);
}

.section-dark .section-heading > p:last-child,
.section-dark .section-heading-split > p {
    color: var(--text-on-dark-muted);
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #cfc5ca;
    border-left: 1px solid #cfc5ca;
}

.reason-item {
    min-height: 195px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.42);
    border-right: 1px solid #cfc5ca;
    border-bottom: 1px solid #cfc5ca;
}

.reason-item > span,
.offer-card-number,
.service-offer-number,
.contact-option-number {
    display: block;
    margin: 0 0 22px;
    color: var(--brand-primary-dark);
    font-size: 0.74rem;
    font-weight: 820;
    letter-spacing: 0.12em;
}

.reason-item h3 {
    margin: 0;
    color: var(--ink-deep);
    font-size: clamp(1.2rem, 1.7vw, 1.5rem);
    font-weight: 710;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.reason-item p {
    max-width: 550px;
    margin: 12px 0 0;
    color: var(--ink-soft);
}

.offer-card {
    display: flex;
    min-height: 300px;
    padding: 28px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--brand-primary);
    border-radius: 10px;
    box-shadow: 0 14px 42px rgba(28, 22, 25, 0.07);
}

.offer-card h3 {
    margin: 0;
    color: var(--ink-deep);
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    font-weight: 720;
    letter-spacing: -0.03em;
    line-height: 1.18;
}

.offer-card > p:not(.offer-card-number) {
    margin: 16px 0 26px;
    color: var(--ink-soft);
}

.offer-card > a,
.text-link {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 8px;
    color: var(--brand-primary-dark);
    font-size: 0.9rem;
    font-weight: 760;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.offer-card > a:hover,
.offer-card > a:focus,
.text-link:hover,
.text-link:focus {
    color: var(--ink-deep);
}

.step-list {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    border-top: 1px solid rgba(240, 236, 238, 0.18);
}

.step-list li {
    padding: 28px 32px 2px 0;
}

.step-list li + li {
    padding-left: 32px;
    border-left: 1px solid rgba(240, 236, 238, 0.18);
}

.step-list li > span {
    display: inline-grid;
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
    place-items: center;
    color: var(--ink-deep);
    background: var(--brand-primary-light);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 820;
}

.step-list h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.step-list p {
    margin: 9px 0 0;
    color: var(--text-on-dark-muted);
}

.local-section {
    border-bottom: 1px solid var(--line);
}

.local-section p:not(.content-kicker) {
    color: var(--ink-soft);
}

.local-section .text-link {
    margin-top: 20px;
}

.local-proof-section .section-lede {
    max-width: 660px;
}

.local-proof-section .text-link {
    margin-top: 20px;
}

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

.fit-panel {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.fit-panel-positive {
    border-top: 4px solid var(--brand-primary);
}

.fit-panel h3 {
    margin: 0;
    color: var(--ink-deep);
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 720;
    letter-spacing: -0.025em;
}

.fit-panel .check-list,
.boundary-list {
    margin-top: 22px;
}

.boundary-list {
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.boundary-list li {
    padding: 14px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.fit-panel > p:last-child {
    margin: 22px 0 0;
    color: var(--ink-soft);
}

.local-stewardship-section p:not(.content-kicker) {
    color: var(--ink-soft);
}

.local-stewardship-section p + .text-link {
    margin-top: 14px;
}

.local-stewardship-section p a {
    color: var(--brand-primary-dark);
    font-weight: 700;
    text-underline-offset: 3px;
}

.compact-proof {
    display: grid;
    margin-top: 56px;
    padding-top: 42px;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: 56px;
    border-top: 1px solid var(--line);
}

.compact-proof-heading h2 {
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.compact-proof ul,
.compact-principles {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.compact-proof li,
.compact-principles li {
    display: grid;
    padding: 17px 0;
    grid-template-columns: minmax(100px, 0.34fr) minmax(0, 1fr);
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.compact-proof strong,
.compact-principles strong {
    color: var(--ink-deep);
    font-size: 0.88rem;
    font-weight: 760;
}

.compact-proof span,
.compact-principles span {
    color: var(--ink-soft);
}

.section-proof {
    padding-top: 82px;
}

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

.proof-grid article {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.proof-grid h3 {
    margin: 0;
    color: var(--ink-deep);
    font-size: 1.22rem;
    font-weight: 720;
}

.proof-grid p {
    margin: 15px 0 0;
    color: var(--ink-soft);
}

.offer-detail-list .content-section-heading {
    padding-top: 0;
}

.service-offer-block {
    margin-bottom: 22px;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(28, 22, 25, 0.06);
}

.service-offer-block > header {
    display: grid;
    padding-bottom: 0;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 24px;
    border-bottom: 0;
}

.service-offer-number {
    margin-top: 7px;
}

.service-offer-block h3 {
    margin: 0;
    color: var(--ink-deep);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 730;
    letter-spacing: -0.04em;
}

.service-offer-block header p:last-child {
    max-width: 760px;
    margin: 13px 0 0;
    color: var(--ink-soft);
}

.service-offer-grid {
    display: grid;
    padding: 26px 0 4px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 60px;
}

.service-offer-grid > div {
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.service-offer-grid h4,
.capability-grid h3 {
    margin: 0 0 12px;
    color: var(--ink-deep);
    font-size: 1rem;
    font-weight: 780;
}

.service-offer-grid p,
.service-offer-grid ul,
.capability-grid ul {
    margin: 0;
    color: var(--ink-soft);
}

.service-offer-grid ul,
.capability-grid ul {
    padding-left: 19px;
}

.service-offer-grid li + li,
.capability-grid li + li {
    margin-top: 7px;
}

.service-offer-actions {
    display: flex;
    padding-top: 24px;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    border-top: 1px solid var(--line);
}

.service-offer-primary-actions {
    border-top: 0;
}

.service-offer-details {
    margin-top: 26px;
    border-top: 1px solid var(--line);
}

.service-offer-details summary {
    padding: 17px 34px 17px 0;
    color: var(--brand-primary-dark);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 760;
}

.service-offer-details[open] summary {
    border-bottom: 1px solid var(--line);
}

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

.capability-grid article {
    padding: 24px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #cfc5ca;
    border-radius: 10px;
}

.capability-grid p {
    margin: 0;
    color: var(--ink-soft);
}

.assessment-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: end;
    gap: 60px;
}

.assessment-actions {
    padding-left: 30px;
    border-left: 1px solid #cfc5ca;
}

.assessment-actions p {
    margin: 18px 0 0;
    color: var(--ink-soft);
}

.breadcrumb-wrap {
    padding-top: 120px;
    color: var(--ink-soft);
    background: var(--paper-warm);
}

.breadcrumb-wrap + .offer-hero {
    padding-top: 52px;
}

.breadcrumb {
    margin: 0;
    font-size: 0.82rem;
}

.breadcrumb a {
    color: var(--brand-primary-dark);
}

.offer-hero .page-intro-copy {
    max-width: 790px;
}

.offer-hero .btn {
    margin-top: 32px;
}

.check-list {
    margin: 23px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 17px 0 17px 31px;
    border-top: 1px solid #cfc5ca;
}

.check-list li::before {
    position: absolute;
    top: 20px;
    left: 2px;
    color: var(--brand-primary-dark);
    content: "✓";
    font-weight: 850;
}

.deliverable-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 34px;
}

.deliverable-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.deliverable-list li {
    display: grid;
    padding: 21px 4px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 17px;
    border-bottom: 1px solid var(--line);
}

.deliverable-list li span {
    color: var(--brand-primary-dark);
    font-size: 0.75rem;
    font-weight: 820;
}

.deliverable-panel {
    padding: 32px;
    color: var(--text-on-dark);
    background: var(--graphite);
    border-radius: 10px;
}

.deliverable-panel p:last-child {
    margin: 20px 0 0;
    font-size: 1.08rem;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    list-style: none;
    background: rgba(240, 236, 238, 0.16);
    border: 1px solid rgba(240, 236, 238, 0.16);
}

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

.process-grid li {
    padding: 24px;
    background: var(--graphite-deep);
}

.process-grid li > span {
    color: var(--brand-primary-light);
    font-size: 0.74rem;
    font-weight: 820;
}

.process-grid h3 {
    margin: 24px 0 0;
    font-size: 1.14rem;
    font-weight: 710;
}

.process-grid p {
    margin: 14px 0 0;
    color: var(--text-on-dark-muted);
    font-size: 0.9rem;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    padding: 22px 44px 22px 0;
    color: var(--ink-deep);
    cursor: pointer;
    font-size: 1.08rem;
    font-weight: 730;
}

.faq-list details p {
    max-width: 700px;
    margin: -3px 0 24px;
    color: var(--ink-soft);
}

.contact-start-section {
    padding-top: 22px;
}

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

.contact-option-grid article {
    display: flex;
    min-height: 280px;
    padding: 32px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.contact-option-grid h3 {
    margin: 0;
    color: var(--ink-deep);
    font-size: 1.55rem;
    font-weight: 720;
}

.contact-option-grid article > p:not(.contact-option-number) {
    margin: 16px 0 26px;
    color: var(--ink-soft);
}

#inquiry {
    scroll-margin-top: 92px;
}

.contact-next-steps {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.contact-next-steps li {
    display: grid;
    padding: 17px 0;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    border-top: 1px solid var(--line);
}

.contact-next-steps span {
    color: var(--brand-primary-dark);
    font-size: 0.75rem;
    font-weight: 820;
}

.contact-next-steps p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.form-privacy-note {
    max-width: 410px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
    line-height: 1.55;
}

.form-privacy-note a {
    color: var(--brand-primary-dark);
}

.contact-form-panel h2 {
    margin: 8px 0 0;
    color: var(--ink-deep);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 730;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.contact-form-panel .form-intro {
    margin: 15px 0 28px;
}

.legal-content h2 {
    margin: 44px 0 12px;
    color: var(--ink-deep);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 720;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--ink-soft);
}

.legal-updated {
    margin-top: 48px;
    font-size: 0.82rem;
    font-weight: 680;
}

.about-principles {
    padding-top: 10px;
}

.compact-principles {
    margin-top: 30px;
}

.founder-section {
    padding-top: 76px;
}

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

@media (max-width: 991.98px) {
    .site-services-menu {
        width: 100%;
        box-shadow: none;
    }

    .home-hero,
    .offer-hero {
        padding: 140px 0 72px;
    }

    .hero-brand-line {
        max-width: 420px;
    }

    .section-heading-split,
    .deliverable-layout,
    .compact-proof,
    .assessment-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .assessment-actions {
        padding: 24px 0 0;
        border-top: 1px solid #cfc5ca;
        border-left: 0;
    }

    .compact-proof {
        margin-top: 46px;
        padding-top: 36px;
    }

    .step-list {
        grid-template-columns: 1fr;
    }

    .step-list li,
    .step-list li + li {
        display: grid;
        padding: 28px 0;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 18px;
        border-top: 1px solid rgba(240, 236, 238, 0.18);
        border-left: 0;
    }

    .step-list li > span {
        margin: 0;
    }

    .step-list h3 {
        margin-top: 4px;
    }

    .service-offer-grid {
        gap: 28px 36px;
    }
}

@media (max-width: 767.98px) {
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }

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

    .home-hero,
    .offer-hero {
        padding: 124px 0 62px;
    }

    .home-hero h1,
    .offer-hero h1 {
        line-height: 1.03;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .reason-grid,
    .proof-grid,
    .service-offer-grid,
    .capability-grid,
    .contact-option-grid,
    .fit-grid {
        grid-template-columns: 1fr;
    }

    .fit-panel {
        padding: 26px 24px;
    }

    .reason-item {
        min-height: 0;
        padding: 28px 24px;
    }

    .offer-card {
        min-height: 0;
        padding: 28px 24px;
    }

    .service-offer-block {
        padding: 29px 24px;
    }

    .service-offer-block > header {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-offer-number {
        margin-bottom: 5px;
    }

    .service-offer-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .service-offer-actions .btn {
        width: 100%;
    }

    .process-grid,
    .process-grid-5 {
        grid-template-columns: 1fr;
    }

    .breadcrumb-wrap {
        padding-top: 105px;
    }

    .compact-proof li,
    .compact-principles li {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .founder-section {
        padding-top: 60px;
    }
}

@media (max-width: 575.98px) {
    .home-hero h1,
    .offer-hero h1 {
        font-size: clamp(2.15rem, 12vw, 3.3rem);
    }

    .section-heading h2,
    .site-section h2 {
        font-size: clamp(1.85rem, 9vw, 2.55rem);
    }

    .proof-grid article,
    .capability-grid article,
    .contact-option-grid article,
    .deliverable-panel {
        padding: 26px 22px;
    }
}

/* Staff portal */
.staff-portal-page {
    color: var(--ink);
    background: var(--paper-warm);
}

.staff-header {
    color: var(--white);
    background: var(--graphite);
    border-bottom: 3px solid var(--brand-primary);
}

.staff-header .navbar {
    min-height: 78px;
}

.staff-brand {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.staff-brand .brand-logo {
    width: 174px;
    height: auto;
    padding: 6px 9px;
    background: var(--paper-warm);
    border-radius: 6px;
}

.staff-account {
    color: var(--text-on-dark-muted);
    font-size: 0.85rem;
}

.staff-main {
    padding: 58px 0 80px;
}

.staff-page-heading,
.staff-detail-header {
    display: flex;
    margin-bottom: 32px;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.staff-page-heading h1,
.staff-detail-header h1,
.staff-login-panel h1 {
    margin: 0;
    color: var(--ink-deep);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 720;
    letter-spacing: -0.035em;
}

.staff-eyebrow {
    margin: 0 0 8px;
    color: var(--brand-primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.staff-page-summary {
    max-width: 420px;
    margin: 0 0 5px;
    color: var(--ink-soft);
}

.staff-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(28, 22, 25, 0.07);
}

.staff-filters {
    display: flex;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 8px;
}

.staff-filters a {
    padding: 8px 13px;
    color: var(--ink-soft);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 680;
    text-decoration: none;
}

.staff-filters a:hover,
.staff-filters a:focus,
.staff-filters a.active {
    color: var(--white);
    background: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
}

.staff-filters span {
    margin-left: 5px;
    opacity: 0.8;
}

.staff-table > :not(caption) > * > * {
    padding: 18px 20px;
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}

.staff-table thead th {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.staff-table small {
    color: var(--ink-soft);
}

.staff-status {
    display: inline-block;
    padding: 5px 9px;
    color: #5f1740;
    background: #fbe5ef;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 750;
    white-space: nowrap;
}

.staff-status-in-progress {
    color: #5d4808;
    background: #fff3c7;
}

.staff-status-resolved {
    color: #185b38;
    background: #dff4e8;
}

.staff-empty {
    padding: 70px 25px;
    text-align: center;
}

.staff-empty h2,
.staff-panel h2 {
    font-size: 1.18rem;
    font-weight: 720;
}

.staff-empty p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.staff-detail-header {
    align-items: end;
}

.staff-back-link {
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 670;
}

.staff-organization {
    margin: 7px 0 0;
    color: var(--ink-soft);
}

.staff-status-form {
    min-width: 300px;
}

.staff-status-form .form-label,
.staff-login-panel .form-label {
    color: var(--ink);
}

.staff-status-form .form-select,
.staff-login-panel .form-control {
    color: var(--ink);
    background-color: var(--white);
    border-color: #bbb3b7;
    color-scheme: light;
}

.staff-message,
.staff-detail-header + .row .staff-panel {
    padding: 30px;
}

.staff-message h2 {
    margin-bottom: 24px;
}

.staff-message div > p:last-child {
    margin-bottom: 0;
}

.staff-contact-list {
    margin: 25px 0 0;
}

.staff-contact-list dt {
    color: var(--ink-soft);
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.staff-contact-list dd {
    margin: 3px 0 19px;
    overflow-wrap: anywhere;
}

.staff-contact-list dd:last-child {
    margin-bottom: 0;
}

.staff-login-wrap {
    display: grid;
    min-height: calc(100vh - 216px);
    place-items: center;
}

.staff-login-panel {
    width: min(100%, 440px);
    padding: 38px;
}

.staff-login-panel > .text-secondary {
    margin: 15px 0 28px;
}

.staff-form-link {
    margin: 22px 0 0;
    text-align: center;
}

.staff-form-link a {
    color: var(--brand-primary-dark);
    font-size: 0.86rem;
    font-weight: 680;
}

.staff-password-help {
    margin-top: 10px;
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.staff-password-help ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

@media (max-width: 767.98px) {
    .staff-main {
        padding-top: 38px;
    }

    .staff-page-heading,
    .staff-detail-header {
        align-items: stretch;
        flex-direction: column;
        gap: 22px;
    }

    .staff-status-form {
        min-width: 0;
    }

    .staff-table > :not(caption) > * > * {
        padding: 14px;
    }
}

@media (max-width: 575.98px) {
    .staff-brand .brand-logo {
        width: 145px;
    }

    .staff-brand span {
        display: none;
    }

    .staff-login-panel {
        padding: 28px 22px;
    }
}
