:root {
  --ivory: #f7f8f3;
  --paper: #ffffff;
  --forest: #000000;
  --charcoal: #000000;
  --stone: #5e5f5b;
  --bronze: #000000;
  --line: rgba(0, 0, 0, 0.18);
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { background: #000; }

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: 4px; }

.legal-skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  min-height: 44px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: #000;
  font-size: 1rem;
  font-weight: 700;
  transform: translateY(-160%);
}

.legal-skip:focus { transform: translateY(0); }

:where(a, button):focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

.legal-header {
  min-height: 74px;
  padding: 0 max(22px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--charcoal);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.legal-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.back-link {
  min-height: 44px;
  padding: 0 2px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}

.legal-main {
  width: min(850px, calc(100vw - 44px));
  min-height: calc(100vh - 200px);
  margin: 0 auto;
  padding: clamp(86px, 10vw, 150px) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--stone);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 clamp(56px, 8vw, 92px);
  font-size: clamp(3.2rem, 7.5vw, 6.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.065em;
}

h2 {
  margin: 62px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

h3 { margin: 28px 0 8px; font-size: 1rem; line-height: 1.4; letter-spacing: 0.04em; text-transform: uppercase; }
p, ul { color: var(--stone); }
p { max-width: 72ch; margin: 0 0 20px; }
ul { padding-left: 20px; }
address { color: var(--stone); font-style: normal; }
strong { color: var(--charcoal); }

p,
li,
address {
  overflow-wrap: anywhere;
}

.review-note {
  margin: 0 0 56px;
  padding: 21px 24px;
  color: #3f403d;
  border-left: 2px solid #000;
  background: #eceee8;
  font-size: 1rem;
  line-height: 1.7;
}

.placeholder {
  padding: 1px 5px;
  color: #000;
  background: rgba(0,0,0,0.08);
  font-weight: 600;
}

.legal-footer {
  padding: 30px max(22px, calc((100vw - 1440px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,0.7);
  background: #000;
  font-size: 1rem;
  line-height: 1.6;
}

.legal-footer div { display: flex; gap: 22px; }
.legal-footer a { min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; }

@media (max-width: 640px) {
  .legal-header { min-height: 72px; padding-block: 10px; flex-wrap: wrap; }
  .legal-brand { font-size: 1rem; }
  .back-link { font-size: 1rem; white-space: nowrap; }
  .legal-footer { flex-direction: column; }
  .legal-footer div { flex-wrap: wrap; }
}
