@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('../fonts/CabinetGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('../fonts/CabinetGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink:        #221E1A;
  --sand:       #F4F1EA;
  --clay:       #8C7863;

  --ink-64:     rgba(34, 30, 26, .64);
  --ink-62:     rgba(34, 30, 26, .62);
  --ink-60:     rgba(34, 30, 26, .60);
  --ink-55:     rgba(34, 30, 26, .55);
  --ink-36:     rgba(34, 30, 26, .36);
  --ink-18:     rgba(34, 30, 26, .18);
  --ink-15:     rgba(34, 30, 26, .15);
  --ink-08:     rgba(34, 30, 26, .08);

  --sand-72:    rgba(244, 241, 234, .72);
  --sand-60:    rgba(244, 241, 234, .60);
  --sand-50:    rgba(244, 241, 234, .50);
  --sand-45:    rgba(244, 241, 234, .45);
  --sand-40:    rgba(244, 241, 234, .40);
  --sand-32:    rgba(244, 241, 234, .32);
  --sand-24:    rgba(244, 241, 234, .24);
  --sand-16:    rgba(244, 241, 234, .16);

  --sans:       'Cabinet Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif:      'Newsreader', Georgia, 'Times New Roman', serif;

  --gutter:     clamp(24px, 5.5vw, 80px);
  --h-serif:    clamp(26px, 2.7vw, 38px);
}

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

html { scroll-behavior: smooth; }

section[id],
main[id] { scroll-margin-top: clamp(72px, 9vw, 112px); }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);

  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p, blockquote, figure, ol, ul {
  margin: 0;
  padding: 0;
}

ol, ul { list-style: none; }

img {
  display: block;
  max-width: 100%;
}

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

button { font: inherit; }

hr {
  border: 0;
  margin: 0;
}

cite { font-style: normal; }

::selection {
  background: var(--ink);
  color: var(--sand);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--sand);
  font: 500 12px/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.section {
  padding-inline: var(--gutter);
}

.section--dark {
  background: var(--ink);
  color: var(--sand);
}

.eyebrow {
  font: 500 10px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.h-serif {
  font: 400 var(--h-serif)/1.1 var(--serif);
  letter-spacing: -.01em;
}

.media {
  position: relative;
  overflow: hidden;
  background: var(--ink-08);
}

.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--sand);
  font: 500 10px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .3s, color .3s;
}

.btn:hover,
.btn:focus-visible { background: var(--clay); }

.btn__arrow {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 15px 34px;
  border: 1px solid var(--sand-40);
  border-radius: 999px;
  background: transparent;
  color: var(--sand);
  font: 500 10px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--ink);
}

.btn-outline[disabled] {
  opacity: .55;
  cursor: default;
}

.btn-outline[disabled]:hover,
.btn-outline[disabled]:focus-visible {
  background: transparent;
  border-color: var(--sand-40);
  color: var(--sand);
}

.logo {
  display: block;
  width: auto;
}

.logo-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-self: flex-start;
}

.logo--hero { height: 83px; }

.logo--header { height: clamp(34px, 3.6vw, 44px); }

.site-header__logo { align-self: center; }

.logo--footer {
  height: clamp(162px, 20.8vw, 300px);
  filter: brightness(0) invert(1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 30px);
  padding: clamp(20px, 2.4vw, 32px) var(--gutter);

  background: var(--sand);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}

.site-header--stuck { border-bottom-color: var(--ink-15); }

.drawer { display: contents; }

.drawer__head,
.drawer__foot,
.nav-scrim { display: none; }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 30px);
}

.nav__link {
  font: 500 10px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-55);
  transition: color .25s;
}

.nav__link:hover,
.nav__link:focus-visible { color: var(--ink); }

.nav__num { display: none; }

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: var(--ink-55);
  cursor: pointer;
  transition: color .25s;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] { color: var(--ink); }

.nav-toggle__label {
  font: 500 10px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-toggle__box {
  position: relative;
  width: 20px;
  height: 12px;
}

.nav-toggle__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s, opacity .2s;
}

.nav-toggle__bar:nth-child(1) { top: 2px; }
.nav-toggle__bar:nth-child(2) { bottom: 2px; }

@media (max-width: 720px) {
  .js .nav-toggle { display: inline-flex; }

  .js .drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 7vw, 48px);
    width: min(400px, 88vw);
    height: 100dvh;
    padding: clamp(22px, 6vw, 34px) clamp(24px, 7vw, 40px) clamp(28px, 7vw, 40px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--ink);
    color: var(--sand);
    box-shadow: -40px 0 80px -40px rgba(34, 30, 26, .75);
    transform: translateX(101%);
    visibility: hidden;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1), visibility .5s;
  }

  .js .site-header--open .drawer {
    transform: none;
    visibility: visible;
  }

  .js .nav-scrim {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: block;
    background: rgba(34, 30, 26, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
  }

  .js .site-header--open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  html.js.nav-open { overflow: hidden; }

  .js .drawer__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }

  .logo--drawer {
    height: clamp(64px, 17vw, 84px);
    filter: brightness(0) invert(1);
  }

  .drawer__close {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    border: 0;
    background: transparent;
    color: var(--sand-60);
    cursor: pointer;
    transition: color .25s;
  }

  .drawer__close:hover,
  .drawer__close:focus-visible { color: var(--sand); }

  .drawer__close-box {
    position: relative;
    width: 14px;
    height: 14px;
  }

  .drawer__close-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: currentColor;
  }

  .drawer__close-bar:nth-child(1) { transform: rotate(45deg); }
  .drawer__close-bar:nth-child(2) { transform: rotate(-45deg); }

  .js .drawer .nav {
    flex-direction: column;
    gap: 0;
  }

  .js .drawer .nav__link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: clamp(14px, 3.4vw, 20px) 0;
    border-top: 1px solid var(--sand-16);
    font: 400 clamp(24px, 6.4vw, 30px)/1.1 var(--serif);
    letter-spacing: -.01em;
    text-transform: none;
    color: var(--sand);
  }

  .js .drawer .nav__link:last-child { border-bottom: 1px solid var(--sand-16); }

  .js .drawer .nav__label {
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), color .25s;
  }

  .js .drawer .nav__link:hover .nav__label,
  .js .drawer .nav__link:focus-visible .nav__label {
    transform: translateX(6px);
    color: var(--clay);
  }

  .js .drawer .nav__num {
    display: block;
    flex: 0 0 auto;
    color: var(--sand-40);
  }

  .js .drawer__foot {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 5vw, 26px);
    margin-top: auto;
  }

  .drawer__cta { justify-content: center; }

  .drawer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding-top: clamp(14px, 4vw, 20px);
    border-top: 1px solid var(--sand-16);
  }

  .drawer__social a {
    color: var(--sand-50);
    transition: color .25s;
  }

  .drawer__social a:hover,
  .drawer__social a:focus-visible { color: var(--sand); }

  .js .drawer .nav__link,
  .js .drawer__foot > * {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s cubic-bezier(.16, 1, .3, 1);
  }

  .js .site-header--open .drawer .nav__link,
  .js .site-header--open .drawer__foot > * {
    opacity: 1;
    transform: none;
  }

  .js .site-header--open .drawer .nav__link:nth-child(1) { transition-delay: .16s; }
  .js .site-header--open .drawer .nav__link:nth-child(2) { transition-delay: .22s; }
  .js .site-header--open .drawer .nav__link:nth-child(3) { transition-delay: .28s; }
  .js .site-header--open .drawer__foot > *:nth-child(1) { transition-delay: .32s; }
  .js .site-header--open .drawer__foot > *:nth-child(2) { transition-delay: .36s; }

  .js .site-header--open .nav-toggle__bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .js .site-header--open .nav-toggle__bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  html:not(.js) .site-header { flex-wrap: wrap; }
  html:not(.js) .nav { gap: 14px clamp(16px, 4vw, 30px); }
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(36px, 4vw, 56px);
  align-items: stretch;
}

.hero__media {
  min-height: clamp(380px, 45vw, 640px);
  background:
    linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    url('../images/hero.jpg') center / cover var(--ink-08);
}

/* .hero__media .layer-blur {
  filter: blur(3px) brightness(75%);
} */

/* .hero__media .layer-sharp {
  clip-path: inset(0 37%);
} */

.hero__media .hero__seal {
  inset: auto;
  top: 20%;
  left: 63%;
  transform: translate(-50%, -50%);
  width: clamp(38px, 4vw, 100px);
  height: auto;
  pointer-events: none;
}

.hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(44px, 6vw, 80px);
  padding: 0 clamp(24px, 4.4vw, 72px) clamp(24px, 3vw, 48px) clamp(24px, 2vw, 28px);
}

.hero__copy { max-width: 480px; }

.hero__title {
  font: 500 clamp(30px, 3.3vw, 46px)/1.16 var(--sans);
  letter-spacing: -.028em;
}

.hero__lede {
  margin-top: clamp(20px, 2.2vw, 30px);
  max-width: 410px;
  font: 400 clamp(14px, 1.05vw, 15.5px)/1.66 var(--sans);
  color: var(--ink-64);
  text-wrap: pretty;
}

.hero__copy .btn {
  margin-top: clamp(26px, 2.8vw, 38px);
  background-color: var(--clay);
  border-radius: unset;
}

.hero__copy .btn:hover,
.hero__copy .btn:focus-visible { background-color: var(--ink); }

.inquire {
  padding-top: clamp(56px, 6.2vw, 92px);
  padding-bottom: clamp(44px, 4.6vw, 64px);
}

.inquire__sub {
  margin-top: 12px;
  font: 400 13.5px/1.5 var(--sans);
  color: var(--sand-50);
}

.fields {
  display: grid;
  gap: clamp(28px, 3vw, 44px) clamp(24px, 2.8vw, 42px);
}

.fields--wide {
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  margin-top: clamp(38px, 4.2vw, 56px);
}

.fields--narrow {
  grid-template-columns: repeat(auto-fit, minmax(min(172px, 100%), 1fr));
  margin-top: clamp(30px, 3.2vw, 46px);
}

.field {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.field__label { color: var(--sand); }

.field__input {
  width: 100%;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid var(--sand-72);
  background: transparent;
  color: var(--sand-72);
  font: 400 15px/1.4 var(--sans);
  transition: border-color .3s;
}

.field__input::placeholder {
  color: var(--sand-50);
  opacity: 1;
}

.field__input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.field__input::-webkit-outer-spin-button,
.field__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.field__input:focus {
  outline: none;
  border-bottom-color: var(--sand);
}

.inquire__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: clamp(36px, 4vw, 56px);
}

.inquire__error {
  margin-right: auto;
  max-width: 430px;
  font: 400 13.5px/1.5 var(--sans);
  color: var(--sand);
}

.inquire__error a,
.inquire__thanks-copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FormSubmit honeypot: must stay in the DOM and out of sight, tab order and AT. */
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.inquire__thanks { padding: clamp(8px, 1.4vw, 20px) 0 clamp(20px, 2.4vw, 34px); }

.inquire__thanks-copy {
  margin-top: 16px;
  max-width: 430px;
  font: 400 14.5px/1.66 var(--sans);
  color: var(--sand-60);
}

.inquire__thanks .btn-outline { margin-top: clamp(26px, 3vw, 38px); }

/* Kicker above the heading on thank-you.html. */
.inquire__thanks .eyebrow {
  display: block;
  margin-bottom: clamp(14px, 1.6vw, 20px);
  color: var(--sand-60);
}

.why {
  padding-top: clamp(64px, 7vw, 110px);
  padding-bottom: clamp(56px, 6vw, 90px);
}

.why__lede {
  margin-top: clamp(16px, 1.8vw, 24px);
  max-width: 620px;
  font: 400 clamp(13px, 1vw, 14.5px)/1.7 var(--sans);
  color: var(--ink-62);
  text-wrap: pretty;
}

.reasons { margin-top: clamp(40px, 4.6vw, 68px); }

.reason {
  display: grid;
  grid-template-columns: 56px minmax(150px, 1.05fr) minmax(0, 1.6fr);
  gap: clamp(14px, 2.4vw, 40px);
  align-items: baseline;
  padding: clamp(20px, 2.2vw, 28px) 0;
  border-top: 1px solid var(--ink-15);
}

.reason:last-child { border-bottom: 1px solid var(--ink-15); }

.reason__num { color: var(--ink-36); }

.reason__title {
  font: 500 clamp(14px, 1.15vw, 16.5px)/1.4 var(--sans);
}

.reason__text {
  font: 400 clamp(13px, 1vw, 14.5px)/1.62 var(--sans);
  color: var(--ink-60);
}

.destinations {
  padding-top: clamp(48px, 5vw, 80px);
  padding-bottom: clamp(72px, 8vw, 124px);
}

.destinations__head { max-width: 620px; }

.destinations__title { line-height: 1.24; }

.destinations__lede {
  margin-top: clamp(18px, 2vw, 26px);
  max-width: 520px;
  font: 400 clamp(13px, 1vw, 14.5px)/1.7 var(--sans);
  color: var(--ink-62);
  text-wrap: pretty;
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(16px, 1.8vw, 26px);
  row-gap: clamp(32px, 3.4vw, 48px);
  margin-top: clamp(48px, 5.4vw, 84px);
}

.card__media {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.card__caption {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: clamp(14px, 1.4vw, 20px);
  padding-top: 12px;
  border-top: 1px solid var(--ink-18);
}

.card__caption-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.card__name {
  font: 500 clamp(13px, 1.05vw, 15px)/1.2 var(--sans);
}

.card__num,
.card__region { color: var(--ink-36); }

.testimonial {
  padding-top: clamp(56px, 6.4vw, 96px);
  padding-bottom: clamp(40px, 4.4vw, 60px);
}

.testimonial__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  justify-content: space-between;
}

.testimonial__body {
  flex: 1 1 460px;
  min-width: 0;
}

.testimonial__mark {
  font: 400 42px/0.6 var(--serif);
  color: var(--sand-32);
}

.testimonial__quote {
  margin-top: clamp(16px, 1.8vw, 24px);
  max-width: 17em;
  font: 400 clamp(23px, 2.85vw, 42px)/1.31 var(--serif);
  letter-spacing: -.008em;
  text-wrap: pretty;
}

.testimonial__cite {
  display: block;
  margin-top: clamp(22px, 2.4vw, 32px);
  line-height: 1.6;
  color: var(--sand-45);
}

.seal {
  flex: 0 0 auto;
  width: clamp(102px, 9vw, 132px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .6;
}

.testimonial__rule {
  margin-top: clamp(40px, 4.6vw, 68px);
  height: 1px;
  background: var(--sand-16);
}

.site-footer {
  background: var(--clay);
  color: var(--sand);
}

.site-footer__banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(320px, 32vw, 460px);
}

.site-footer__media {
  position: absolute;
  inset: 0;
  background: transparent;
}

.site-footer__media img { object-position: 50% 28%; }

.site-footer__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(34, 30, 26, .40) 0%,
    rgba(34, 30, 26, .06) 34%,
    rgba(34, 30, 26, 0) 52%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  width: 100%;
  padding: clamp(44px, 5vw, 76px) var(--gutter);
  pointer-events: none;
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px clamp(20px, 3vw, 40px);
  padding: clamp(18px, 2vw, 26px) var(--gutter);
  border-top: 1px solid var(--sand-24);
  color: var(--sand-72);
  background-color: var(--ink);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.4vw, 36px);
}

.site-footer__links a { transition: color .25s; }

.site-footer__links a:hover,
.site-footer__links a:focus-visible { color: var(--sand); }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 40px);
  }

  .hero__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    max-height: 560px;
  }

  .hero__panel {
    gap: clamp(32px, 8vw, 56px);
    padding: 0 var(--gutter) clamp(32px, 6vw, 48px);
  }

  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .reason {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 6px clamp(12px, 4vw, 20px);
  }

  .reason__text { grid-column: 2; }

  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .inquire__actions { justify-content: flex-start; }

  .logo--header { height: 30px; }

  .seal { display: none; }
}

.legal {
  padding-top: clamp(64px, 7vw, 110px);
  padding-bottom: clamp(56px, 6vw, 90px);
}

.legal__head {
  max-width: 720px;
  padding-bottom: clamp(28px, 3.2vw, 44px);
  border-bottom: 1px solid var(--ink-15);
}

.legal__kicker { color: var(--ink-36); }

.legal__title {
  margin-top: clamp(14px, 1.6vw, 20px);
  font: 400 clamp(30px, 3.4vw, 46px)/1.12 var(--serif);
  letter-spacing: -.01em;
  text-wrap: balance;
}

.legal__meta {
  margin-top: clamp(14px, 1.6vw, 20px);
  font: 400 12.5px/1.5 var(--sans);
  color: var(--ink-36);
}

.legal__body { margin-top: clamp(36px, 4.2vw, 60px); }

.prose {
  max-width: 680px;
  font: 400 clamp(13px, 1vw, 14.5px)/1.75 var(--sans);
  color: var(--ink-62);
  text-wrap: pretty;
}

.prose > * + * { margin-top: 1.1em; }

.prose h2 {
  margin-top: clamp(34px, 3.6vw, 52px);
  font: 400 clamp(19px, 1.7vw, 24px)/1.3 var(--serif);
  color: var(--ink);
  letter-spacing: -.01em;
}

.prose h3 {
  margin-top: clamp(24px, 2.4vw, 32px);
  font: 500 clamp(14px, 1.15vw, 16.5px)/1.4 var(--sans);
  color: var(--ink);
}

.prose :is(h2, h3)[id] { scroll-margin-top: clamp(100px, 14vw, 134px); }

.prose ul,
.prose ol {
  padding-left: 1.35em;
  list-style: revert;
}

.prose li + li { margin-top: .5em; }

.prose li::marker { color: var(--ink-36); }

.prose strong { font-weight: 500; color: var(--ink); }

.prose a {
  text-decoration: underline;
  text-decoration-color: var(--ink-36);
  text-underline-offset: .2em;
  transition: color .25s, text-decoration-color .25s;
}

.prose a:hover,
.prose a:focus-visible {
  color: var(--clay);
  text-decoration-color: currentColor;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: inherit;
}

.prose th,
.prose td {
  padding: 12px 14px 12px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--ink-15);
}

.prose th {
  font: 500 10px/1.4 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom-color: var(--ink-18);
}

.prose td:last-child,
.prose th:last-child { padding-right: 0; }

.legal__more {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px clamp(20px, 2.6vw, 36px);
  max-width: 680px;
  margin-top: clamp(48px, 5.4vw, 80px);
  padding-top: clamp(20px, 2.2vw, 28px);
  border-top: 1px solid var(--ink-15);
}

.legal__more-label { color: var(--ink-36); }

.legal__more a {
  font: 400 clamp(13px, 1vw, 14.5px)/1.4 var(--sans);
  text-decoration: underline;
  text-decoration-color: var(--ink-36);
  text-underline-offset: .2em;
  transition: color .25s, text-decoration-color .25s;
}

.legal__more a:hover,
.legal__more a:focus-visible {
  color: var(--clay);
  text-decoration-color: currentColor;
}
