/*
 * Shared site chrome: header utilities and mobile menu.
 * Used by press.html and other secondary pages; index.html inlines an equivalent subset.
 */

.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: 0.75rem; }
.gap-5 { gap: 1.25rem; }
.h-7 { height: 1.75rem; }
.w-7 { width: 1.75rem; }
.max-w-6xl { max-width: 72rem; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-foc-olive\/20 { border-color: rgba(143, 133, 89, 0.2); }
.bg-foc-bg { background-color: #1e1c16; }
.bg-foc-bg\/95 { background-color: rgba(30, 28, 22, 0.95); }
.bg-foc-red { background-color: #c45040; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.pt-20 { padding-top: 5rem; }
.font-header { font-family: var(--font-header); }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.text-foc-text { color: #d4c8a0; }
.text-white { color: #fff; }
.opacity-60 { opacity: 0.6; }
.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; }
.transition-opacity { transition-property: opacity; }
.duration-200 { transition-duration: 200ms; }
.hover\:bg-foc-red\/80:hover { background-color: rgba(196, 80, 64, 0.8); }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:text-white:hover { color: #fff; }

@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:pt-24 { padding-top: 6rem; }
}

.section-nav-link.is-active {
    color: #d4c8a0;
    opacity: 1;
}

.section-nav-link.is-active::after {
    content: '';
    display: block;
    height: 1px;
    margin-top: 4px;
    background: rgba(196, 80, 64, 0.72);
}

#fullscreen-menu {
    transition: opacity 0.25s ease, visibility 0.25s ease;
    opacity: 0;
    visibility: hidden;
}

#fullscreen-menu.menu-open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-header-play {
    display: inline-flex;
    align-items: center;
    height: 46px;
    padding: 0 1rem;
    background-color: #c45040;
    color: #ffffff;
    border: 1px solid rgba(196, 80, 64, 0.9);
    border-radius: 2px;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mobile-header-play:hover,
.mobile-header-play:focus-visible {
    background-color: rgba(212, 96, 80, 0.98);
    outline: none;
}

@media (max-width: 359px) {
    #mobile-header span.font-header {
        font-size: 0.92rem;
    }

    .mobile-header-play {
        padding: 0 0.7rem;
    }
}

.mobile-menu-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: rgba(212, 200, 160, 0.92);
    background: linear-gradient(180deg, rgba(42, 39, 29, 0.96), rgba(25, 24, 18, 0.96));
    border: 1px solid rgba(143, 133, 89, 0.58);
    border-radius: 2px;
    box-shadow:
        inset 0 0 0 1px rgba(212, 200, 160, 0.06),
        0 8px 18px rgba(0, 0, 0, 0.28);
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
    content: '';
    position: absolute;
    left: 7px;
    right: 7px;
    height: 1px;
    background: rgba(143, 133, 89, 0.36);
    pointer-events: none;
}

.mobile-menu-toggle::before { top: 7px; }
.mobile-menu-toggle::after { bottom: 7px; }

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible,
.mobile-menu-toggle[aria-expanded="true"] {
    color: #ffffff;
    border-color: rgba(196, 80, 64, 0.72);
    background: linear-gradient(180deg, rgba(61, 43, 34, 0.98), rgba(35, 31, 24, 0.98));
    box-shadow:
        inset 0 0 0 1px rgba(196, 80, 64, 0.18),
        0 10px 22px rgba(0, 0, 0, 0.32);
    outline: none;
}

.mobile-menu-toggle:active {
    transform: translateY(1px);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.55));
}

.menu-link {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 0.88rem 1.35rem;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
    color: #d4c8a0;
    background-color: #2a271d;
    border: 1px solid rgba(143, 133, 89, 0.4);
    text-decoration: none;
    transition: all 0.2s ease;
}

.menu-link:hover,
.menu-link:focus {
    background-color: #c45040;
    color: #ffffff;
    border-color: #c45040;
    outline: none;
}

.menu-link:active {
    transform: scale(0.98);
}

.menu-brand-link {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 0.5rem;
    padding: 0.35rem 0.5rem 0.75rem;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.22em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(212, 200, 160, 0.88);
    border-bottom: 1px dashed rgba(143, 133, 89, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.menu-brand-link:hover,
.menu-brand-link:focus-visible {
    color: #d4c8a0;
    border-bottom-color: rgba(196, 80, 64, 0.65);
    outline: none;
}

.menu-link--cta {
    margin-top: 0.5rem;
    padding: 1.2rem 1.5rem;
    background-color: rgba(196, 80, 64, 0.95);
    border-color: rgba(196, 80, 64, 0.95);
    color: #fff;
    font-size: 1.38rem;
    letter-spacing: 0.2em;
}

.menu-link--roadmap {
    font-size: 1.08rem;
    letter-spacing: 0.16em;
    padding: 0.82rem 1.35rem;
}

.menu-link--cta:hover,
.menu-link--cta:focus-visible {
    background-color: rgba(212, 90, 75, 0.98);
    border-color: rgba(212, 90, 75, 0.98);
    color: #fff;
}

.menu-link--minor {
    font-size: 0.98rem;
    letter-spacing: 0.14em;
    padding: 0.78rem 1.25rem;
}

.menu-link.is-active {
    border-color: rgba(196, 80, 64, 0.72);
    color: #fff;
    background-color: rgba(196, 80, 64, 0.28);
}

.fullscreen-menu-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 5.25rem 1.75rem 1.25rem;
    box-sizing: border-box;
    overflow-y: auto;
}

.fullscreen-menu-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
}

.fullscreen-menu-social {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    margin: 1.85rem auto 0;
    padding: 1.35rem 0 calc(1.1rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px dashed rgba(143, 133, 89, 0.35);
    background: rgba(30, 28, 22, 0.55);
    border-radius: 4px;
    box-sizing: border-box;
}

.fullscreen-menu-social-label {
    font-family: var(--font-header);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(212, 200, 160, 0.88);
    margin: 0 0 1rem;
}

.fullscreen-menu-social-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.menu-social-hit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 4px;
    border: 1px solid rgba(143, 133, 89, 0.38);
    background: rgba(30, 28, 22, 0.78);
    color: rgba(212, 200, 160, 0.72);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.menu-social-hit:hover,
.menu-social-hit:focus-visible {
    color: #fff;
    border-color: rgba(196, 80, 64, 0.65);
    background: rgba(196, 80, 64, 0.18);
    outline: none;
}

.menu-social-hit:active {
    transform: scale(0.96);
}

.menu-social-hit svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: block;
}

body.menu-active {
    overflow: hidden;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site-header-link {
    text-decoration: none;
}
