.legal-page {
  max-width: 720px;
  margin: 8rem auto 4rem;
  padding: 0 2rem;
}
.legal-page h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.legal-date {
  color: var(--muted); font-size: 0.85rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin: 2rem 0 0.6rem;
  color: var(--text);
}
.legal-page p {
  color: #aaa; font-size: 0.9rem;
  line-height: 1.8;
}
.legal-page a { color: var(--green); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

/* CONTACT */
.contact-page {
  max-width: 1000px;
  margin: 8rem auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-left h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}
.contact-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }

.contact-label { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-item a, .contact-item p { font-size: 0.9rem; color: var(--text); text-decoration: none; }
.contact-item a:hover { color: var(--green); }

.contact-form-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 700;
}
.form-fields { display: flex; flex-direction: column; gap: 0.8rem; }
.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field label { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.field input, .field textarea, .field select {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); padding: 0.65rem 0.9rem;
  border-radius: 8px; font-size: 0.88rem; outline: none;
  font-family: 'DM Sans', sans-serif; width: 100%;
  transition: border-color 0.2s; resize: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); }
.btn-full { width: 100%; }
.form-msg { font-size: 0.85rem; min-height: 1.2rem; text-align: center; }

@media (max-width: 768px) {
  .contact-page { grid-template-columns: 1fr; gap: 2rem; }
  .legal-page { margin-top: 6rem; }
  .contact-page { margin-top: 6rem; }
}
