.page-hero {
  padding-top: 60px;
  min-height: 40svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 5px; height: 100%;
  background: var(--accent);
}

.page-hero-watermark {
  position: absolute;
  bottom: -0.1em;
  right: -0.03em;
  font-family: var(--cond);
  font-size: min(35vw, 500px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 7vw, 5rem);
}

.page-hero-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.page-hero-heading {
  font-family: var(--cond);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.page-hero-heading em { font-style: normal; color: var(--accent); }

.privacy-section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 6rem;
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 80px;
}

.privacy-toc-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.privacy-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.privacy-toc-list li {
  border-bottom: 1px solid var(--border);
}

.privacy-toc-list a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s;
  letter-spacing: 0.02em;
}

.privacy-toc-list a:hover { color: var(--accent); }

.privacy-meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.privacy-meta-line {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
}

.privacy-meta-line strong {
  color: var(--ink);
}

.privacy-body section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.privacy-body section:last-child {
  border-bottom: none;
}

.privacy-body h2 {
  font-family: var(--cond);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.privacy-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 68ch;
}

.privacy-body p strong { color: var(--ink); }

.privacy-body p:last-child { margin-bottom: 0; }

.privacy-body ul {
  list-style: none;
  margin-bottom: 1.25rem;
  max-width: 68ch;
}

.privacy-body ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.privacy-body ul li::before {
  content: '—';
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.privacy-body ul li strong { color: var(--ink); }

.privacy-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-body a:hover { color: var(--accent-dim); }

.highlight-box {
  border: 1px solid var(--border-hi);
  background: var(--surface);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  max-width: 68ch;
}

.highlight-box p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .privacy-layout { grid-template-columns: 1fr; gap: 3rem; }
  .privacy-toc { position: static; }
}
