:root {
  --ink: #0b0b0b;
  --paper: #f7f3ea;
  --gold: #c9a35c;
  --muted: #6a675f;
  --line: rgba(11, 11, 11, 0.17);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse 72% 52% at 0% 100%, rgba(201, 163, 92, 0.3), transparent 72%),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.privacy-header {
  border-bottom: 1px solid var(--line);
}

.privacy-header > a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(calc(100% - 40px), 980px);
  min-height: 72px;
  margin-inline: auto;
  font-size: 0.7rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.privacy-header img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

main {
  width: min(calc(100% - 40px), 980px);
  margin-inline: auto;
  padding: 84px 0 60px;
}

.privacy-kicker {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

h1 em {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: none;
}

.privacy-intro {
  max-width: 690px;
  margin: 36px 0 70px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

section {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

section > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

h2 {
  margin: 0 0 13px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

section p {
  max-width: 720px;
  margin: 0 0 12px;
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 600px) {
  main {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.3rem);
  }

  .privacy-intro {
    margin-bottom: 48px;
  }

  section {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 13px;
  }

  footer {
    flex-direction: column;
  }
}
