:root {
  color-scheme: light;
  font-family:
    Inter, "SF Pro Display", "SF Pro Text", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #6f716f;
  --line: rgba(17, 17, 17, 0.12);
  --black: #0d0d0c;
  --moss: #63715d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

.legal-site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 96px), 1296px);
  height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 14px 0 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  box-shadow: 0 20px 70px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  min-width: 168px;
}

.legal-brand img {
  display: block;
  width: 166px;
  height: auto;
  object-fit: contain;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 168px;
}

.logo-lockup {
  width: 166px;
  height: auto;
  object-fit: contain;
}

.legal-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  color: currentColor;
  opacity: 0.76;
}

.legal-header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--black);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 720;
}

.legal-main {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 170px 0 112px;
}

.legal-hero {
  display: block;
  margin-bottom: 72px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(54px, 6.2vw, 94px);
  font-weight: 660;
  line-height: 0.94;
  letter-spacing: 0;
  white-space: nowrap;
}

.legal-title {
  display: grid;
  gap: 0;
}

.legal-title span {
  display: block;
}

.legal-title-cancellation {
  font-size: clamp(64px, 6.8vw, 104px);
  line-height: 0.9;
  white-space: normal;
}

.legal-title-cancellation span {
  white-space: nowrap;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.48;
}

.legal-content {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.legal-content section,
.policy-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2,
.policy-note h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 650;
  line-height: 1;
}

.legal-content p,
.policy-note p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.legal-content p + p {
  margin-top: 16px;
}

.policy-note {
  width: min(1120px, 100%);
  margin-inline: auto;
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 10%, rgba(196, 139, 85, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(99, 113, 93, 0.24), transparent 48%),
    var(--black);
  border: 0;
  border-radius: 28px;
  margin-bottom: 24px;
  padding: 34px;
}

.policy-note p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(180px, 0.7fr);
  gap: 42px;
  min-height: 520px;
  padding: 84px 48px 58px;
  color: rgba(255, 255, 255, 0.75);
  background: #111111;
}

.site-footer::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 14%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.36) 56%, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.footer-video {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  opacity: 0.88;
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 2;
}

.footer-brand {
  color: var(--paper);
}

.footer-brand .logo-lockup {
  width: 210px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer > div:first-child p {
  max-width: 360px;
  margin-top: 18px;
}

.site-footer > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer span {
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer > div.footer-wordmark {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: -12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 34px);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(54px, 8.8vw, 150px);
  font-weight: 760;
  line-height: 0.8;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.site-footer > div.footer-wordmark span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: none;
}

.legal-text-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

@media (max-width: 860px) {
  .legal-site-header {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 64px;
    padding: 10px 12px 10px 22px;
  }

  .legal-nav {
    display: none;
  }

  .legal-header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .legal-main {
    width: calc(100% - 32px);
    padding-top: 138px;
  }

  .legal-hero h1 {
    font-size: clamp(46px, 13vw, 72px);
    white-space: normal;
  }

  .legal-title-cancellation {
    font-size: clamp(40px, 12vw, 68px);
  }

  .legal-title-cancellation span {
    white-space: normal;
  }

  .legal-hero,
  .legal-content section,
  .policy-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .site-footer > div.footer-wordmark {
    left: 16px;
    right: 16px;
    bottom: -4px;
    gap: 10px;
    font-size: clamp(30px, 8.5vw, 52px);
  }

  .footer-video {
    opacity: 0.7;
  }
}
