*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fdf9f5;
  --surface: #ffffff;
  --border: #ede8e0;
  --text: #2a2118;
  --muted: #7a6e63;
  --accent: #e8834a;
  --accent-light: #fdf0e8;
  --accent-border: #f5c49a;
  --link: #c45f27;
  --heading: #1e1610;
  --section-num: #f0d5c0;
  --num-text: #b05c28;
  --tag-bg: #f7efe8;
  --tag-border: #ecd6c3;
  --tag-text: #9e5223;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

/* ── HEADER ── */
.site-header {
  background: var(--surface);
  border-bottom: 1.5px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--heading); }
.logo img {
  display: block;
  max-height: 28px;
  width: auto;
}
.header-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tag-text);
  background: var(--tag-bg);
  border: 1px solid var(--tag-border);
  border-radius: 20px;
  padding: 4px 14px;
}

/* ── HERO ── */
.hero {
  background: var(--surface);
  border-bottom: 1.5px solid var(--border);
  padding: 56px 2rem 48px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--border); }

/* ── LAYOUT ── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 2rem 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 80px;
}
.toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 4px;
}
.toc {
  list-style: none;
  border-left: 2px solid var(--border);
}
.toc li a {
  display: block;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: color 0.15s, border-color 0.15s;
  line-height: 1.4;
}
.toc li a:hover { color: var(--accent); border-left-color: var(--accent); }
.toc li a.active { color: var(--accent); border-left-color: var(--accent); font-weight: 600; }

/* ── CONTENT ── */
.content { min-width: 0; }

.policy-section {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 20px;
  scroll-margin-top: 80px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.section-num {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--section-num);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--num-text);
  margin-top: 2px;
  flex-shrink: 0;
}
.section-header h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--heading);
  line-height: 1.3;
}

.content-body p {
  color: var(--text);
  margin-bottom: 14px;
}
.content-body p:last-child { margin-bottom: 0; }

.content-body h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--heading);
  margin: 22px 0 8px;
}

.content-body ul {
  list-style: none;
  margin: 10px 0 14px;
  padding: 0;
}
.content-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 15px;
}
.content-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.content-body a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.callout {
  background: var(--accent-light);
  border: 1.5px solid var(--accent-border);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 15px;
  color: #7a3a12;
  line-height: 1.6;
}
.callout strong { color: #5c2a0d; }

/* contact card */
.contact-card {
  background: var(--accent-light);
  border: 1.5px solid var(--accent-border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 16px;
}
.contact-card p { margin-bottom: 8px; font-size: 15px; color: #7a3a12; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card strong { color: #5c2a0d; }
.contact-card a { color: var(--link); }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 28px 2rem 40px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1.5px solid var(--border);
}
footer a { color: var(--link); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .page-wrap {
    grid-template-columns: 1fr;
    padding: 24px 1.25rem 60px;
    gap: 0;
  }
  .sidebar { display: none; }
  .policy-section { padding: 24px 20px; border-radius: 12px; }
  .site-header { padding: 0 1.25rem; }
  .hero { padding: 40px 1.25rem 36px; }
}

/* Header nav links and simple form styles */
.site-header .nav { display:flex; gap:12px; align-items:center; }
.site-header a.nav-link { color:var(--muted); text-decoration:none; font-weight:700; padding:6px 10px; border-radius:8px; }
.site-header a.nav-link:hover { color:var(--accent); background:var(--tag-bg); }

.form-card, .contact-form {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.contact-form label { display:block; font-weight:600; margin-bottom:8px; color:var(--heading); }
.contact-form input[type="email"], .contact-form select, .contact-form textarea, .contact-form input[type="text"] {
  width:100%;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:8px;
  background: #fff;
  margin-bottom:12px;
  font-size:15px;
  color:var(--text);
}
.contact-form textarea { min-height:140px; resize:vertical; }
.contact-form .row { display:flex; gap:12px; align-items:center; }
.btn { display:inline-block; padding:10px 16px; background:var(--accent); color:white; border-radius:8px; border:none; cursor:pointer; font-weight:700; text-decoration:none;}
.btn:disabled { opacity:0.6; cursor:default; }
.status { margin-top:12px; font-weight:600; color:var(--muted); }
