:root {
  --ink: #201a28;
  --muted: #706a78;
  --paper: #fbf9fc;
  --pink: #ed176f;
  --line: #eee8f0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.7 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.notice {
  padding: 8px 16px;
  background: var(--pink);
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.header {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.94);
}
.header-row, .footer-row {
  width: min(1080px, calc(100% - 40px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-row { min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  overflow: hidden;
  color: white;
  background: linear-gradient(145deg, #ff4b9a, #d9156e);
}
.mark img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.brand-name { font-size: 15px; line-height: 1.15; font-weight: 850; letter-spacing: -.04em; }
.brand-name small {
  display: block;
  margin-top: 4px;
  color: #89818e;
  font-size: 8px;
  letter-spacing: .16em;
}
.header-link { color: #625a68; font-size: 12px; font-weight: 700; text-decoration: none; }
.header-link:hover, .footer-links a:hover { color: var(--pink); }
.content {
  width: min(850px, calc(100% - 40px));
  margin: 58px auto 72px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
}
h1 { margin: 0 0 12px; font-size: clamp(40px, 7vw, 62px); line-height: 1.03; }
.updated { margin: 0 0 28px; color: #8b8390; font-size: 12px; }
.legal-card {
  padding: clamp(22px, 5vw, 40px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(53, 28, 69, .06);
}
.legal-card > p:first-child { margin-top: 0; }
.legal-card h2 { margin: 30px 0 8px; font-size: 25px; line-height: 1.2; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: #625b68; font-size: 14px; }
.legal-card li { margin: 6px 0; }
.legal-card a { color: #bd145f; text-underline-offset: 3px; }
.notice-box {
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 3px solid var(--pink);
  border-radius: 0 10px 10px 0;
  background: #fff0f6;
  color: #654455;
  font-size: 12px;
}
.footer {
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-row { flex-wrap: wrap; }
.footer-row p { margin: 0; color: #89818f; font-size: 11px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: #6f6875; font-size: 11px; text-decoration: none; }
@media (max-width: 600px) {
  .header-row, .footer-row { width: calc(100% - 32px); }
  .content { width: calc(100% - 32px); margin: 38px auto 50px; }
  .header-row { min-height: 66px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }