@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

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

:root {
  --green:  #61bf89;
  --violet: #9463ae;
  --dark:   #1E1A2E;
  --gray:   #6B6B63;
  --border: #E6E6E0;
  --bg:     #F7F7F5;
  --white:  #FFFFFF;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

/* ── Nav ─────────────────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(20px, 6vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-nav-back {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.site-nav-back:hover { color: var(--dark); }

/* ── Main Content ─────────────────────────────────────────────────── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px clamp(20px, 6vw, 60px) 100px;
}

.legal-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.legal-meta {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-wrap h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 12px;
}

.legal-wrap h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}

.legal-wrap p {
  font-size: 16px;
  color: #3a3a35;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-wrap ul, .legal-wrap ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-wrap li {
  font-size: 16px;
  color: #3a3a35;
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-wrap a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 14px;
}

.legal-info-box p { margin-bottom: 4px; }
.legal-info-box p:last-child { margin-bottom: 0; }

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 40px clamp(20px, 6vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer-links a:hover { color: #fff; }
.site-footer-links a.active { color: var(--green); }

@media (max-width: 600px) {
  .site-footer { flex-direction: column; align-items: flex-start; }
  .site-footer-links { gap: 16px; }
}
