.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    z-index: 100000;
    top: 8px;
    left: 8px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto;
    color: var(--color-text);
    background: var(--color-background);
    white-space: normal;
}

/* Progressive scroll reveal: content remains visible without JavaScript. */
.is-reveal-ready [data-reveal]:not([data-reveal="stagger"]) {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
    transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-reveal-ready [data-reveal="left"] {
    transform: translate3d(-46px, 0, 0);
}

.is-reveal-ready [data-reveal="right"] {
    transform: translate3d(46px, 0, 0);
}

.is-reveal-ready [data-reveal="fade"] {
    transform: none;
}

.is-reveal-ready [data-reveal="media"] {
    clip-path: inset(0 0 18% 0);
    transform: scale(1.035);
    transform-origin: center;
    transition: clip-path 980ms cubic-bezier(0.22, 1, 0.36, 1), opacity 760ms ease, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-reveal-ready [data-reveal]:not([data-reveal="stagger"]).is-visible {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0) scale(1);
}

.is-reveal-ready [data-reveal="stagger"] > * {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-reveal-ready [data-reveal="stagger"].is-visible > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.is-reveal-ready [data-reveal="stagger"].is-visible > :nth-child(2) {
    transition-delay: 90ms;
}

.is-reveal-ready [data-reveal="stagger"].is-visible > :nth-child(3) {
    transition-delay: 180ms;
}

.is-reveal-ready [data-reveal="stagger"].is-visible > :nth-child(4) {
    transition-delay: 270ms;
}

.is-reveal-ready [data-reveal="stagger"].is-visible > :nth-child(5) {
    transition-delay: 360ms;
}

.is-reveal-ready [data-reveal="stagger"].is-visible > :nth-child(6) {
    transition-delay: 450ms;
}

.is-reveal-ready [data-reveal="stagger"].is-visible > :nth-child(7) {
    transition-delay: 540ms;
}

.is-reveal-ready [data-reveal="stagger"].is-visible > :nth-child(8) {
    transition-delay: 630ms;
}

.page-header__rings {
    --page-header-ring-offset-y: -50%;
    --page-header-ring-start: 20deg;

    animation: page-header-signal 7s ease-in-out infinite, page-header-ring-spin 44s linear infinite;
    will-change: transform, opacity;
}

.page-header--about .page-header__rings {
    --page-header-ring-offset-y: -52%;
    --page-header-ring-start: -24deg;
}

.page-header__rings::after {
    --page-header-arc-start: -22deg;

    animation: page-header-arc-spin 36s linear infinite reverse;
    will-change: transform;
}

.page-header--about .page-header__rings::after {
    --page-header-arc-start: 20deg;
}

.page-header--about .page-header__rings::before {
    --page-header-arc-start: 44deg;

    animation: page-header-arc-spin 28s linear infinite;
    will-change: transform;
}

.page-header--service .page-header__rings::before {
    --page-header-arc-start: 35deg;

    animation: page-header-arc-spin 24s linear infinite reverse;
    will-change: transform;
}

.page-header--employee .page-header__rings::before {
    --page-header-arc-start: 34deg;

    animation: page-header-arc-spin 31s linear infinite;
    will-change: transform;
}

.page-header--news .page-header__rings::before {
    --page-header-arc-start: 34deg;

    animation: page-header-arc-spin 27s linear infinite reverse;
    will-change: transform;
}

@keyframes page-header-ring-spin {
    from {
        transform: translateY(var(--page-header-ring-offset-y)) rotate(var(--page-header-ring-start));
    }

    to {
        transform: translateY(var(--page-header-ring-offset-y)) rotate(calc(var(--page-header-ring-start) + 1turn));
    }
}

@keyframes page-header-arc-spin {
    from {
        transform: rotate(var(--page-header-arc-start));
    }

    to {
        transform: rotate(calc(var(--page-header-arc-start) + 1turn));
    }
}

@keyframes page-header-signal {
    0%,
    100% {
        opacity: 0.78;
        filter: saturate(0.85);
    }

    50% {
        opacity: 1;
        filter: saturate(1.25);
    }
}

@media (max-width: 959px) {
    .page-header--about .page-header__rings {
        --page-header-ring-offset-y: 0%;
        --page-header-ring-start: 0deg;
    }
}

.site-branding {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo,
.site-branding .custom-logo-link,
.site-footer__brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-branding .custom-logo,
.site-logo--header .site-logo__image {
    width: auto;
    max-width: 132px;
    max-height: 64px;
    object-fit: contain;
}

.site-footer__brand .custom-logo,
.site-logo--footer .site-logo__image {
    width: auto;
    max-width: 180px;
    max-height: 112px;
    object-fit: contain;
}

.menu-toggle {
    position: relative;
    z-index: 2;
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
}

.menu-toggle__line {
    position: absolute;
    right: 7px;
    width: 26px;
    height: 2px;
    background: currentColor;
    transform-origin: center;
    transition: width var(--transition-duration) ease, transform var(--transition-duration) ease, opacity var(--transition-duration) ease, top var(--transition-duration) ease;
}

.menu-toggle__line:nth-child(1) {
    top: 14px;
}

.menu-toggle__line:nth-child(2) {
    top: 21px;
    width: 18px;
}

.menu-toggle__line:nth-child(3) {
    top: 28px;
}

.global-navigation__list,
.footer-navigation__list,
.global-navigation .menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.global-navigation,
.footer-navigation,
.footer-contact-link {
    font-family: var(--font-display);
}

.global-navigation__list,
.global-navigation .menu,
.footer-navigation__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px clamp(18px, 2.2vw, 34px);
}

.global-navigation a {
    position: relative;
    display: inline-flex;
    padding-block: 10px;
    font-size: clamp(0.75rem, 1.1vw, 0.875rem);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.global-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    background: var(--color-primary);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-duration) ease;
}

.global-navigation a:hover::after,
.global-navigation a:focus-visible::after,
.global-navigation .current-menu-item > a::after,
.global-navigation .current_page_item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-navigation__list {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.footer-navigation a,
.footer-contact-link {
    position: relative;
    display: inline-flex;
    width: min(100%, 230px);
    min-height: 44px;
    align-items: center;
    justify-self: start;
    padding: 8px 0 10px;
    border: 0;
    color: rgba(255, 255, 255, 0.84);
    background-image: linear-gradient(var(--color-primary), var(--color-primary));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 48px 2px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color var(--transition-duration) ease, background-size 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible,
.footer-navigation .current-menu-item > a,
.footer-navigation .current_page_item > a,
.footer-contact-link[aria-current="page"],
.footer-contact-link:hover,
.footer-contact-link:focus-visible {
    color: #ffffff;
    background-size: 100% 2px;
}

.site-footer__company-name {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.6875rem, 1vw, 0.8125rem);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.company-address p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8125rem;
    line-height: 1.8;
}

.company-address__label {
    margin-bottom: 4px !important;
    color: #ffffff !important;
    font-weight: 700;
}

.company-contact {
    display: grid;
    gap: 4px;
    margin: 0;
}

.company-contact__item {
    display: flex;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8125rem;
}

.company-contact__item dt {
    min-width: 2.6em;
    font-weight: 700;
}

.company-contact__item dd {
    margin: 0;
}

.company-contact a {
    color: inherit;
}

.entry + .entry {
    padding-top: 48px;
    margin-top: 48px;
    border-top: 1px solid var(--color-border);
}

.entry__title {
    margin: 0 0 32px;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
}

.entry__title a {
    text-decoration: none;
}

.entry__content > :first-child {
    margin-top: 0;
}

.entry__content > :last-child {
    margin-bottom: 0;
}

.entry__content iframe,
.entry__content table,
.news-article__content iframe,
.news-article__content table {
    max-width: 100%;
}

.entry__content pre,
.news-article__content pre {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.entry__content a,
.news-article__content a,
.company-address {
    overflow-wrap: anywhere;
}

.news-article__content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.archive-header {
    padding-bottom: clamp(40px, 7vw, 72px);
    margin-bottom: clamp(48px, 8vw, 88px);
    border-bottom: 1px solid var(--color-border);
}

.archive-header__eyebrow,
.archive-header__title,
.archive-header__description,
.no-results__eyebrow,
.error-page__code,
.error-page__eyebrow,
.error-page__content h1,
.error-page__description {
    margin: 0;
}

.archive-header__eyebrow,
.no-results__eyebrow,
.error-page__eyebrow {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.archive-header__title,
.no-results h1,
.error-page__content h1 {
    margin-top: 12px;
    color: var(--color-background-dark);
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.archive-header__description {
    max-width: 62ch;
    margin-top: 24px;
    color: var(--color-muted);
}

.no-results,
.error-page {
    display: grid;
    min-height: max(480px, 58vh);
    place-items: center;
}

.no-results,
.error-page__content {
    width: min(100%, 760px);
    padding-block: clamp(72px, 10vw, 120px);
    text-align: center;
}

.no-results > p:not(.no-results__eyebrow),
.error-page__description {
    margin: 24px auto 0;
    color: var(--color-muted);
}

.no-results .search-form {
    display: flex;
    width: min(100%, 560px);
    gap: 10px;
    margin: 36px auto 0;
}

.no-results .search-form label {
    flex: 1 1 auto;
}

.no-results .search-field {
    width: 100%;
    min-height: 50px;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 0;
    background: #ffffff;
}

.no-results .search-submit,
.error-page__link {
    min-height: 50px;
    padding: 10px 22px;
    border: 1px solid var(--color-primary);
    border-radius: 0;
    color: var(--color-primary);
    background: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
}

.no-results .search-submit {
    flex: 0 0 auto;
    cursor: pointer;
}

.error-page__code {
    color: rgba(208, 0, 0, 0.11);
    font-family: var(--font-display);
    font-size: clamp(7rem, 24vw, 14rem);
    font-weight: 800;
    line-height: 0.76;
    letter-spacing: -0.08em;
}

.error-page__eyebrow {
    margin-top: clamp(36px, 7vw, 64px);
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.error-page__link {
    display: inline-flex;
    min-width: 180px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color var(--transition-duration) ease, background-color var(--transition-duration) ease;
}

.error-page__link--primary,
.error-page__link:hover,
.error-page__link:focus-visible {
    color: #ffffff;
    background: var(--color-primary);
}

.site-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
}

@media (max-width: 959px) {
    .site-branding .custom-logo,
    .site-logo--header .site-logo__image {
        max-width: 94px;
        max-height: 42px;
    }

    .site-branding .custom-logo-link,
    .site-logo--header {
        height: 44px;
    }

    .global-navigation {
        width: 100%;
        padding-block: 12px 20px;
    }

    .global-navigation__list,
    .global-navigation .menu {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .js .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .js .global-navigation {
        position: fixed;
        z-index: 1;
        top: var(--header-height-mobile);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        width: auto;
        align-items: center;
        padding: clamp(40px, 10vh, 96px) var(--content-padding);
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #454847;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity var(--transition-duration) ease, visibility var(--transition-duration) ease, transform var(--transition-duration) ease;
        pointer-events: none;
    }

    .js body.admin-bar .global-navigation {
        top: calc(var(--header-height-mobile) + 46px);
    }

    .js .global-navigation[data-open="true"] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .js .global-navigation__list,
    .js .global-navigation .menu {
        width: min(100%, 560px);
        margin-inline: auto;
        gap: 10px;
    }

    .js .global-navigation li {
        width: 100%;
    }

    .js .global-navigation a {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-size: clamp(1.25rem, 6vw, 2rem);
    }

    .js .global-navigation a::before {
        order: 2;
        color: var(--color-primary);
        content: "\2192";
        font-size: 1rem;
    }

    .is-menu-open .menu-toggle__line:nth-child(1) {
        top: 21px;
        transform: rotate(45deg);
    }

    .is-menu-open .menu-toggle__line:nth-child(2) {
        width: 0;
        opacity: 0;
    }

    .is-menu-open .menu-toggle__line:nth-child(3) {
        top: 21px;
        transform: rotate(-45deg);
    }
}

@media (min-width: 783px) and (max-width: 959px) {
    .js body.admin-bar .global-navigation {
        top: calc(var(--header-height-mobile) + 32px);
    }
}

@media (max-width: 640px) {
    .footer-navigation a,
    .footer-contact-link {
        width: min(100%, 210px);
    }

    .footer-navigation a,
    .company-contact a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
    }

    .no-results .search-form {
        align-items: stretch;
        flex-direction: column;
    }

    .no-results .search-submit {
        width: 100%;
    }

    .error-page__actions,
    .error-page__link {
        width: 100%;
    }
}

/* Shared contact call to action. */
.contact-cta {
    position: relative;
    min-height: clamp(600px, 68vw, 860px);
    overflow: hidden;
    color: #ffffff;
    background: #252827;
}

.contact-cta__media,
.contact-cta__media::after,
.contact-cta__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-cta__image {
    object-fit: cover;
    object-position: center;
    filter: grayscale(1) contrast(1.08);
}

.contact-cta__media::after {
    background: rgba(27, 29, 28, 0.66);
    content: "";
}

.contact-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-block: clamp(96px, 14vw, 168px);
    text-align: center;
}

.contact-cta__content h2,
.contact-cta__description {
    margin: 0;
}

.contact-cta__content h2 {
    font-size: clamp(3.75rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.contact-cta__description {
    max-width: 38em;
    margin-top: clamp(24px, 3vw, 36px);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.875rem;
    line-height: 1.9;
}

.contact-cta__link {
    display: inline-flex;
    min-width: min(100%, 300px);
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 10px 10px 10px 28px;
    margin-top: clamp(42px, 6vw, 64px);
    border: 1px solid rgba(255, 255, 255, 0.58);
    color: #ffffff;
    background: rgba(20, 22, 21, 0.2);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color var(--transition-duration) ease, background-color var(--transition-duration) ease;
}

.contact-cta__link span:last-child {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--color-primary);
    font-size: 1.125rem;
    transition: transform var(--transition-duration) ease;
}

.contact-cta__link:hover,
.contact-cta__link:focus-visible {
    border-color: var(--color-primary);
    background: rgba(208, 0, 0, 0.3);
}

.contact-cta__link:hover span:last-child,
.contact-cta__link:focus-visible span:last-child {
    transform: translateX(3px);
}

.contact-cta__marquee {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    width: clamp(52px, 7vw, 106px);
    overflow: hidden;
    color: rgba(255, 255, 255, 0.14);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.4vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
}

.contact-cta__marquee--left {
    left: 0;
}

.contact-cta__marquee--right {
    right: 0;
}

.contact-cta__marquee-track {
    display: flex;
    width: 100%;
    height: max-content;
    align-items: center;
    flex-direction: column;
    animation: contact-marquee-vertical 26s linear infinite;
    will-change: transform;
}

.contact-cta__marquee--left .contact-cta__marquee-track {
    animation-direction: reverse;
    animation-duration: 30s;
}

.contact-cta__marquee-group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0.38em;
    padding-bottom: 0.38em;
}

.contact-cta__marquee-group span {
    display: block;
    flex: 0 0 auto;
    text-orientation: mixed;
    white-space: nowrap;
    writing-mode: vertical-rl;
}

.contact-cta__marquee--left .contact-cta__marquee-group span {
    transform: rotate(180deg);
}

.is-reveal-ready .contact-cta__content[data-reveal="stagger"] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-reveal-ready .contact-cta__content[data-reveal="stagger"].is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.is-reveal-ready .contact-cta__content[data-reveal="stagger"].is-visible > :nth-child(2) {
    transition-delay: 100ms;
}

.is-reveal-ready .contact-cta__content[data-reveal="stagger"].is-visible > :nth-child(3) {
    transition-delay: 200ms;
}

@keyframes contact-marquee-vertical {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, -50%, 0);
    }
}

@media (max-width: 959px) {
    .contact-cta__marquee {
        width: clamp(44px, 8vw, 70px);
        font-size: clamp(2.35rem, 6vw, 3.75rem);
    }
}

@media (max-width: 640px) {
    .contact-cta {
        min-height: 560px;
    }

    .contact-cta__content {
        padding-block: 88px;
    }

    .contact-cta__content h2 {
        font-size: clamp(3.25rem, 17vw, 5rem);
    }

    .contact-cta__description {
        font-size: 0.8125rem;
    }

    .contact-cta__link {
        min-width: 100%;
    }

    .contact-cta__marquee {
        width: 36px;
        color: rgba(255, 255, 255, 0.1);
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-header__rings,
    .page-header__rings::before,
    .page-header__rings::after,
    .contact-cta__marquee-track {
        animation: none;
    }

    .contact-cta__marquee-track {
        transform: translate3d(0, 0, 0);
    }

    .is-reveal-ready [data-reveal]:not([data-reveal="stagger"]),
    .is-reveal-ready [data-reveal="stagger"] > * {
        opacity: 1;
        clip-path: none;
        transform: none;
        transition: none;
    }
}
