:root {
  --ink: #24171d;
  --muted: #7c6a62;
  --paper: #fbf3e7;
  --cream: #fffaf1;
  --red: #a83232;
  --gold: #c99543;
  --line: rgba(36, 23, 29, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(36, 23, 29, .035) 1px, transparent 1px),
    linear-gradient(rgba(36, 23, 29, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  z-index: 4;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  background: linear-gradient(to bottom, rgba(251, 243, 231, .9), rgba(251, 243, 231, .42), transparent);
  backdrop-filter: blur(14px);
}

.brand,
nav a,
.text-link {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: grid;
  line-height: 1;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
}

.brand small {
  margin-top: 5px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
}

nav a,
.eyebrow,
.text-link {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

nav a {
  color: rgba(36, 23, 29, .7);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  align-items: stretch;
  padding: 0 0 0 clamp(20px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
  padding-top: 90px;
}

.hero-media {
  grid-column: 2;
  grid-row: 1;
  min-height: 100svh;
  overflow: hidden;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.04);
  animation: slowDrift 12s ease-in-out infinite alternate;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(5.6rem, 14vw, 12rem);
  line-height: .76;
}

h2 {
  font-size: clamp(3.1rem, 7vw, 7rem);
  line-height: .88;
}

h3 {
  font-size: 2rem;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 480px;
  margin: 26px 0 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--red);
}

.text-link::after {
  content: "";
  width: 72px;
  height: 1px;
  background: currentColor;
}

.section {
  position: relative;
  min-height: 86svh;
  padding: 120px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
}

.section-grid p {
  margin-top: 10px;
}

.story-copy p:first-child {
  margin-top: 10px;
}

.story-copy p + p {
  margin-top: 22px;
}

.story-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.story-notes span {
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255, 250, 241, .72);
  border: 1px solid var(--line);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fit {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  background: linear-gradient(120deg, rgba(255, 250, 241, .74), rgba(184, 50, 50, .06));
}

.fit-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.fit-board article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 250, 241, .72);
}

.fit-board span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
}

.fit-board p {
  margin-bottom: 0;
}

.waitlist {
  min-height: 100svh;
  display: grid;
  align-content: center;
  max-width: 820px;
}

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

.waitlist h2 {
  font-size: clamp(5rem, 13vw, 12rem);
}

.notify-form {
  display: flex;
  width: min(560px, 100%);
  gap: 10px;
  margin-top: 34px;
  padding: 8px;
  background: rgba(255, 250, 241, .8);
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(75, 40, 28, .12);
}

.notify-form input,
.notify-form button {
  min-height: 54px;
  border: 0;
  font: inherit;
}

.notify-form input {
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.notify-form-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notify-form-action.is-loading button {
  display: none;
}

.notify-form-action .notify-loader {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  padding: 0 22px;
}

.notify-form-action.is-loading .notify-loader {
  display: flex;
}

.notify-loader::after {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid rgba(168, 50, 50, .22);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: notify-spin .7s linear infinite;
}

@keyframes notify-spin {
  to {
    transform: rotate(360deg);
  }
}

.notify-form button {
  padding: 0 22px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  cursor: pointer;
}

.notify-form button:disabled {
  cursor: wait;
}

.form-message {
  display: none;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: min(560px, 100%);
  margin: 22px 0 0;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 250, 241, .82);
  border: 1px solid var(--line);
}

.form-message.is-visible {
  display: flex;
}

.form-message-text {
  flex: 1;
  min-width: 0;
}

.form-message-close {
  flex-shrink: 0;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  opacity: .65;
}

.form-message-close[hidden] {
  display: none;
}

.form-message-close:hover {
  opacity: 1;
}

.form-error {
  color: var(--red);
  border-color: rgba(168, 50, 50, .35);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowDrift {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-2%);
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 100svh;
    display: block;
    padding: 0;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    min-height: 100svh;
    border: 0;
    opacity: .5;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 243, 231, .98) 0 24%, rgba(251, 243, 231, .74) 52%, rgba(251, 243, 231, .18));
  }

  .hero-copy {
    min-height: 100svh;
    padding: 150px 20px 44px;
    display: grid;
    align-content: center;
  }

  h1 {
    font-size: clamp(4.6rem, 24vw, 7.5rem);
  }

  .section,
  .fit {
    min-height: auto;
    padding: 92px 20px;
  }

  .section-grid,
  .fit {
    grid-template-columns: 1fr;
  }

  .fit-board {
    grid-template-columns: 1fr;
  }

  .fit-board article {
    min-height: 180px;
  }

  .fit-board span {
    margin-bottom: 30px;
  }

  .notify-form {
    flex-direction: column;
  }
}

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