@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════
   DESIGN TOKENS
═══════════════════════════ */
:root {
  --emerald:       #0f6b5e;
  --emerald-dark:  #0a4f45;
  --emerald-mid:   #148070;
  --emerald-light: #e6f4f1;
  --amber:         #f59e0b;
  --amber-light:   #fbbf24;
  --amber-pale:    #fef9ee;
  --ink:           #1c2635;
  --ink-mid:       #3d4f63;
  --ink-light:     #7a8fa6;
  --cream:         #faf8f5;
  --white:         #ffffff;
  --border:        #e0ddd8;
  --border-light:  #eeece8;
  --green-check:   #10b981;
}

/* ═══════════════════════════
   BASE
═══════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════
   LOGO
═══════════════════════════ */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245,158,11,0.35);
}
.logo-icon svg { width: 20px; height: 20px; }

/* ═══════════════════════════
   NAV
═══════════════════════════ */
.site-nav {
  background: var(--emerald);
  padding: 0 56px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky; top: 0; z-index: 100;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--amber-light); }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.site-footer {
  background: var(--ink);
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }

/* ═══════════════════════════
   LEGAL BANNER
═══════════════════════════ */
.legal-banner {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-mid) 100%);
  padding: 60px 20px;
  text-align: center;
}
.legal-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--white);
  font-weight: 800;
}

/* ═══════════════════════════
   LEGAL BODY
═══════════════════════════ */
.legal-body {
  max-width: 840px;
  margin: 0 auto;
  padding: 56px 28px 88px;
}
.legal-body p {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.88;
  margin-bottom: 18px;
}
.legal-body h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 32px 0 10px;
}
.legal-body ul, .legal-body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal-body li {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.88;
  margin-bottom: 6px;
}
.legal-body a { color: var(--emerald); }
.legal-body a:hover { text-decoration: underline; }

/* ═══════════════════════════
   UTILITY
═══════════════════════════ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 768px) {
  .site-nav  { padding: 0 20px; height: 60px; }
  .nav-links { gap: 20px; }
  .site-footer { padding: 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { gap: 14px; }
  .legal-body { padding: 36px 16px 64px; }
}
