/* ============================================================
   DIRE MONEY LLC — Auxiliary Pages Stylesheet
   Used by: about.html, privacy.html, terms.html, cookie.html
   ============================================================ */

/* Inherits all tokens from style.css — only page-specific rules here */

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  padding: 72px 0 64px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.page-hero .label-tag {
  margin-bottom: 12px;
}

.page-hero h1 {
  color: var(--color-white);
  max-width: 640px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ── Page Content Sections ───────────────────────────────── */
.page-section {
  padding: 72px 0;
}

.page-section + .page-section {
  padding-top: 0;
}

.page-section--alt {
  background-color: var(--bg-secondary);
}

/* ── About: Mission / Values Grid ────────────────────────── */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.about-mission-grid h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.about-mission-grid p {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

/* ── Values ──────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.value-card h4 {
  color: var(--accent-blue);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.value-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Team Row ────────────────────────────────────────────── */
.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-photo {
  aspect-ratio: 1;
  background-color: var(--color-graphite-600);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.team-photo span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-card-body {
  padding: 20px;
}

.team-card-body h4 {
  color: var(--color-white);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.team-card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Policy page ─────────────────────────────────────────── */
.policy-placeholder {
  padding: 80px 0;
}

.policy-empty-box {
  background-color: var(--bg-card);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.policy-empty-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Policy Content ──────────────────────────────────────── */
.policy-content {
  padding: 64px 0;
}

.policy-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.3rem;
  color: var(--accent-blue);
  margin-bottom: 16px;
  font-weight: 600;
}

.policy-section p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.policy-list li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.policy-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-copper);
  font-weight: bold;
}

.policy-section a {
  color: var(--accent-blue);
  text-decoration: underline;
}

.policy-section a:hover {
  color: var(--accent-blue);
  opacity: 0.8;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent-blue);
}

.breadcrumb-sep {
  color: var(--color-graphite-500);
  font-size: 0.65rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-mission-grid,
  .values-grid,
  .team-row {
    grid-template-columns: 1fr;
  }

  .policy-empty-box {
    padding: 40px 24px;
  }
}
