@charset "UTF-8";

/* =========================================================
   Global design system
   Shared tokens and layout rules used across the whole site
   ========================================================= */

:root {
    --color-navy-950: #0a1d2c;
    --color-navy-900: #102a3f;
    --color-navy-800: #183b56;
    --color-sea-600: #4f7f89;
    --color-sea-500: #648f98;
    --color-sand-500: #c99b61;
    --color-sand-400: #d9b17b;

    --color-surface: #ffffff;
    --color-surface-soft: #f7f5f1;
    --color-text: #1d2a33;
    --color-text-muted: #66737d;
    --color-border: rgba(16, 42, 63, 0.14);
    --color-danger: #a63d45;
    --color-danger-soft: #fff1f2;

    --shadow-sm: 0 8px 24px rgba(10, 29, 44, 0.08);
    --shadow-md: 0 16px 42px rgba(10, 29, 44, 0.12);
    --shadow-lg: 0 24px 70px rgba(10, 29, 44, 0.18);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --content-width: 1440px;
    --transition: 180ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--color-text);
    font-family:
        Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    background-color: var(--color-surface-soft);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

main {
    flex: 1;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--color-navy-900);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

p {
    color: var(--color-text-muted);
}

::selection {
    background: var(--color-sand-400);
    color: var(--color-navy-950);
}

:focus-visible {
    outline: 3px solid rgba(201, 155, 97, 0.45);
    outline-offset: 3px;
}

.site-shell {
    width: min(var(--content-width), calc(100% - 64px));
    margin-inline: auto;
}

.surface-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--color-sand-500);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.button,
.btn,
.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--color-navy-900);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(16, 42, 63, 0.14);
    transition:
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.button:hover,
.btn:hover,
.home-button:hover {
    background: var(--color-navy-800);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(16, 42, 63, 0.18);
}

footer {
    margin-top: auto;
    padding: 1.15rem 1rem;
    background: var(--color-navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
    color: inherit;
}

footer a {
    color: var(--color-sand-400);
    font-weight: 650;
    text-decoration: none;
    transition: color var(--transition);
}

footer a:hover {
    color: #fff;
}

.footer-separator {
    margin: 0 0.45rem;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 600px) {
    footer {
        padding: 1rem 1.25rem;
        font-size: 0.82rem;
    }

    .footer-separator {
        display: block;
        height: 0.35rem;
        font-size: 0;
    }
}

.error {
    display: block;
    margin-top: 0.35rem;
    color: var(--color-danger);
    font-size: 0.86rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .site-shell {
        width: min(100% - 32px, var(--content-width));
    }
}

@media (max-width: 600px) {
    .site-shell {
        width: min(100% - 24px, var(--content-width));
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
