/* ── Policy pages ──────────────────────────────────────────── */

.policy-hero {
  padding: clamp(7rem, 14vh, 11rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--bg);
  border-top: 0;
}

.policy-hero-inner {
  width: min(960px, 92vw);
  margin-inline: auto;
}

.policy-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin: 0.8rem 0 1.2rem;
}

.policy-hero-intro {
  color: rgba(245, 245, 245, 0.62);
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.72;
  max-width: 60ch;
  margin: 0 0 1.4rem;
}

.policy-updated {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.26);
}

/* ── Policy body ──────────────────────────────────────────── */

.policy-body {
  background: var(--section);
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(6rem, 12vh, 10rem);
}

.policy-inner {
  width: min(960px, 92vw);
  margin-inline: auto;
}

.policy-section {
  padding-bottom: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
  border-bottom: 1px solid var(--line);
}

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

.policy-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1rem;
}

.policy-section h3 {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.48);
  margin: 1.6em 0 0.55em;
}

.policy-section p {
  color: rgba(245, 245, 245, 0.66);
  font-size: clamp(0.94rem, 1.2vw, 1.04rem);
  line-height: 1.8;
  margin: 0 0 0.9em;
}

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

.policy-section ul {
  margin: 0.3em 0 0.9em;
  padding-left: 1.3em;
  color: rgba(245, 245, 245, 0.66);
  font-size: clamp(0.94rem, 1.2vw, 1.04rem);
  line-height: 1.8;
}

.policy-section li {
  margin-bottom: 0.38em;
}

.policy-section a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}

.policy-section a:hover {
  color: rgba(57, 163, 167, 0.76);
}

/* ── Company detail card ──────────────────────────────────── */

.policy-detail {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.9rem;
  padding: 1.4rem 1.6rem;
  margin: 1.2rem 0;
}

.policy-detail dl {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.6rem;
  row-gap: 0.55rem;
  align-items: baseline;
  margin: 0;
}

.policy-detail dt {
  font-size: 0.58rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.policy-detail dd {
  margin: 0;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ── Footer legal additions ───────────────────────────────── */

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-legal-nav a {
  color: rgba(245, 245, 245, 0.2) !important;
}

.footer-legal-nav a:hover {
  color: rgba(245, 245, 245, 0.52) !important;
}

.footer-legal {
  margin-top: clamp(1.4rem, 2.5vw, 2rem);
  padding-top: clamp(1.2rem, 2vw, 1.6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal p {
  color: rgba(245, 245, 245, 0.13);
  font-size: 0.57rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin: 0 0 0.22em;
}

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

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 760px) {
  .policy-detail dl {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .policy-detail dt {
    margin-top: 0.8rem;
  }

  .policy-detail dt:first-child {
    margin-top: 0;
  }

  .policy-detail dd {
    margin-bottom: 0.2rem;
  }

  .footer-legal p {
    font-size: 0.6rem;
  }
}
