:root {
  color-scheme: light;
  --ink: #11100e;
  --paper: #f4f0e8;
  --paper-deep: #e1dccf;
  --mist: #dbe3e4;
  --stone: #5b625f;
  --sea: #19393f;
  --moss: #3b4f41;
  --ember: #b55a2d;
  --white: #fffaf1;
  --max: 1180px;
  --gutter: clamp(20px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.03) 1px, transparent 1px) 0 0 / 78px 78px,
    var(--paper);
}

a {
  color: inherit;
  text-decoration-color: rgba(181, 90, 45, 0.45);
  text-underline-offset: 0.22em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease,
    background-color 180ms ease;
}

a:hover {
  color: var(--ember);
  text-decoration-color: currentColor;
}

.skip-link {
  position: fixed;
  inset: 14px auto auto 14px;
  z-index: 10;
  translate: 0 -140%;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  color: var(--white);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.62);
}

.legal-header {
  position: sticky;
  color: var(--ink);
  background: rgba(244, 240, 232, 0.86);
  border-bottom: 1px solid rgba(17, 16, 14, 0.12);
  backdrop-filter: blur(18px);
  text-shadow: none;
}

.brand-mark,
.wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--sea);
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 17, 18, 0.72) 0%, rgba(10, 17, 18, 0.38) 40%, rgba(10, 17, 18, 0.08) 73%),
    linear-gradient(180deg, rgba(10, 17, 18, 0.48) 0%, rgba(10, 17, 18, 0.1) 36%, rgba(10, 17, 18, 0.08) 52%, rgba(10, 17, 18, 0.52) 100%);
}

.hero-grid {
  z-index: -1;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.16) 1px, transparent 1px) 0 0 / min(13vw, 150px) min(13vw, 150px),
    linear-gradient(180deg, rgba(255, 250, 241, 0.12) 1px, transparent 1px) 0 0 / min(13vw, 150px) min(13vw, 150px);
  mask-image: linear-gradient(90deg, #000 0%, transparent 60%);
}

.hero-copy {
  align-self: center;
  width: min(760px, calc(100% - (var(--gutter) * 2)));
  margin-left: var(--gutter);
  padding-top: 92px;
  color: var(--white);
}

.kicker,
.section-label {
  margin: 0 0 22px;
  color: var(--ember);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.legal-document h1,
.statement h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.95;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(4.2rem, 12vw, 10.8rem);
}

.lede {
  max-width: 590px;
  margin: clamp(28px, 5vw, 48px) 0 0;
  color: rgba(255, 250, 241, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.24rem, 2.6vw, 2.2rem);
  line-height: 1.18;
}

.contact-link {
  display: inline-flex;
  margin-top: clamp(30px, 5vw, 54px);
  border-bottom: 1px solid rgba(255, 250, 241, 0.48);
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  text-decoration: none;
}

.image-credit {
  position: absolute;
  right: var(--gutter);
  bottom: 26px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statement {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 8vw, 116px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 132px) var(--gutter);
  border-bottom: 1px solid rgba(17, 16, 14, 0.12);
}

.statement h2 {
  max-width: 9ch;
  color: var(--sea);
  font-size: clamp(2.6rem, 7vw, 6rem);
}

.statement p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--stone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.28;
}

.statement-single {
  display: block;
  max-width: none;
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-right: clamp(8px, 1.5vw, 24px);
}

.statement.statement-single p:last-child {
  max-width: 1100px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px var(--gutter);
  color: var(--stone);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.legal-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 104px) var(--gutter);
}

.legal-document {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
}

.legal-document h1 {
  margin-bottom: clamp(34px, 6vw, 70px);
  color: var(--sea);
  font-size: clamp(3rem, 9vw, 7.2rem);
}

.legal-document section {
  padding: 30px 0;
  border-top: 1px solid rgba(17, 16, 14, 0.13);
}

.legal-document h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.legal-document h3 {
  margin: 22px 0 8px;
  color: var(--moss);
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-document p,
.legal-document li {
  color: var(--stone);
  font-size: 1.02rem;
}

.legal-document p {
  margin: 0 0 14px;
}

.legal-document ul {
  margin: 12px 0 0;
  padding-left: 1.2rem;
}

.legal-document li + li {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding-top: 18px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 220px;
    row-gap: 9px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-copy {
    align-self: end;
    margin: 0;
    padding: 112px var(--gutter) 96px;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 20vw, 6.2rem);
  }

  .lede {
    max-width: 18rem;
  }

  .image-credit {
    right: auto;
    left: var(--gutter);
    bottom: 20px;
  }

  .statement {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
