/* static-pages.css — About, Privacy, Disclosure, Contact etc. */

.static-page-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 80px;
  display: grid;
  grid-template-columns: 720px 1fr;
  gap: 64px;
}

.static-page-content { min-width: 0; }

.static-page-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.static-page-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1.5px solid var(--black);
}

.static-page-meta {
  font-size: 13px;
  color: var(--mid-gray);
  margin-bottom: 24px;
}

/* Body content reuses article.css typography */
.static-page-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--black);
}

.static-page-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2824;
  margin-bottom: 18px;
}

.static-page-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.static-page-content ul li {
  font-size: 15px;
  line-height: 1.7;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--warm-gray);
  color: #2a2824;
}

.static-page-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.static-page-content a {
  color: var(--accent);
  text-decoration: underline;
}
.static-page-content a:hover { text-decoration: none; }

.static-page-content strong { font-weight: 600; }

/* Contact form */
.contact-form { margin-top: 8px; }

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.field-optional {
  font-weight: 400;
  color: var(--mid-gray);
  font-size: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--warm-gray);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  line-height: 1.5;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--black);
}

.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-success {
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #15803d;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 15px;
}

.contact-errors {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
}
.contact-errors p { margin-bottom: 4px; }
.contact-errors p:last-child { margin-bottom: 0; }

/* Responsive */
@media (max-width: 900px) {
  .static-page-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .static-page-wrap { padding: 32px 20px 60px; }
}
