:root {
  --ink: #0b0a0a;
  --ink-soft: #171414;
  --paper: #eee9df;
  --paper-deep: #dcd3c4;
  --blood: #8d1724;
  --blood-deep: #5f0d17;
  --gold: #b59a62;
  --line-dark: rgba(11, 10, 10, 0.2);
  --line-light: rgba(238, 233, 223, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --page-pad: clamp(22px, 4vw, 68px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  color: var(--paper);
  background: var(--blood);
}

button,
input {
  font: inherit;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.04;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 2px;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blood);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 24px var(--page-pad);
  border-bottom: 1px solid var(--line-light);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  line-height: 0.86;
  letter-spacing: 0.12em;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.wordmark small {
  margin-top: 7px;
  letter-spacing: 0.55em;
  font-family: var(--sans);
  font-size: 6px;
  font-weight: 500;
}

.site-header nav {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
}

.site-header nav a,
.nav-cta {
  position: relative;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
}

.site-header nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
}

.site-header nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  min-height: 100svh;
  padding: 118px var(--page-pad) 52px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 23, 36, 0.21), transparent 68%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: clamp(28px, 6vw, 110px);
}

.eyebrow,
.hero-meta,
.visual-caption {
  display: flex;
  justify-content: space-between;
  width: 100%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 500;
}

.eyebrow {
  margin-bottom: clamp(28px, 5vh, 62px);
  color: rgba(238, 233, 223, 0.68);
}

.hero-title {
  position: relative;
  left: -0.015em;
  width: 100%;
  font-family: var(--serif);
  font-size: clamp(88px, 12.8vw, 214px);
  font-weight: 400;
  line-height: 0.62;
  letter-spacing: -0.07em;
}

.hero-title::after {
  content: "";
  position: absolute;
  top: 51%;
  left: 7%;
  width: 67%;
  height: 2px;
  background: var(--blood);
  transform: rotate(-2deg);
}

.title-line {
  margin: 0;
}

.title-line--offset {
  padding-left: 17%;
  color: var(--paper-deep);
}

.title-line em {
  font-weight: 400;
}

.hero-intro {
  max-width: 475px;
  margin: clamp(56px, 9vh, 110px) 0 0;
  color: rgba(238, 233, 223, 0.76);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 210px;
  padding: 17px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  transition:
    color 250ms ease,
    background 250ms ease,
    border-color 250ms ease;
}

.button--light {
  color: var(--ink);
  background: var(--paper);
}

.button--light:hover {
  color: var(--paper);
  background: var(--blood);
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--gold);
}

.button--ghost {
  color: var(--paper);
  border-color: rgba(238, 233, 223, 0.35);
  background: transparent;
}

.button--ghost:hover {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.text-link {
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
}

.hero-meta {
  margin-top: auto;
  padding-top: 36px;
  color: rgba(238, 233, 223, 0.5);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
  overflow: hidden;
  background: #e8e5e0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(181, 154, 98, 0.35);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual:hover > img {
  transform: scale(1.018);
}

.visual-number {
  position: absolute;
  top: 24px;
  right: 25px;
  z-index: 3;
  color: rgba(11, 10, 10, 0.15);
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 160px);
  line-height: 1;
}

.hero-collage {
  position: absolute;
  inset: 0;
  background: var(--ink-soft);
}

.hero-collage figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 500ms ease;
}

.hero-collage figure:hover img {
  transform: scale(1.025);
}

.hero-collage figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 9px 10px;
  color: var(--paper);
  background: rgba(11, 10, 10, 0.74);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 7px;
  backdrop-filter: blur(8px);
}

.hero-collage__atelier {
  inset: 0 34% 0 0;
}

.hero-collage__atelier img {
  filter: contrast(1.08) saturate(0.9);
}

.hero-collage__amor {
  top: 18%;
  right: 0;
  bottom: 15%;
  width: 43%;
  border: 12px solid var(--ink-soft);
  border-right: 0;
}

.hero-collage__amor img {
  filter: contrast(1.08);
}

.visual-caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 17px 20px;
  color: var(--ink);
  background: rgba(238, 233, 223, 0.87);
  backdrop-filter: blur(10px);
}

.scroll-cue {
  position: absolute;
  bottom: 42px;
  left: calc(50% - 10px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(90deg);
  transform-origin: left center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 8px;
}

.scroll-cue i {
  display: block;
  width: 46px;
  height: 1px;
  background: var(--paper);
  animation: pulse-line 1.8s ease-in-out infinite;
}

@keyframes pulse-line {
  50% {
    transform: scaleX(0.55);
    opacity: 0.45;
  }
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.collection {
  padding: clamp(90px, 12vw, 180px) var(--page-pad) clamp(90px, 10vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 0.75fr;
  align-items: end;
  gap: 30px;
  margin-bottom: clamp(60px, 8vw, 120px);
}

.kicker {
  margin: 0;
  color: var(--blood);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
}

.section-heading h2,
.manifesto h2,
.craft h2,
.waitlist h2,
.product-modal h2,
.privacy-modal h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.craft-copy > p,
.waitlist-copy > p:last-child {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 42px);
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 90px);
  max-width: 1380px;
  margin: 0 auto;
}

.direction-card--offset {
  transform: translateY(90px);
}

.direction-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #e3ded5;
  cursor: zoom-in;
}

.direction-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(11, 10, 10, 0.13);
  pointer-events: none;
}

.direction-image img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  transition:
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 500ms ease;
}

.direction-image--atelier img {
  object-position: center 40%;
  filter: contrast(1.05) saturate(0.86);
}

.direction-image > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 11px 14px;
  color: var(--paper);
  background: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.direction-image:hover img {
  transform: scale(1.025);
}

.direction-image:hover > span {
  opacity: 1;
  transform: translateY(0);
}

.direction-info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.direction-type {
  margin: 0 0 17px;
  color: var(--blood);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 600;
}

.direction-info h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 0.95;
}

.direction-info div > p:last-child {
  max-width: 490px;
  margin: 0;
  color: rgba(11, 10, 10, 0.62);
  font-size: 11px;
  line-height: 1.7;
}

.direction-index {
  color: rgba(11, 10, 10, 0.48);
  letter-spacing: 0.1em;
  font-size: 8px;
}

.product-card--raised {
  transform: translateY(-42px);
}

.product-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #e6e2dd;
  cursor: zoom-in;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(11, 10, 10, 0.12);
  pointer-events: none;
}

.product-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-image > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: var(--paper);
  background: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.product-image:hover img {
  transform: scale(1.035);
}

.product-image:hover > span {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.product-info h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.product-info p,
.product-info > span {
  margin: 0;
  color: rgba(11, 10, 10, 0.58);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 500;
}

.collection-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(52px, 7vw, 100px);
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 11px;
}

.collection-note p {
  margin: 0;
}

.collection-note p span {
  margin-right: 20px;
  color: var(--blood);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 600;
}

.collection-note a {
  font-weight: 500;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  min-height: 100vh;
}

.manifesto-art {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background: var(--paper);
}

.manifesto-art::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--line-light);
}

.manifesto-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08);
}

.art-label {
  position: absolute;
  right: 24px;
  bottom: 26px;
  color: var(--ink);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 8px;
  writing-mode: vertical-rl;
}

.manifesto-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 160px) var(--page-pad);
}

.manifesto-copy .kicker {
  margin-bottom: 28px;
}

.manifesto-copy h2 {
  max-width: 820px;
}

.manifesto-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px clamp(30px, 4vw, 70px);
  margin-top: clamp(50px, 7vw, 90px);
}

.manifesto-columns p {
  margin: 0;
  color: rgba(238, 233, 223, 0.67);
  font-size: 12px;
  line-height: 1.75;
}

.manifesto blockquote {
  margin: clamp(60px, 8vw, 110px) 0 0;
  padding: 28px 0 0 12%;
  border-top: 1px solid var(--line-light);
  color: var(--paper-deep);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 40px);
  font-style: italic;
  line-height: 1.18;
}

.manifesto blockquote.manifesto-statement {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(34px, 5vw, 58px) clamp(12px, 4vw, 54px);
  border-top: 1px solid rgba(207, 168, 92, 0.42);
  border-bottom: 1px solid rgba(207, 168, 92, 0.28);
  background:
    linear-gradient(90deg, transparent, rgba(207, 168, 92, 0.05), transparent);
  text-align: center;
  text-wrap: balance;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.06;
}

.craft {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
  padding: clamp(90px, 12vw, 180px) var(--page-pad);
}

.craft-copy {
  max-width: 760px;
}

.craft-copy .kicker {
  margin-bottom: 30px;
}

.craft-copy h2 {
  margin-bottom: 40px;
}

.craft-copy > p {
  max-width: 570px;
}

.craft-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 68px;
}

.craft-facts div {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.craft-facts strong {
  color: var(--blood);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.craft-facts span {
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 600;
}

.craft-image {
  position: relative;
  margin: 0;
}

.craft-image::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 0;
  width: 45%;
  height: 45%;
  border-top: 1px solid var(--blood);
  border-right: 1px solid var(--blood);
}

.craft-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}

.craft-image figcaption {
  position: relative;
  z-index: 1;
  padding-top: 15px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 500;
}

.process-gallery {
  padding: clamp(90px, 12vw, 180px) var(--page-pad);
  border-top: 1px solid var(--line-dark);
}

.process-gallery .section-heading {
  margin-bottom: clamp(56px, 7vw, 96px);
}

.process-grid {
  column-count: 4;
  column-gap: clamp(14px, 2vw, 26px);
  max-width: 1500px;
  margin: 0 auto;
}

.process-shot {
  position: relative;
  break-inside: avoid;
  margin: 0 0 clamp(14px, 2vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(20, 18, 16, 0.14);
  background: rgba(255, 252, 246, 0.52);
}

.process-shot img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.72) contrast(1.05);
  transform: scale(1);
  transition:
    filter 700ms ease,
    transform 700ms ease;
}

.process-shot:hover img {
  filter: saturate(0.86) contrast(1.08);
  transform: scale(1.015);
}

.process-shot figcaption {
  padding: 14px 16px 16px;
  color: rgba(20, 18, 16, 0.62);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.45;
}

.waitlist {
  position: relative;
  min-height: 78vh;
  padding: clamp(90px, 12vw, 180px) var(--page-pad);
  overflow: hidden;
  background:
    linear-gradient(rgba(95, 13, 23, 0.86), rgba(95, 13, 23, 0.9)),
    url("assets/brand-world.webp?v=2") center / cover;
}

.waitlist::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(238, 233, 223, 0.2);
  pointer-events: none;
}

.waitlist-mark {
  position: absolute;
  top: 50%;
  left: 5%;
  color: rgba(238, 233, 223, 0.035);
  font-family: var(--serif);
  font-size: min(55vw, 820px);
  line-height: 0.8;
  transform: translateY(-50%);
  pointer-events: none;
}

.waitlist-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.65fr);
  align-items: end;
  gap: clamp(60px, 10vw, 170px);
  max-width: 1500px;
  margin: 0 auto;
}

.waitlist-copy .kicker {
  margin-bottom: 30px;
  color: var(--gold);
}

.waitlist-copy h2 {
  font-size: clamp(58px, 8vw, 124px);
}

.waitlist-copy > p:last-child {
  max-width: 500px;
  margin-top: 38px;
  color: rgba(238, 233, 223, 0.72);
}

.waitlist-form {
  padding: clamp(28px, 4vw, 54px);
  color: var(--paper);
  background: rgba(11, 10, 10, 0.91);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.22);
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.email-field {
  display: block;
}

.direction-choice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 34px;
  padding: 0;
  border: 0;
}

.direction-choice legend {
  width: 100%;
  margin-bottom: 13px;
  color: rgba(238, 233, 223, 0.55);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 600;
}

.direction-choice label {
  position: relative;
  display: block;
  cursor: pointer;
}

.direction-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.direction-choice label > span {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 12px;
  border: 1px solid rgba(238, 233, 223, 0.22);
  transition:
    border-color 200ms ease,
    color 200ms ease,
    background 200ms ease;
}

.direction-choice strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.direction-choice small {
  color: rgba(238, 233, 223, 0.46);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.direction-choice input:checked + span {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.direction-choice input:checked + span small {
  color: rgba(11, 10, 10, 0.64);
}

.direction-choice input:focus-visible + span {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

.email-field > span {
  display: block;
  margin-bottom: 12px;
  color: rgba(238, 233, 223, 0.55);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 600;
}

.email-field input {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(238, 233, 223, 0.35);
  border-radius: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
  font-family: var(--serif);
  font-size: 26px;
  transition: border-color 200ms ease;
}

.email-field input:focus {
  border-color: var(--gold);
}

.email-field input::placeholder {
  color: rgba(238, 233, 223, 0.25);
}

.email-field > small {
  display: block;
  margin-top: 9px;
  color: rgba(238, 233, 223, 0.4);
  font-size: 8px;
  letter-spacing: 0.06em;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  margin: 25px 0 30px;
  color: rgba(238, 233, 223, 0.55);
  font-size: 9px;
  line-height: 1.6;
}

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

.consent-field button,
.footer-meta button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: none;
  cursor: pointer;
}

.submit-button {
  width: 100%;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  min-height: 1.5em;
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 10px;
  line-height: 1.5;
}

footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: 55px var(--page-pad);
  border-top: 1px solid var(--line-light);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  width: 86px;
  height: 52px;
  object-fit: contain;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.footer-brand span {
  color: rgba(238, 233, 223, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 7px;
}

.footer-meta {
  display: flex;
  gap: 28px;
  color: rgba(238, 233, 223, 0.48);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 8px;
}

dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.55);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(7px);
}

.product-modal {
  grid-template-columns: minmax(340px, 1fr) minmax(340px, 0.78fr);
  width: min(1050px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.product-modal[open] {
  display: grid;
}

.modal-image {
  min-height: 650px;
  background: #e8e5e0;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 80px);
}

.modal-copy .kicker {
  margin-bottom: 22px;
}

.product-modal h2,
.privacy-modal h2 {
  font-size: clamp(50px, 6vw, 84px);
}

.modal-color {
  margin: 8px 0 40px;
  color: var(--blood);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
}

.modal-copy > p:not(.kicker, .modal-color),
.privacy-modal p {
  font-size: 12px;
  line-height: 1.7;
}

.modal-copy ul {
  margin: 24px 0 36px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
  font-size: 10px;
  line-height: 2;
}

.modal-copy li::before {
  content: "—";
  margin-right: 10px;
  color: var(--blood);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 17px;
  z-index: 5;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1;
}

.privacy-modal {
  width: min(580px, calc(100vw - 40px));
  padding: clamp(40px, 7vw, 76px);
}

.privacy-modal .kicker {
  margin-bottom: 20px;
}

.privacy-modal h2 {
  margin-bottom: 32px;
}

.privacy-modal p {
  color: rgba(11, 10, 10, 0.68);
}

.privacy-modal .text-link {
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 42px);
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 46px);
  align-items: end;
  width: min(980px, calc(100vw - 32px));
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(207, 168, 92, 0.34);
  background:
    linear-gradient(135deg, rgba(11, 10, 10, 0.96), rgba(42, 10, 14, 0.96)),
    var(--ink);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  color: var(--paper);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner .kicker {
  margin-bottom: 14px;
  color: var(--gold);
}

.cookie-banner h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 44px);
}

.cookie-banner p:not(.kicker) {
  max-width: 660px;
  color: rgba(238, 233, 223, 0.72);
  font-size: 12px;
  line-height: 1.65;
}

.cookie-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  min-width: min(270px, 100%);
}

.cookie-actions .button {
  width: 100%;
}

.cookie-actions .text-link {
  align-self: flex-start;
  color: rgba(238, 233, 223, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms ease,
    transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  }

  .hero-title {
    font-size: clamp(80px, 13vw, 145px);
  }

  .section-heading {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .manifesto {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .craft {
    gap: 60px;
  }

  .process-grid {
    column-count: 3;
  }
}

@media (max-width: 800px) {
  .site-header {
    position: absolute;
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .nav-cta {
    font-size: 8px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 70px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .eyebrow {
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: clamp(86px, 27vw, 150px);
  }

  .hero-intro {
    max-width: 420px;
    margin-top: 64px;
  }

  .hero-meta {
    margin: 50px 0 24px;
  }

  .hero-visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-collage__atelier {
    inset: 0 28% 0 0;
  }

  .hero-collage__amor {
    top: 14%;
    bottom: 12%;
    width: 42%;
    border-width: 8px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading .kicker {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    margin-bottom: 28px;
  }

  .section-heading > p:last-child {
    max-width: 440px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .direction-grid {
    grid-template-columns: 1fr;
    gap: 74px;
  }

  .direction-card--offset {
    transform: none;
  }

  .direction-image > span {
    opacity: 1;
    transform: none;
  }

  .product-card--raised {
    transform: none;
  }

  .product-image > span {
    opacity: 1;
    transform: none;
  }

  .collection-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .manifesto {
    display: flex;
    flex-direction: column;
  }

  .manifesto-art {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

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

  .manifesto blockquote {
    padding-left: 0;
  }

  .manifesto blockquote.manifesto-statement {
    text-align: left;
  }

  .craft {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .craft-image {
    width: 75%;
    margin-left: auto;
  }

  .process-grid {
    column-count: 2;
  }

  .waitlist-inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .cookie-actions {
    min-width: 0;
  }

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

  .product-modal[open] {
    display: block;
  }

  .modal-image {
    min-height: 0;
    aspect-ratio: 4 / 4.3;
  }
}

@media (max-width: 520px) {
  :root {
    --page-pad: 20px;
  }

  .wordmark {
    font-size: 15px;
  }

  .hero-title {
    font-size: min(27vw, 122px);
  }

  .hero-intro {
    font-size: 20px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    gap: 10px;
    font-size: 7px;
  }

  .hero-collage__atelier {
    inset: 0 18% 0 0;
  }

  .hero-collage__amor {
    top: 12%;
    bottom: 10%;
    width: 46%;
  }

  .section-heading h2,
  .manifesto h2,
  .craft h2,
  .process-gallery h2,
  .waitlist h2 {
    font-size: 50px;
  }

  .product-info h3 {
    font-size: 24px;
  }

  .collection-note p span {
    display: block;
    margin-bottom: 8px;
  }

  .manifesto-copy {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .craft-facts {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .craft-facts div {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .craft-image {
    width: calc(100% - 20px);
  }

  .process-grid {
    column-count: 1;
  }

  .waitlist {
    padding-right: 12px;
    padding-left: 12px;
  }

  .waitlist::before {
    inset: 8px;
  }

  .waitlist-copy {
    padding: 0 8px;
  }

  .waitlist-form {
    padding: 28px 22px;
  }

  .direction-choice {
    grid-template-columns: 1fr;
  }

  .direction-choice label > span {
    min-height: 64px;
  }

  .footer-meta {
    flex-wrap: wrap;
  }
}
