:root {
    --navy: #090b1b;
    --navy-light: #11152d;
    --gold: #e7bf3f;
    --gold-light: #f2d46d;
    --white: #ffffff;
    --off-white: #f7f7f5;
    --black: #080808;
    --text: #151515;

    --header-height: 90px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
}

body.menu-open,
html.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: var(--navy);
}

.header-inner {
    width: min(94%, 1400px);
    min-height: var(--header-height);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}


/* =========================================
   LOGO
========================================= */

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    width: auto;
    height: 90px;
    object-fit: contain;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav>a,
.nav-dropdown-toggle {
    position: relative;

    border: 0;
    padding: 34px 0;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--white);
    background: transparent;

    cursor: pointer;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.desktop-nav>a::after,
.nav-dropdown-toggle::after {
    content: '';

    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;

    width: 0;
    height: 2px;

    margin: auto;

    background: var(--gold);

    transition: width 0.25s ease;
}

.desktop-nav>a:hover,
.nav-dropdown-toggle:hover,
.desktop-nav>a.active,
.nav-dropdown-toggle.active {
    color: var(--gold);
}

.desktop-nav>a:hover::after,
.desktop-nav>a.active::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.active::after {
    width: 100%;
}


/* =========================================
   DESKTOP DROPDOWN
========================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;

    width: 260px;

    padding: 12px;

    background: var(--white);

    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;

    transform:
        translateX(-50%) translateY(12px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;

    padding: 13px 15px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;

    color: var(--navy);

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.nav-dropdown-menu a:hover {
    color: var(--navy);
    background: rgba(231, 191, 63, 0.18);
}


/* =========================================
   HEADER CTA
========================================= */

.header-actions {
    display: flex;
    align-items: center;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 25px;

    border: 1px solid var(--gold);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--navy);
    background: var(--gold);

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.header-cta:hover {
    color: var(--gold);
    background: transparent;
}


/* =========================================
   MOBILE HEADER / MENU
========================================= */

.mobile-menu-toggle {
    display: none;

    position: relative;

    width: 44px;
    height: 44px;

    padding: 7px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;

    width: 27px;
    height: 2px;

    margin: 6px auto;

    background: var(--gold);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* Hidden on desktop */

.mobile-nav {
    display: none;
}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 1000px) {

    :root {
        --header-height: 78px;
    }


    /* =========================================
       STACKING
    ========================================= */

    .top-bar {
        z-index: 1000;
    }

    .site-header {
        position: relative;
        z-index: 2000;
    }


    /* =========================================
       NORMAL MOBILE HEADER
    ========================================= */

    .header-inner {
        width: calc(100% - 36px);
        min-height: var(--header-height);

        gap: 15px;
    }

    .site-logo {
        display: flex;
        align-items: center;
    }

    .site-logo img {
        width: auto;
        height: 64px;

        object-fit: contain;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;

        flex-shrink: 0;
    }


    /* =========================================
       FULL SCREEN MOBILE MENU
    ========================================= */

    .mobile-nav {
        position: fixed;

        inset: 0;

        z-index: 9999;

        width: 100%;
        height: 100vh;
        height: 100dvh;

        display: flex;
        flex-direction: column;

        background: var(--off-white);

        opacity: 0;
        visibility: hidden;

        transform: translateX(100%);

        pointer-events: none;

        transition:
            transform 0.35s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-nav.is-open {
        opacity: 1;
        visibility: visible;

        transform: translateX(0);

        pointer-events: auto;
    }


    /* =========================================
       MOBILE MENU TOP
    ========================================= */

    .mobile-nav-top {
        position: relative;
        z-index: 5;

        flex: 0 0 auto;

        width: 100%;
        min-height: 92px;

        display: flex;
        align-items: center;
        justify-content: center;

        padding:
            calc(10px + env(safe-area-inset-top)) 22px 10px;

        border-bottom: 1px solid rgba(9, 11, 27, 0.1);

        background: var(--white);
    }


    /* Logo */

    .mobile-nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-logo img {
        width: auto;
        height: 58px;

        object-fit: contain;
    }


    /* Close button */

    .mobile-menu-close {
        position: absolute;

        left: 22px;
        top: 50%;

        width: 44px;
        height: 44px;

        padding: 0;

        border: 0;

        background: transparent;

        transform: translateY(-50%);

        cursor: pointer;
    }

    .mobile-menu-close span {
        position: absolute;

        top: 21px;
        left: 8px;

        width: 28px;
        height: 2px;

        background: var(--gold);
    }

    .mobile-menu-close span:first-child {
        transform: rotate(45deg);
    }

    .mobile-menu-close span:last-child {
        transform: rotate(-45deg);
    }


    /* =========================================
       SCROLLABLE MENU AREA
    ========================================= */

    .mobile-nav-content {
        position: relative;

        flex: 1 1 auto;

        min-height: 0;

        display: block;

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior: contain;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: thin;
        scrollbar-color:
            rgba(9, 11, 27, 0.25) transparent;
    }

    .mobile-nav-content::-webkit-scrollbar {
        width: 5px;
    }

    .mobile-nav-content::-webkit-scrollbar-track {
        background: transparent;
    }

    .mobile-nav-content::-webkit-scrollbar-thumb {
        border-radius: 999px;

        background: rgba(9, 11, 27, 0.22);
    }


    /* =========================================
       MOBILE NAV LINKS
    ========================================= */

    .mobile-nav-links {
        width: 100%;

        padding: 18px 30px 30px;

        background: var(--off-white);
    }

    .mobile-nav-links>a,
    .mobile-dropdown-toggle {
        width: 100%;
        min-height: 64px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 16px 0;

        border: 0;
        border-bottom: 1px solid rgba(9, 11, 27, 0.12);

        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 0.01em;
        text-align: left;

        color: var(--navy);

        background: transparent;

        cursor: pointer;
    }

    .mobile-nav-links>a.active {
        color: var(--gold);
    }


    /* =========================================
       MOBILE DROPDOWN
    ========================================= */

    .mobile-dropdown {
        width: 100%;
    }

    .mobile-dropdown-toggle {
        cursor: pointer;
    }

    .mobile-dropdown-icon {
        flex-shrink: 0;

        margin-left: 20px;

        font-family: 'Montserrat', sans-serif;
        font-size: 19px;
        font-weight: 500;
        line-height: 1;

        color: var(--gold);
    }

    .mobile-dropdown-menu {
        max-height: 0;

        overflow: hidden;

        opacity: 0;

        border-bottom: 0 solid rgba(9, 11, 27, 0.12);

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            padding 0.35s ease,
            border-width 0.35s ease;
    }

    .mobile-dropdown.is-open .mobile-dropdown-menu {
        max-height: 500px;

        padding: 7px 0 11px;

        opacity: 1;

        border-bottom-width: 1px;
    }

    .mobile-dropdown-menu a {
        display: block;

        padding: 10px 18px;

        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.45;
        letter-spacing: 0.02em;

        color: rgba(9, 11, 27, 0.72);

        transition:
            color 0.2s ease,
            padding-left 0.2s ease;
    }

    .mobile-dropdown-menu a:hover,
    .mobile-dropdown-menu a:focus-visible {
        padding-left: 22px;

        color: var(--gold);
    }


    /* =========================================
       MOBILE BOTTOM PANEL
    ========================================= */

    .mobile-nav-bottom {
        width: 100%;

        padding:
            25px 30px calc(30px + env(safe-area-inset-bottom));

        background: var(--navy);
    }

    .mobile-primary-button,
    .mobile-secondary-button {
        width: 100%;
        min-height: 52px;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 14px 20px;

        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 0.1em;
        text-align: center;
        text-transform: uppercase;

        transition:
            background 0.25s ease,
            color 0.25s ease,
            border-color 0.25s ease;
    }

    .mobile-primary-button {
        margin-bottom: 11px;

        border: 1px solid var(--gold);

        color: var(--navy);
        background: var(--gold);
    }

    .mobile-primary-button:hover {
        color: var(--gold);
        background: transparent;
    }

    .mobile-secondary-button {
        border: 1px solid var(--gold);

        color: var(--white);
        background: transparent;
    }

    .mobile-secondary-button:hover {
        color: var(--navy);
        background: var(--gold);
    }


    /* =========================================
       MOBILE CONTACT
    ========================================= */

    .mobile-contact {
        margin-top: 28px;
    }

    .mobile-contact h3 {
        margin: 0 0 14px;

        font-family: 'Playfair Display', serif;
        font-size: 27px;
        font-weight: 500;
        line-height: 1.2;

        color: var(--gold);
    }

    .mobile-contact a,
    .mobile-contact p {
        display: block;

        margin: 5px 0;

        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        line-height: 1.65;

        color: rgba(255, 255, 255, 0.78);
    }

    .mobile-contact a:hover {
        color: var(--gold);
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 600px) {

    .mobile-nav-top {
        min-height: 82px;

        padding-left: 18px;
        padding-right: 18px;
    }

    .mobile-menu-close {
        left: 16px;
    }

    .mobile-nav-logo img {
        height: 52px;
    }

    .mobile-nav-links {
        padding:
            10px 23px 24px;
    }

    .mobile-nav-links>a,
    .mobile-dropdown-toggle {
        min-height: 59px;

        padding: 14px 0;

        font-size: 22px;
    }

    .mobile-dropdown-menu a {
        padding:
            9px 18px;

        font-size: 12px;
    }

    .mobile-nav-bottom {
        padding:
            22px 23px calc(25px + env(safe-area-inset-bottom));
    }

    .mobile-contact {
        margin-top: 25px;
    }

    .mobile-contact h3 {
        font-size: 25px;
    }

}


/* =========================================
   VERY SMALL / SHORT SCREENS
========================================= */

@media (max-width: 420px) {

    .mobile-nav-links>a,
    .mobile-dropdown-toggle {
        font-size: 21px;
    }

    .mobile-nav-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media (max-width: 1000px) and (max-height: 700px) {

    .mobile-nav-top {
        min-height: 72px;
    }

    .mobile-nav-logo img {
        height: 45px;
    }

    .mobile-nav-links>a,
    .mobile-dropdown-toggle {
        min-height: 54px;

        padding-top: 12px;
        padding-bottom: 12px;

        font-size: 20px;
    }

    .mobile-nav-bottom {
        padding-top: 20px;
    }

}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #090b1b;
    color: #ffffff;

    padding: 80px 0 0;
}

.footer-inner {
    width: min(90%, 1400px);
    margin: 0 auto;
}


/* Main footer */

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 1fr;

    gap: 90px;

    padding-bottom: 60px;
}


/* About */

.footer-kicker {
    display: block;

    margin-bottom: 22px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #e7bf3f;
}

.footer-about h2 {
    max-width: 580px;

    margin: 0 0 25px;

    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1.35;
    font-weight: 700;

    color: #ffffff;
}

.footer-about p {
    max-width: 580px;

    margin: 0;

    font-size: 15px;
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.72);
}


/* Tags */

.footer-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
}

.footer-tags span {
    display: inline-flex;
    align-items: center;

    min-height: 42px;

    padding: 0 17px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}


/* Socials */

.footer-socials {
    display: flex;
    gap: 12px;

    margin-top: 28px;
}

.footer-socials a {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.05);

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-socials a:hover {
    border-color: #e7bf3f;
    background: #e7bf3f;

    transform: translateY(-2px);
}

.footer-socials svg {
    width: 18px;
    height: 18px;

    fill: #ffffff;
}

.footer-socials a:hover svg {
    fill: #090b1b;
}


/* Footer headings */

.footer-column h3 {
    margin: 0 0 26px;

    font-size: 16px;
    font-weight: 700;

    color: #ffffff;
}


/* Links */

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 17px;
}

.footer-links a {
    width: fit-content;

    font-size: 15px;

    color: rgba(255, 255, 255, 0.72);

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: #e7bf3f;

    transform: translateX(3px);
}


/* Contact */

.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 17px;
}

.footer-contact a,
.footer-contact p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}

.footer-contact a:hover {
    color: #e7bf3f;
}


/* Footer buttons */

.footer-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;

    margin-top: 28px;
}

.footer-primary-button,
.footer-secondary-button {
    min-width: 185px;
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;

    transition: 0.25s ease;
}

.footer-primary-button {
    border: 1px solid #e7bf3f;

    color: #090b1b;
    background: #e7bf3f;
}

.footer-primary-button:hover {
    color: #e7bf3f;
    background: transparent;
}

.footer-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.3);

    color: #ffffff;
    background: transparent;
}

.footer-secondary-button:hover {
    border-color: #e7bf3f;

    color: #e7bf3f;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    min-height: 85px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright,
.footer-credit {
    font-size: 16px;

    color: rgba(255, 255, 255, 0.62);
}

.footer-credit {
    text-align: right;
}


/* Legal in middle */

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;
}

.footer-legal a {
    font-size: 13px;

    color: rgba(255, 255, 255, 0.72);

    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #e7bf3f;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .site-footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr;

        gap: 55px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 28px 0;

        text-align: center;
    }

    .footer-credit {
        text-align: center;
    }

    .footer-legal {
        order: 2;
    }

    .footer-credit {
        order: 3;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .site-footer {
        padding-top: 48px;
    }

    .footer-inner {
        width: calc(100% - 46px);
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 45px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-about h2 {
        font-size: 29px;
    }

    .footer-about p,
    .footer-links a,
    .footer-contact a,
    .footer-contact p {
        font-size: 14px;
    }

    .footer-tags span {
        font-size: 11px;
    }

    .footer-buttons {
        align-items: stretch;
    }

    .footer-primary-button,
    .footer-secondary-button {
        width: 100%;
    }

    .footer-legal {
        flex-wrap: wrap;

        gap: 10px 20px;
    }

}

/* =========================================
   TOP BAR
========================================= */

.top-bar {
    position: relative;
    z-index: 1001;

    width: 100%;

    background: var(--navy-light);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    width: min(94%, 1400px);
    min-height: 38px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* Left side */

.top-bar-left {
    display: flex;
    align-items: center;

    gap: 24px;
}

.top-bar-left a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.03em;

    color: rgba(255, 255, 255, 0.75);

    transition: color 0.2s ease;
}

.top-bar-left a:hover {
    color: var(--gold);
}

.top-bar-left svg {
    width: 14px;
    height: 14px;

    fill: var(--gold);

    flex-shrink: 0;
}


/* Right side */

.top-bar-right {
    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.58);
}

.top-bar-divider {
    width: 1px;
    height: 13px;

    background: rgba(255, 255, 255, 0.18);
}


/* =========================================
   TOP BAR RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .top-bar-inner {
        width: calc(100% - 36px);
        min-height: 34px;
    }

    .top-bar-right {
        display: none;
    }

    .top-bar-left {
        width: 100%;

        justify-content: space-between;

        gap: 15px;
    }

    .top-bar-left a {
        font-size: 10px;
    }

}


@media (max-width: 480px) {

    .top-bar-left {
        justify-content: center;
    }

    .top-bar-left a:first-child {
        display: none;
    }

    .top-bar-left a {
        font-size: 11px;
    }

}

/* =========================================
   POLICY PAGES
========================================= */

.policy-hero {
    position: relative;

    padding: 90px 0 70px;

    background:
        linear-gradient(135deg,
            rgba(9, 11, 27, 1) 0%,
            rgba(17, 21, 45, 1) 100%);

    color: var(--white);

    overflow: hidden;
}

.policy-hero::after {
    content: '';

    position: absolute;
    top: -120px;
    right: -120px;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: rgba(231, 191, 63, 0.08);

    pointer-events: none;
}

.policy-hero .container,
.policy-section .container {
    width: min(90%, 1100px);
    margin: 0 auto;
}

.policy-hero .eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--gold);
}

.policy-hero h1 {
    max-width: 850px;

    margin: 0 0 22px;

    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.05;

    color: var(--white);
}

.policy-hero p {
    max-width: 760px;

    margin: 0;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.72);
}

.policy-hero .policy-updated {
    margin-top: 24px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.5);
}


/* =========================================
   POLICY CONTENT
========================================= */

.policy-section {
    padding: 75px 0 100px;

    background: var(--off-white);
}

.policy-card {
    width: 100%;

    padding: 55px 60px;

    border: 1px solid rgba(9, 11, 27, 0.08);
    border-radius: 18px;

    background: var(--white);

    box-shadow:
        0 20px 60px rgba(9, 11, 27, 0.06);
}

.policy-card h2 {
    margin: 50px 0 18px;

    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;

    color: var(--navy);
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card h3 {
    margin: 35px 0 14px;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;

    color: var(--navy);
}

.policy-card p {
    margin: 0 0 18px;

    font-size: 15px;
    line-height: 1.9;

    color: #555b66;
}

.policy-card ul,
.policy-card ol {
    margin: 8px 0 25px;

    padding-left: 24px;
}

.policy-card li {
    margin-bottom: 10px;

    padding-left: 5px;

    font-size: 15px;
    line-height: 1.8;

    color: #555b66;
}

.policy-card li::marker {
    color: var(--gold);
}

.policy-card a {
    color: var(--navy);

    font-weight: 600;

    text-decoration: underline;
    text-decoration-color: rgba(231, 191, 63, 0.65);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;

    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease;
}

.policy-card a:hover {
    color: #b58c14;
    text-decoration-color: var(--gold);
}

.policy-card strong {
    color: var(--navy);
}


/* =========================================
   POLICY BUTTONS
========================================= */

.policy-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    margin: 5px 0 28px;

    padding: 0 24px;

    border: 1px solid var(--navy);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.policy-card .btn--dark {
    color: var(--white);
    background: var(--navy);
}

.policy-card .btn--dark:hover {
    border-color: var(--gold);

    color: var(--navy);
    background: var(--gold);

    transform: translateY(-1px);
}


/* =========================================
   OPTIONAL INFO / NOTICE BOX
========================================= */

.policy-note {
    margin: 30px 0;

    padding: 22px 24px;

    border-left: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;

    background: rgba(231, 191, 63, 0.08);
}

.policy-note p {
    margin: 0;
}


/* =========================================
   PLACEHOLDER COMPANY DETAILS
========================================= */

.policy-placeholder {
    margin: 25px 0;

    padding: 20px 22px;

    border: 1px dashed rgba(181, 140, 20, 0.5);
    border-radius: 10px;

    background: rgba(231, 191, 63, 0.08);
}

.policy-placeholder strong {
    color: #9b7410;
}


/* =========================================
   TABLES
========================================= */

.policy-table-wrap {
    width: 100%;

    margin: 25px 0 35px;

    overflow-x: auto;
}

.policy-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 650px;
}

.policy-table th,
.policy-table td {
    padding: 15px 16px;

    border: 1px solid rgba(9, 11, 27, 0.1);

    text-align: left;
    vertical-align: top;

    font-size: 14px;
    line-height: 1.6;
}

.policy-table th {
    color: var(--navy);
    background: rgba(9, 11, 27, 0.04);
}

.policy-table td {
    color: #555b66;
}


/* =========================================
   RESPONSIVE POLICY PAGES
========================================= */

@media (max-width: 900px) {

    .policy-hero {
        padding: 75px 0 60px;
    }

    .policy-section {
        padding: 60px 0 80px;
    }

    .policy-card {
        padding: 45px 40px;
    }

    .policy-card h2 {
        font-size: 27px;
    }

}


@media (max-width: 650px) {

    .policy-hero {
        padding: 58px 0 48px;
    }

    .policy-hero .container,
    .policy-section .container {
        width: calc(100% - 40px);
    }

    .policy-hero h1 {
        font-size: 42px;
    }

    .policy-hero p {
        font-size: 14px;
    }

    .policy-section {
        padding: 40px 0 60px;
    }

    .policy-card {
        padding: 32px 24px;

        border-radius: 12px;
    }

    .policy-card h2 {
        margin-top: 38px;

        font-size: 25px;
    }

    .policy-card h3 {
        margin-top: 28px;

        font-size: 17px;
    }

    .policy-card p,
    .policy-card li {
        font-size: 14px;
        line-height: 1.8;
    }

    .policy-card .btn {
        width: 100%;
    }

}

/* =========================================
   COOKIE CONSENT
========================================= */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 9998;

    padding: 22px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(100%);

    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        visibility 0.35s ease;

    pointer-events: none;
}

.cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}

.cookie-banner-inner {
    width: min(100%, 1180px);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;

    padding: 28px 30px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;

    background: var(--navy);

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.3);
}


/* Copy */

.cookie-banner-copy {
    max-width: 700px;
}

.cookie-kicker {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--gold);
}

.cookie-banner h2,
.cookie-modal h2 {
    margin: 0 0 10px;

    font-family: 'Playfair Display', serif;

    color: var(--white);
}

.cookie-banner h2 {
    font-size: 27px;
    font-weight: 500;
}

.cookie-banner p {
    margin: 0;

    font-size: 13px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}

.cookie-links {
    margin-top: 8px !important;
}

.cookie-links a {
    font-weight: 600;

    color: var(--white);

    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}


/* Buttons */

.cookie-banner-actions {
    min-width: 185px;

    display: flex;
    flex-direction: column;

    gap: 9px;
}

.cookie-btn {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    padding: 0 21px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn--primary {
    border: 1px solid var(--gold);

    color: var(--navy);
    background: var(--gold);
}

.cookie-btn--primary:hover {
    color: var(--gold);
    background: transparent;
}

.cookie-btn--secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);

    color: var(--white);
    background: transparent;
}

.cookie-btn--secondary:hover {
    border-color: var(--gold);

    color: var(--gold);
}

.cookie-btn--text {
    min-height: auto;

    border: 0;

    padding: 5px;

    color: rgba(255, 255, 255, 0.7);
    background: transparent;

    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-btn--text:hover {
    color: var(--gold);

    transform: none;
}


/* =========================================
   COOKIE SETTINGS MODAL
========================================= */

html.cookie-modal-open,
body.cookie-modal-open {
    overflow: hidden;
}

.cookie-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;

    pointer-events: none;
}

.cookie-modal.is-visible {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(3, 5, 15, 0.8);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cookie-modal-panel {
    position: relative;

    z-index: 1;

    width: min(100%, 680px);
    max-height: min(760px, calc(100dvh - 50px));

    display: flex;
    flex-direction: column;

    border-radius: 18px;

    background: var(--white);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.4);

    overflow: hidden;

    transform: translateY(15px) scale(0.98);

    transition: transform 0.25s ease;
}

.cookie-modal.is-visible .cookie-modal-panel {
    transform: translateY(0) scale(1);
}


/* Header */

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 28px 30px;

    background: var(--navy);
}

.cookie-modal-header h2 {
    margin: 3px 0 0;

    font-size: 31px;
    font-weight: 500;
}

.cookie-modal-close {
    position: relative;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.cookie-modal-close:hover {
    border-color: var(--gold);
    background: rgba(231, 191, 63, 0.08);
}

.cookie-modal-close span {
    position: absolute;
    top: 19px;
    left: 10px;

    width: 20px;
    height: 2px;

    background: var(--gold);
}

.cookie-modal-close span:first-child {
    transform: rotate(45deg);
}

.cookie-modal-close span:last-child {
    transform: rotate(-45deg);
}


/* Content */

.cookie-modal-content {
    padding: 28px 30px;

    overflow-y: auto;
}

.cookie-modal-intro {
    margin: 0 0 25px;

    font-size: 14px;
    line-height: 1.8;

    color: #5a5f68;
}


/* Preference rows */

.cookie-preference {
    padding: 22px 0;

    border-top: 1px solid rgba(9, 11, 27, 0.1);
}

.cookie-preference-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;
}

.cookie-preference h3 {
    margin: 0 0 6px;

    font-size: 16px;
    font-weight: 700;

    color: var(--navy);
}

.cookie-preference p {
    max-width: 500px;

    margin: 0;

    font-size: 13px;
    line-height: 1.7;

    color: #666b74;
}

.cookie-preference-details {
    margin-top: 14px;
}

.cookie-preference-details p {
    font-size: 12px;

    color: #777c84;
}

.cookie-always-on {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    min-height: 30px;

    padding: 0 12px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: var(--navy);
    background: rgba(231, 191, 63, 0.2);
}


/* Toggle */

.cookie-switch {
    position: relative;

    flex: 0 0 48px;

    width: 48px;
    height: 27px;

    cursor: pointer;
}

.cookie-switch input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}

.cookie-switch-slider {
    position: absolute;
    inset: 0;

    border-radius: 999px;

    background: #d8dadd;

    transition: background 0.25s ease;
}

.cookie-switch-slider::before {
    content: '';

    position: absolute;
    top: 4px;
    left: 4px;

    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: var(--white);

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.18);

    transition: transform 0.25s ease;
}

.cookie-switch input:checked+.cookie-switch-slider {
    background: var(--gold);
}

.cookie-switch input:checked+.cookie-switch-slider::before {
    transform: translateX(21px);
}

.cookie-switch input:focus-visible+.cookie-switch-slider {
    outline: 3px solid rgba(231, 191, 63, 0.3);
    outline-offset: 3px;
}


/* Policy links */

.cookie-modal-policy-links {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 22px;

    padding-top: 20px;

    border-top: 1px solid rgba(9, 11, 27, 0.1);
}

.cookie-modal-policy-links a {
    font-size: 12px;
    font-weight: 600;

    color: var(--navy);

    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}


/* Modal footer */

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;

    gap: 10px;

    padding: 20px 30px;

    border-top: 1px solid rgba(9, 11, 27, 0.1);

    background: #f7f7f5;
}

.cookie-modal-footer .cookie-btn--secondary {
    border-color: rgba(9, 11, 27, 0.22);

    color: var(--navy);
}

.cookie-modal-footer .cookie-btn--secondary:hover {
    border-color: var(--navy);

    color: var(--navy);
}

.cookie-modal-footer .cookie-btn--primary:hover {
    border-color: var(--navy);

    color: var(--navy);
}


/* Screen-reader text */

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}


/* =========================================
   COOKIE RESPONSIVE
========================================= */

@media (max-width: 760px) {

    .cookie-banner {
        padding: 12px;
    }

    .cookie-banner-inner {
        display: block;

        padding: 23px;

        border-radius: 14px;
    }

    .cookie-banner h2 {
        font-size: 24px;
    }

    .cookie-banner-actions {
        width: 100%;

        margin-top: 20px;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal {
        align-items: flex-end;

        padding: 0;
    }

    .cookie-modal-panel {
        width: 100%;
        max-height: 92dvh;

        border-radius: 18px 18px 0 0;
    }

    .cookie-modal-header {
        padding: 23px;
    }

    .cookie-modal-header h2 {
        font-size: 27px;
    }

    .cookie-modal-content {
        padding: 23px;
    }

    .cookie-modal-footer {
        padding: 17px 23px;

        flex-direction: column-reverse;
    }

}


@media (max-width: 480px) {

    .cookie-banner p {
        font-size: 12px;
    }

    .cookie-preference-top {
        gap: 15px;
    }

}

/* =========================================
   ERROR PAGES
========================================= */

.error-page {
    position: relative;

    min-height: 72vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 24px;

    background:
        radial-gradient(circle at 50% 30%,
            rgba(231, 191, 63, 0.08),
            transparent 34%),
        var(--off-white);

    overflow: hidden;
}

.error-page-inner {
    width: min(100%, 800px);

    margin: 0 auto;

    text-align: center;
}

.error-code {
    margin-bottom: -15px;

    font-family: 'Playfair Display', serif;
    font-size: clamp(110px, 18vw, 220px);
    font-weight: 600;
    line-height: 0.9;

    color: rgba(9, 11, 27, 0.06);

    user-select: none;
}

.error-kicker {
    display: block;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    color: var(--gold);
}

.error-page h1 {
    margin: 0 0 22px;

    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 500;
    line-height: 1.08;

    color: var(--navy);
}

.error-page p {
    max-width: 680px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #5d626b;
}

.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.error-btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 26px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.error-btn:hover {
    transform: translateY(-2px);
}

.error-btn--primary {
    border: 1px solid var(--gold);

    color: var(--navy);
    background: var(--gold);
}

.error-btn--primary:hover {
    color: var(--gold);
    background: var(--navy);
}

.error-btn--secondary {
    border: 1px solid rgba(9, 11, 27, 0.18);

    color: var(--navy);
    background: transparent;
}

.error-btn--secondary:hover {
    border-color: var(--navy);

    background: rgba(9, 11, 27, 0.04);
}

.error-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 28px;
}

.error-links a {
    font-size: 13px;
    font-weight: 600;

    color: var(--navy);

    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 4px;
}

.error-links span {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--gold);
}

@media (max-width: 650px) {

    .error-page {
        min-height: 68vh;

        padding: 70px 20px;
    }

    .error-code {
        font-size: 115px;
    }

    .error-page h1 {
        font-size: 40px;
    }

    .error-page p {
        font-size: 14px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-btn {
        width: 100%;
    }

}

/* =========================================
   AREAS PAGE
========================================= */

.areas-shell {
    width: min(90%, 1400px);
    margin: 0 auto;
}

.areas-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: var(--gold);
}

.areas-kicker::before {
    content: '';

    width: 38px;
    height: 1px;

    background: currentColor;
}

.areas-kicker--dark {
    color: #ad8617;
}


/* =========================================
   AREAS HERO
========================================= */

.areas-hero {
    position: relative;

    min-height: min(820px, calc(100vh - 128px));

    display: flex;
    align-items: center;

    padding: 110px 0 95px;

    color: var(--white);
    background: var(--navy);

    overflow: hidden;
}

.areas-hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.28;

    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);

    background-size: 80px 80px;

    mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 92%);

    pointer-events: none;
}

.areas-hero::before {
    content: '';

    position: absolute;
    left: 5%;
    right: 5%;
    top: 0;

    height: 1px;

    background: linear-gradient(90deg, transparent, rgba(231, 191, 63, .75), transparent);
}

.areas-hero-orb {
    position: absolute;

    border: 1px solid rgba(231, 191, 63, 0.2);
    border-radius: 50%;

    pointer-events: none;

    will-change: transform;
}

.areas-hero-orb--one {
    width: 460px;
    height: 460px;

    top: -180px;
    right: -90px;
}

.areas-hero-orb--two {
    width: 720px;
    height: 720px;

    right: -380px;
    bottom: -430px;

    border-color: rgba(231, 191, 63, 0.1);
}

.areas-hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr);
    align-items: end;

    gap: clamp(60px, 8vw, 130px);
}

.areas-hero-copy h1 {
    max-width: 930px;

    margin: 0;

    font-family: 'Playfair Display', serif;
    font-size: clamp(58px, 7.2vw, 112px);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.045em;

    color: var(--white);
}

.areas-hero-copy h1 span {
    color: var(--gold);
}

.areas-hero-copy>p {
    max-width: 760px;

    margin: 34px 0 0;

    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.85;

    color: rgba(255, 255, 255, 0.7);
}

.areas-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;
}

.areas-button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border: 1px solid transparent;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.areas-button:hover {
    transform: translateY(-3px);
}

.areas-button--gold {
    border-color: var(--gold);

    color: var(--navy);
    background: var(--gold);
}

.areas-button--gold:hover {
    color: var(--gold);
    background: transparent;
}

.areas-button--outline {
    border-color: rgba(255, 255, 255, .26);

    color: var(--white);
    background: transparent;
}

.areas-button--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.areas-hero-side {
    position: relative;

    padding: 30px 0 8px 30px;

    border-left: 1px solid rgba(255, 255, 255, .15);
}

.areas-hero-label {
    margin-bottom: 22px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .42);
}

.areas-hero-location {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: baseline;

    gap: 10px;

    padding: 15px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.areas-hero-location span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;

    color: var(--gold);
}

.areas-hero-location strong {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 500;

    color: var(--white);
}

.areas-hero-side>p {
    margin: 25px 0 0;

    font-size: 12px;
    line-height: 1.75;

    color: rgba(255, 255, 255, .54);
}

.areas-scroll-cue {
    position: absolute;
    z-index: 3;
    left: 5%;
    bottom: 27px;

    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .45);
}

.areas-scroll-cue span {
    position: relative;

    width: 1px;
    height: 30px;

    background: rgba(255, 255, 255, .2);

    overflow: hidden;
}

.areas-scroll-cue span::after {
    content: '';

    position: absolute;
    left: 0;
    top: -100%;

    width: 1px;
    height: 100%;

    background: var(--gold);

    animation: areasScrollLine 2s ease-in-out infinite;
}

@keyframes areasScrollLine {
    0% {
        transform: translateY(0);
    }

    60%,
    100% {
        transform: translateY(200%);
    }
}


/* =========================================
   MARQUEE
========================================= */

.areas-marquee {
    position: relative;

    overflow: hidden;

    border-top: 1px solid rgba(9, 11, 27, .08);
    border-bottom: 1px solid rgba(9, 11, 27, .08);

    background: var(--gold);
}

.areas-marquee-track {
    width: max-content;

    display: flex;

    animation: areasMarquee 32s linear infinite;
}

.areas-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.areas-marquee-group span {
    padding: 18px 24px;

    white-space: nowrap;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--navy);
}

.areas-marquee-group i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--navy);
}

@keyframes areasMarquee {
    to {
        transform: translateX(-50%);
    }
}


/* =========================================
   INTRO
========================================= */

.areas-intro {
    padding: 120px 0;

    background: var(--white);
}

.areas-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);

    gap: clamp(60px, 9vw, 150px);
}

.areas-section-heading h2,
.areas-section-top h2,
.areas-services-heading h2,
.areas-nationwide-copy h2,
.areas-final-inner h2 {
    margin: 0;

    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -.035em;

    color: var(--navy);
}

.areas-section-heading h2 {
    font-size: clamp(46px, 5vw, 78px);
    line-height: 1.03;
}

.areas-section-heading h2 span {
    color: #a57d10;
}

.areas-intro-copy {
    padding-top: 42px;
}

.areas-intro-copy p {
    margin: 0 0 22px;

    font-size: 15px;
    line-height: 1.9;

    color: #626772;
}

.areas-intro-copy .areas-intro-lead {
    margin-bottom: 28px;

    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.6;

    color: var(--navy);
}

.areas-intro-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 30px;
}

.areas-intro-tags span {
    min-height: 38px;

    display: inline-flex;
    align-items: center;

    padding: 0 15px;

    border: 1px solid rgba(9, 11, 27, .12);
    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;

    color: var(--navy);
    background: #fafafa;
}


/* =========================================
   REGIONS
========================================= */

.areas-regions {
    padding: 120px 0;

    background: var(--off-white);
}

.areas-section-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
    align-items: end;

    gap: 60px;

    margin-bottom: 55px;
}

.areas-section-top h2 {
    font-size: clamp(48px, 5.4vw, 82px);
    line-height: 1;
}

.areas-section-top>p {
    margin: 0 0 7px;

    font-size: 14px;
    line-height: 1.8;

    color: #676c75;
}

.areas-region-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.area-region-card {
    position: relative;

    min-height: 470px;

    display: flex;
    flex-direction: column;

    padding: clamp(30px, 4vw, 52px);

    border: 1px solid rgba(9, 11, 27, .1);

    background: var(--white);

    overflow: hidden;

    transform-style: preserve-3d;
    will-change: transform;

    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .2s ease;
}

.area-region-card::before {
    content: '';

    position: absolute;
    left: 0;
    top: 0;

    width: 0;
    height: 3px;

    background: var(--gold);

    transition: width .45s ease;
}

.area-region-card:hover {
    border-color: rgba(181, 140, 20, .45);

    box-shadow: 0 30px 75px rgba(9, 11, 27, .09);
}

.area-region-card:hover::before {
    width: 100%;
}

.area-region-card--featured {
    background:
        linear-gradient(135deg, rgba(231, 191, 63, .11), transparent 48%),
        var(--white);
}

.area-region-card--dark {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.area-region-card--wide {
    grid-column: 1 / -1;

    min-height: 330px;

    background:
        linear-gradient(110deg, rgba(231, 191, 63, .08), transparent 52%),
        var(--white);
}

.area-region-number {
    position: absolute;
    right: 24px;
    bottom: -31px;

    font-family: 'Playfair Display', serif;
    font-size: clamp(100px, 11vw, 180px);
    line-height: 1;

    color: rgba(9, 11, 27, .035);

    pointer-events: none;
}

.area-region-card--dark .area-region-number {
    color: rgba(255, 255, 255, .045);
}

.area-region-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: auto;
}

.area-region-card-top span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #9b7410;
}

.area-region-card--dark .area-region-card-top span {
    color: var(--gold);
}

.area-region-card h3 {
    position: relative;
    z-index: 2;

    margin: 75px 0 16px;

    font-family: 'Playfair Display', serif;
    font-size: clamp(35px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.035em;

    color: var(--navy);
}

.area-region-card--dark h3 {
    color: var(--white);
}

.area-region-card>p,
.area-region-wide-copy p {
    position: relative;
    z-index: 2;

    max-width: 570px;

    margin: 0 0 27px;

    font-size: 14px;
    line-height: 1.75;

    color: #676c75;
}

.area-region-card--dark>p {
    color: rgba(255, 255, 255, .64);
}

.area-location-links {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    margin-top: 5px;

    border-top: 1px solid rgba(9, 11, 27, .11);
}

.area-region-card--dark .area-location-links {
    border-color: rgba(255, 255, 255, .14);
}

.area-location-links a {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 0 5px;

    border-bottom: 1px solid rgba(9, 11, 27, .09);

    font-size: 12px;
    font-weight: 600;

    color: var(--navy);

    transition:
        color .2s ease,
        padding .2s ease;
}

.area-location-links a:nth-child(odd) {
    margin-right: 18px;
}

.area-region-card--dark .area-location-links a {
    border-color: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .82);
}

.area-location-links a span {
    color: var(--gold);

    transition: transform .2s ease;
}

.area-location-links a:hover {
    padding-left: 9px;
    padding-right: 9px;

    color: #a57d10;
}

.area-region-card--dark .area-location-links a:hover {
    color: var(--gold);
}

.area-location-links a:hover span {
    transform: translate(2px, -2px);
}

.area-region-wide-copy {
    position: relative;
    z-index: 2;

    min-height: 230px;

    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: end;

    gap: clamp(45px, 8vw, 120px);
}

.area-region-wide-copy h3 {
    margin: 90px 0 0;
}

.area-text-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 4px;

    border-bottom: 1px solid var(--gold);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;

    color: var(--navy);
}

.area-text-link span {
    color: #a57d10;
}


/* =========================================
   SERVICES ON AREAS PAGE
========================================= */

.areas-services {
    padding: 125px 0;

    color: var(--white);
    background: var(--navy);
}

.areas-services-heading {
    max-width: 940px;

    margin-bottom: 65px;
}

.areas-services-heading h2 {
    font-size: clamp(48px, 6vw, 88px);
    line-height: .98;

    color: var(--white);
}

.areas-services-heading p {
    max-width: 680px;

    margin: 28px 0 0;

    font-size: 15px;
    line-height: 1.85;

    color: rgba(255, 255, 255, .62);
}

.areas-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.areas-service-panel {
    position: relative;

    min-height: 590px;

    display: flex;
    flex-direction: column;

    padding: clamp(34px, 5vw, 65px);

    border: 1px solid rgba(255, 255, 255, .13);

    overflow: hidden;
}

.areas-service-panel::after {
    content: '';

    position: absolute;
    right: -120px;
    bottom: -180px;

    width: 390px;
    height: 390px;

    border: 1px solid rgba(231, 191, 63, .15);
    border-radius: 50%;

    pointer-events: none;
}

.areas-service-panel--commercial {
    background:
        linear-gradient(150deg, rgba(231, 191, 63, .12), transparent 45%),
        #0e1224;
}

.areas-service-panel--residential {
    background: #0b0e1d;
}

.areas-service-index {
    margin-bottom: 70px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: var(--gold);
}

.areas-service-panel h3 {
    max-width: 610px;

    margin: 0 0 24px;

    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.2vw, 59px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.035em;

    color: var(--white);
}

.areas-service-panel>p {
    max-width: 620px;

    margin: 0 0 34px;

    font-size: 14px;
    line-height: 1.8;

    color: rgba(255, 255, 255, .62);
}

.areas-service-panel ul {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0 24px;

    margin: 0 0 38px;
    padding: 0;

    list-style: none;

    border-top: 1px solid rgba(255, 255, 255, .12);
}

.areas-service-panel li {
    position: relative;

    padding: 13px 0 13px 17px;

    border-bottom: 1px solid rgba(255, 255, 255, .09);

    font-size: 12px;

    color: rgba(255, 255, 255, .82);
}

.areas-service-panel li::before {
    content: '';

    position: absolute;
    left: 0;
    top: 50%;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--gold);

    transform: translateY(-50%);
}

.areas-service-link {
    position: relative;
    z-index: 2;

    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: auto;
    padding-bottom: 5px;

    border-bottom: 1px solid var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;

    color: var(--white);
}

.areas-service-link span {
    color: var(--gold);

    transition: transform .2s ease;
}

.areas-service-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================
   NATIONWIDE MESSAGE
========================================= */

.areas-nationwide {
    position: relative;

    padding: 120px 0;

    background: var(--white);

    overflow: hidden;
}

.areas-nationwide-line {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 0;

    height: 1px;

    background: rgba(9, 11, 27, .1);
}

.areas-nationwide-line::after {
    content: '';

    display: block;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 1.5s ease;
}

.areas-nationwide.is-visible .areas-nationwide-line::after {
    width: 100%;
}

.areas-nationwide-grid {
    display: grid;
    grid-template-columns: .4fr 1.6fr;

    gap: clamp(50px, 9vw, 150px);
}

.areas-nationwide-label span {
    display: inline-block;

    writing-mode: vertical-rl;
    transform: rotate(180deg);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: #9b7410;
}

.areas-nationwide-copy {
    max-width: 1040px;
}

.areas-nationwide-copy h2 {
    font-size: clamp(48px, 6vw, 92px);
    line-height: 1;
}

.areas-nationwide-copy p {
    max-width: 800px;

    margin: 32px 0 36px;

    font-size: 16px;
    line-height: 1.85;

    color: #656b75;
}

.areas-nationwide .areas-button--gold:hover {
    color: var(--navy);
    border-color: var(--navy);
}


/* =========================================
   FINAL CTA
========================================= */

.areas-final-cta {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;

    padding: 110px 0;

    color: var(--white);
    background: #070914;

    overflow: hidden;
}

.areas-final-word {
    position: absolute;
    left: 50%;
    top: 50%;

    font-family: 'Montserrat', sans-serif;
    font-size: clamp(120px, 23vw, 380px);
    font-weight: 700;
    line-height: .8;
    letter-spacing: -.08em;

    color: rgba(255, 255, 255, .018);

    transform: translate(-50%, -50%);

    pointer-events: none;
    user-select: none;
}

.areas-final-inner {
    position: relative;
    z-index: 2;

    max-width: 950px;

    text-align: center;
}

.areas-final-inner .areas-kicker {
    justify-content: center;
}

.areas-final-inner h2 {
    font-size: clamp(50px, 6.5vw, 96px);
    line-height: .98;

    color: var(--white);
}

.areas-final-inner p {
    max-width: 690px;

    margin: 28px auto 35px;

    font-size: 15px;
    line-height: 1.8;

    color: rgba(255, 255, 255, .62);
}


/* =========================================
   REVEAL ANIMATIONS
========================================= */

.reveal {
    opacity: 0;

    transition:
        opacity .85s cubic-bezier(.2, .65, .2, 1),
        transform .85s cubic-bezier(.2, .65, .2, 1);

    will-change: opacity, transform;
}

.reveal--up {
    transform: translateY(38px);
}

.reveal--left {
    transform: translateX(42px);
}

.reveal--right {
    transform: translateX(-42px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-delay-1 {
    transition-delay: .12s;
}

.reveal-delay-2 {
    transition-delay: .22s;
}


/* =========================================
   AREAS RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .areas-hero-inner {
        grid-template-columns: 1fr .55fr;
        gap: 55px;
    }

    .areas-region-grid {
        grid-template-columns: 1fr;
    }

    .area-region-card--wide {
        grid-column: auto;
    }

    .areas-services-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 900px) {

    .areas-hero {
        min-height: auto;
        padding: 90px 0 75px;
    }

    .areas-hero-inner,
    .areas-intro-grid,
    .areas-section-top,
    .areas-nationwide-grid {
        grid-template-columns: 1fr;
    }

    .areas-hero-side {
        max-width: 600px;
        margin-top: 10px;
    }

    .areas-scroll-cue {
        display: none;
    }

    .areas-intro,
    .areas-regions,
    .areas-services,
    .areas-nationwide {
        padding: 85px 0;
    }

    .areas-intro-copy {
        padding-top: 0;
    }

    .areas-section-top {
        gap: 25px;
    }

    .area-region-wide-copy {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .area-region-wide-copy h3 {
        margin-top: 75px;
    }

    .areas-nationwide-grid {
        gap: 35px;
    }

    .areas-nationwide-label span {
        writing-mode: horizontal-tb;
        transform: none;
    }

}

@media (max-width: 650px) {

    .areas-shell {
        width: calc(100% - 40px);
    }

    .areas-hero {
        padding: 70px 0 62px;
    }

    .areas-hero-grid {
        background-size: 48px 48px;
    }

    .areas-hero-copy h1 {
        font-size: clamp(48px, 14vw, 68px);
        line-height: .98;
    }

    .areas-hero-copy>p {
        margin-top: 26px;
        font-size: 14px;
    }

    .areas-hero-actions {
        flex-direction: column;
        margin-top: 30px;
    }

    .areas-button {
        width: 100%;
    }

    .areas-hero-side {
        padding: 25px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .areas-marquee-group span {
        padding: 15px 19px;
        font-size: 10px;
    }

    .areas-intro,
    .areas-regions,
    .areas-services,
    .areas-nationwide {
        padding: 68px 0;
    }

    .areas-section-heading h2,
    .areas-section-top h2,
    .areas-services-heading h2,
    .areas-nationwide-copy h2,
    .areas-final-inner h2 {
        font-size: 43px;
    }

    .areas-intro-copy .areas-intro-lead {
        font-size: 18px;
    }

    .areas-section-top {
        margin-bottom: 35px;
    }

    .areas-region-grid {
        gap: 12px;
    }

    .area-region-card {
        min-height: 430px;
        padding: 27px 23px;
    }

    .area-region-card h3 {
        margin-top: 65px;
        font-size: 39px;
    }

    .area-location-links {
        grid-template-columns: 1fr;
    }

    .area-location-links a:nth-child(odd) {
        margin-right: 0;
    }

    .area-region-card--wide {
        min-height: 430px;
    }

    .area-region-wide-copy {
        min-height: 360px;
    }

    .area-region-wide-copy h3 {
        margin-top: 60px;
    }

    .areas-services-heading {
        margin-bottom: 42px;
    }

    .areas-service-panel {
        min-height: auto;
        padding: 34px 23px;
    }

    .areas-service-index {
        margin-bottom: 50px;
    }

    .areas-service-panel h3 {
        font-size: 38px;
    }

    .areas-service-panel ul {
        grid-template-columns: 1fr;
    }

    .areas-service-link {
        margin-top: 10px;
    }

    .areas-final-cta {
        min-height: 540px;
        padding: 85px 0;
    }

    .areas-final-inner p {
        font-size: 14px;
    }

}

@media (prefers-reduced-motion: reduce) {

    .areas-marquee-track,
    .areas-scroll-cue span::after {
        animation: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    [data-parallax],
    [data-tilt] {
        transform: none !important;
    }

}

/* =========================================
   LOCATION PAGES
========================================= */

.location-shell {
    width: min(90%, 1400px);
    margin: 0 auto;
}

.location-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;

    color: var(--gold);
}

.location-kicker::before {
    content: '';

    width: 38px;
    height: 1px;

    background: currentColor;
}

.location-kicker--dark {
    color: #a97d0c;
}


/* =========================================
   LOCATION HERO
========================================= */

.location-hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 105px 0 100px;

    color: var(--white);
    background:
        radial-gradient(circle at 82% 20%, rgba(231, 191, 63, .12), transparent 24%),
        linear-gradient(135deg, #070914 0%, var(--navy) 55%, #11152d 100%);

    overflow: hidden;
    isolation: isolate;
}

.location-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: .16;

    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);

    background-size: 74px 74px;

    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.location-hero::before {
    content: 'SHEFFIELD';

    position: absolute;
    left: -1vw;
    bottom: -2.5vw;
    z-index: -2;

    font-family: 'Montserrat', sans-serif;
    font-size: clamp(110px, 18vw, 330px);
    font-weight: 700;
    line-height: .75;
    letter-spacing: -.08em;

    color: rgba(255, 255, 255, .018);

    user-select: none;
    pointer-events: none;
}

.location-hero-shape {
    position: absolute;
    z-index: -1;

    border: 1px solid rgba(231, 191, 63, .22);

    pointer-events: none;
}

.location-hero-shape--one {
    top: 85px;
    right: 5%;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    animation: locationFloat 9s ease-in-out infinite;
}

.location-hero-shape--two {
    right: 20%;
    bottom: 90px;

    width: 110px;
    height: 110px;

    transform: rotate(45deg);

    animation: locationFloatTwo 11s ease-in-out infinite;
}

@keyframes locationFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

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

@keyframes locationFloatTwo {

    0%,
    100% {
        transform: rotate(45deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(50deg) translate3d(10px, -12px, 0);
    }
}

.location-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
    align-items: center;

    gap: clamp(60px, 8vw, 135px);
}

.location-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 34px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .46);
}

.location-breadcrumbs a {
    color: rgba(255, 255, 255, .64);

    transition: color .2s ease;
}

.location-breadcrumbs a:hover {
    color: var(--gold);
}

.location-hero-copy h1 {
    max-width: 900px;

    margin: 24px 0 0;

    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 6.7vw, 108px);
    font-weight: 500;
    line-height: .91;
    letter-spacing: -.045em;

    color: var(--white);
}

.location-hero-copy h1 span {
    color: var(--gold);
}

.location-hero-lead {
    max-width: 720px;

    margin: 34px 0 0;

    font-size: 15px;
    line-height: 1.9;

    color: rgba(255, 255, 255, .67);
}

.location-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;
}

.location-button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 26px;

    border: 1px solid transparent;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.location-button:hover {
    transform: translateY(-2px);
}

.location-button--gold {
    border-color: var(--gold);

    color: var(--navy);
    background: var(--gold);
}

.location-button--gold:hover {
    color: var(--gold);
    background: transparent;
}

.location-button--outline {
    border-color: rgba(255, 255, 255, .28);

    color: var(--white);
    background: transparent;
}

.location-button--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.location-button--navy {
    border-color: var(--navy);

    color: var(--white);
    background: var(--navy);
}

.location-button--navy:hover {
    border-color: var(--gold);

    color: var(--navy);
    background: var(--gold);
}


/* Hero side panel */

.location-hero-panel {
    position: relative;

    padding: 16px 0 0;

    border-top: 1px solid rgba(255, 255, 255, .16);
}

.location-panel-label {
    padding: 0 0 18px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: var(--gold);
}

.location-panel-row {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;

    gap: 14px;

    padding: 17px 0;

    border-top: 1px solid rgba(255, 255, 255, .1);

    color: var(--white);

    transition:
        padding-left .25s ease,
        color .25s ease;
}

.location-panel-row:hover {
    padding-left: 8px;

    color: var(--gold);
}

.location-panel-row>span {
    font-size: 10px;
    font-weight: 600;

    color: rgba(255, 255, 255, .38);
}

.location-panel-row strong {
    font-size: 13px;
    font-weight: 600;
}

.location-panel-row i {
    font-size: 17px;
    font-style: normal;
}

.location-panel-foot {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .38);
}


/* =========================================
   LOCATION MARQUEE
========================================= */

.location-marquee {
    overflow: hidden;

    border-top: 1px solid rgba(9, 11, 27, .08);
    border-bottom: 1px solid rgba(9, 11, 27, .08);

    background: var(--gold);
}

.location-marquee-track {
    width: max-content;

    display: flex;

    animation: locationMarquee 30s linear infinite;
}

.location-marquee-group {
    display: flex;
    align-items: center;
}

.location-marquee-group span {
    padding: 17px 22px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--navy);
}

.location-marquee-group i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--navy);
}

@keyframes locationMarquee {
    to {
        transform: translateX(-50%);
    }
}


/* =========================================
   LOCATION INTRO
========================================= */

.location-intro {
    padding: 115px 0;

    background: var(--off-white);
}

.location-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);

    gap: clamp(60px, 9vw, 150px);
}

.location-section-heading h2,
.location-section-top h2,
.location-directory-heading h2,
.location-nearby-heading h2,
.location-faq-heading h2,
.location-coverage-copy h2,
.location-final-inner h2 {
    margin: 22px 0 0;

    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 78px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.035em;

    color: var(--navy);
}

.location-section-heading h2 span,
.location-coverage-copy h2 span,
.location-final-inner h2 span {
    color: #af8617;
}

.location-intro-copy {
    padding-top: 42px;
}

.location-intro-copy p {
    max-width: 710px;

    margin: 0 0 20px;

    font-size: 14px;
    line-height: 1.95;

    color: #666c75;
}

.location-intro-copy .location-intro-lead {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    line-height: 1.55;

    color: var(--navy);
}

.location-intro-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 30px;
}

.location-intro-tags span {
    display: inline-flex;
    align-items: center;

    min-height: 34px;

    padding: 0 13px;

    border: 1px solid rgba(9, 11, 27, .12);
    border-radius: 999px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: var(--navy);
}


/* =========================================
   SHARED SECTION HEADING
========================================= */

.location-section-top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .6fr);
    align-items: end;

    gap: 70px;

    margin-bottom: 55px;
}

.location-section-top>p {
    max-width: 540px;

    margin: 0;

    font-size: 14px;
    line-height: 1.85;

    color: #666c75;
}

.location-section-top--light h2 {
    color: var(--white);
}

.location-section-top--light>p {
    color: rgba(255, 255, 255, .58);
}


/* =========================================
   COMMERCIAL / RESIDENTIAL SPLIT
========================================= */

.location-split {
    padding: 115px 0 125px;

    background: var(--white);
}

.location-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
}

.location-service-feature {
    position: relative;

    min-height: 650px;

    padding: 42px;

    border: 1px solid rgba(9, 11, 27, .09);

    overflow: hidden;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

.location-service-feature:hover {
    border-color: rgba(231, 191, 63, .65);

    box-shadow: 0 28px 70px rgba(9, 11, 27, .08);
}

.location-service-feature--commercial {
    color: var(--white);
    background: var(--navy);
}

.location-service-feature--residential {
    color: var(--navy);
    background:
        linear-gradient(145deg, rgba(231, 191, 63, .08), transparent 42%),
        #f5f4f0;
}

.location-service-feature-number {
    position: absolute;
    right: 26px;
    top: 15px;

    font-family: 'Playfair Display', serif;
    font-size: 120px;
    line-height: 1;

    color: rgba(255, 255, 255, .035);
}

.location-service-feature--residential .location-service-feature-number {
    color: rgba(9, 11, 27, .045);
}

.location-service-type {
    display: block;

    margin-bottom: 110px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: var(--gold);
}

.location-service-feature h3 {
    max-width: 650px;

    margin: 0;

    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 3.6vw, 59px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -.03em;

    color: inherit;
}

.location-service-feature>p {
    max-width: 610px;

    margin: 26px 0 30px;

    font-size: 13px;
    line-height: 1.85;

    color: rgba(255, 255, 255, .58);
}

.location-service-feature--residential>p {
    color: #676b72;
}

.location-service-feature ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0 24px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.location-service-feature li {
    padding: 12px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .12);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
}

.location-service-feature--residential li {
    border-color: rgba(9, 11, 27, .11);
}

.location-text-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 34px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--gold);
}

.location-text-link span {
    font-size: 16px;

    transition: transform .2s ease;
}

.location-text-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================
   SERVICE DIRECTORY
========================================= */

.location-directory {
    padding: 110px 0;

    color: var(--white);
    background: #070914;
}

.location-directory-heading {
    max-width: 830px;

    margin-bottom: 55px;
}

.location-directory-heading h2 {
    color: var(--white);
}

.location-directory-list {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.location-directory-row {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr) auto;
    align-items: center;

    gap: 28px;

    padding: 25px 8px;

    border-bottom: 1px solid rgba(255, 255, 255, .1);

    color: var(--white);

    transition:
        padding-left .3s ease,
        background .3s ease;
}

.location-directory-row:hover {
    padding-left: 18px;

    background: rgba(255, 255, 255, .025);
}

.location-directory-index {
    font-size: 10px;
    font-weight: 600;

    color: var(--gold);
}

.location-directory-row h3 {
    margin: 0 0 4px;

    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;

    color: var(--white);
}

.location-directory-row p {
    margin: 0;

    font-size: 11px;
    line-height: 1.6;

    color: rgba(255, 255, 255, .45);
}

.location-directory-arrow {
    font-size: 22px;

    color: var(--gold);

    transition: transform .2s ease;
}

.location-directory-row:hover .location-directory-arrow {
    transform: translate(4px, -4px);
}


/* =========================================
   PROCESS
========================================= */

.location-process {
    padding: 115px 0;

    color: var(--white);
    background: var(--navy);
}

.location-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.location-process-step {
    min-height: 290px;

    padding: 30px;

    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.location-process-step>span {
    display: block;

    margin-bottom: 70px;

    font-size: 10px;
    font-weight: 700;

    color: var(--gold);
}

.location-process-step h3 {
    margin: 0 0 14px;

    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 500;

    color: var(--white);
}

.location-process-step p {
    margin: 0;

    font-size: 12px;
    line-height: 1.75;

    color: rgba(255, 255, 255, .5);
}


/* =========================================
   COVERAGE
========================================= */

.location-coverage {
    position: relative;

    padding: 120px 0;

    background: #f3f1eb;

    overflow: hidden;
}

.location-coverage-grid {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    align-items: center;

    gap: clamp(50px, 9vw, 145px);
}

.location-coverage-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(150px, 18vw, 300px);
    font-weight: 700;
    line-height: .85;
    letter-spacing: -.1em;

    color: rgba(9, 11, 27, .045);

    user-select: none;
}

.location-coverage-copy {
    max-width: 790px;
}

.location-coverage-copy p {
    max-width: 660px;

    margin: 28px 0 0;

    font-size: 14px;
    line-height: 1.9;

    color: #666c75;
}

.location-coverage-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 24px;

    margin-top: 34px;
}

.location-inline-link {
    font-size: 11px;
    font-weight: 600;

    color: var(--navy);
}

.location-inline-link span {
    display: inline-block;

    margin-left: 5px;

    color: #ac8213;

    transition: transform .2s ease;
}

.location-inline-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================
   NEARBY
========================================= */

.location-nearby {
    padding: 110px 0;

    background: var(--white);
}

.location-nearby-heading {
    margin-bottom: 46px;
}

.location-nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.location-nearby-card {
    position: relative;

    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 28px;

    border: 1px solid rgba(9, 11, 27, .1);

    color: var(--navy);
    background: #f8f7f3;

    overflow: hidden;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

.location-nearby-card::before {
    content: '';

    position: absolute;
    inset: auto -60px -90px auto;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(231, 191, 63, .4);
    border-radius: 50%;

    transition: transform .4s ease;
}

.location-nearby-card:hover {
    border-color: var(--gold);

    box-shadow: 0 22px 55px rgba(9, 11, 27, .07);
}

.location-nearby-card:hover::before {
    transform: scale(1.12);
}

.location-nearby-card>span {
    font-size: 10px;
    font-weight: 700;

    color: #b18818;
}

.location-nearby-card strong {
    margin-top: auto;

    font-family: 'Playfair Display', serif;
    font-size: 39px;
    font-weight: 500;

    color: var(--navy);
}

.location-nearby-card i {
    position: absolute;
    right: 25px;
    top: 22px;

    font-size: 21px;
    font-style: normal;

    color: #b18818;
}


/* =========================================
   FAQ
========================================= */

.location-faq {
    padding: 115px 0;

    background: var(--off-white);
}

.location-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);

    gap: clamp(60px, 9vw, 145px);
}

.location-faq-heading {
    align-self: start;
}

.location-faq-heading p {
    margin: 22px 0 0;

    font-size: 13px;

    color: #70747c;
}

.location-faq-list {
    border-top: 1px solid rgba(9, 11, 27, .13);
}

.location-faq-list details {
    border-bottom: 1px solid rgba(9, 11, 27, .13);
}

.location-faq-list summary {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 23px 0;

    list-style: none;

    font-family: 'Playfair Display', serif;
    font-size: 21px;
    line-height: 1.35;

    color: var(--navy);

    cursor: pointer;
}

.location-faq-list summary::-webkit-details-marker {
    display: none;
}

.location-faq-list summary span {
    flex: 0 0 auto;

    width: 30px;
    height: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(9, 11, 27, .14);
    border-radius: 50%;

    font-family: 'Montserrat', sans-serif;
    font-size: 15px;

    color: #a77d0d;

    transition: transform .25s ease;
}

.location-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.location-faq-list details>div {
    max-width: 680px;

    padding: 0 55px 24px 0;
}

.location-faq-list details p {
    margin: 0;

    font-size: 13px;
    line-height: 1.85;

    color: #676c75;
}


/* =========================================
   FINAL CTA
========================================= */

.location-final {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    padding: 110px 0;

    color: var(--white);
    background:
        radial-gradient(circle at 50% 100%, rgba(231, 191, 63, .1), transparent 36%),
        #070914;

    overflow: hidden;
}

.location-final-word {
    position: absolute;
    left: 50%;
    top: 50%;

    font-family: 'Montserrat', sans-serif;
    font-size: clamp(105px, 19vw, 320px);
    font-weight: 700;
    line-height: .8;
    letter-spacing: -.08em;

    color: rgba(255, 255, 255, .018);

    transform: translate(-50%, -50%);

    user-select: none;
    pointer-events: none;
}

.location-final-inner {
    position: relative;
    z-index: 2;

    max-width: 950px;

    text-align: center;
}

.location-final-inner .location-kicker {
    justify-content: center;
}

.location-final-inner h2 {
    color: var(--white);
}

.location-final-inner h2 span {
    color: var(--gold);
}

.location-final-inner p {
    max-width: 720px;

    margin: 28px auto 36px;

    font-size: 14px;
    line-height: 1.85;

    color: rgba(255, 255, 255, .58);
}


/* =========================================
   LOCATION RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .location-hero {
        min-height: auto;

        padding: 90px 0;
    }

    .location-hero-layout,
    .location-intro-grid,
    .location-faq-grid {
        grid-template-columns: 1fr;
    }

    .location-hero-layout {
        gap: 65px;
    }

    .location-hero-panel {
        max-width: 720px;
    }

    .location-intro-copy {
        padding-top: 0;
    }

    .location-section-top,
    .location-coverage-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .location-coverage-number {
        display: none;
    }

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

}

@media (max-width: 800px) {

    .location-intro,
    .location-split,
    .location-directory,
    .location-process,
    .location-coverage,
    .location-nearby,
    .location-faq {
        padding: 80px 0;
    }

    .location-split-grid {
        grid-template-columns: 1fr;
    }

    .location-service-feature {
        min-height: 560px;
    }

    .location-nearby-grid {
        grid-template-columns: 1fr;
    }

    .location-nearby-card {
        min-height: 205px;
    }

}

@media (max-width: 650px) {

    .location-shell {
        width: calc(100% - 40px);
    }

    .location-hero {
        padding: 62px 0 65px;
    }

    .location-hero-grid {
        background-size: 48px 48px;
    }

    .location-breadcrumbs {
        margin-bottom: 26px;
    }

    .location-hero-copy h1 {
        font-size: clamp(48px, 13vw, 66px);
        line-height: .95;
    }

    .location-hero-lead {
        margin-top: 25px;

        font-size: 14px;
        line-height: 1.8;
    }

    .location-hero-actions {
        flex-direction: column;

        margin-top: 29px;
    }

    .location-button {
        width: 100%;
    }

    .location-hero-panel {
        padding-top: 12px;
    }

    .location-panel-row {
        padding: 15px 0;
    }

    .location-marquee-group span {
        padding: 14px 18px;

        font-size: 9px;
    }

    .location-intro,
    .location-split,
    .location-directory,
    .location-process,
    .location-coverage,
    .location-nearby,
    .location-faq {
        padding: 65px 0;
    }

    .location-section-heading h2,
    .location-section-top h2,
    .location-directory-heading h2,
    .location-nearby-heading h2,
    .location-faq-heading h2,
    .location-coverage-copy h2,
    .location-final-inner h2 {
        font-size: 42px;
    }

    .location-intro-copy .location-intro-lead {
        font-size: 19px;
    }

    .location-section-top {
        margin-bottom: 35px;
    }

    .location-service-feature {
        min-height: auto;

        padding: 30px 23px;
    }

    .location-service-type {
        margin-bottom: 70px;
    }

    .location-service-feature h3 {
        font-size: 39px;
    }

    .location-service-feature ul {
        grid-template-columns: 1fr;
    }

    .location-directory-row {
        grid-template-columns: 38px minmax(0, 1fr) auto;

        gap: 12px;

        padding: 20px 0;
    }

    .location-directory-row h3 {
        font-size: 21px;
    }

    .location-directory-row p {
        display: none;
    }

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

    .location-process-step {
        min-height: 230px;
    }

    .location-process-step>span {
        margin-bottom: 50px;
    }

    .location-nearby-card strong {
        font-size: 34px;
    }

    .location-faq-list summary {
        font-size: 19px;
    }

    .location-final {
        min-height: 540px;

        padding: 82px 0;
    }

}

@media (prefers-reduced-motion: reduce) {

    .location-marquee-track,
    .location-hero-shape {
        animation: none !important;
    }

}

/* SEO LOCATION PAGE — additional unique project-types section */
.location-project-types {
    padding: 110px 0;
    background: var(--white)
}

.location-project-types-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(55px, 8vw, 130px);
    align-items: start
}

.location-project-types-copy {
    max-width: 570px;
    margin: 28px 0 0;
    font-size: 14px;
    line-height: 1.9;
    color: #666c75
}

.location-project-types-list {
    border-top: 1px solid rgba(9, 11, 27, .13)
}

.location-project-types-list ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.location-project-types-list li {
    position: relative;
    padding: 20px 42px 20px 0;
    border-bottom: 1px solid rgba(9, 11, 27, .13);
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    line-height: 1.3;
    color: var(--navy)
}

.location-project-types-list li::after {
    content: '✓';
    position: absolute;
    right: 4px;
    top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #aa8010
}

@media(max-width:900px) {
    .location-project-types-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media(max-width:650px) {
    .location-project-types {
        padding: 65px 0
    }

    .location-project-types-list li {
        padding-top: 17px;
        padding-bottom: 17px;
        font-size: 20px
    }
}

/* =========================================
   KRD CONTACT PAGE
========================================= */

.contact-shell {
    width: min(90%, 1400px);
    margin: 0 auto;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;

    color: var(--gold);
}

.contact-kicker::before {
    content: '';

    width: 38px;
    height: 1px;

    background: currentColor;
}

.contact-kicker--dark {
    color: #a97d0c;
}


/* =========================================
   HERO
========================================= */

.contact-hero {
    position: relative;

    padding: 105px 0 110px;

    color: var(--white);

    background:
        radial-gradient(circle at 78% 20%, rgba(231, 191, 63, .12), transparent 25%),
        linear-gradient(135deg, #070914 0%, var(--navy) 62%, #12172e 100%);

    overflow: hidden;
    isolation: isolate;
}

.contact-hero::after {
    content: 'CONTACT';

    position: absolute;
    left: -1vw;
    bottom: -2vw;
    z-index: -2;

    font-family: 'Montserrat', sans-serif;
    font-size: clamp(110px, 18vw, 320px);
    font-weight: 700;
    line-height: .75;
    letter-spacing: -.08em;

    color: rgba(255, 255, 255, .018);

    pointer-events: none;
    user-select: none;
}

.contact-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: .14;

    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);

    background-size: 74px 74px;

    mask-image: linear-gradient(to bottom, #000, transparent 95%);
}

.contact-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    align-items: end;

    gap: clamp(65px, 9vw, 150px);
}

.contact-hero-copy h1 {
    max-width: 900px;

    margin: 24px 0 0;

    font-family: 'Playfair Display', serif;
    font-size: clamp(62px, 7vw, 112px);
    font-weight: 500;
    line-height: .93;
    letter-spacing: -.045em;

    color: var(--white);
}

.contact-hero-copy h1 span {
    color: var(--gold);
}

.contact-hero-copy>p {
    max-width: 690px;

    margin: 32px 0 0;

    font-size: 15px;
    line-height: 1.9;

    color: rgba(255, 255, 255, .65);
}

.contact-hero-meta {
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.contact-meta-item {
    padding: 20px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-meta-item>span {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: var(--gold);
}

.contact-meta-item a,
.contact-meta-item strong {
    display: inline-block;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.65;

    color: rgba(255, 255, 255, .8);
}

.contact-meta-item a {
    transition: color .2s ease;
}

.contact-meta-item a:hover {
    color: var(--gold);
}


/* =========================================
   MARQUEE
========================================= */

.contact-marquee {
    overflow: hidden;

    background: var(--gold);
}

.contact-marquee-track {
    width: max-content;

    display: flex;

    animation: contactMarquee 28s linear infinite;
}

.contact-marquee-group {
    display: flex;
    align-items: center;
}

.contact-marquee-group span {
    padding: 17px 21px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--navy);
}

.contact-marquee-group i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--navy);
}

@keyframes contactMarquee {
    to {
        transform: translateX(-50%);
    }
}


/* =========================================
   MAIN
========================================= */

.contact-main {
    padding: 115px 0 130px;

    background:
        radial-gradient(circle at 8% 12%, rgba(231, 191, 63, .07), transparent 18%),
        var(--off-white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(540px, 1.25fr);
    align-items: start;

    gap: clamp(65px, 8vw, 130px);
}


/* =========================================
   LEFT INTRO
========================================= */

.contact-intro {
    position: sticky;
    top: 35px;
}

.contact-intro h2 {
    margin: 22px 0 0;

    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.035em;

    color: var(--navy);
}

.contact-intro-lead {
    max-width: 560px;

    margin: 28px 0 0;

    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.55;

    color: #343946;
}

.contact-feature-list {
    margin-top: 42px;

    border-top: 1px solid rgba(9, 11, 27, .13);
}

.contact-feature {
    display: grid;
    grid-template-columns: 38px 1fr;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(9, 11, 27, .13);
}

.contact-feature>span {
    padding-top: 3px;

    font-size: 9px;
    font-weight: 700;

    color: #a77d0d;
}

.contact-feature strong {
    display: block;

    margin-bottom: 5px;

    font-size: 13px;

    color: var(--navy);
}

.contact-feature p {
    max-width: 430px;

    margin: 0;

    font-size: 12px;
    line-height: 1.7;

    color: #717680;
}

.contact-direct {
    margin-top: 36px;

    padding: 26px;

    color: var(--white);
    background: var(--navy);
}

.contact-direct>span {
    display: block;

    margin-bottom: 16px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: var(--gold);
}

.contact-direct a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    padding: 12px 0;

    border-top: 1px solid rgba(255, 255, 255, .1);

    font-size: 12px;
    font-weight: 600;

    color: rgba(255, 255, 255, .78);
}

.contact-direct a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-direct i {
    color: var(--gold);
    font-style: normal;

    transition: transform .2s ease;
}

.contact-direct a:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   FORM CARD
========================================= */

.contact-form-card {
    padding: clamp(30px, 4vw, 55px);

    border: 1px solid rgba(9, 11, 27, .09);

    background: var(--white);

    box-shadow: 0 30px 80px rgba(9, 11, 27, .07);
}

.contact-form-heading {
    margin-bottom: 38px;

    padding-bottom: 28px;

    border-bottom: 1px solid rgba(9, 11, 27, .1);
}

.contact-form-heading>span {
    display: block;

    margin-bottom: 10px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #a77d0d;
}

.contact-form-heading h2 {
    margin: 0;

    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1;

    color: var(--navy);
}

.contact-form-heading p {
    margin: 12px 0 0;

    font-size: 12px;
    line-height: 1.7;

    color: #747984;
}


/* =========================================
   ALERTS
========================================= */

.contact-alert {
    display: grid;
    grid-template-columns: 38px 1fr;

    gap: 14px;

    margin-bottom: 32px;
    padding: 18px;

    border: 1px solid transparent;
}

.contact-alert>span {
    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 700;
}

.contact-alert strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
}

.contact-alert p,
.contact-alert li {
    margin: 0;

    font-size: 12px;
    line-height: 1.6;
}

.contact-alert ul {
    margin: 5px 0 0;
    padding-left: 18px;
}

.contact-alert--success {
    border-color: rgba(29, 127, 73, .2);

    background: rgba(29, 127, 73, .06);
}

.contact-alert--success>span {
    color: #176b40;
    background: rgba(29, 127, 73, .13);
}

.contact-alert--success strong {
    color: #176b40;
}

.contact-alert--error {
    border-color: rgba(160, 52, 52, .2);

    background: rgba(160, 52, 52, .055);
}

.contact-alert--error>span {
    color: #923232;
    background: rgba(160, 52, 52, .12);
}

.contact-alert--error strong {
    color: #8d2e2e;
}


/* =========================================
   FORM SECTIONS
========================================= */

.contact-form-section {
    padding: 34px 0;

    border-bottom: 1px solid rgba(9, 11, 27, .1);
}

.contact-form-section:first-of-type {
    padding-top: 0;
}

.contact-form-section--last {
    padding-bottom: 0;

    border-bottom: 0;
}

.contact-form-section-title {
    display: grid;
    grid-template-columns: 34px 1fr;

    gap: 14px;

    margin-bottom: 24px;
}

.contact-form-section-title>span {
    padding-top: 3px;

    font-size: 9px;
    font-weight: 700;

    color: #a77d0d;
}

.contact-form-section-title strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;

    color: var(--navy);
}

.contact-form-section-title p {
    margin: 0;

    font-size: 11px;

    color: #858a93;
}

.contact-fields {
    display: grid;

    gap: 20px;
}

.contact-fields--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* =========================================
   INPUTS
========================================= */

.contact-field {
    min-width: 0;
}

.contact-field label {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;

    color: #303540;
}

.contact-field label em {
    color: #b4860b;

    font-style: normal;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    border: 1px solid #dfe1e5;
    border-radius: 0;

    outline: none;

    font-family: 'Montserrat', sans-serif;
    font-size: 13px;

    color: var(--navy);
    background: #fbfbfa;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.contact-field input,
.contact-field select {
    min-height: 51px;

    padding: 0 15px;
}

.contact-field textarea {
    min-height: 175px;

    padding: 15px;

    line-height: 1.7;

    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a0a4ab;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #c59920;

    background: var(--white);

    box-shadow: 0 0 0 3px rgba(231, 191, 63, .11);
}

.contact-field-note {
    margin-top: 7px;

    font-size: 10px;

    color: #979ba3;
}


/* =========================================
   CONTACT METHOD
========================================= */

.contact-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;
}

.contact-choice {
    position: relative;

    cursor: pointer;
}

.contact-choice input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.contact-choice>span {
    min-height: 86px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 15px;

    border: 1px solid #dfe1e5;

    background: #fbfbfa;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.contact-choice strong {
    display: block;

    margin-bottom: 4px;

    font-size: 12px;

    color: var(--navy);
}

.contact-choice small {
    font-size: 10px;

    color: #888d96;
}

.contact-choice input:checked+span {
    border-color: var(--gold);

    background: rgba(231, 191, 63, .09);

    box-shadow: inset 0 0 0 1px var(--gold);
}

.contact-choice input:focus-visible+span {
    outline: 3px solid rgba(231, 191, 63, .18);
    outline-offset: 2px;
}


/* =========================================
   PRIVACY
========================================= */

.contact-privacy {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;

    gap: 11px;

    margin-top: 25px;

    cursor: pointer;
}

.contact-privacy input {
    width: 17px;
    height: 17px;

    margin: 1px 0 0;

    accent-color: #c89d26;
}

.contact-privacy span {
    font-size: 10px;
    line-height: 1.65;

    color: #70757e;
}

.contact-privacy a {
    font-weight: 700;

    color: var(--navy);

    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}


/* =========================================
   SUBMIT
========================================= */

.contact-submit {
    width: 100%;
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 28px;
    padding: 0 22px;

    border: 1px solid var(--gold);

    color: var(--navy);
    background: var(--gold);

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.contact-submit>span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-submit i {
    font-size: 18px;
    font-style: normal;

    transition: transform .2s ease;
}

.contact-submit:hover {
    color: var(--gold);
    background: var(--navy);
}

.contact-submit:hover i {
    transform: translate(4px, -4px);
}

.contact-submit-note {
    margin: 12px 0 0;

    text-align: center;

    font-size: 9px;
    line-height: 1.6;

    color: #969aa2;
}

.contact-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    clip: rect(1px, 1px, 1px, 1px) !important;

    white-space: nowrap !important;
}


/* =========================================
   BOTTOM
========================================= */

.contact-bottom {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;

    padding: 100px 0;

    text-align: center;

    color: var(--white);
    background:
        radial-gradient(circle at 50% 100%, rgba(231, 191, 63, .1), transparent 38%),
        #070914;

    overflow: hidden;
}

.contact-bottom-word {
    position: absolute;
    left: 50%;
    top: 50%;

    font-family: 'Montserrat', sans-serif;
    font-size: clamp(180px, 27vw, 500px);
    font-weight: 700;
    line-height: .8;

    color: rgba(255, 255, 255, .018);

    transform: translate(-50%, -50%);

    user-select: none;
    pointer-events: none;
}

.contact-bottom-inner {
    position: relative;

    max-width: 900px;
}

.contact-bottom-inner .contact-kicker {
    justify-content: center;
}

.contact-bottom h2 {
    margin: 24px 0 0;

    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5.5vw, 82px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.035em;

    color: var(--white);
}

.contact-bottom p {
    max-width: 670px;

    margin: 27px auto 0;

    font-size: 14px;
    line-height: 1.85;

    color: rgba(255, 255, 255, .56);
}

.contact-bottom-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 33px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--gold);
}

.contact-bottom-link span {
    font-size: 17px;

    transition: transform .2s ease;
}

.contact-bottom-link:hover span {
    transform: translate(4px, -4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .contact-hero-layout,
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-layout {
        gap: 65px;
    }

    .contact-hero-meta {
        max-width: 650px;
    }

    .contact-main-grid {
        gap: 60px;
    }

    .contact-intro {
        position: static;
    }

    .contact-intro-lead {
        max-width: 760px;
    }

    .contact-feature-list,
    .contact-direct {
        max-width: 760px;
    }

}


@media (max-width: 700px) {

    .contact-shell {
        width: calc(100% - 40px);
    }

    .contact-hero {
        padding: 65px 0 70px;
    }

    .contact-hero-grid {
        background-size: 48px 48px;
    }

    .contact-hero-copy h1 {
        font-size: clamp(50px, 13vw, 68px);
    }

    .contact-hero-copy>p {
        margin-top: 25px;

        font-size: 14px;
    }

    .contact-marquee-group span {
        padding: 14px 18px;

        font-size: 9px;
    }

    .contact-main {
        padding: 70px 0 80px;
    }

    .contact-intro h2 {
        font-size: 46px;
    }

    .contact-intro-lead {
        font-size: 18px;
    }

    .contact-form-card {
        padding: 29px 21px;
    }

    .contact-form-heading h2 {
        font-size: 38px;
    }

    .contact-fields--two,
    .contact-choice-grid {
        grid-template-columns: 1fr;
    }

    .contact-choice>span {
        min-height: 70px;
    }

    .contact-bottom {
        min-height: 510px;

        padding: 80px 0;
    }

    .contact-bottom h2 {
        font-size: 44px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .contact-marquee-track {
        animation: none !important;
    }

}

/* =========================================================
   KRD COMPACT FOOTER
========================================================= */

.site-footer {
    padding: 0;
}


/* Main footer area */

.site-footer .footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 55px 0;
}

.site-footer .footer-grid--compact {
    display: grid;
    grid-template-columns:
        minmax(270px, 1.25fr) minmax(170px, .75fr) minmax(160px, .7fr) minmax(240px, .9fr);

    gap: clamp(35px, 5vw, 85px);
    align-items: start;
}


/* =========================================================
   COMPANY
========================================================= */

.footer-about {
    max-width: 390px;
}

.footer-kicker {
    display: block;

    margin-bottom: 20px;

    color: #efc533;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-about-copy {
    max-width: 380px;

    margin: 0 0 22px;

    color: rgba(255, 255, 255, .66);

    font-size: 14px;
    line-height: 1.8;
}


/* Tags */

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 22px;
}

.footer-tags span {
    display: inline-flex;
    align-items: center;

    min-height: 34px;

    padding: 0 14px;

    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 100px;

    color: rgba(255, 255, 255, .9);

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   COLUMN TITLES
========================================================= */

.site-footer .footer-column h3 {
    margin: 0 0 20px;

    color: #fff;

    font-size: 15px;
    font-weight: 800;
}


/* =========================================================
   LINKS
========================================================= */

.site-footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, .68);

    font-size: 14px;
    line-height: 1.4;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}

.site-footer .footer-links a:hover {
    color: #efc533;
    transform: translateX(4px);
}


/* View all */

.footer-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 20px;

    color: #efc533;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;

    text-decoration: none;
}

.footer-more-link span {
    transition: transform .2s ease;
}

.footer-more-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact-intro {
    max-width: 270px;

    margin: 0 0 22px;

    color: rgba(255, 255, 255, .62);

    font-size: 13px;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 17px;

    margin-bottom: 24px;
}

.footer-contact a {
    display: flex;
    flex-direction: column;
    gap: 4px;

    color: rgba(255, 255, 255, .78);

    font-size: 14px;

    text-decoration: none;
}

.footer-contact a span {
    color: #efc533;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-contact a:hover {
    color: #fff;
}


/* Compact quote button */

.footer-primary-button--compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 27px;

    width: auto;
}


/* =========================================================
   SOCIALS
========================================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.footer-socials a:hover {
    border-color: #efc533;
    background: rgba(239, 197, 51, .06);
}

.footer-socials svg {
    width: 17px;
    height: 17px;

    fill: #fff;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.site-footer .footer-bottom {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 18px 0;
}

.footer-copyright,
.footer-credit {
    color: rgba(255, 255, 255, .52);

    font-size: 13px;
    line-height: 1.5;
}

.footer-credit-link {
    text-decoration: none;
}

.footer-credit-link:hover .footer-credit {
    color: #efc533;
}


/* Legal */

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, .62);
}

.footer-legal a:hover {
    color: #efc533;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .site-footer .footer-grid--compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .footer-about {
        max-width: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .site-footer .footer-inner {
        padding: 55px 22px 0;
    }

    .site-footer .footer-grid--compact {
        grid-template-columns: 1fr;
        gap: 42px;
    }


    /* Bottom */

    .site-footer .footer-bottom {
        flex-direction: column;

        min-height: 0;

        padding: 24px 0 30px;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

}

@media (max-width: 1000px) {

    .site-footer .footer-copyright {
        order: 1;
    }

    .site-footer .footer-legal {
        order: 2;
    }

    .site-footer .footer-credit-link {
        order: 3;
    }

}