:root { color-scheme: light; --ink: #173042; --paper: #f7fbfc; --accent: #256b73; --soft: #dff2f1; }
* { box-sizing: border-box; }
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; line-height: 1.65; }
a { color: inherit; }
.skip-link { position: absolute; left: 1rem; top: -5rem; padding: .75rem 1rem; background: var(--ink); color: white; z-index: 10; }
.skip-link:focus { top: 1rem; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem clamp(1rem, 5vw, 4rem); border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent); }
.brand { max-width: 100%; overflow-wrap: anywhere; font-family: Georgia, ui-serif, serif; font-size: 1.15rem; font-weight: 700; text-decoration: none; }
nav { max-width: 100%; display: flex; flex-wrap: wrap; gap: .4rem 1rem; }
nav a { min-width: 0; min-height: 44px; overflow-wrap: anywhere; display: inline-flex; align-items: center; text-underline-offset: .25em; }
.page-shell { width: min(1080px, calc(100% - 2rem)); margin: clamp(2rem, 7vw, 5rem) auto; }
.hero, .page-intro { padding: clamp(1.75rem, 6vw, 4.5rem); background: white; border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent); border-radius: 1.5rem; box-shadow: 0 24px 70px color-mix(in srgb, var(--ink) 10%, transparent); }
.hero { position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; width: 13rem; height: 13rem; right: -4rem; bottom: -5rem; border-radius: 50%; background: var(--soft); opacity: .75; pointer-events: none; }
.hero > * { position: relative; z-index: 1; }
.page-label { overflow-wrap: anywhere; color: var(--accent); font-weight: 750; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1 { max-width: 18ch; overflow-wrap: anywhere; margin: .35rem 0 1.25rem; font-family: Georgia, ui-serif, serif; font-size: clamp(2.25rem, 8vw, 4.75rem); line-height: 1.04; }
.lead { max-width: 62ch; font-size: clamp(1.05rem, 2.4vw, 1.3rem); }
.explore { margin-top: clamp(2rem, 5vw, 3.5rem); }
h2 { margin: 0 0 1rem; font-family: Georgia, ui-serif, serif; font-size: clamp(1.5rem, 4vw, 2.25rem); }
.page-grid, .fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 1rem; }
.page-card { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem; border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent); border-radius: 1rem; background: white; font-weight: 750; text-decoration: none; }
.page-card span:first-child { min-width: 0; overflow-wrap: anywhere; }
.page-card:hover, .page-card:focus-visible { border-color: var(--accent); box-shadow: 0 12px 35px color-mix(in srgb, var(--ink) 9%, transparent); }
.fact-grid { margin-top: 1.25rem; }
.fact-card { min-width: 0; padding: clamp(1.25rem, 3vw, 2rem); border-left: .3rem solid var(--accent); border-radius: .3rem 1rem 1rem .3rem; background: white; box-shadow: 0 14px 42px color-mix(in srgb, var(--ink) 8%, transparent); }
.fact-card p { margin: 0; overflow-wrap: anywhere; }
.contact-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.detail-panel { min-width: 0; padding: clamp(1.25rem, 4vw, 2.25rem); border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent); border-radius: 1.25rem; background: white; }
.accent-panel { background: var(--soft); }
.action-panel { grid-column: 1 / -1; }
.fact-stack { display: grid; gap: .75rem; }
.fact-stack .fact-card { padding: 1rem; box-shadow: none; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.vertical-actions { margin-top: 0; }
.button { max-width: 100%; min-height: 44px; overflow-wrap: anywhere; display: inline-flex; align-items: center; padding: .7rem 1rem; border-radius: 999px; background: var(--accent); color: white; font-weight: 700; text-align: center; text-decoration: none; }
.button-secondary { background: var(--soft); color: var(--ink); }
footer { margin-top: auto; padding: 2rem clamp(1rem, 5vw, 4rem); background: var(--ink); color: white; }
footer p { margin: .25rem 0; overflow-wrap: anywhere; }
@media (max-width: 640px) { .site-header { align-items: flex-start; flex-direction: column; } .page-shell { margin-block: 2rem; } .contact-layout { grid-template-columns: 1fr; } .action-panel { grid-column: auto; } .button { width: 100%; justify-content: center; } }