body.mobile-nav-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

.mobile-nav-toggle {
    min-width: 44px;
    min-height: 44px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav-toggle:hover {
    opacity: 0.72;
    transform: translateY(-1px);
}

.mobile-nav-toggle[aria-expanded="true"] {
    opacity: 0.72;
}

.mobile-nav-toggle svg {
    width: 2rem;
    height: 2rem;
    flex: none;
    overflow: visible;
}

.mobile-nav-toggle path {
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.2s ease;
}

.mobile-nav-toggle[aria-expanded="true"] path:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] path:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] path:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(24rem, 100vw);
    max-width: 100vw;
    height: 100svh;
    background: linear-gradient(180deg, rgba(0, 15, 75, 0.98) 0%, rgba(0, 15, 75, 0.94) 100%);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, visibility 0.24s ease;
    z-index: 50;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    box-shadow: -28px 0 72px rgba(2, 6, 23, 0.42);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-panel[data-theme="light"] {
    background: linear-gradient(180deg, #fbf7f1 0%, #f4efe7 100%);
    color: #111111;
    border-left-color: rgba(17, 17, 17, 0.08);
    box-shadow: -24px 0 60px rgba(15, 23, 42, 0.12);
}

.mobile-nav-backdrop[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-panel[data-open="true"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-nav-menu {
    display: flex;
    min-height: 100svh;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    gap: 0;
    padding: max(1.5rem, calc(env(safe-area-inset-top) + 0.5rem)) 1.5rem max(1.5rem, calc(env(safe-area-inset-bottom) + 1.5rem));
}

.mobile-nav-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav-panel[data-theme="light"] .mobile-nav-header-row {
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.mobile-nav-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.mobile-nav-panel[data-theme="light"] .mobile-nav-label {
    color: rgba(15, 23, 42, 0.52);
}

.mobile-nav-close {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-nav-panel[data-theme="light"] .mobile-nav-close {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.42);
    color: #111111;
}

.mobile-nav-panel[data-theme="light"] .mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(255, 255, 255, 0.76);
}

.mobile-nav-close svg {
    width: 1.15rem;
    height: 1.15rem;
}

.mobile-nav-link {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    padding: 1rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-panel[data-theme="light"] .mobile-nav-link {
    border-bottom-color: rgba(17, 17, 17, 0.1);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    color: #a51034;
    transform: translateX(4px);
    outline: none;
}

.mobile-nav-panel[data-theme="light"] .mobile-nav-link:hover,
.mobile-nav-panel[data-theme="light"] .mobile-nav-link:focus-visible {
    color: #a51034;
}

.mobile-nav-link.mobile-nav-cta {
    justify-content: center;
    border-bottom: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(165, 16, 52, 0.92) 0%, rgba(123, 10, 34, 0.96) 100%);
    border-color: rgba(212, 63, 103, 0.8);
    color: #ffffff;
    margin-top: auto;
    padding-inline: 1.5rem;
    box-shadow: 0 16px 30px rgba(165, 16, 52, 0.24);
}

.mobile-nav-link.mobile-nav-cta:hover,
.mobile-nav-link.mobile-nav-cta:focus-visible {
    background: linear-gradient(135deg, rgba(183, 21, 63, 0.98) 0%, rgba(143, 14, 45, 1) 100%);
    border-color: rgba(230, 98, 133, 0.9);
    box-shadow: 0 18px 32px rgba(165, 16, 52, 0.28);
    transform: translateY(-1px);
}

.mobile-nav-panel[data-theme="light"] .mobile-nav-link.mobile-nav-cta {
    background: linear-gradient(135deg, #b61239 0%, #8f0e2d 100%);
    border-color: rgba(165, 16, 52, 0.7);
    color: #ffffff;
}

.mobile-nav-panel[data-theme="light"] .mobile-nav-link.mobile-nav-cta:hover,
.mobile-nav-panel[data-theme="light"] .mobile-nav-link.mobile-nav-cta:focus-visible {
    background: linear-gradient(135deg, #c71641 0%, #991031 100%);
    border-color: rgba(165, 16, 52, 0.9);
}

.site-header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.site-header-nav {
    justify-self: center;
    justify-content: center;
}

.site-header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
}

footer {
    overflow: hidden;
}

footer::before {
   content: "";
    position: absolute;
    left: -7rem;
    top: -22rem;
    width: 60rem;
    height: 60rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgb(255 255 255 / 40%) 0%, rgb(255 255 255 / 14%) 34%, rgb(255 255 255 / 4%) 52%, rgb(255 255 255 / 1%) 74%);
    pointer-events: none;
    z-index: 0;
    
}

footer > * {
    position: relative;
    z-index: 1;
}

.site-footer-links,
.site-footer-contact {
    font-size: 0.75rem;
    line-height: 1.6;
}

.site-footer-links a {
    white-space: normal;
    text-decoration: none;
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    outline: none;
}

@media (min-width: 640px) {
    .site-footer-links {
        width: 100%;
        margin-inline: auto;
    }
}

.site-social-link {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
}

.site-eyebrow {
    font-size: clamp(0.58rem, 1.6vw, 0.72rem);
    letter-spacing: clamp(0.18em, 0.35vw, 0.4em);
}

.site-fluid-body {
    font-size: clamp(0.95rem, 2.7vw, 1.0625rem);
    line-height: 1.75;
}

.site-fluid-heading-xl {
    font-size: clamp(2.45rem, 9vw, 6rem);
    line-height: 0.94;
}

.site-fluid-heading-lg {
    font-size: clamp(2rem, 7vw, 4.5rem);
    line-height: 0.98;
}

.site-fluid-heading-md {
    font-size: clamp(1.75rem, 6vw, 3.4rem);
    line-height: 1.05;
}

.site-fluid-title {
    font-size: clamp(1.95rem, 7vw, 3.2rem);
    line-height: 1.08;
}

.site-section-copy {
    font-size: clamp(0.95rem, 2.7vw, 1rem);
    line-height: 1.8;
}

.site-compact-section {
    min-height: auto;
}

.site-legal-copy,
.policy-copy {
    overflow-wrap: anywhere;
    text-wrap: pretty;
}

@media (max-width: 767px) {
    .mobile-nav-panel {
        width: min(100vw, 22rem);
    }

    .mobile-nav-menu {
        min-height: 100%;
        padding-inline: 1.25rem;
    }

    .header-top-veil {
        height: 128px;
    }

    .screen-panel {
        height: auto;
        min-height: 100svh;
    }

    .nav-feature-link {
        min-height: 44px;
    }

    .policy-copy,
    .site-legal-copy {
        font-size: clamp(1rem, 3.8vw, 1.0625rem);
        line-height: 1.8;
        text-align: left;
    }

    .section-heading {
        font-size: clamp(0.72rem, 2.8vw, 0.82rem);
        letter-spacing: 0.16em;
    }

    .site-header-shell {
        display: flex;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .mobile-nav-toggle,
    .mobile-nav-backdrop,
    .mobile-nav-panel {
        display: none;
    }
}
