:root {
  --ink: #0b2638; --coral: #f1604d; --cream: #fbf6ea; --paper: #fffdf8;
  --sea: #e8f1eb; --gold: #f4c24d; --teal: #82c5c0; --muted: #53636a; --slate: #294656;
  --display: "DM Serif Display", Georgia, serif; --body: "Manrope", system-ui, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--body); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2 { font-family: var(--display); font-weight: 400; margin: 0; }
svg { display: block; }

.legal-shell { width: 100%; max-width: 960px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.legal-header { background: rgba(251,246,234,.95); border-bottom: 1px solid rgba(11,38,56,.1); backdrop-filter: blur(8px); }
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; object-fit: contain; transition: transform .2s ease; }
.brand:hover img { transform: rotate(-3deg) scale(1.05); }
.brand span { font-size: 13px; font-weight: 800; text-transform: uppercase; line-height: .95; letter-spacing: -.02em; }
.brand b { color: var(--coral); }
.back { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(11,38,56,.2); background: #fff; border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 800; transition: color .16s, border-color .16s; }
.back:hover { color: var(--coral); border-color: var(--coral); }
.back svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.legal-main { padding: clamp(32px, 5vw, 56px) 0 64px; }

.hero-card { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; border: 2px solid var(--ink); border-radius: 2rem; background: #dfeeee; padding: clamp(24px, 4vw, 40px); box-shadow: 8px 8px 0 var(--coral); }
.hero-text { max-width: 640px; }
.eyebrow { display: flex; align-items: center; gap: 8px; margin: 0 0 12px; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); }
.compass { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-text h1 { font-size: clamp(36px, 6vw, 60px); line-height: 1; letter-spacing: -.04em; }
.summary { margin: 20px 0 0; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; color: var(--slate); }
.hero-icon { display: grid; place-items: center; width: 64px; height: 64px; flex: none; border: 1px solid rgba(11,38,56,.2); border-radius: 1rem; background: var(--cream); color: var(--coral); }
.hero-icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.meta { border: 1px solid rgba(11,38,56,.1); border-radius: 1rem; background: rgba(255,255,255,.7); padding: 16px; }
.meta-label { margin: 0; font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; color: var(--coral); }
.meta-value { margin: 4px 0 0; font-weight: 600; }
.meta-value.email { display: block; word-break: break-all; text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: 2px; text-underline-offset: 4px; }

.legal-body { margin-top: 32px; border: 1px solid rgba(11,38,56,.15); border-radius: 2rem; background: #fff; padding: clamp(24px, 4vw, 40px); box-shadow: 0 18px 50px rgba(11,38,56,.08); }
.legal-section + .legal-section { margin-top: 40px; }
.legal-section h2 { font-size: clamp(22px, 3vw, 30px); letter-spacing: -.025em; }
.legal-section p { max-width: 46rem; margin: 16px 0 0; font-size: 15.5px; line-height: 1.75; color: var(--slate); }
.legal-section ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 12px; }
.legal-section li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.75; color: var(--slate); }
.legal-section .bullet { margin-top: 10px; width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--coral); }
.legal-section .contact { font-weight: 800; color: var(--ink); }
.legal-section .contact a { text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: 2px; text-underline-offset: 4px; }

.legal-footer { border-top: 1px solid rgba(11,38,56,.1); padding: 32px 0; }
.foot-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; font-size: 14px; }
.foot-row p { margin: 0; font-weight: 600; color: var(--muted); }
.foot-row nav { display: flex; flex-wrap: wrap; gap: 20px; font-weight: 800; }
.foot-row nav a { text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.foot-row nav a:hover { color: var(--coral); }

@media (max-width: 640px) { .meta-grid { grid-template-columns: 1fr; } }
