:root {
    --fx-ink: #17201b;
    --fx-muted: #66726c;
    --fx-surface: #f7faf7;
    --fx-panel: #ffffff;
    --fx-line: #dbe5de;
    --fx-green: #256b4f;
    --fx-green-strong: #134d39;
    --fx-mint: #dff4e6;
    --fx-coral: #e4664f;
    --fx-gold: #f2c94c;
    --fx-orange: #FF5F05;
    --fx-orange-container: #fe5f04;
    --fx-font: 'Hanken Grotesk', system-ui, sans-serif;
    --fx-font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

* {
    box-sizing: border-box;
}

body.fx-public {
    margin: 0;
    color: var(--fx-ink);
    background: var(--fx-surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.btn-orange {
    background-color: var(--fx-orange);
    border-color: var(--fx-orange);
    color: #ffffff;
    font-weight: 600;
}

.btn-orange:hover,
.btn-orange:active {
    background-color: #e55504;
    border-color: #e55504;
    color: #ffffff;
}

.material-symbols-outlined {
    display: inline-block;
    font-family: 'Material Symbols Outlined';
    font-feature-settings: 'liga';
    font-size: 20px;
    font-style: normal;
    font-variation-settings:
        'FILL' 0,
        'wght' 100,
        'GRAD' 0,
        'opsz' 24;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
    text-rendering: optimizeLegibility;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.fx-site-header,
.fx-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.fx-site-header {
    min-height: 76px;
}

.fx-brand,
.fx-nav,
.fx-footer nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fx-brand {
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
}

.fx-brand img {
    border-radius: 8px;
}

.fx-nav,
.fx-footer {
    font-size: 0.95rem;
}

.fx-nav a,
.fx-footer a {
    color: var(--fx-muted);
    text-decoration: none;
}

.fx-nav a:hover,
.fx-footer a:hover {
    color: var(--fx-ink);
}

.fx-nav-action {
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--fx-line);
    border-radius: 8px;
    background: var(--fx-panel);
}

.fx-page {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto 5rem;
}

.fx-hero,
.fx-location-hero {
    display: grid;
    align-items: center;
    min-height: clamp(420px, 72vh, 720px);
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.fx-hero-with-media {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    gap: clamp(2rem, 5vw, 4.5rem);
}

.fx-hero-copy,
.fx-location-hero {
    max-width: 760px;
}

.fx-eyebrow {
    margin: 0 0 0.9rem;
    color: var(--fx-coral);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.fx-hero h1,
.fx-location-hero h1 {
    margin: 0;
    color: var(--fx-ink);
    font-size: clamp(2.6rem, 8vw, 5.7rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.fx-lede {
    max-width: 720px;
    margin: 1.35rem 0 0;
    color: var(--fx-muted);
    font-size: clamp(1.12rem, 2vw, 1.45rem);
    line-height: 1.55;
}

.fx-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.fx-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.fx-button-primary {
    color: #ffffff;
    background: var(--fx-green);
}

.fx-button-primary:hover {
    color: #ffffff;
    background: var(--fx-green-strong);
}

.fx-button-secondary {
    color: var(--fx-ink);
    border: 1px solid var(--fx-line);
    background: var(--fx-panel);
}

.fx-hero-media {
    margin: 0;
}

.fx-hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(23, 32, 27, 0.16);
}

.fx-content {
    width: min(820px, 100%);
    margin: 0 auto;
    color: var(--fx-ink);
    font-size: 1.06rem;
    line-height: 1.75;
}

.fx-content h2,
.fx-content h3 {
    margin-top: 2.2rem;
    line-height: 1.15;
    letter-spacing: 0;
}

.fx-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.fx-location-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: -2rem 0 4rem;
    overflow: hidden;
    border: 1px solid var(--fx-line);
    border-radius: 8px;
    background: var(--fx-line);
}

.fx-location-facts div {
    min-width: 0;
    padding: 1.1rem;
    background: var(--fx-panel);
}

.fx-location-facts span {
    display: block;
    color: var(--fx-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.fx-location-facts strong {
    display: block;
    margin-top: 0.3rem;
    overflow-wrap: anywhere;
    font-size: 1rem;
}

.fx-public-support {
    max-width: min(1080px, calc(100% - 32px));
    margin: 0 auto 56px;
    padding: 24px 0 0;
}

.fx-public-privacy-banner {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(35, 65, 58, 0.14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.16);
}

.fx-public-privacy-banner[hidden],
.fx-public-privacy-modal[hidden] {
    display: none !important;
}

.fx-public-privacy-banner__copy p {
    margin: 4px 0 0;
    color: var(--fx-muted);
    font-size: 0.92rem;
}

.fx-public-privacy-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.fx-public-privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: grid;
    place-items: center;
    padding: 16px;
    background: rgba(15, 23, 42, 0.42);
}

.fx-public-privacy-modal__dialog {
    width: min(100%, 560px);
    max-height: min(760px, calc(100vh - 32px));
    overflow: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.28);
}

.fx-public-privacy-modal__header,
.fx-public-privacy-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid rgba(35, 65, 58, 0.12);
}

.fx-public-privacy-modal__footer {
    border-top: 1px solid rgba(35, 65, 58, 0.12);
    border-bottom: 0;
}

.fx-public-privacy-modal__header h2 {
    margin: 0;
    font-size: 1.2rem;
}

.fx-public-privacy-modal__header p {
    margin: 4px 0 0;
    color: var(--fx-muted);
    font-size: 0.9rem;
}

.fx-public-privacy-modal__close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #eef4f1;
    position: relative;
}

.fx-public-privacy-modal__close::before,
.fx-public-privacy-modal__close::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 10px;
    width: 16px;
    height: 2px;
    background: var(--fx-ink);
}

.fx-public-privacy-modal__close::before {
    transform: rotate(45deg);
}

.fx-public-privacy-modal__close::after {
    transform: rotate(-45deg);
}

.fx-public-privacy-choice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(35, 65, 58, 0.1);
}

.fx-public-privacy-choice span span {
    display: block;
    margin-top: 3px;
    color: var(--fx-muted);
    font-size: 0.9rem;
}

.fx-public-privacy-choice input[type="checkbox"] {
    width: 44px;
    height: 24px;
    flex: 0 0 auto;
}

.fx-public-privacy-gpc {
    margin: 16px 20px;
    padding: 12px 14px;
    border: 1px solid #b7ebc6;
    border-radius: 8px;
    background: #eefbf1;
    color: #1d6b35;
    font-size: 0.9rem;
}

.fx-footer {
    min-height: 120px;
    border-top: 1px solid var(--fx-line);
    color: var(--fx-muted);
}

.fx-footer div {
    display: grid;
    gap: 0.25rem;
}

.fx-footer strong {
    color: var(--fx-ink);
}

@media (max-width: 760px) {
    .fx-site-header,
    .fx-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 1rem 0;
    }

    .fx-nav,
    .fx-footer nav {
        flex-wrap: wrap;
    }

    .fx-hero,
    .fx-location-hero {
        min-height: 0;
        padding: 3.5rem 0;
    }

    .fx-hero-with-media {
        grid-template-columns: 1fr;
    }

    .fx-hero-media img {
        aspect-ratio: 16 / 10;
    }

    .fx-location-facts {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .fx-public-privacy-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .fx-public-privacy-banner__actions {
        justify-content: stretch;
    }

    .fx-public-privacy-banner__actions .fx-button {
        flex: 1 1 100%;
    }
}
