:root {
    color-scheme: light;
    --background: #f3f7fb;
    --surface: #ffffff;
    --surface-alt: #e8f0ff;
    --text: #162033;
    --muted: #5d6b82;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --border: #d7e0ee;
    --shadow: 0 18px 40px rgba(26, 43, 76, 0.08);
    --radius: 20px;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(180deg, #f8fbff 0%, var(--background) 100%);
    color: var(--text);
}

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

.container {
    width: min(calc(100% - 3rem), var(--max-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
    background: rgba(248, 251, 255, 0.86);
    border-bottom: 1px solid rgba(215, 224, 238, 0.75);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
}

.hero {
    padding: 5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

h1,
h2 {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.button-secondary {
    background: var(--surface);
    border: 1px solid var(--border);
}

.section,
.page-shell {
    padding: 2rem 0 4rem;
}

.status-card,
.info-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.status-card {
    padding: 1.75rem;
}

.status-pill {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
}

.status-card ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.8;
}

.card-grid,
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
}

.quote-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.info-card p,
.contact-list dd {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-card {
    max-width: 720px;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin: 0;
}

.contact-list div {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-list dt {
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.site-footer {
    border-top: 1px solid rgba(215, 224, 238, 0.9);
    background: rgba(255, 255, 255, 0.7);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem 0 2rem;
    color: var(--muted);
}

@media (max-width: 880px) {
    .hero-grid,
    .card-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3.5rem;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 1.5rem), var(--max-width));
    }

    .nav-bar,
    .site-nav,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        gap: 0.5rem;
    }

    .site-nav a,
    .button {
        text-align: center;
    }
}
