/* Shared by contact/privacy/terms/data-deletion: page hero, legal layout, cards */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--dm-border);
  background:
    radial-gradient(circle at 84% 0%, color-mix(in srgb, var(--dm-mallow-soft) 48%, transparent), transparent 36%),
    radial-gradient(circle at 8% 88%, color-mix(in srgb, var(--dm-mint) 20%, transparent), transparent 32%),
    var(--dm-bg);
}
.page-hero-inner {
  max-width: 760px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--dm-mallow-wash);
  border: 1px solid var(--dm-mallow-line);
  color: var(--dm-mallow-strong);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dm-mint);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--dm-mint) 22%, transparent);
}
h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 850;
  color: var(--dm-text);
}
.hero-sub {
  margin-top: 20px;
  max-width: 660px;
  color: var(--dm-muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  font-weight: 500;
}
.content {
  padding: 58px 0 76px;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.main-stack {
  display: grid;
  gap: 22px;
}
.card,
.policy-section {
  border: 1px solid var(--dm-border);
  border-radius: 24px;
  background: var(--dm-surface);
  padding: 26px;
  box-shadow: var(--dm-shadow-soft);
}
.policy-section h2,
.card h2 {
  color: var(--dm-text);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin-bottom: 14px;
}
.policy-section h3,
.card h3 {
  color: var(--dm-text);
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.035em;
  font-weight: 750;
  margin: 18px 0 8px;
}
.policy-section p,
.card p {
  color: var(--dm-muted);
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
}
.policy-section p:last-child,
.card p:last-child { margin-bottom: 0; }
ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0 18px;
  color: var(--dm-muted);
}
li {
  font-size: 15px;
  font-weight: 500;
  padding-left: 2px;
}
strong { color: var(--dm-text); font-weight: 750; }
.inline-link,
.policy-section a,
.card a { color: var(--dm-mallow-strong); font-weight: 700; }
.info-box,
.warning-box {
  margin: 18px 0;
  border-radius: 18px;
  padding: 17px 18px;
  font-size: 14px;
  line-height: 1.6;
}
.info-box {
  border: 1px solid var(--dm-mallow-line);
  background: var(--dm-mallow-wash);
  color: var(--dm-text);
}
.warning-box {
  border: 1px solid color-mix(in srgb, var(--dm-warning) 22%, transparent);
  background: var(--dm-warning-bg);
  color: var(--dm-warning);
}
.side-card {
  position: sticky;
  top: 92px;
  border: 1px solid var(--dm-border);
  border-radius: 24px;
  background: var(--dm-surface-soft);
  padding: 22px;
  box-shadow: var(--dm-shadow-soft);
}
.side-card h2 {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 12px;
}
.side-card p,
.side-card address {
  color: var(--dm-muted);
  font-size: 14px;
  line-height: 1.6;
  font-style: normal;
  font-weight: 500;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-tile {
  border: 1px solid var(--dm-border);
  background: var(--dm-surface);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--dm-shadow-soft);
}
.contact-tile span {
  display: inline-flex;
  width: fit-content;
  height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--dm-mallow-wash);
  border: 1px solid var(--dm-mallow-line);
  color: var(--dm-mallow-strong);
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 14px;
}
.contact-tile h2 { margin-bottom: 8px; }
@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .page-hero { padding: 48px 0 44px; }
  h1 { font-size: clamp(38px, 13vw, 56px); }
  .content { padding: 42px 0 58px; }
  .card, .policy-section { padding: 21px; border-radius: 20px; }
}
