:root {
  --bg-cream: #F5F0E8;
  --bg-cream-deep: #EDE7DD;
  --ink: #1C1009;
  --ink-soft: #2D1F0A;
  --muted: #8C7B6E;
  --muted-light: #B0A89E;
  --amber: #C4894A;
  --amber-dark: #8B5E1A;
  --success: #27764A;
  --danger: #C0392B;
  --surface: #FFFFFF;
  --border-soft: rgba(45, 31, 10, 0.08);
  --sh-sm: 0 2px 8px rgba(45,31,10,0.06);
  --sh-md: 0 8px 32px rgba(45,31,10,0.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-cream);
  color: var(--ink);
  line-height: 1.6;
}
.container { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber);
}

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 72px; z-index: 100;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
nav .container {
  max-width: 1200px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 26px; color: var(--ink);
  letter-spacing: -0.02em; text-decoration: none;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 200ms;
}
.nav-links a:hover { color: var(--ink); }
.btn {
  padding: 12px 24px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 200ms, box-shadow 200ms;
}
.btn-primary { background: var(--ink); color: var(--bg-cream); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-amber { background: var(--amber); color: white; }
.btn-amber:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
@media (max-width: 768px) { .nav-links { display: none; } }

/* === HERO === */
.legal-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(196,137,74,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero .eyebrow { display: inline-block; margin-bottom: 16px; }
.legal-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.legal-hero h1 em { font-style: italic; color: var(--amber); }
.legal-hero p.updated {
  color: var(--muted);
  font-size: 15px;
}

/* === BODY === */
.legal-body {
  padding: 32px 0 120px;
}
.legal-body .container { max-width: 760px; }
.legal-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.legal-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin: 32px 0 12px;
}
.legal-body p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 16px;
}
.legal-body ul, .legal-body ol {
  margin: 0 0 20px 24px;
  color: var(--ink-soft);
  font-size: 16px;
}
.legal-body li { margin-bottom: 8px; }
.legal-body a {
  color: var(--amber-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-body a:hover { color: var(--amber); }
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-body .callout {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--amber);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: var(--sh-sm);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.legal-body .callout strong { color: var(--ink); }

/* === Contact-specific cards === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 16px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--sh-sm);
  transition: transform 300ms, box-shadow 300ms;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.contact-card .icon { font-size: 28px; margin-bottom: 12px; display: block; }
.contact-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-card p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.contact-card .contact-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--amber-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact-card .contact-link:hover { color: var(--amber); }

/* === FOOTER === */
footer { background: var(--ink); color: var(--bg-cream); padding: 80px 0 32px; }
footer .container { max-width: 1200px; }
footer .container.cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer .logo { color: var(--bg-cream); margin-bottom: 16px; display: block; }
footer p.tagline { color: rgba(245,237,216,0.5); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
footer .social { display: flex; gap: 12px; }
footer .social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(245,237,216,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-cream); text-decoration: none;
  transition: background 200ms;
  font-weight: 700;
}
footer .social a:hover { background: var(--amber); }
footer h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,237,216,0.5);
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: var(--bg-cream); text-decoration: none; font-size: 14px; transition: color 200ms; }
footer ul a:hover { color: var(--amber); }
footer .bottom {
  border-top: 1px solid rgba(245,237,216,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(245,237,216,0.4);
}

@media (max-width: 900px) {
  .legal-hero { padding: 110px 0 40px; }
  .legal-hero h1 { font-size: 44px; }
  .legal-body h2 { font-size: 24px; margin-top: 36px; }
  .legal-body { padding: 16px 0 80px; }
  .contact-grid { grid-template-columns: 1fr; }
  footer .container.cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer .bottom { flex-direction: column; gap: 12px; }
}
