/* ════════════════════════════════
   EASYACRES — PRIVACY POLICY PAGE
   Page-specific additions only. Header and footer reuse
   common.css / style.css as-is.
   Load AFTER reset.css, common.css, style.css.
════════════════════════════════ */

/* Shorter, image-free hero (falls back to flat navy per common.css) */


/* ────────────────────────────────
   LAYOUT — sticky section nav + readable content column
──────────────────────────────── */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-nav__label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}

.legal-nav a {
  font-size: 13px;
  color: var(--graphite);
  line-height: 1.5;
  transition: color var(--duration-fast);
      margin: 5px 0;
    font-weight: 500;
}

.legal-nav a:hover {
  color: var(--navy);
}

.legal-content {
  max-width: 700px;
}

.legal-section {
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.legal-section p {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.legal-section li {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--navy);
  text-decoration: underline;
}

.legal-contact-list {
  list-style: none;
  padding-left: 0;
}

/* ────────────────────────────────
   RESPONSIVE
──────────────────────────────── */
@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 24px;
  }
  .legal-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .legal-nav__label {
    width: 100%;
    margin-bottom: 0;
  }
  .legal-nav a {
    padding: 8px 15px;
    border: 1px solid var(--surface);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--graphite);
    cursor: pointer;
    background: var(--white);
  }
  .legal-section p,
  .legal-section li {
    font-size: 13px;
  }
}
