/* ========================================================
   V2 LEGAL PAGES — shared stylesheet
   Palette: sage (#4A5A50) + terracotta (#BD6338) + cream (#F5F0E8)
   ======================================================== */

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

:root {
  --v2-sage: #4A5A50;
  --v2-sage-hover: #5D6E60;
  --v2-earth: #1A1A1A;
  --v2-terracotta: #BD6338;
  --v2-cream: #F5F0E8;
  --v2-sand: #E8E3DC;
  --v2-white: #ffffff;
  --v2-border: rgba(26,26,26,0.1);
  --v2-radius: 16px;
  --v2-radius-sm: 12px;
}

html, body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--v2-white);
  color: var(--v2-earth);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── Top bar ────────────────────────────────────────────── */
.v2-legal-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 24px;
  background: var(--v2-white);
  border-bottom: 1px solid var(--v2-border);
}

.v2-legal-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--v2-earth);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.v2-legal-logo span { color: var(--v2-terracotta); }

/* ── Page layout ──────────────────────────────────────── */
.v2-legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.v2-legal-back-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
}

.v2-legal-back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(26,26,26,0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.v2-legal-back-link:hover { color: var(--v2-earth); }

.v2-legal-back-link svg {
  flex-shrink: 0;
}

/* ── Page header ────────────────────────────────────────── */
.v2-legal-header {
  margin-bottom: 2.5rem;
}

.v2-legal-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--v2-earth);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.v2-legal-subtitle {
  font-size: 0.95rem;
  color: rgba(26,26,26,0.55);
  line-height: 1.5;
}

/* ── Card ──────────────────────────────────────────────── */
.v2-legal-card {
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  margin-bottom: 1.5rem;
}

.v2-legal-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--v2-earth);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--v2-border);
}

/* ── Settings list ─────────────────────────────────────── */
.v2-legal-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--v2-border);
}

.v2-legal-setting-row:last-child { border-bottom: none; }

.v2-legal-setting-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(26,26,26,0.7);
}

.v2-legal-setting-value {
  font-size: 0.9rem;
  color: var(--v2-earth);
  font-weight: 500;
}

.v2-legal-setting-link {
  font-size: 0.88rem;
  color: var(--v2-terracotta);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.v2-legal-setting-link:hover { opacity: 0.75; }

/* ── Contact form ─────────────────────────────────────── */
.v2-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v2-contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v2-contact-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--v2-earth);
}

.v2-contact-field input,
.v2-contact-field textarea {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--v2-earth);
  background: var(--v2-cream);
  border: 1.5px solid rgba(26,26,26,0.12);
  border-radius: var(--v2-radius-sm);
  padding: 10px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: vertical;
}

.v2-contact-field input::placeholder,
.v2-contact-field textarea::placeholder {
  color: rgba(26,26,26,0.35);
}

.v2-contact-field input:focus,
.v2-contact-field textarea:focus {
  outline: none;
  border-color: var(--v2-sage);
  box-shadow: 0 0 0 3px rgba(74,90,80,0.12);
}

.v2-contact-submit {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: var(--v2-sage);
  border: none;
  border-radius: var(--v2-radius-sm);
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  align-self: flex-start;
}

.v2-contact-submit:hover { background: var(--v2-sage-hover); }
.v2-contact-submit:active { transform: scale(0.98); }

.v2-contact-success {
  background: rgba(74,90,80,0.08);
  border: 1.5px solid var(--v2-sage);
  border-radius: var(--v2-radius-sm);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--v2-sage);
  font-weight: 500;
  margin-bottom: 4px;
}

/* ── Clickable legal title links ─────────────────────── */
.v2-legal-title-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--v2-earth);
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}

.v2-legal-title-link:hover { color: var(--v2-sage); }

/* ── Legal content ──────────────────────────────────────── */
.v2-legal-content {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #3a3330;
}

.v2-legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--v2-earth);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid var(--v2-border);
}

.v2-legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--v2-earth);
  margin: 1.5rem 0 0.5rem;
}

.v2-legal-content p {
  margin: 0 0 1rem;
}

.v2-legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.v2-legal-content ul li {
  margin-bottom: 0.4rem;
}

.v2-legal-content a {
  color: var(--v2-terracotta);
  text-decoration: underline;
}

.v2-legal-content strong {
  font-weight: 700;
  color: var(--v2-earth);
}

/* ── Empty state ────────────────────────────────────────── */
.v2-legal-empty {
  background: #FFF7ED;
  border: 1.5px dashed #f59e0b;
  border-radius: var(--v2-radius-sm);
  padding: 20px 24px;
  font-size: 0.88rem;
  color: #7A3A1E;
  font-style: italic;
  line-height: 1.6;
}

/* ── Footer link ─────────────────────────────────────────── */
.v2-legal-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--v2-border);
}

.v2-legal-footer-link {
  font-size: 0.85rem;
  color: rgba(26,26,26,0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.v2-legal-footer-link:hover { color: var(--v2-earth); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .v2-legal-page { padding: 1.5rem 1rem 3rem; }
  .v2-legal-card { padding: 20px 18px; }
  .v2-legal-title { font-size: 1.5rem; }
}