: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-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);
}

.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-split {
    display: grid;
    padding-bottom: 45px;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
    gap: 70px;
    align-items: end;
}

.content-section-heading-split .content-kicker {
    margin: 0 0 17px;
}

.content-section-heading-split h2 {
    max-width: 760px;
    color: var(--text-on-dark);
    font-size: clamp(1.55rem, 2.3vw, 2rem);
    font-weight: 680;
    letter-spacing: -0.035em;
    line-height: 1.16;
    text-transform: none;
}

.content-section-heading-split > p {
    margin: 0;
    color: var(--text-on-dark-muted);
    line-height: 1.8;
}

.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: "";
}

.simple-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(240, 236, 238, 0.18);
    border-bottom: 1px solid rgba(240, 236, 238, 0.18);
}

.simple-grid-item {
    min-height: 205px;
    padding: 31px 30px;
    border-left: 1px solid rgba(240, 236, 238, 0.18);
}

.simple-grid-item:first-child {
    border-left: 0;
}

.simple-grid-item h3 {
    margin: 0;
    font-size: 1.16rem;
    font-weight: 720;
}

.simple-grid-item p {
    margin: 15px 0 0;
    color: var(--text-on-dark-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.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;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !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;
    }

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

    .content-section-heading-split {
        gap: 24px;
        align-items: start;
    }

    .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;
    }

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

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

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

    .simple-grid {
        grid-template-columns: 1fr;
        border: 0;
    }

    .simple-grid-item {
        min-height: 0;
        padding: 27px 0;
        border-top: 1px solid rgba(240, 236, 238, 0.18);
        border-left: 0;
    }

    .simple-grid-item:last-child {
        border-bottom: 1px solid rgba(240, 236, 238, 0.18);
    }

    .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-section-heading-split h2 {
        font-size: clamp(1.5rem, 7vw, 1.9rem);
    }

    .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;
    }
}
