:root {
  --ink: #211d1f;
  --muted: #6d6267;
  --wine: #3d1525;
  --wine-deep: #2b0e19;
  --coral: #e8567f;
  --coral-soft: #fff0f4;
  --gold: #d4a853;
  --cream: #fff9f5;
  --white: #fff;
  --line: #eadedb;
  --shadow: 0 20px 60px rgba(61, 21, 37, .09);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Open Sans", system-ui, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.legal-top {
  padding: 24px 0;
  background: linear-gradient(145deg, var(--wine-deep), var(--wine));
}

.legal-top__inner {
  display: flex;
  width: min(calc(100% - 40px), 1120px);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
}

.legal-brand img {
  display: block;
  width: 168px;
  height: auto;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.legal-nav a {
  color: rgba(255, 255, 255, .84);
  font-size: .83rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: #f3cb78;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.legal-main { padding: 54px 0 80px; }

.legal-shell {
  width: min(calc(100% - 40px), 900px);
  margin-inline: auto;
}

.legal-back {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--wine);
  font-weight: 700;
  text-decoration: none;
}

.legal-back:hover { text-decoration: underline; }

.legal-heading { margin-bottom: 34px; text-align: center; }

.legal-kicker {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.legal-heading h1 {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: clamp(2rem, 7vw, 3.6rem);
  letter-spacing: -.035em;
  line-height: 1.15;
}

.legal-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-updated { margin: 8px 0 0; color: #8b7e84; font-size: .85rem; }

.legal-card {
  padding: clamp(26px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 1.3rem;
  line-height: 1.35;
}

.legal-card p { margin: 0 0 14px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul { margin: 12px 0 0; padding-left: 22px; }
.legal-card li + li { margin-top: 7px; }
.legal-card a { color: #a82f56; text-underline-offset: 3px; }

.legal-contact {
  display: inline-flex;
  margin-top: 4px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: #a82f56;
  font-weight: 800;
  text-decoration: none;
}

.legal-contact:hover { background: #ffe1e9; }

.support-list { display: grid; gap: 14px; }

.support-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.support-item h2 { font-size: 1.05rem; }

.legal-footer {
  padding: 38px 20px 28px;
  background: var(--wine-deep);
  color: rgba(255, 255, 255, .66);
  font-size: .82rem;
  text-align: center;
}

.legal-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 20px;
}

.legal-footer__links a {
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  text-underline-offset: 4px;
}

.legal-footer__seller {
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, .72);
  font-style: normal;
  line-height: 1.7;
}

.legal-footer__seller strong { color: rgba(255, 255, 255, .93); }
.legal-footer p { margin: 0; }

@media (max-width: 760px) {
  .legal-top__inner { flex-direction: column; }
  .legal-nav { justify-content: center; text-align: center; }
  .legal-main { padding-top: 38px; }
}
