:root {
  --bg: #f7f7f5;
  --text: #151515;
  --muted: #696966;
  --line: #deded9;
  --max: 1080px;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover { opacity: .62; }

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

header {
  padding: 34px 0;
}

.header-row {
  display: flex;
  justify-content: flex-end;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 190px;
  height: auto;
}

main {
  min-height: 0;
  display: flex;
}

.hero {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 54px 0 78px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 590;
}

.lead {
  margin: 26px 0 0;
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
}

footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 24px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.legal {
  padding: 70px 0 100px;
}

.legal-inner {
  max-width: 760px;
}

.back {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 14px;
}

.legal h1 {
  font-size: clamp(38px, 6vw, 60px);
  margin-bottom: 46px;
}

.legal h2 {
  margin: 42px 0 14px;
  font-size: 19px;
  letter-spacing: -0.015em;
}

.legal p, .legal address {
  margin: 0 0 18px;
  color: #3f3f3d;
  font-size: 16px;
  line-height: 1.7;
  font-style: normal;
}

.legal .fine {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  header { padding: 26px 0; }
  .brand img { width: 170px; }
  .hero { padding: 64px 0 82px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
  .legal { padding-top: 44px; }
}
