.privacy-page {
  background: var(--color-background-light);
}

.privacy-hero {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  color: var(--color-text-on-dark);
  background:
    linear-gradient(135deg, rgb(11 27 48 / 0.98), rgb(24 37 66 / 0.96)),
    var(--color-navy-primary);
}

.privacy-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 clamp(3rem, 7vw, 5.5rem);
  padding: 0;
  color: var(--color-text-muted-dark);
  font-size: var(--text-sm);
  list-style: none;
}

.privacy-breadcrumb li + li::before {
  margin-right: 0.5rem;
  color: var(--color-gold-primary);
  content: "/";
}

.privacy-breadcrumb a {
  text-decoration: none;
}

.privacy-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.privacy-hero__grid,
.privacy-content__grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.privacy-hero h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3.15rem, 7vw, 5.4rem);
  line-height: 0.98;
}

.privacy-hero__intro {
  max-width: 42rem;
  align-self: end;
}

.privacy-hero__lead {
  margin-bottom: 1.25rem;
  color: var(--color-text-on-dark);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.privacy-hero__meta {
  margin: 0;
  color: var(--color-text-muted-dark);
  font-size: var(--text-sm);
}

.privacy-content {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.privacy-content__nav {
  align-self: start;
  padding: 1.5rem;
  background: var(--color-cream);
  border-top: 2px solid var(--color-gold-primary);
}

.privacy-content__nav h2 {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.privacy-content__nav ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.25rem;
}

.privacy-content__nav a {
  color: var(--color-text-muted-light);
  font-size: var(--text-sm);
  text-decoration: none;
}

.privacy-content__nav a:hover {
  color: var(--color-navy-primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.privacy-article {
  min-width: 0;
}

.privacy-section {
  padding-block: clamp(2rem, 4vw, 3.25rem);
  border-top: 1px solid var(--color-border-light);
}

.privacy-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.privacy-section h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 4vw, 3rem);
}

.privacy-section h3 {
  margin-top: 1.75rem;
}

.privacy-section p,
.privacy-section li {
  max-width: 48rem;
  color: var(--color-text-muted-light);
}

.privacy-section ul {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.35rem;
}

.privacy-callout {
  margin-top: 1.75rem;
  padding: 1.35rem 1.5rem;
  color: var(--color-text-on-dark);
  background: var(--color-navy-primary);
  border-left: 3px solid var(--color-gold-primary);
}

.privacy-callout p {
  margin: 0;
  color: var(--color-text-muted-dark);
}

.privacy-sources {
  color: var(--color-text-on-dark);
  background: var(--color-navy-secondary);
}

.privacy-sources__grid {
  display: grid;
  gap: 2rem;
}

.privacy-sources h2 {
  max-width: 16ch;
}

.privacy-sources ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-sources a {
  color: var(--color-text-on-dark);
  text-decoration-color: var(--color-gold-primary);
  text-underline-offset: 0.3em;
}

.privacy-contact {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: var(--color-cream);
}

.privacy-contact__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.privacy-contact h2 {
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.privacy-contact p {
  max-width: 46rem;
  margin: 0;
  color: var(--color-text-muted-light);
}

@media (min-width: 62rem) {
  .privacy-hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 1.18fr);
    align-items: end;
  }

  .privacy-content__grid {
    grid-template-columns: 17rem minmax(0, 1fr);
  }

  .privacy-content__nav {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .privacy-sources__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(28rem, 1.15fr);
  }
}

@media (max-width: 39.99rem) {
  .privacy-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .privacy-contact .button {
    width: 100%;
  }
}

