/* Shared legal-page sheet:
   /privacy.html
   /cookies.html
   Edit once, it changes both. */

html { scroll-behavior: smooth; }
body { font-size: 16px; }
/* ── PAGE HEADER ── */
.page-header {
  padding: 10rem 6% 5rem;
  background: var(--white);
  border-bottom: 1px solid var(--beige-dark);
}
.page-header-inner {
  max-width: 760px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1.4rem;
  display: block;
}
.page-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.page-header h1 em { font-style: italic; color: var(--violet); }
.page-header p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}
/* ── CONTENT ── */
.content {
  background: var(--white);
  padding: 5rem 6% 8rem;
}
.content-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-section {
  margin-bottom: 4rem;
  padding-top: 1rem;
}
.legal-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--beige-dark);
}
.legal-section h3 {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.legal-section p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-section ul {
  list-style: none;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-section ul li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 1.2rem;
  position: relative;
}
.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--violet-mid);
  font-size: 0.8rem;
}
.legal-section a {
  color: var(--violet);
  text-decoration: none;
  font-weight: 400;
}
.legal-section a:hover { text-decoration: underline; }
.highlight-box {
  background: var(--violet-light);
  border-left: 3px solid var(--violet-mid);
  border-radius: 0 0.6rem 0.6rem 0;
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0;
}
.highlight-box p {
  font-size: 0.9rem;
  color: var(--violet);
  margin-bottom: 0;
}
.divider {
  height: 1px;
  background: var(--beige-dark);
  margin: 4rem 0;
}
/* Storage table (cookies) */
.table-wrap { overflow-x: auto; margin: 1.4rem 0; }
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
}
th, td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--beige-dark);
  vertical-align: top;
  line-height: 1.6;
}
th {
  font-weight: 500;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
td code {
  font-size: 0.8rem;
  color: var(--violet);
  background: var(--violet-light);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}
.pending {
  background: #FFF3CD;
  color: #7a5c00;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85rem;
}
