:root {
  --ivory: #f7f5f1;
  --white: #ffffff;
  --ink: #191816;
  --origin: #96976d;
  --ballet: #ddc1c6;
  --muted: #67625b;
  --hairline: rgba(25, 24, 22, 0.16);
  --serif: "Bodoni 72", Didot, "Bodoni MT", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
summary,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

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

.page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 92px;
  padding: 0 4.4vw;
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
}

.brand-logo {
  width: 180px;
}

.brand-logo img {
  width: 100%;
}

.header-label,
.eyebrow,
.site-footer,
.image-meta figcaption,
.privacy summary {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.header-label {
  margin: 0;
}

.header-label--right {
  justify-self: end;
}

.coming-soon {
  display: grid;
  grid-template-columns: minmax(520px, 55%) minmax(0, 45%);
  min-height: calc(100svh - 148px);
}

.coming-soon__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(58px, 7vh, 96px) clamp(40px, 7vw, 112px) 30px 4.4vw;
  background:
    linear-gradient(125deg, rgba(221, 193, 198, 0.14), transparent 32%),
    var(--ivory);
}

.copy-main {
  max-width: 660px;
  animation: copy-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  margin: 0 0 34px;
  color: var(--muted);
}

h1 {
  max-width: none;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 3.8vw, 58px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.introduction {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.origin-mark {
  display: block;
  width: 96px;
  height: 6px;
  margin-top: 36px;
  background: var(--origin);
}

.waitlist {
  max-width: 620px;
  margin-top: clamp(52px, 7vh, 84px);
}

.waitlist__heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(240px, 1.2fr);
  gap: 38px;
  margin-bottom: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}

.waitlist__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.waitlist__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.signup__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
}

.signup__row input,
.signup__row button {
  height: 52px;
  border: 1px solid var(--ink);
  border-radius: 0;
}

.signup__row input {
  min-width: 0;
  padding: 0 18px;
  border-right: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.signup__row input::placeholder {
  color: #7b756f;
}

.signup__row:focus-within {
  box-shadow: 0 3px 0 var(--origin);
}

.signup__row button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 17px 0 22px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 160ms ease;
}

.signup__row button:hover {
  background: #37342f;
}

.signup__row button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.consent {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  line-height: 1.45;
}

.consent input {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: #7a3636;
  font-size: 11px;
  line-height: 1.4;
}

.form-status.is-success {
  color: #555a3e;
}

.privacy {
  position: relative;
  max-width: 560px;
  margin-top: 46px;
  color: var(--muted);
}

.privacy summary {
  width: max-content;
  cursor: pointer;
  list-style: none;
}

.privacy summary::-webkit-details-marker {
  display: none;
}

.privacy summary::after {
  margin-left: 8px;
  color: var(--origin);
  content: "+";
}

.privacy[open] summary::after {
  content: "−";
}

.privacy p {
  max-width: 520px;
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.6;
}

.coming-soon__image {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #242321;
}

.coming-soon__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  animation: image-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.image-meta {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-align: right;
}

.image-meta figcaption {
  margin: 0;
}

.photo-credit {
  position: absolute;
  right: 5px;
  bottom: 4px;
  margin: 0;
  color: rgba(247, 245, 241, 0.16);
  font-size: 5px;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.photo-credit a {
  color: inherit;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 56px;
  padding: 0 4.4vw;
  border-top: 1px solid var(--hairline);
  background: var(--white);
  color: var(--muted);
  font-size: 9px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

.honeypot,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-in {
  from {
    opacity: 0;
    transform: scale(1.025);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .coming-soon {
    grid-template-columns: minmax(430px, 54%) minmax(0, 46%);
  }

  .coming-soon__copy {
    padding-right: 42px;
  }

  h1 {
    white-space: normal;
  }

  .waitlist__heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .page {
    display: block;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    height: 76px;
    padding: 0 22px;
  }

  .brand-logo {
    flex: 0 0 auto;
    width: 136px;
  }

  .header-label--left {
    display: none;
  }

  .header-label--right {
    margin-left: 16px;
    font-size: 8px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .coming-soon {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .coming-soon__image {
    order: 1;
    min-height: 0;
    aspect-ratio: 0.82;
  }

  .image-meta {
    right: 12px;
    bottom: 18px;
    left: auto;
    max-width: calc(100% - 24px);
    padding: 8px 9px;
  }

  .image-meta figcaption {
    font-size: 8px;
  }

  .photo-credit {
    right: 4px;
    bottom: 3px;
    font-size: 5px;
  }

  .coming-soon__copy {
    order: 2;
    padding: 48px 22px 34px;
  }

  h1 {
    max-width: 520px;
    font-size: clamp(58px, 17vw, 78px);
  }

  .introduction {
    font-size: 14px;
  }

  .waitlist {
    margin-top: 48px;
  }

  .waitlist__heading {
    grid-template-columns: minmax(140px, 0.8fr) minmax(180px, 1.2fr);
    gap: 20px;
  }

  .signup__row {
    grid-template-columns: minmax(0, 1fr) 145px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    min-height: 64px;
    padding: 0 22px;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 470px) {
  .waitlist__heading,
  .signup__row {
    grid-template-columns: 1fr;
  }

  .signup__row input {
    border-right: 1px solid var(--ink);
    border-bottom: 0;
  }
}

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

  .copy-main,
  .coming-soon__image img {
    animation: none;
  }
}
