body {
  background: var(--bg);
  color: var(--text);
}

.privacy-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.privacy-hero {
  padding: 150px 0 150px;
  border-bottom: 1px solid var(--line);
}

.privacy-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.privacy-hero h1 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.privacy-hero p {
  margin: 24px 0 16px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.privacy-updated {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.privacy-section {
  padding: 56px 0 100px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.privacy-menu {
  position: sticky;
  top: 100px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.privacy-menu strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.95rem;
}

.privacy-menu a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.privacy-menu a:last-child {
  border-bottom: 0;
}

.privacy-menu a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.privacy-card {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top left, rgba(255, 191, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.privacy-card section {
  scroll-margin-top: 120px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.privacy-card section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-card h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.privacy-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.privacy-contact-box {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 191, 0, 0.24);
  border-radius: 22px;
  background: rgba(255, 191, 0, 0.06);
}

.privacy-contact-box strong {
  color: var(--gold);
}

.privacy-contact-box span {
  color: var(--muted);
}

.privacy-cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(255, 191, 0, 0.28);
  border-radius: 22px;
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.privacy-cookie-banner.is-visible {
  display: flex;
}

.privacy-cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.privacy-cookie-banner button {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--gold);
  color: #080808;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.privacy-cookie-banner button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

@media (max-width: 900px) {
  .privacy-hero {
    padding: 124px 0 44px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-menu {
    position: static;
  }
}

@media (max-width: 640px) {
  .privacy-section {
    padding: 36px 0 80px;
  }

  .privacy-card {
    border-radius: 24px;
  }

  .privacy-cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .privacy-cookie-banner button {
    width: 100%;
  }
}
