* {
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --bg: #f5f5f0;
    --surface: #fffdf9;
    --ink: #18242a;
    --muted: #56646a;
    --line: #d6ddd7;
    --accent: #116b6a;
    --accent-warm: #d95f34;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
}

a {
    color: var(--accent);
}

a:hover {
    color: var(--accent-warm);
}

.site-shell {
    min-height: 100vh;
}

.hero {
    background:
        radial-gradient(circle at top right, rgba(255, 179, 71, 0.26), transparent 28%),
        linear-gradient(140deg, #14363f 0%, #225760 48%, #f06a3a 100%);
    color: #fffaf3;
    padding: 48px 0 40px;
}

.hero-inner,
.legal-content,
.legal-footer {
    width: min(880px, calc(100% - 32px));
    margin: 0 auto;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.brand-row img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    flex: 0 0 auto;
}

.eyebrow {
    margin: 0 0 8px;
    color: rgba(255, 250, 243, 0.8);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero h1 {
    margin: 0 0 10px;
    font-size: 40px;
    line-height: 1.08;
}

.hero p {
    margin: 0;
    max-width: 62ch;
    font-size: 17px;
}

.hero-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.hero-nav a {
    color: #fffaf3;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 250, 243, 0.35);
    padding-bottom: 2px;
}

.hero-nav a:hover {
    border-bottom-color: #fffaf3;
}

.legal-content {
    padding: 34px 0 48px;
}

.summary {
    display: grid;
    gap: 8px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.summary p {
    margin: 0;
}

.section {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.section:last-child {
    border-bottom: 0;
}

.section h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
}

.section p,
.section li {
    font-size: 16px;
}

.section p {
    margin: 0 0 12px;
}

.section ul {
    margin: 0;
    padding-left: 22px;
}

.section li + li {
    margin-top: 8px;
}

.meta-line {
    color: var(--muted);
    font-size: 14px;
}

.contact-box {
    padding-top: 6px;
}

.legal-footer {
    padding: 0 0 36px;
    color: var(--muted);
    font-size: 14px;
}

.legal-footer nav,
.public-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.legal-footer nav {
    margin-top: 8px;
}

.public-links {
    justify-content: center;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.public-links a,
.legal-footer nav a {
    text-decoration: none;
}

.public-links a:hover,
.legal-footer nav a:hover {
    text-decoration: underline;
}

@media (max-width: 720px) {
    .hero {
        padding: 36px 0 30px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .brand-row {
        align-items: flex-start;
    }

    .brand-row img {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }
}
