@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --slate:        #2d3a4a;
  --slate-dark:   #1e2835;
  --slate-mid:    #3d4e62;
  --copper:       #b5623a;
  --copper-light: #c97a52;
  --copper-dark:  #8e4a2b;
  --cream:        #faf8f6;
  --cream-dark:   #f0ece7;
  --white:        #ffffff;
  --text-dark:    #1e2835;
  --text-mid:     #4a5568;
  --text-muted:   #7a8799;
  --border:       rgba(45,58,74,0.12);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 3px rgba(45,58,74,0.08), 0 1px 2px rgba(45,58,74,0.06);
  --shadow-md:    0 4px 16px rgba(45,58,74,0.10), 0 2px 6px rgba(45,58,74,0.07);
  --shadow-lg:    0 12px 40px rgba(45,58,74,0.14), 0 4px 12px rgba(45,58,74,0.08);
  --transition:   all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--slate);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); line-height: 1.75; }

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,246,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--slate);
  line-height: 1.1;
}
.logo-title {
  font-size: 0.68rem; color: var(--text-muted);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-top: 2px;
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-mid);
  position: relative; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--copper);
  transition: width 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--slate); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); background: none; border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 10px; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.05em;
}
.lang-toggle:hover { border-color: var(--copper); color: var(--copper); }

.btn-header {
  font-size: 0.825rem; font-weight: 600;
  background: var(--slate); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  padding: 10px 20px; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-header:hover { background: var(--slate-mid); }

/* Mobile nav */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--slate); border-radius: 2px; transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 24px 24px; z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 500; color: var(--text-mid);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn-primary { margin-top: 16px; width: 100%; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--copper); color: var(--white);
  font-size: 0.9rem; font-weight: 600;
  border: none; border-radius: var(--radius-sm);
  padding: 13px 26px; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.btn-primary:hover { background: var(--copper-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-size: 0.9rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.6); border-radius: var(--radius-sm);
  padding: 11px 24px; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--slate);
  font-size: 0.9rem; font-weight: 600;
  border: 2px solid var(--slate); border-radius: var(--radius-sm);
  padding: 11px 24px; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.btn-outline:hover { background: var(--slate); color: white; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  padding-top: 68px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(30,40,53,0.88) 0%, rgba(45,58,74,0.72) 55%, rgba(45,58,74,0.40) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--copper-light);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1.5px; background: var(--copper-light);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p {
  color: rgba(255,255,255,0.82); font-size: 1.1rem;
  line-height: 1.7; margin-bottom: 32px; max-width: 520px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
}
.hero-note svg { opacity: 0.7; }

/* ── SERVICES OVERVIEW ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  text-decoration: none; display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--copper);
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(181,98,58,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--copper); font-size: 22px;
}
.service-card h3 { color: var(--slate); margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 14px; }
.service-link {
  font-size: 0.8rem; font-weight: 600; color: var(--copper);
  display: flex; align-items: center; gap: 4px;
}
.service-link svg { transition: transform 0.2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ── TRUST / WHY ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; margin-top: 48px;
}
.trust-item { text-align: center; }
.trust-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(45,58,74,0.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--slate); font-size: 26px;
  transition: var(--transition);
}
.trust-item:hover .trust-icon {
  background: var(--copper); color: white;
}
.trust-item h3 { color: var(--slate); margin-bottom: 10px; font-size: 1.1rem; }
.trust-item p { font-size: 0.875rem; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--slate-dark);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 20px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--slate);
  padding: 100px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255,255,255,0.72); font-size: 1.05rem;
  max-width: 560px; margin: 16px auto 0;
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 12px;
}
.section-header h2 { color: var(--slate); margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }

.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px;
}
.value-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.value-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(181,98,58,0.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper); font-size: 18px;
}
.value-item p { font-size: 0.875rem; color: var(--text-mid); margin: 0; }

.philosophy-block {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 56px 48px; text-align: center; margin-top: 20px;
}
.philosophy-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.5; margin-bottom: 20px;
}
.philosophy-block cite {
  font-size: 0.875rem; color: var(--copper-light);
  font-style: normal; font-weight: 500; letter-spacing: 0.05em;
}

/* ── SERVICES PAGE ── */
.services-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px;
}
.service-detail-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-md); border-color: var(--copper); }
.service-detail-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.sdi-rose   { background: rgba(220,80,80,0.08);  color: #c0392b; }
.sdi-green  { background: rgba(39,174,96,0.08);  color: #1e8449; }
.sdi-amber  { background: rgba(211,158,0,0.10);  color: #b7860a; }
.sdi-blue   { background: rgba(52,152,219,0.08); color: #1a6fa0; }
.service-detail-card h2 { font-size: 1.4rem; margin-bottom: 12px; }
.service-detail-card > p { font-size: 0.9rem; margin-bottom: 20px; }
.service-detail-card .btn-outline { font-size: 0.825rem; padding: 9px 18px; }

/* ── KNOWLEDGE PAGE ── */
.knowledge-coming {
  text-align: center; padding: 64px 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.knowledge-coming .k-icon {
  font-size: 48px; color: var(--cream-dark); margin-bottom: 20px;
}
.knowledge-coming h3 { color: var(--slate); margin-bottom: 10px; }
.knowledge-coming p { color: var(--text-muted); font-size: 0.9rem; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 2fr 3fr; gap: 48px; align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 24px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px;
}
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(181,98,58,0.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper); font-size: 20px;
  transition: var(--transition);
}
.contact-info-item:hover .ci-icon { background: var(--copper); color: white; }
.ci-text small { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 2px; }
.ci-text strong { font-size: 0.95rem; color: var(--slate); }
.response-box {
  background: rgba(181,98,58,0.06);
  border: 1px solid rgba(181,98,58,0.2);
  border-radius: var(--radius); padding: 20px; margin-top: 32px;
}
.response-box p { font-size: 0.85rem; color: var(--text-mid); margin: 0; }
.response-box strong { color: var(--copper); }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
}
.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 28px; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--slate); margin-bottom: 7px; letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--cream); color: var(--text-dark);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(181,98,58,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }
.form-submit .btn-primary { width: 100%; justify-content: center; }
.form-msg {
  margin-top: 14px; padding: 12px 16px;
  border-radius: var(--radius-sm); font-size: 0.875rem;
  display: none;
}
.form-msg.success { background: rgba(39,174,96,0.1); color: #1e8449; border: 1px solid rgba(39,174,96,0.25); display: block; }
.form-msg.error   { background: rgba(220,80,80,0.08); color: #c0392b; border: 1px solid rgba(220,80,80,0.2); display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--slate-dark); color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo-name { color: var(--white); font-size: 1.3rem; }
.footer-brand .logo-title { color: rgba(255,255,255,0.45); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 14px; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 0.875rem;
  color: rgba(255,255,255,0.65); margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--copper-light); }
.footer-col .footer-contact-item {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.footer-col .footer-contact-item svg { opacity: 0.5; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav, .btn-header { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap { aspect-ratio: 3/2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero { min-height: 88vh; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .philosophy-block { padding: 36px 24px; }
}

/* ── LOGO IMAGE ── */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* ── FOOTER WORDMARK ── */
.footer-wordmark {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

/* ── ARTICLE CARD ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; margin-top: 8px;
}
.article-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); text-decoration: none; display: block;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--copper); }
.article-card-img {
  width: 100%; height: 200px; object-fit: cover;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 40px;
}
.article-card-body { padding: 24px; }
.article-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.article-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--copper);
  background: rgba(181,98,58,0.08); padding: 3px 8px; border-radius: 4px;
}
.article-date { font-size: 0.75rem; color: var(--text-muted); }
.article-card h3 { font-size: 1.1rem; color: var(--slate); margin-bottom: 10px; line-height: 1.35; }
.article-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.article-read-more {
  font-size: 0.8rem; font-weight: 600; color: var(--copper);
  display: flex; align-items: center; gap: 4px;
}
.article-read-more svg { transition: transform 0.2s; }
.article-card:hover .article-read-more svg { transform: translateX(4px); }

/* ── ARTICLE PAGE ── */
.article-hero { background: var(--slate); padding: 100px 0 48px; }
.article-hero .article-tag { margin-bottom: 16px; display: inline-block; }
.article-hero h1 { color: white; max-width: 720px; }
.article-hero .article-byline {
  display: flex; align-items: center; gap: 16px;
  margin-top: 20px; color: rgba(255,255,255,0.6); font-size: 0.85rem;
}
.article-hero .article-byline strong { color: rgba(255,255,255,0.9); }
.article-body { padding: 56px 0; background: var(--cream); }
.article-body .prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; color: var(--slate); margin: 40px 0 16px; }
.prose h3 { font-size: 1.2rem; color: var(--slate); margin: 28px 0 12px; }
.prose p { margin-bottom: 20px; }
.prose ul, .prose ol { margin: 0 0 20px 20px; }
.prose li { margin-bottom: 8px; font-size: 1rem; color: var(--text-mid); line-height: 1.7; }
.prose .highlight-box {
  background: rgba(181,98,58,0.06); border-left: 3px solid var(--copper);
  padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
}
.prose .highlight-box p { margin: 0; color: var(--text-dark); }

/* ── LEGAL PAGES ── */
.legal-body { padding: 56px 0; background: var(--cream); }
.legal-body .prose h2 { margin-top: 36px; }
.legal-body .prose h2:first-child { margin-top: 0; }
