:root {
    --brand: #b72025;
    --graphite: #616161;
    --ink: #171717;
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
}

.site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    border-color: rgba(23, 23, 23, .08);
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    position: fixed;
    border-color: rgba(23, 23, 23, .1);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 10px 35px rgba(23, 23, 23, .09);
    animation: header-drop .35s ease both;
}

.header-shell,
.header-nav,
.header-logo {
    transition: min-height .25s ease, height .25s ease;
}

.site-header.is-scrolled .header-shell {
    min-height: 4.5rem;
}

.site-header.is-scrolled .header-nav {
    height: 4.5rem;
}

.site-header.is-scrolled .header-logo {
    height: 3.25rem;
}

@keyframes header-drop {
    from {
        transform: translateY(-100%);
        opacity: .55;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

::selection {
    background: var(--brand);
    color: #fff;
}

.skip-link {
    position: fixed;
    top: 0;
    left: 1rem;
    z-index: 100;
    transform: translateY(-120%);
    background: #fff;
    padding: .75rem 1rem;
    color: var(--ink);
    font-size: .875rem;
    font-weight: 700;
    transition: transform .2s ease;
}

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

.nav-link {
    position: relative;
    height: 100%;
    padding: 0;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: .79rem;
    font-weight: 600;
    letter-spacing: .025em;
    transition: color .2s ease;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    background: var(--brand);
    transition: transform .25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--brand);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.dropdown-panel {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: visibility .2s ease, opacity .2s ease, transform .2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem 1.25rem;
    color: var(--graphite);
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: padding .2s ease, background-color .2s ease, color .2s ease;
}

.dropdown-link span {
    opacity: 0;
    color: var(--brand);
    transition: opacity .2s ease;
}

.dropdown-link:hover,
.dropdown-link:focus {
    padding-left: 1.5rem;
    background: #f5f4f0;
    color: var(--brand);
}

.dropdown-link:hover span,
.dropdown-link:focus span {
    opacity: 1;
}

.mobile-main-link {
    display: block;
    border-bottom: 1px solid rgba(23, 23, 23, .1);
    padding: 1rem 0;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .025em;
}

.mobile-sub-link {
    border-bottom: 1px solid rgba(23, 23, 23, .08);
    padding: .75rem 0;
    color: var(--graphite);
    font-family: 'Inter', sans-serif;
    font-size: .77rem;
    font-weight: 500;
    letter-spacing: .01em;
}

.mobile-sub-link:last-child {
    border-bottom: 0;
}

.section-space {
    padding-top: clamp(5rem, 9vw, 8rem);
    padding-bottom: clamp(5rem, 9vw, 8rem);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--brand);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 2.5rem;
    height: 1px;
    content: '';
    background: currentColor;
}

.section-title {
    max-width: 46rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.news-card {
    position: relative;
    display: flex;
    min-height: 27rem;
    flex-direction: column;
    overflow: hidden;
    border-bottom: 1px solid rgba(23, 23, 23, .1);
    transition: background-color .25s ease;
}

.news-media {
    display: grid;
    height: 13rem;
    flex-shrink: 0;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(23, 23, 23, .08);
    background: #f5f4f0;
}

.news-body {
    flex: 1;
    padding: 1.75rem;
}

.news-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    background: var(--brand);
    transition: transform .3s ease;
}

.news-card:hover {
    background: #fafafa;
}

.news-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.news-category {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--brand);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.news-category::before {
    width: 1.25rem;
    height: 1px;
    content: '';
    background: currentColor;
}

@media (min-width: 768px) {
    .news-card {
        border-right: 1px solid rgba(23, 23, 23, .1);
        border-bottom: 0;
    }

    .news-body {
        padding: 2rem 2.25rem 2.25rem;
    }

    .news-card:last-child {
        border-right: 0;
    }
}

.value-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--graphite);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.value-pill i {
    display: block;
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: var(--brand);
}

.corporate-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 19rem;
    border-right: 1px solid rgba(23, 23, 23, .1);
    border-bottom: 1px solid rgba(23, 23, 23, .1);
    background: #fff;
    padding: 2.25rem;
    transition: background-color .25s ease, transform .25s ease;
}

.corporate-card:hover {
    background: #fafafa;
}

.corporate-number {
    color: rgba(23, 23, 23, .12);
    font-size: 2rem;
    font-weight: 800;
}

.mini-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: .65rem;
    margin-top: auto;
    padding-top: 2rem;
    color: var(--ink);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.mini-link:hover {
    color: var(--brand);
}

.feature-panel {
    min-height: 30rem;
    border-right: 1px solid rgba(255, 255, 255, .1);
    padding: 3.5rem 2.25rem;
}

.feature-icon {
    display: grid;
    width: 4.5rem;
    height: 4.5rem;
    place-items: center;
    border: 1px solid rgba(183, 32, 37, .3);
    background: rgba(183, 32, 37, .12);
    color: var(--brand);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-kicker {
    margin-top: 3.5rem;
    color: rgba(255, 255, 255, .45);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-top: 2rem;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: gap .2s ease, color .2s ease;
}

.feature-link:hover {
    gap: 1rem;
    color: var(--brand);
}

.corporate-side-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(23, 23, 23, .1);
    padding: 1rem .25rem;
    color: var(--graphite);
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    transition: padding .2s ease, color .2s ease;
}

.corporate-side-link span {
    opacity: 0;
    color: var(--brand);
    transition: opacity .2s ease;
}

.corporate-side-link:hover,
.corporate-side-link.is-current {
    padding-left: .75rem;
    color: var(--brand);
}

.corporate-side-link:hover span,
.corporate-side-link.is-current span {
    opacity: 1;
}

.corporate-copy-section {
    border-bottom: 1px solid rgba(23, 23, 23, .1);
    padding-bottom: 3rem;
}

.corporate-copy-section:last-child {
    border-bottom: 0;
}

.corporate-copy-section h2 {
    color: var(--ink);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.025em;
}

.corporate-copy-section p {
    margin-top: 1.25rem;
    color: var(--graphite);
    font-size: .95rem;
    line-height: 1.9;
}

.corporate-copy-section ul {
    display: grid;
    gap: .8rem;
    margin-top: 1.75rem;
}

.corporate-copy-section li {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    color: var(--graphite);
    font-size: .9rem;
    line-height: 1.7;
}

.corporate-copy-section li span {
    display: grid;
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
    place-items: center;
    margin-top: .15rem;
    border-radius: 50%;
    background: #f8e9ea;
    color: var(--brand);
    font-size: .65rem;
    font-weight: 800;
}

.corporate-rich-content {
    color: var(--graphite);
    font-size: .95rem;
    line-height: 1.9;
}

.corporate-rich-content h2 {
    margin-top: 3rem;
    border-top: 1px solid rgba(23, 23, 23, .1);
    padding-top: 3rem;
    color: var(--ink);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.025em;
}

.corporate-rich-content h2:first-child {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}

.corporate-rich-content h3 {
    margin-top: 2rem;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 800;
}

.corporate-rich-content p,
.corporate-rich-content ul,
.corporate-rich-content ol,
.corporate-rich-content blockquote {
    margin-top: 1.25rem;
}

.corporate-rich-content ul,
.corporate-rich-content ol {
    display: grid;
    gap: .65rem;
    padding-left: 1.25rem;
}

.corporate-rich-content ul {
    list-style: disc;
}

.corporate-rich-content ol {
    list-style: decimal;
}

.corporate-rich-content a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: .2em;
}

.corporate-rich-content blockquote {
    border-left: 4px solid var(--brand);
    background: #f5f4f0;
    padding: 1.25rem 1.5rem;
    color: var(--ink);
    font-weight: 700;
}

.corporate-rich-content.is-section-body ul,
.corporate-rich-content.is-section-body ol {
    padding-left: 0;
    list-style: none;
}

.corporate-rich-content.is-section-body li {
    position: relative;
    padding-left: 2.1rem;
}

.corporate-rich-content.is-section-body li::before {
    position: absolute;
    top: .3rem;
    left: 0;
    display: grid;
    width: 1.35rem;
    height: 1.35rem;
    place-items: center;
    border-radius: 50%;
    background: #f8e9ea;
    color: var(--brand);
    content: '✓';
    font-size: .65rem;
    font-weight: 800;
}

.distributor-card {
    position: relative;
    display: flex;
    min-height: 27rem;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(23, 23, 23, .1);
    background: #fff;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.distributor-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    background: var(--brand);
    transition: transform .3s ease;
}

.distributor-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 22px 50px rgba(23, 23, 23, .1);
}

.distributor-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.distributor-logo-area {
    display: grid;
    height: 13rem;
    flex-shrink: 0;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(23, 23, 23, .08);
    background: #f5f4f0;
    padding: 2rem;
}

.distribution-value {
    min-height: 22rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 2.25rem 1.75rem;
}

.distribution-value span {
    color: rgba(255, 255, 255, .2);
    font-size: 2rem;
    font-weight: 800;
}

.distribution-value h3 {
    margin-top: 5rem;
    font-size: 1rem;
    font-weight: 800;
}

.distribution-value p {
    margin-top: .8rem;
    color: rgba(255, 255, 255, .55);
    font-size: .75rem;
    line-height: 1.7;
}

.process-card {
    min-height: 20rem;
    border-right: 1px solid rgba(23, 23, 23, .1);
    border-bottom: 1px solid rgba(23, 23, 23, .1);
    background: #fff;
    padding: 2rem;
}

.process-card span {
    color: var(--brand);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.process-card h3 {
    margin-top: 4rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.process-card p {
    margin-top: 1rem;
    color: var(--graphite);
    font-size: .8rem;
    line-height: 1.8;
}

@media (min-width: 640px) {
    .distribution-value {
        border-right: 1px solid rgba(255, 255, 255, .1);
        border-bottom: 0;
    }

    .distribution-value:last-child {
        border-right: 0;
    }
}

.gallery-filter {
    border: 1px solid rgba(23, 23, 23, .15);
    background: #fff;
    padding: .7rem 1rem;
    color: var(--graphite);
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.gallery-grid {
    column-count: 1;
    column-gap: 1rem;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    margin: 0 0 1rem;
    border: 1px solid rgba(23, 23, 23, .1);
    background: #fff;
    vertical-align: top;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.gallery-item[hidden] {
    display: none !important;
}

.gallery-item:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 18px 45px rgba(23, 23, 23, .1);
}

.gallery-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f5f4f0;
}

.gallery-zoom {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    transform: translateY(.5rem);
    opacity: 0;
    background: var(--brand);
    color: #fff;
    transition: opacity .25s ease, transform .25s ease;
}

.gallery-zoom svg {
    width: 1.15rem;
    height: 1.15rem;
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
    transform: translateY(0);
    opacity: 1;
}

.gallery-lightbox {
    width: min(92vw, 72rem);
    max-width: none;
    max-height: 92vh;
    margin: auto;
    border: 0;
    background: transparent;
    padding: 0;
}

.gallery-lightbox::backdrop {
    background: rgba(0, 0, 0, .86);
    backdrop-filter: blur(3px);
}

.gallery-lightbox-panel {
    position: relative;
    overflow: hidden;
    background: #111;
    color: #fff;
}

.gallery-lightbox-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 2;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    background: var(--brand);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

.gallery-lightbox-image-area {
    display: grid;
    min-height: 15rem;
    max-height: 68vh;
    place-items: center;
    background: #090909;
}

.gallery-lightbox-image-area img {
    display: block;
    max-width: 100%;
    max-height: 68vh;
    object-fit: contain;
}

.gallery-lightbox-copy {
    padding: 1.25rem 1.5rem 1.5rem;
}

.gallery-lightbox-copy h2 {
    font-size: 1.1rem;
    font-weight: 800;
}

.gallery-lightbox-copy p {
    margin-top: .45rem;
    color: rgba(255, 255, 255, .55);
    font-size: .8rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        column-count: 3;
        column-gap: 1.25rem;
    }

    .gallery-item {
        margin-bottom: 1.25rem;
    }
}

.reconciliation-step {
    position: relative;
    min-height: 22rem;
    border-right: 1px solid rgba(23, 23, 23, .1);
    border-bottom: 1px solid rgba(23, 23, 23, .1);
    background: #fff;
    padding: 2.25rem;
}

.reconciliation-step > span {
    position: absolute;
    top: 2.25rem;
    right: 2.25rem;
    color: rgba(23, 23, 23, .08);
    font-size: 3rem;
    font-weight: 800;
}

.reconciliation-step-icon {
    display: grid;
    width: 4.5rem;
    height: 4.5rem;
    place-items: center;
    background: #f8e9ea;
    color: var(--brand);
}

.reconciliation-step-icon svg {
    width: 2rem;
    height: 2rem;
}

.reconciliation-step h3 {
    margin-top: 3.5rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.reconciliation-step p {
    margin-top: 1rem;
    color: var(--graphite);
    font-size: .82rem;
    line-height: 1.8;
}

.portal-card {
    position: relative;
    display: flex;
    min-height: 29rem;
    flex-direction: column;
    border: 1px solid rgba(23, 23, 23, .1);
    background: #fff;
    padding: 2rem;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.portal-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    background: var(--brand);
    transition: transform .3s ease;
}

.portal-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 22px 50px rgba(23, 23, 23, .1);
}

.portal-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#mutabakat .feature-link:hover {
    color: #fff;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 25rem;
    border: 1px solid rgba(23, 23, 23, .09);
    background: #fff;
    padding: 2.25rem;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    background: var(--brand);
    transition: transform .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 22px 50px rgba(23, 23, 23, .1);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon {
    display: grid;
    width: 4.5rem;
    height: 4.5rem;
    place-items: center;
    background: #f8e9ea;
    color: var(--brand);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-number {
    position: absolute;
    top: 2.5rem;
    right: 2.25rem;
    color: rgba(23, 23, 23, .09);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.service-link {
    position: absolute;
    bottom: 2.25rem;
    left: 2.25rem;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--ink);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.service-link:hover {
    color: var(--brand);
}

.contact-stat {
    display: grid;
    min-height: 8.5rem;
    place-content: center;
    border-right: 1px solid rgba(23, 23, 23, .1);
    border-bottom: 1px solid rgba(23, 23, 23, .1);
    text-align: center;
}

.contact-stat strong {
    color: var(--brand);
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1;
}

.contact-stat span {
    margin-top: .65rem;
    color: var(--graphite);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-label {
    display: block;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-filters {
    border: 1px solid rgba(23, 23, 23, .09);
    box-shadow: 0 16px 45px rgba(23, 23, 23, .06);
}

.contact-filter-field {
    min-width: 0;
    border: 1px solid rgba(23, 23, 23, .1);
    padding: .85rem 1rem .55rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-filter-field:focus-within {
    border-color: var(--brand);
    box-shadow: inset 0 0 0 1px var(--brand);
}

.contact-filter-field .contact-label {
    color: rgba(97, 97, 97, .7);
}

.contact-filter-control {
    width: 100%;
    min-height: 2.5rem;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 600;
}

.contact-filter-control::placeholder {
    color: rgba(97, 97, 97, .6);
    font-weight: 500;
}

.branch-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(23, 23, 23, .1);
    background: #fff;
    padding: 1.75rem;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.branch-card[hidden] {
    display: none !important;
}

.branch-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    background: var(--brand);
    transition: transform .3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 20px 48px rgba(23, 23, 23, .09);
}

.branch-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.branch-brand {
    border: 1px solid rgba(183, 32, 37, .2);
    background: #f8e9ea;
    padding: .45rem .7rem;
    color: var(--brand);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.branch-company-list li {
    padding-left: 1rem;
    border-left: 2px solid rgba(183, 32, 37, .25);
    color: var(--graphite);
    font-size: .68rem;
    line-height: 1.7;
}

.branch-route-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: .7rem;
    margin-top: 1.75rem;
    color: var(--ink);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color .2s ease, gap .2s ease;
}

.branch-route-link:hover {
    gap: .95rem;
    color: var(--brand);
}

.contact-form-field {
    display: grid;
    gap: .65rem;
    min-width: 0;
}

.contact-form-field > span {
    color: var(--ink);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
    width: 100%;
    border: 1px solid rgba(23, 23, 23, .13);
    outline: 0;
    background: #fff;
    padding: 1rem;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    line-height: 1.6;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form-field input,
.contact-form-field select {
    min-height: 3.4rem;
}

.contact-form-field textarea {
    resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(183, 32, 37, .08);
}

.contact-alert {
    border-left: 4px solid;
    padding: 1rem 1.25rem;
    font-size: .78rem;
    line-height: 1.7;
}

.contact-alert.is-success {
    border-color: #287a4b;
    background: #eef8f2;
    color: #1d633c;
}

.contact-alert.is-error {
    border-color: var(--brand);
    background: #f8e9ea;
    color: #7c171b;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.career-value-card {
    min-height: 18rem;
    border-right: 1px solid rgba(23, 23, 23, .1);
    border-bottom: 1px solid rgba(23, 23, 23, .1);
    padding: 2rem;
}

.career-value-card > span {
    color: rgba(23, 23, 23, .09);
    font-size: 2.25rem;
    font-weight: 800;
}

.career-value-card h3 {
    margin-top: 3.5rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.career-value-card p {
    margin-top: 1rem;
    color: var(--graphite);
    font-size: .78rem;
    line-height: 1.8;
}

.career-role-card {
    position: relative;
    display: flex;
    min-height: 34rem;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(23, 23, 23, .1);
    background: #fff;
    padding: 2rem;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.career-role-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    background: var(--brand);
    transition: transform .3s ease;
}

.career-role-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 22px 52px rgba(23, 23, 23, .09);
}

.career-role-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.career-role-list li {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    color: var(--graphite);
    font-size: .78rem;
    line-height: 1.7;
}

.career-role-list li > span {
    width: .45rem;
    height: .45rem;
    flex-shrink: 0;
    margin-top: .48rem;
    background: var(--brand);
}

.career-role-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: .75rem;
    margin-top: auto;
    padding-top: 2rem;
    color: var(--ink);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color .2s ease, gap .2s ease;
}

.career-role-link:hover {
    gap: 1rem;
    color: var(--brand);
}

.career-process-step {
    min-height: 18rem;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 2rem 1.6rem;
}

.career-process-step > span {
    color: var(--brand);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .15em;
}

.career-process-step h3 {
    margin-top: 4.25rem;
    font-size: 1rem;
    font-weight: 800;
}

.career-process-step p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, .55);
    font-size: .75rem;
    line-height: 1.8;
}

.career-file-input {
    padding: .55rem !important;
    color: var(--graphite) !important;
}

.career-file-input::file-selector-button {
    height: 2.25rem;
    margin-right: 1rem;
    border: 0;
    background: var(--ink);
    padding: 0 1rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .2s ease;
}

.career-file-input:hover::file-selector-button {
    background: var(--brand);
}

.footer-title {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-title::after {
    display: block;
    width: 2rem;
    height: 2px;
    margin-top: .8rem;
    content: '';
    background: var(--brand);
}

.footer-link {
    transition: color .2s ease;
}

.footer-link:hover {
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
