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

:root {
  --green: #2E7D32;
  --cream: #F5F0E8;
  --charcoal: #1A1A1A;
  --gray: #757575;
  --white: #FFFFFF;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
.legal-nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.legal-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
  text-decoration: none;
}
.legal-logo img { width: 30px; height: 30px; object-fit: contain; border-radius: 6px; }
.legal-back {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
}
.legal-back:hover { color: var(--green); text-decoration: none; }

/* MAIN */
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-header {
  border-bottom: 2px solid var(--cream);
  padding-bottom: 24px;
  margin-bottom: 40px;
}
.legal-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 8px;
}
.legal-date {
  color: var(--gray);
  font-size: 0.875rem;
}

/* BODY */
.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.legal-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-body p {
  margin-bottom: 16px;
  color: #333;
}
.legal-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-body ul li {
  margin-bottom: 6px;
  color: #333;
}

.legal-warning {
  background: #fff8e1;
  border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 16px 0;
}
.legal-warning p, .legal-warning ul li { color: #78350f; }

/* FOOTER */
.legal-footer {
  background: var(--charcoal);
  padding: 24px;
  text-align: center;
}
.legal-footer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
.legal-footer a {
  color: rgba(255,255,255,0.6);
}
.legal-footer a:hover { color: white; text-decoration: none; }
