/* ─── SHARED LEGAL / INFO PAGES ─────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1d6c00;
  --green-dark: #154f00;
  --orange: #ff6b00;
  --black: #111111;
  --white: #ffffff;
  --off-white: #f9f6f1;
  --grey: #6b7280;
  --grey-light: #f3f4f6;
  --font-main: 'Poppins', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  animation: pageEnter 0.4s 0.05s ease forwards;
}

@keyframes pageEnter { to { opacity: 1; } }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
.legal-header {
  background: var(--black);
  padding: 0 6vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.legal-logo img { height: 52px; width: auto; }
.legal-logo-text {
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
}
.legal-back {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--white); }

/* PAGE LAYOUT */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 6vw 100px;
}

.legal-tag {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.legal-title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 48px;
}

.legal-body h2 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 40px 0 14px;
  color: var(--black);
}
.legal-body h3 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--green);
}

.legal-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}

.legal-body ul, .legal-body ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
.legal-body li {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 6px;
}

.legal-body a { color: var(--green); text-decoration: underline; }
.legal-body a:hover { color: var(--green-dark); }

.legal-highlight {
  background: rgba(29,108,0,0.06);
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.legal-highlight p { margin-bottom: 0; }

.legal-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 40px 0;
}

/* FOOTER */
.legal-footer {
  background: var(--black);
  padding: 32px 6vw;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}
.legal-footer a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.legal-footer a:hover { color: var(--white); }
