.privacy-page {
  background:
    radial-gradient(circle at top left, rgba(143, 209, 177, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(216, 185, 124, 0.1), transparent 20%),
    linear-gradient(180deg, #071410 0%, #0d2018 100%);
}

.privacy-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.privacy-hero {
  position: relative;
  padding: 1.5rem 0 1.1rem;
  overflow: clip;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 18, 14, 0.94) 10%, rgba(6, 18, 14, 0.54) 48%, rgba(6, 18, 14, 0.92) 100%),
    url("../images/lock.png") center/contain no-repeat;
  opacity: 0.12;
  z-index: -2;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -10rem -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 209, 177, 0.14), transparent 68%);
  z-index: -1;
}

.privacy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 2rem;
  align-items: start;
}

.privacy-kicker {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.privacy-hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.privacy-summary {
  margin: 1.2rem 0 0;
  max-width: 36rem;
  color: rgba(245, 241, 232, 0.78);
  line-height: 1.8;
  font-size: 1.03rem;
}

.privacy-hero-panel {
  display: grid;
  gap: 1rem;
  padding-top: 0.5rem;
}

.privacy-hero-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  background: linear-gradient(180deg, rgba(10, 30, 24, 0.9), rgba(8, 22, 17, 0.92));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.privacy-hero-card span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.56);
}

.privacy-hero-card strong {
  font-size: 1rem;
  line-height: 1.5;
}

.privacy-section {
  padding: 0.35rem 0 4rem;
}

.privacy-panel {
  display: grid;
  gap: 1.25rem;
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 30, 24, 0.9), rgba(8, 22, 17, 0.92)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.privacy-intro p {
  margin: 0;
  max-width: 54rem;
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.82;
  font-size: 1.02rem;
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.privacy-point {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(245, 241, 232, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.privacy-point h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.privacy-point p {
  margin: 0;
  color: rgba(245, 241, 232, 0.72);
  line-height: 1.75;
}

@media (max-width: 1120px) {
  .privacy-hero-grid,
  .privacy-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .privacy-shell {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .privacy-hero {
    padding-top: 1rem;
  }

  .privacy-panel {
    padding: 1rem;
  }
}
