:root {
  color-scheme: light;
  --charcoal: #26221e;
  --charcoal-soft: #3b342d;
  --plaster: #e6ded2;
  --plaster-light: #f1ebe2;
  --cement: #c9bfb2;
  --sand: #b9a995;
  --clay: #8f765f;
  --brass: #80613d;
  --line: rgb(38 34 30 / 17%);
  --line-light: rgb(241 235 226 / 24%);
  --display: "Gloock", Georgia, serif;
  --sans: "Sora", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--plaster);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
  mix-blend-mode: multiply;
}

::selection { background: var(--clay); color: var(--plaster-light); }
a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
img { display: block; width: 100%; }

.skip-link {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  background: var(--charcoal);
  color: var(--plaster-light);
  clip-path: inset(50%);
}
.skip-link:focus {
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  padding: .75rem 1rem;
  clip-path: none;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 5rem;
  padding: 0 clamp(1.25rem, 3vw, 3.5rem);
  border-bottom: 1px solid rgb(38 34 30 / 12%);
  background: rgb(230 222 210 / 50%);
  color: var(--charcoal);
  backdrop-filter: blur(8px);
  transition: min-height 500ms cubic-bezier(.22,.7,.2,1), background 500ms ease, backdrop-filter 500ms ease;
}
.site-header.is-scrolled {
  min-height: 4.15rem;
  background: rgb(230 222 210 / 90%);
  backdrop-filter: blur(20px);
}
.wordmark, .footer-wordmark {
  width: max-content;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .17em;
  line-height: 1;
}
.wordmark { font-size: clamp(1.22rem, 1.7vw, 1.5rem); }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.6rem, 3.3vw, 4rem); }
.desktop-nav a, .header-cta, .eyebrow, .launch-note > p, .interest-form label, .form-privacy, .footer-meta, .footer-top > p {
  font-size: .59rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.desktop-nav a { opacity: .64; transition: opacity 250ms ease; }
.desktop-nav a:hover { opacity: 1; }
.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-bottom: .32rem;
  border-bottom: 1px solid currentColor;
}
.header-cta:hover .arrow-icon, .text-link:hover .arrow-icon { transform: translateX(.2rem); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 86%, rgb(143 118 95 / 20%), transparent 31%),
    linear-gradient(118deg, var(--plaster-light), var(--plaster) 55%, var(--cement));
}
.hero-media, .hero-veil, .hero-grid { position: absolute; inset: 0; }
.hero-media {
  left: 43%;
  width: 57%;
  height: 108%;
  transform: translate3d(0, var(--hero-shift, 0), 0);
  will-change: transform;
}
.hero-image { height: 100%; object-fit: cover; object-position: 47% 35%; }
.js .hero-image { transform: scale(1.075); transition: transform 2600ms cubic-bezier(.16,.8,.18,1); }
.js.is-ready .hero-image { transform: scale(1.015); }
.hero-veil {
  background:
    linear-gradient(90deg, var(--plaster-light) 0%, var(--plaster) 34%, rgb(230 222 210 / 86%) 45%, transparent 69%),
    linear-gradient(0deg, rgb(38 34 30 / 24%) 0%, transparent 35%, rgb(230 222 210 / 8%) 100%);
}
.hero-grid {
  left: clamp(1.25rem, 3vw, 3.5rem);
  right: clamp(1.25rem, 3vw, 3.5rem);
  width: auto;
  border-left: 1px solid rgb(38 34 30 / 7%);
  border-right: 1px solid rgb(38 34 30 / 7%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 8rem clamp(1.4rem, 8.7vw, 9rem) 5rem;
}
.eyebrow { margin: 0; color: #6f6357; }
.hero .eyebrow { color: #6f6256; }
.hero h1 {
  max-width: 8ch;
  margin: 1.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(4.7rem, 8.3vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
}
.hero-line { display: block; overflow: hidden; padding: .06em .06em .12em 0; margin-bottom: -.13em; }
.hero-line > span { display: block; }
.js .hero-line > span { opacity: 0; transform: translate3d(0, 112%, 0); }
.js.is-ready .hero-line > span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 240ms ease, transform 1200ms 300ms cubic-bezier(.2,.75,.18,1);
}
.js.is-ready .hero-line + .hero-line > span { transition-delay: 460ms; }
.hero-intro {
  max-width: 24rem;
  margin: 2.1rem 0 0;
  color: rgb(38 34 30 / 68%);
  font-size: clamp(.88rem, 1.15vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 2.2rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.7rem;
  min-width: 12.25rem;
  padding: .9rem 1.05rem;
  border: 1px solid currentColor;
  font-size: .59rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  transition: background 350ms ease, color 350ms ease;
}
.button-light:hover { background: var(--charcoal); color: var(--plaster-light); }
.arrow-icon {
  width: .9rem;
  height: .9rem;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 300ms ease;
}
.button:hover .arrow-icon { transform: translateX(.2rem); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  width: max-content;
  padding-bottom: .34rem;
  border-bottom: 1px solid currentColor;
  font-size: .59rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.hero-mark {
  position: absolute;
  z-index: 2;
  right: clamp(1.4rem, 3.4vw, 3.75rem);
  bottom: 2rem;
  margin: 0;
  color: var(--plaster-light);
  font-size: .54rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.js .hero-reveal { opacity: 0; transform: translate3d(0, 14px, 0); }
.js.is-ready .hero-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 900ms 730ms ease, transform 900ms 730ms cubic-bezier(.2,.75,.18,1);
}
.js.is-ready .hero-intro { transition-delay: 820ms; }
.js.is-ready .hero-actions { transition-delay: 900ms; }
.js.is-ready .hero-mark { transition-delay: 1040ms; }

.launch-note {
  display: grid;
  grid-template-columns: .72fr 1.7fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 1.4rem clamp(1.4rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cement);
}
.launch-note p, .launch-note h2, .launch-note span { margin: 0; }
.launch-note > p { color: #70573f; }
.launch-note h2 { font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.9rem); font-weight: 400; letter-spacing: -.025em; }
.launch-note span { color: rgb(38 34 30 / 56%); font-size: .69rem; font-weight: 300; line-height: 1.55; }

.signup {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(4rem, 10vw, 11rem);
  overflow: hidden;
  padding: clamp(6rem, 9vw, 9rem) 7vw;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(116deg, transparent 0 68%, rgb(143 118 95 / 12%) 68.1% 86%, transparent 86.1%),
    var(--plaster-light);
}
.signup::after {
  position: absolute;
  right: -7vw;
  bottom: -17vw;
  width: 40vw;
  height: 40vw;
  border: 1px solid rgb(128 97 61 / 28%);
  border-radius: 50%;
  content: "";
}
.signup-copy, .interest-form { position: relative; z-index: 1; }
.signup h2 {
  margin: .9rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}
.signup-copy > p:last-child {
  max-width: 27rem;
  margin: 1.7rem 0 0;
  color: rgb(38 34 30 / 58%);
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.78;
}
.interest-form { align-self: center; }
.interest-form label { display: block; margin-bottom: 1.1rem; color: rgb(38 34 30 / 54%); }
.form-row { position: relative; display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid rgb(38 34 30 / 36%); }
.interest-input {
  width: 100%;
  min-width: 0;
  padding: 1.1rem 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--charcoal);
  font-size: .9rem;
}
.interest-input::placeholder { color: rgb(38 34 30 / 34%); }
.form-row:focus-within { border-color: var(--brass); }
.signup-button {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 0 1.1rem 1.5rem;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-size: .59rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.signup-button .arrow-icon { color: var(--brass); }
.signup-button:hover .arrow-icon { transform: translateX(.25rem); }
.form-trap { position: absolute; left: -10000px; }
.form-privacy { margin: .9rem 0 0; color: rgb(38 34 30 / 38%); line-height: 1.55; }
.button-note { min-height: 1.4em; margin: .85rem 0 0; color: var(--brass); font-size: .72rem; }
.interest-form.is-submitting { opacity: .62; pointer-events: none; }

.house {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.05fr .75fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: end;
  min-height: 50rem;
  padding: clamp(6rem, 10vw, 10rem) 7vw;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgb(38 34 30 / 4%) 1px, transparent 1px) 7vw 0 / calc((100vw - 14vw) / 4) 100%,
    linear-gradient(128deg, var(--cement), var(--plaster) 48%, #d8cdbf);
}
.house-copy { align-self: center; }
.house-copy h2 {
  max-width: 10ch;
  margin: 1.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .93;
}
.house-copy > p:last-child {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: rgb(38 34 30 / 59%);
  font-size: .87rem;
  font-weight: 300;
  line-height: 1.8;
}
.house-object {
  align-self: stretch;
  min-height: 36rem;
  overflow: hidden;
  box-shadow: 0 2.8rem 5rem rgb(38 34 30 / 13%);
}
.house-object img { height: 100%; object-fit: cover; object-position: center; }
.house-statement {
  align-self: end;
  margin: 0 0 .4rem;
  color: #5f5348;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.6vw, 2.9rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.collection-world {
  padding: clamp(6rem, 9vw, 9rem) 3.5vw 3.5vw;
  background:
    radial-gradient(circle at 92% 4%, rgb(196 178 157 / 14%), transparent 32%),
    var(--charcoal);
  color: var(--plaster-light);
}
.collection-heading {
  display: grid;
  grid-template-columns: .65fr 1.1fr .75fr;
  align-items: end;
  gap: 3rem;
  padding: 0 3.5vw clamp(4rem, 6vw, 6rem);
}
.collection-heading .eyebrow { align-self: start; color: var(--sand); }
.collection-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
}
.collection-heading > p:last-child {
  max-width: 25rem;
  margin: 0;
  color: rgb(241 235 226 / 55%);
  font-size: .83rem;
  font-weight: 300;
  line-height: 1.78;
}
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.collection-card { min-width: 0; overflow: hidden; background: var(--charcoal-soft); }
.collection-card:nth-child(2) { transform: translateY(-1.8rem); }
.collection-image { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; background: var(--charcoal-soft); }
.collection-image::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgb(25 22 19 / 52%));
  content: "";
  opacity: 0;
  transition: opacity 600ms ease;
}
.collection-image img { height: 100%; object-fit: cover; transition: transform 1200ms cubic-bezier(.2,.7,.2,1), filter 800ms ease; }
.collection-action {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.3rem;
  left: 1.4rem;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  color: var(--plaster-light);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateY(.6rem);
  transition: opacity 450ms ease, transform 450ms ease;
}
.collection-action .arrow-icon { width: 1rem; height: 1rem; }
.collection-card:hover .collection-image img { transform: scale(1.03); filter: contrast(1.03); }
.collection-card:hover .collection-image::after, .collection-card:hover .collection-action { opacity: 1; }
.collection-card:hover .collection-action { transform: translateY(0); }

.commission {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 86vh;
  background:
    linear-gradient(120deg, transparent 55%, rgb(128 97 61 / 11%) 55.1%),
    var(--plaster-light);
  color: var(--charcoal);
}
.commission-image { overflow: hidden; min-height: 42rem; }
.commission-image img { height: 100%; object-fit: cover; object-position: 52% center; }
.commission-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 8rem); }
.commission-copy .eyebrow { color: #695f52; }
.commission-copy h2 {
  max-width: 7ch;
  margin: 1.1rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .9;
}
.commission-copy > p:not(.eyebrow) { max-width: 28rem; margin: 2rem 0 2.3rem; color: rgb(38 34 30 / 62%); font-size: .89rem; font-weight: 300; line-height: 1.8; }

.js [data-reveal] { opacity: 0; transform: translate3d(0, 1.8rem, 0); }
.js [data-reveal].is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 850ms var(--reveal-delay, 0ms) ease, transform 1050ms var(--reveal-delay, 0ms) cubic-bezier(.18,.72,.16,1);
}
.js [data-reveal="image"] { clip-path: inset(7% 0 0 0); transform: translate3d(0, 2rem, 0); }
.js [data-reveal="image"] img { transform: scale(1.045); }
.js [data-reveal="image"].is-inview {
  clip-path: inset(0);
  transform: translate3d(0, 0, 0);
  transition: opacity 900ms var(--reveal-delay, 0ms) ease, transform 1200ms var(--reveal-delay, 0ms) cubic-bezier(.18,.72,.16,1), clip-path 1350ms var(--reveal-delay, 0ms) cubic-bezier(.18,.72,.16,1);
}
.js [data-reveal="image"].is-inview img { transform: scale(1); transition-duration: 1700ms; }

.site-footer { padding: 5rem 3.5vw 2rem; background: var(--charcoal); color: var(--plaster-light); }
.footer-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.footer-wordmark {
  display: block;
  max-width: 100%;
  font-size: clamp(4.2rem, 14vw, 12.8rem);
  letter-spacing: .075em;
  line-height: .78;
  white-space: nowrap;
}
.footer-top > p { margin: 0; color: rgb(241 235 226 / 43%); }
.js .footer-wordmark[data-reveal] { letter-spacing: .03em; transform: translate3d(0, 1.5rem, 0); }
.js .footer-wordmark[data-reveal].is-inview { letter-spacing: .075em; transform: translate3d(0, 0, 0); }
.footer-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  color: rgb(241 235 226 / 44%);
}
.footer-meta > div { display: flex; gap: clamp(1rem, 2vw, 2.25rem); }
.footer-meta > a { justify-self: center; color: var(--plaster-light); }
.footer-meta > span { justify-self: end; }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .launch-note { grid-template-columns: 1fr 2fr; }
  .launch-note span { display: none; }
  .signup { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  .house { grid-template-columns: 1fr 1fr; }
  .house-statement { grid-column: 1 / -1; }
  .collection-heading { grid-template-columns: .5fr 1.3fr; }
  .collection-heading > p:last-child { display: none; }
  .footer-meta > div { display: none; }
}

@media (max-width: 700px) {
  .site-header { min-height: 4.6rem; padding: 0 1.15rem; background: rgb(230 222 210 / 72%); }
  .site-header.is-scrolled { min-height: 4.1rem; }
  .wordmark { font-size: 1.18rem; letter-spacing: .15em; }
  .header-cta { gap: .5rem; font-size: .53rem; }
  .hero-media { inset: -3% 0 auto 0; width: 100%; height: 106%; }
  .hero-image { object-position: 50% center; }
  .hero-veil {
    background:
      linear-gradient(0deg, rgb(230 222 210 / 97%) 0%, rgb(230 222 210 / 84%) 34%, rgb(230 222 210 / 10%) 68%, rgb(38 34 30 / 17%) 100%),
      linear-gradient(90deg, rgb(230 222 210 / 30%), transparent 76%);
  }
  .hero-grid { left: 1.15rem; right: 1.15rem; }
  .hero-copy { justify-content: flex-end; padding: 7rem 1.25rem 7.5rem; }
  .hero .eyebrow { color: #64584e; }
  .hero h1 { max-width: none; font-size: clamp(3.55rem, 17vw, 4.9rem); line-height: .88; }
  .hero-intro { margin-top: 1.65rem; color: rgb(38 34 30 / 69%); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; margin-top: 1.6rem; }
  .button { min-width: 13rem; }
  .hero-mark { right: 1.25rem; bottom: 1.25rem; color: rgb(38 34 30 / 58%); font-size: .48rem; }
  .desktop-only { display: none; }

  .launch-note { grid-template-columns: 1fr; gap: .5rem; padding: 1.2rem 1.25rem; }
  .launch-note h2 { font-size: 1.22rem; }

  .signup { grid-template-columns: 1fr; gap: 3.5rem; padding: 5.5rem 1.25rem; }
  .signup::after { right: -22vw; bottom: -15vw; width: 78vw; height: 78vw; }
  .signup h2 { font-size: clamp(3.5rem, 17vw, 4.8rem); }
  .form-row { grid-template-columns: 1fr; }
  .signup-button { justify-content: space-between; padding-left: 0; border-top: 1px solid var(--line); }

  .house { grid-template-columns: 1fr; gap: 3.75rem; min-height: 0; padding: 6rem 1.25rem; background: linear-gradient(135deg, var(--cement), var(--plaster)); }
  .house-copy h2 { font-size: clamp(3.1rem, 14vw, 4.6rem); }
  .house-object { min-height: 0; aspect-ratio: 4 / 5; }
  .house-statement { grid-column: auto; font-size: 2.05rem; }

  .collection-world { padding: 5.8rem 1.25rem 1.25rem; }
  .collection-heading { display: block; padding: 0 0 4rem; }
  .collection-heading h2 { margin-top: 1rem; font-size: clamp(3.7rem, 17vw, 5rem); }
  .collection-heading > p:last-child { display: block; margin-top: 1.7rem; }
  .collections { grid-template-columns: 1fr; gap: .8rem; }
  .collection-card:nth-child(2) { transform: none; }
  .collection-image { aspect-ratio: 4 / 5; }
  .collection-image::after { opacity: 1; }
  .collection-action { opacity: 1; transform: none; }

  .commission { grid-template-columns: 1fr; min-height: 0; }
  .commission-image { min-height: 0; aspect-ratio: 4 / 5; }
  .commission-copy { padding: 5.5rem 1.25rem 6rem; }
  .commission-copy h2 { font-size: clamp(3.8rem, 17vw, 5.2rem); }

  .site-footer { padding: 4.5rem 1.25rem 2rem; }
  .footer-top { display: block; }
  .footer-wordmark { font-size: 15.5vw; letter-spacing: .065em; }
  .footer-top > p { margin-top: 1.75rem; }
  .footer-meta { grid-template-columns: 1fr auto; gap: 1rem; margin-top: 2.5rem; font-size: .5rem; }
  .footer-meta > a { justify-self: start; }
  .footer-meta > span { justify-self: end; }
}

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