:root {
    --cream: #F5F1EA;
    --cream-2: #EDE8DF;
    --cream-3: #E0D9CE;
    --white: #FFFFFF;
    --ink: #1C1A17;
    --ink-2: #3D3A35;
    --ink-3: #5C5850;
    --ink-4: #7A7468;
    --gold: #B8882A;
    --gold-dark: #8A5E1A;
    --gold-soft: rgba(184,136,42,0.10);
    --gold-border: rgba(138,94,26,0.30);
    --rule: rgba(28,26,23,0.15);
    --rule-strong: rgba(28,26,23,0.30);
    --pad-x: clamp(20px, 4vw, 80px);
    --max: 800px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
::selection { background: var(--gold); color: var(--cream); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245,241,234,0.88);
    backdrop-filter: saturate(1.4) blur(10px);
    -webkit-backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid var(--rule);
}
.topbar .row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 56px;
    gap: 24px;
}
.brandmark { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.01em; font-size: 14px; }
.brandmark .sig {
    width: 28px; height: 28px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: -0.02em;
    background: var(--cream);
}
.brandmark .full em { font-style: normal; color: var(--gold); }
.topnav { display: flex; gap: 24px; justify-self: center; }
.topnav a { font-size: 13px; color: var(--ink-3); font-weight: 500; padding: 6px 0; position: relative; transition: color .15s; }
.topnav a:hover { color: var(--ink); }
.topnav a.active { color: var(--ink); }
.topnav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); }

.hero-legal {
    padding: clamp(40px,6vw,80px) 0 clamp(32px,4vw,48px);
    border-bottom: 1px solid var(--rule);
}
.hero-legal .eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-3); margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
}
.hero-legal .eyebrow .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-legal h1 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--ink);
    max-width: 18ch;
}
.hero-legal .updated {
    margin-top: 16px;
    font-size: 12px; color: var(--ink-4); letter-spacing: 0.04em;
}

.legal-content { padding: clamp(32px,4vw,64px) 0; }
.legal-section {
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
}
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.legal-section h2 .icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 12px;
}
.legal-section h2 .icon.blue { background: var(--gold-soft); border: 1px solid var(--gold-border); color: var(--gold-dark); }
.legal-section h2 .icon.green { background: rgba(39,174,96,0.08); border: 1px solid rgba(39,174,96,0.25); color: #27AE60; }
.legal-section h2 .icon.gold { background: var(--gold-soft); border: 1px solid var(--gold-border); color: var(--gold-dark); }
.legal-section h2 .icon.red { background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.25); color: #C0392B; }

.legal-section p,
.legal-section li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-2);
    margin-bottom: 12px;
}
.legal-section p:last-child,
.legal-section li:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--ink); font-weight: 600; }
.legal-section a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: var(--ink); }
.legal-section ul { list-style: none; padding: 0; }
.legal-section ul li {
    padding: 4px 0 4px 20px;
    position: relative;
}
.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-border);
}

.legal-note {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.55;
}
.legal-note.green { background: rgba(39,174,96,0.06); border: 1px solid rgba(39,174,96,0.20); color: var(--ink-2); }
.legal-note.green strong { color: #27AE60; }
.legal-note.gold { background: var(--gold-soft); border: 1px solid var(--gold-border); color: var(--ink-2); }
.legal-note.gold strong { color: var(--gold-dark); }
.legal-note.red { background: rgba(192,57,43,0.06); border: 1px solid rgba(192,57,43,0.20); color: var(--ink-2); }
.legal-note.red strong { color: #C0392B; }

footer {
    padding: clamp(32px,4vw,48px) 0 24px;
    border-top: 1px solid var(--rule);
    background: var(--cream-2);
}
footer .foot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--ink-4);
}
footer .foot-brand { font-weight: 700; color: var(--ink); font-size: 13px; }
footer .foot-legal { display: flex; gap: 16px; flex-wrap: wrap; }
footer .foot-legal a { color: var(--ink-3); transition: color .15s; }
footer .foot-legal a:hover { color: var(--gold-dark); }
footer .foot-legal a.current { color: var(--ink); font-weight: 600; }
footer .foot-bce { color: var(--ink-4); }
footer .certs { display: flex; gap: 10px; align-items: center; margin-top: 16px; }
.cert {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 999px; border: 1px solid var(--rule-strong);
    background: var(--cream); color: var(--ink); font-weight: 500; font-size: 11px;
}
.cert .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

@media (max-width: 760px) {
    .topnav { display: none; }
    .topbar .row { height: 50px; }
}
