:root {
  --ink: #1a1d19;
  --ink-soft: #343831;
  --limestone: #f3f0e8;
  --paper: #faf8f2;
  --sage: #7e896f;
  --sage-dark: #4c5944;
  --earth: #7a5e47;
  --rust: #af623e;
  --line: rgba(26, 29, 25, 0.16);
  --shell: min(1220px, calc(100vw - 96px));
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--limestone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 2px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 4px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  height: 100svh;
  max-height: 1040px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #252a23;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
  object-fit: cover;
  object-position: 58% center;
  animation: hero-arrive 1.4s cubic-bezier(0.2, 0.65, 0.3, 1) both;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 18, 14, 0.83) 0%, rgba(15, 18, 14, 0.62) 42%, rgba(15, 18, 14, 0.12) 76%),
    linear-gradient(180deg, rgba(8, 10, 8, 0.42) 0%, transparent 25%, transparent 58%, rgba(8, 10, 8, 0.47) 100%);
}

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.wordmark__mark {
  position: relative;
  display: inline-block;
  width: 29px;
  height: 22px;
  border: 1px solid currentColor;
  border-width: 0 0 1px 1px;
}

.wordmark__mark::before,
.wordmark__mark span {
  position: absolute;
  display: block;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left center;
}

.wordmark__mark::before {
  left: 0;
  bottom: 4px;
  width: 28px;
  transform: rotate(-21deg);
}

.wordmark__mark span:first-child {
  left: 1px;
  bottom: 8px;
  width: 25px;
  opacity: 0.72;
  transform: rotate(-13deg);
}

.wordmark__mark span:last-child {
  left: 2px;
  bottom: 12px;
  width: 20px;
  opacity: 0.42;
  transform: rotate(-5deg);
}

.status {
  padding: 8px 13px 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__content {
  align-self: end;
  padding-bottom: clamp(108px, 13vh, 148px);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section h2,
.coming-soon h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.048em;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 36px;
  font-size: clamp(64px, 8.3vw, 120px);
  line-height: 0.87;
}

.hero__copy {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 400px);
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
  max-width: 1060px;
}

.hero__copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.hero__copy .hero__lead {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.52;
}

.hero__scroll {
  position: absolute;
  right: 46px;
  bottom: 43px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__scroll:hover {
  color: #fff;
}

.section {
  padding-block: clamp(110px, 14vw, 180px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  padding-bottom: clamp(64px, 8vw, 96px);
}

.section h2,
.coming-soon h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 6.4vw, 88px);
  line-height: 0.96;
}

.section-heading__intro {
  max-width: 400px;
  margin: 0 0 7px auto;
  color: #5d6258;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  min-height: 290px;
  padding: 44px 46px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 260ms ease, transform 260ms ease;
}

.feature:hover {
  z-index: 1;
  background: rgba(255, 255, 255, 0.46);
  transform: translateY(-2px);
}

.feature__number {
  color: var(--rust);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.feature h3 {
  max-width: 350px;
  margin-bottom: 19px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.feature p {
  max-width: 390px;
  margin-bottom: 0;
  color: #5f645a;
  font-size: 14px;
  line-height: 1.75;
}

.evidence {
  position: relative;
  overflow: hidden;
  color: #f4f1e9;
  background: var(--ink);
}

.evidence::after {
  position: absolute;
  right: -7vw;
  bottom: -28vw;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.evidence__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 72px;
}

.evidence__label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
  padding-right: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.evidence__glyph {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: #aeb7a1;
}

.evidence__glyph svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.evidence__label p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.evidence__content h2 {
  max-width: 800px;
  margin-bottom: 52px;
}

.evidence__content > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.75;
}

.evidence__trail {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 68px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.library {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 72px;
}

.library__index {
  padding-top: 4px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.library__content h2 {
  margin-bottom: 46px;
}

.library__content > p:not(.eyebrow):not(.library__topics) {
  max-width: 740px;
  color: #565c52;
  font-family: var(--serif);
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.56;
}

.library__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 58px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #696e65;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.library__topics span:not(:last-child)::after {
  margin-inline: 16px;
  color: var(--rust);
  content: "/";
}

.coming-soon {
  position: relative;
  overflow: hidden;
  padding-block: clamp(120px, 16vw, 210px);
  color: #f4f1e9;
  background: #4d5747;
}

.coming-soon::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 20, 15, 0.5), rgba(15, 20, 15, 0.05) 70%);
  content: "";
}

.coming-soon__texture {
  position: absolute;
  top: -34%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  min-width: 560px;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 52% 48% 38% 62%;
  box-shadow:
    0 0 0 54px rgba(255, 255, 255, 0.025),
    0 0 0 108px rgba(255, 255, 255, 0.018),
    0 0 0 162px rgba(255, 255, 255, 0.012);
  transform: rotate(17deg);
}

.coming-soon__inner {
  position: relative;
  z-index: 1;
}

.coming-soon h2 {
  max-width: 920px;
  margin-bottom: 48px;
  font-size: clamp(54px, 7.2vw, 100px);
}

.coming-soon__inner > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.45vw, 20px);
}

.coming-soon__status {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  margin-top: 68px;
  padding: 15px 19px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8895f;
  box-shadow: 0 0 0 4px rgba(216, 137, 95, 0.14);
}

.footer {
  color: #cacbc3;
  background: #121411;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 190px;
  padding-block: 42px;
}

.wordmark--dark {
  color: #e8e6de;
}

.footer__legal {
  display: flex;
  gap: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__legal p {
  margin: 0;
}

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 48px, 720px);
  }

  .hero {
    min-height: 900px;
    height: 100svh;
  }

  .hero__media {
    object-position: 63% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(15, 18, 14, 0.74), rgba(15, 18, 14, 0.28)),
      linear-gradient(180deg, rgba(8, 10, 8, 0.32), transparent 24%, rgba(8, 10, 8, 0.54));
  }

  .hero__copy,
  .section-heading,
  .evidence__grid,
  .library {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    gap: 20px;
  }

  .hero__copy p {
    max-width: 600px;
  }

  .section-heading {
    gap: 36px;
  }

  .section-heading__intro {
    margin-left: 0;
  }

  .feature {
    min-height: 320px;
    padding: 36px 30px;
  }

  .evidence__grid,
  .library {
    gap: 50px;
  }

  .evidence__label {
    flex-direction: row;
    align-items: center;
    min-height: auto;
    padding: 0 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .library__index {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }

  .footer__legal {
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .hero {
    min-height: 960px;
    height: auto;
  }

  .site-header {
    padding-block: 22px;
  }

  .wordmark {
    gap: 10px;
    font-size: 17px;
  }

  .wordmark__mark {
    width: 24px;
    height: 19px;
  }

  .wordmark__mark::before {
    width: 23px;
  }

  .wordmark__mark span:first-child {
    width: 20px;
  }

  .wordmark__mark span:last-child {
    width: 16px;
  }

  .status {
    padding: 7px 9px 6px;
    font-size: 8px;
  }

  .hero__content {
    padding-top: 340px;
    padding-bottom: 58px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(51px, 15vw, 68px);
    line-height: 0.92;
  }

  .hero h1 br {
    display: none;
  }

  .hero__lead {
    font-size: 16px !important;
  }

  .hero__copy p:not(.hero__lead) {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.55;
  }

  .hero__scroll {
    display: none;
  }

  .section {
    padding-block: 92px;
  }

  .section h2,
  .coming-soon h2 {
    font-size: 48px;
  }

  .section-heading {
    padding-bottom: 56px;
  }

  .section-heading__intro {
    font-size: 19px;
  }

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

  .feature {
    grid-template-columns: 42px 1fr;
    min-height: 0;
    padding: 34px 24px;
  }

  .feature h3 {
    font-size: 26px;
  }

  .evidence__content h2 {
    margin-bottom: 36px;
  }

  .evidence__content > p {
    font-size: 16px;
  }

  .evidence__trail {
    gap: 9px;
    margin-top: 42px;
    font-size: 8px;
  }

  .library__content > p:not(.eyebrow):not(.library__topics) {
    font-size: 20px;
  }

  .library__topics {
    row-gap: 8px;
  }

  .library__topics span:not(:last-child)::after {
    margin-inline: 9px;
  }

  .coming-soon {
    padding-block: 100px;
  }

  .coming-soon h2 {
    margin-bottom: 36px;
  }

  .coming-soon__status {
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
    margin-top: 48px;
    font-size: 8px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
    min-height: 220px;
  }

  .footer__legal {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
