:root {
  --ink: #211d19;
  --ink-soft: #4f4841;
  --ink-muted: #7d746b;
  --paper: #f5f0e8;
  --paper-light: #fbf8f2;
  --paper-deep: #e9e1d5;
  --sage: #8e9584;
  --taupe: #9b826e;
  --ivory: #eee7db;
  --oatmeal: #d6c8b2;
  --line: rgba(33, 29, 25, 0.16);
  --line-light: rgba(245, 240, 232, 0.2);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --page-pad: clamp(22px, 3.2vw, 52px);
  --section-space: clamp(82px, 9vw, 145px);
  --max-width: 1360px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.section-shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.display-heading {
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 84px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.display-heading em {
  font-weight: 400;
}

.announcement-bar {
  position: relative;
  z-index: 1100;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 7px var(--page-pad);
  color: rgba(245, 240, 232, 0.78);
  background: var(--ink);
}

.announcement-bar p {
  font-size: 9px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.announcement-bar span {
  margin-inline: 10px;
  color: var(--oatmeal);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--ink);
  background: rgba(251, 248, 242, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.header.header-scrolled {
  background: rgba(251, 248, 242, 0.94);
  border-bottom-color: var(--line);
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 1px;
  background: var(--taupe);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.header-inner {
  position: relative;
  width: min(100%, var(--max-width));
  min-height: 82px;
  margin-inline: auto;
  padding-inline: var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  width: max-content;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-main {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.055em;
}

.logo-sub {
  margin-top: 2px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.39em;
  text-transform: uppercase;
  transform: translateX(0.18em);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3vw, 54px);
}

.desktop-nav a,
.header-cta {
  position: relative;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.desktop-nav a::after,
.header-cta::after,
.text-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease-out);
}

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

.header-cta {
  justify-self: end;
}

.mobile-menu-btn,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  width: min(100%, var(--max-width));
  min-height: clamp(680px, calc(100svh - 112px), 820px);
  margin-inline: auto;
  padding: clamp(56px, 6vw, 86px) var(--page-pad) clamp(50px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  grid-template-rows: 1fr auto;
  gap: 42px clamp(48px, 5vw, 78px);
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: 'LIORA';
  position: absolute;
  top: 49%;
  left: -1vw;
  z-index: -1;
  color: rgba(33, 29, 25, 0.025);
  font-family: var(--serif);
  font-size: clamp(190px, 28vw, 520px);
  font-weight: 500;
  line-height: 0.6;
  letter-spacing: -0.08em;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  pointer-events: none;
  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='.5'/%3E%3C/svg%3E");
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
}

.hero-eyebrow {
  margin-bottom: clamp(25px, 4vw, 54px);
  color: var(--ink-muted);
}

.hero-title {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(58px, 6.1vw, 100px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.05em;
}

.title-line {
  display: block;
}

.title-line-indent {
  max-width: 680px;
  margin-left: clamp(14px, 2.2vw, 34px);
  white-space: normal;
}

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

.hero-intro {
  max-width: 420px;
  margin-top: clamp(28px, 3vw, 42px);
  margin-left: clamp(0px, 3vw, 44px);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 26px;
  margin-left: clamp(0px, 3vw, 44px);
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  min-height: 56px;
  padding: 15px 22px 15px 26px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.5s var(--ease-out), background 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.45s var(--ease-out);
}

.button:hover svg {
  transform: translateX(5px);
}

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

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

.text-link {
  position: relative;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.hero-visual {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
  align-self: center;
  transform: translate3d(0, var(--hero-shift, 0), 0);
  will-change: transform;
}

.hero-image-main {
  position: relative;
  width: 90%;
  margin-left: auto;
  aspect-ratio: 0.7;
  overflow: hidden;
  background: var(--paper-deep);
}

.hero-image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(33, 29, 25, 0.08));
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.015);
  transition: transform 1.4s var(--ease-out);
}

.hero-visual:hover .hero-image-main img {
  transform: scale(1.045);
}

.hero-image-detail {
  position: absolute;
  bottom: -5%;
  left: -2%;
  z-index: 2;
  width: 29%;
  padding: 7px;
  background: var(--paper-light);
  box-shadow: 0 28px 65px rgba(33, 29, 25, 0.12);
}

.hero-image-detail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-image-detail figcaption {
  padding: 10px 5px 5px;
  color: var(--ink-muted);
  font-size: 7px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-seal {
  position: absolute;
  top: 9%;
  right: -2%;
  z-index: 3;
  width: 98px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(245, 240, 232, 0.93);
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(33, 29, 25, 0.08);
}

.hero-seal svg {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  animation: sealRotate 24s linear infinite;
}

.hero-seal text {
  fill: currentColor;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.hero-seal span {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
}

@keyframes sealRotate {
  to { transform: rotate(360deg); }
}

.hero-aside {
  position: absolute;
  top: 21%;
  right: calc(var(--page-pad) + min(41vw, 650px));
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink-muted);
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
}

.hero-aside span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.hero-aside p {
  font-size: 8px;
  line-height: 1.7;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue {
  width: max-content;
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: scrollLine 2.2s var(--ease-smooth) infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.brand-ribbon {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-block: 1px solid var(--ink);
}

.brand-ribbon-track {
  width: max-content;
  padding: 17px 0;
  display: flex;
  align-items: center;
  animation: ribbonMove 32s linear infinite;
}

.brand-ribbon span {
  padding-inline: 34px;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.04em;
}

.brand-ribbon i {
  color: var(--taupe);
  font-size: 5px;
  font-style: normal;
}

@keyframes ribbonMove {
  to { transform: translateX(-50%); }
}

.philosophy {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  display: grid;
  grid-template-columns: minmax(100px, 0.35fr) minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: start;
}

.philosophy-index {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.philosophy-copy > .eyebrow {
  margin-bottom: 38px;
  color: var(--ink-muted);
}

.philosophy-copy .display-heading {
  max-width: 720px;
}

.philosophy-body {
  max-width: 620px;
  margin-top: clamp(38px, 5vw, 68px);
  margin-left: clamp(0px, 5vw, 78px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 60px);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
}

.philosophy-image {
  margin-top: clamp(130px, 13vw, 210px);
}

.philosophy-image img {
  width: 100%;
  aspect-ratio: 0.73;
  object-fit: cover;
  filter: saturate(0.88);
}

.philosophy-image figcaption {
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-muted);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.philosophy-quote {
  grid-column: 2 / 4;
  margin-top: clamp(40px, 6vw, 90px);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 64px);
  font-style: italic;
  line-height: 1;
  text-align: right;
}

.collection {
  padding-block: var(--section-space);
  background: var(--paper);
}

.collection-heading {
  max-width: 1240px;
  margin-bottom: clamp(52px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 60px;
  align-items: end;
}

.collection-heading .eyebrow {
  margin-bottom: 30px;
  color: var(--ink-muted);
}

.collection-lede {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
}

.collection-intro {
  max-width: 480px;
  justify-self: end;
}

.collection-preview-note {
  margin-top: 24px;
  padding-top: 15px;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.4;
}

.collection-grid {
  width: min(100%, 1240px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(20px, 4vw, 70px);
  row-gap: clamp(65px, 7vw, 105px);
  align-items: start;
}

.product-card:nth-child(even) {
  margin-top: clamp(50px, 6vw, 85px);
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 0.88;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-card-tall .product-image {
  aspect-ratio: 0.72;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(33, 29, 25, 0.16));
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.15s var(--ease-out), filter 1.15s var(--ease-out);
}

.product-card:hover .product-image img {
  transform: scale(1.035);
  filter: saturate(0.9);
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-view {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  padding-bottom: 4px;
  color: var(--paper-light);
  border-bottom: 1px solid rgba(251, 248, 242, 0.7);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out);
}

.product-card:hover .product-view {
  opacity: 1;
  transform: translateY(0);
}

.product-meta {
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.product-meta > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.product-meta > div:last-child {
  align-items: center;
}

.product-number {
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.product-meta h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.product-meta p {
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.swatch {
  width: 9px;
  height: 9px;
  display: inline-block;
  border: 1px solid rgba(33, 29, 25, 0.14);
  border-radius: 50%;
}

.swatch-mocha { background: #907866; }
.swatch-ivory { background: #e8dfd2; }
.swatch-sage { background: #98a08d; }
.swatch-oatmeal { background: #cfc0a9; }

.craft {
  width: calc(100% - (var(--page-pad) * 2));
  max-width: 1360px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  color: var(--paper);
  background: var(--ink);
}

.craft-image {
  position: relative;
  min-height: 740px;
  overflow: hidden;
}

.craft-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(33, 29, 25, 0.5));
}

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

.craft-image-label {
  position: absolute;
  right: 36px;
  bottom: 34px;
  left: 36px;
  z-index: 2;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(245, 240, 232, 0.76);
  border-top: 1px solid var(--line-light);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.craft-content {
  padding: clamp(64px, 6vw, 96px) clamp(34px, 5vw, 76px);
}

.craft-content > .eyebrow {
  margin-bottom: 38px;
  color: rgba(245, 240, 232, 0.54);
}

.craft-content .display-heading {
  max-width: 620px;
  font-size: clamp(46px, 4.7vw, 78px);
}

.craft-list {
  max-width: 760px;
  margin-top: clamp(52px, 6vw, 82px);
  border-top: 1px solid var(--line-light);
}

.craft-item {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line-light);
}

.craft-item > span {
  padding-top: 5px;
  color: rgba(245, 240, 232, 0.42);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.craft-item h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 400;
  line-height: 1.1;
}

.craft-item p {
  max-width: 560px;
  margin-top: 10px;
  color: rgba(245, 240, 232, 0.57);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
}

.editorial {
  padding-block: var(--section-space);
  overflow: hidden;
  background: var(--paper-light);
}

.editorial-heading {
  position: relative;
  margin-bottom: clamp(54px, 7vw, 100px);
}

.editorial-heading .eyebrow {
  margin-bottom: 30px;
  color: var(--ink-muted);
}

.editorial-note {
  position: absolute;
  right: var(--page-pad);
  bottom: 8px;
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-note span {
  margin-left: 10px;
  color: var(--ink);
  font-size: 15px;
}

.editorial-rail {
  padding: 0 var(--page-pad) 25px;
  display: flex;
  align-items: flex-end;
  gap: clamp(16px, 2.4vw, 38px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
}

.editorial-rail::-webkit-scrollbar {
  display: none;
}

.editorial-rail.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.editorial-shot {
  flex: 0 0 clamp(260px, 25vw, 430px);
  scroll-snap-align: start;
}

.editorial-shot-wide {
  flex-basis: clamp(340px, 35vw, 590px);
}

.editorial-shot img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 0.7s ease;
}

.editorial-shot-wide img {
  aspect-ratio: 1.15;
}

.editorial-shot-tall img {
  aspect-ratio: 0.68;
}

.editorial-shot:hover img {
  filter: saturate(1);
}

.editorial-shot figcaption {
  padding-top: 12px;
  color: var(--ink-muted);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.waitlist {
  width: calc(100% - (var(--page-pad) * 2));
  max-width: 1360px;
  min-height: 720px;
  margin: 0 auto var(--section-space);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  color: var(--paper);
  background: #29241f;
}

.waitlist-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.waitlist-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 29, 25, 0.02), rgba(33, 29, 25, 0.38));
}

.waitlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
}

.waitlist-image > p {
  position: absolute;
  bottom: 38px;
  left: 40px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.15;
}

.waitlist-content {
  padding: clamp(68px, 6vw, 94px) clamp(34px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.waitlist-heading {
  max-width: 720px;
}

.waitlist-heading .eyebrow {
  margin-bottom: 32px;
  color: rgba(245, 240, 232, 0.5);
}

.waitlist-heading .display-heading {
  font-size: clamp(46px, 4.8vw, 80px);
}

.waitlist-heading > p:last-child {
  max-width: 490px;
  margin-top: 30px;
  color: rgba(245, 240, 232, 0.58);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
}

.waitlist-form {
  max-width: 720px;
  margin-top: clamp(44px, 5vw, 68px);
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-field {
  position: relative;
  margin-bottom: 30px;
}

.form-field label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(245, 240, 232, 0.54);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.form-field label span {
  color: rgba(245, 240, 232, 0.29);
}

.form-field input,
.form-field select {
  width: 100%;
  height: 58px;
  padding: 0 2px;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.3);
  border-radius: 0;
  outline: none;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  transition: border-color 0.3s ease;
}

.form-field select {
  color-scheme: dark;
  cursor: pointer;
}

.form-field input::placeholder {
  color: rgba(245, 240, 232, 0.34);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--paper);
}

.form-field.has-error input {
  border-color: #d59d8f;
}

.button-light {
  min-width: 280px;
  margin-top: 10px;
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover {
  color: var(--paper);
  background: transparent;
  border-color: rgba(245, 240, 232, 0.55);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-privacy {
  margin-top: 18px;
  color: rgba(245, 240, 232, 0.35);
  font-size: 8px;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.form-privacy a {
  color: rgba(245, 240, 232, 0.65);
  border-bottom: 1px solid rgba(245, 240, 232, 0.25);
}

.form-error {
  display: none;
  max-width: 720px;
  margin-top: 20px;
  padding: 13px 16px;
  color: #edc4bb;
  border-left: 1px solid #bd7464;
  background: rgba(189, 116, 100, 0.08);
  font-size: 11px;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  max-width: 620px;
  padding-top: 35px;
  border-top: 1px solid var(--line-light);
}

.form-success.visible {
  display: block;
  animation: successIn 0.9s var(--ease-out) both;
}

.success-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
}

.form-success .eyebrow {
  color: rgba(245, 240, 232, 0.45);
}

.form-success h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.95;
}

.form-success > p:last-child {
  max-width: 450px;
  margin-top: 25px;
  color: rgba(245, 240, 232, 0.54);
  font-size: 12px;
}

@keyframes successIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.footer {
  padding: clamp(80px, 10vw, 145px) var(--page-pad) 32px;
  color: var(--paper);
  background: var(--ink);
}

.footer-top,
.footer-bottom {
  width: min(100%, calc(var(--max-width) - (var(--page-pad) * 2)));
  margin-inline: auto;
}

.footer-top {
  min-height: 240px;
  padding-bottom: clamp(70px, 9vw, 130px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.footer-logo {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.8;
}

.footer-logo span {
  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 94px);
  letter-spacing: 0.035em;
}

.footer-logo small {
  margin-top: 11px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  transform: translateX(0.25em);
}

.footer-top > p {
  justify-self: center;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 36px);
  font-style: italic;
  line-height: 1.15;
}

.footer-social {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-social span,
.footer-bottom {
  color: rgba(245, 240, 232, 0.42);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-social a {
  width: max-content;
  padding-bottom: 4px;
  color: var(--paper);
  border-bottom: 1px solid rgba(245, 240, 232, 0.35);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.footer-bottom {
  padding-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line-light);
}

.footer-bottom > div {
  justify-self: center;
  display: flex;
  gap: 26px;
}

.back-to-top {
  justify-self: end;
}

.mobile-sticky-cta {
  display: none;
}

.visually-hidden-form {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1s var(--ease-out) var(--reveal-delay, 0ms),
    transform 1s var(--ease-out) var(--reveal-delay, 0ms);
}

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

.js .hero-visual.reveal {
  transform: translateY(36px) scale(0.985);
}

.js .hero-visual.reveal.is-visible {
  transform: translateY(var(--hero-shift, 0)) scale(1);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
    gap: 45px;
  }

  .hero-aside {
    display: none;
  }

  .hero-title {
    font-size: clamp(56px, 7vw, 84px);
  }

  .hero-seal {
    right: -3%;
    width: 100px;
  }

  .philosophy {
    grid-template-columns: 100px minmax(0, 1fr) minmax(260px, 0.5fr);
    gap: 36px;
  }

  .craft-image {
    min-height: 680px;
  }

  .waitlist {
    grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1.25fr);
  }
}

@media (max-width: 900px) {
  :root {
    --page-pad: 24px;
  }

  .header {
    background: rgba(251, 248, 242, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .mobile-menu-btn {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1002;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    color: inherit;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .mobile-menu-btn span {
    width: 23px;
    height: 1px;
    display: block;
    background: var(--ink);
    opacity: 1;
    transition: transform 0.5s var(--ease-out);
  }

  .nav-open .mobile-menu-btn {
    color: var(--paper);
  }

  .nav-open .mobile-menu-btn span:first-child {
    background: var(--paper);
    transform: translateY(4px) rotate(45deg);
  }

  .nav-open .mobile-menu-btn span:last-child {
    background: var(--paper);
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: block;
    color: var(--paper);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0.5s;
  }

  .nav-open .mobile-nav {
    visibility: visible;
    opacity: 1;
  }

  .nav-open .header {
    color: var(--paper);
    background: var(--ink);
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-nav-inner {
    min-height: 100%;
    padding: 110px var(--page-pad) 45px;
    display: flex;
    flex-direction: column;
  }

  .mobile-nav-kicker {
    color: rgba(245, 240, 232, 0.38);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .mobile-nav nav {
    margin-block: auto;
    display: flex;
    flex-direction: column;
  }

  .mobile-nav nav a {
    padding: 13px 0;
    display: flex;
    align-items: baseline;
    gap: 18px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: clamp(38px, 9vw, 68px);
    line-height: 1;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.7s var(--ease-out);
  }

  .nav-open .mobile-nav nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-open .mobile-nav nav a:nth-child(1) { transition-delay: 0.12s; }
  .nav-open .mobile-nav nav a:nth-child(2) { transition-delay: 0.18s; }
  .nav-open .mobile-nav nav a:nth-child(3) { transition-delay: 0.24s; }
  .nav-open .mobile-nav nav a:nth-child(4) { transition-delay: 0.3s; }

  .mobile-nav nav a span {
    color: rgba(245, 240, 232, 0.32);
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.14em;
  }

  .mobile-nav-foot {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: rgba(245, 240, 232, 0.45);
    border-top: 1px solid var(--line-light);
    font-size: 8px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 46px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-title {
    max-width: 670px;
    font-size: clamp(56px, 9.5vw, 84px);
  }

  .hero-intro,
  .hero-actions {
    margin-left: clamp(0px, 4vw, 42px);
  }

  .hero-visual {
    width: min(88%, 630px);
    justify-self: end;
  }

  .hero-seal {
    right: -5%;
  }

  .scroll-cue {
    grid-row: auto;
  }

  .philosophy {
    grid-template-columns: 70px 1fr;
  }

  .philosophy-image {
    grid-column: 2;
    width: 70%;
    margin-top: 70px;
    justify-self: end;
  }

  .philosophy-quote {
    grid-column: 1 / 3;
  }

  .collection-heading {
    grid-template-columns: 1fr;
  }

  .collection-lede {
    justify-self: start;
  }

  .collection-intro {
    justify-self: start;
  }

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

  .craft-image {
    min-height: 58svh;
    max-height: 620px;
  }

  .waitlist {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .waitlist-image {
    min-height: 56svh;
    max-height: 620px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 65px 30px;
  }

  .footer-social {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 18px;
    --section-space: 80px;
  }

  body {
    font-size: 13px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .announcement-bar {
    min-height: 28px;
  }

  .announcement-bar p {
    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .header-inner {
    min-height: 66px;
  }

  .logo-main {
    font-size: 26px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 58px;
    gap: 36px;
  }

  .hero::before {
    top: 33%;
    font-size: 48vw;
  }

  .hero-eyebrow {
    margin-bottom: 24px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(50px, 14.5vw, 64px);
    line-height: 0.88;
  }

  .title-line-indent {
    margin-left: 0;
    white-space: normal;
  }

  .hero-intro {
    max-width: 340px;
    margin-top: 24px;
    margin-left: 0;
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 22px;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-image-main {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 0.86;
  }

  .hero-image-detail {
    display: none;
  }

  .hero-seal {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .brand-ribbon-track {
    padding-block: 13px;
  }

  .brand-ribbon span {
    padding-inline: 23px;
    font-size: 14px;
  }

  .display-heading {
    font-size: clamp(42px, 11.5vw, 56px);
    line-height: 0.96;
  }

  .philosophy {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .philosophy-index {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .philosophy-copy > .eyebrow {
    margin-bottom: 25px;
  }

  .philosophy-body {
    margin-top: 30px;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    font-size: 12px;
  }

  .philosophy-image {
    grid-column: 1;
    width: 78%;
    margin-top: 15px;
  }

  .philosophy-quote {
    grid-column: 1;
    margin-top: 15px;
    font-size: 36px;
  }

  .collection-heading {
    margin-bottom: 46px;
    gap: 30px;
  }

  .collection-heading .eyebrow {
    margin-bottom: 20px;
  }

  .collection-lede {
    font-size: 12px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    row-gap: 56px;
  }

  .product-card:nth-child(even) {
    margin-top: 0;
  }

  .product-image,
  .product-card-tall .product-image {
    aspect-ratio: 0.86;
  }

  .product-view {
    opacity: 1;
    transform: none;
  }

  .product-meta {
    padding-top: 15px;
  }

  .product-meta h3 {
    font-size: 27px;
  }

  .product-meta > div {
    gap: 9px;
  }

  .product-meta p {
    font-size: 6px;
  }

  .craft-image {
    min-height: 52svh;
    max-height: 480px;
  }

  .craft-image-label {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 6px;
  }

  .craft-content {
    padding: 68px var(--page-pad);
  }

  .craft-content > .eyebrow {
    margin-bottom: 25px;
  }

  .craft-content .display-heading {
    font-size: 46px;
  }

  .craft-list {
    margin-top: 46px;
  }

  .craft-item {
    padding-block: 20px;
    grid-template-columns: 32px 1fr;
  }

  .craft-item h3 {
    font-size: 24px;
  }

  .editorial-heading {
    margin-bottom: 40px;
  }

  .editorial-heading .eyebrow {
    margin-bottom: 20px;
  }

  .editorial-note {
    position: static;
    margin-top: 25px;
  }

  .editorial-rail {
    gap: 13px;
  }

  .editorial-shot,
  .editorial-shot-wide {
    flex-basis: 72vw;
  }

  .waitlist-image {
    min-height: 50svh;
    max-height: 480px;
  }

  .waitlist-image > p {
    bottom: 24px;
    left: 20px;
    font-size: 18px;
  }

  .waitlist-content {
    padding: 68px var(--page-pad) 78px;
  }

  .waitlist-heading .display-heading {
    font-size: 48px;
  }

  .waitlist-form {
    margin-top: 44px;
  }

  .form-split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .button-light {
    min-width: 0;
  }

  .footer {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .footer-top {
    min-height: 0;
    padding-bottom: 75px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-logo span {
    font-size: 67px;
  }

  .footer-top > p,
  .footer-social {
    justify-self: start;
  }

  .footer-social {
    grid-column: 1;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 22px;
    font-size: 6px;
  }

  .footer-bottom > div {
    justify-self: end;
  }

  .back-to-top {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 900;
    min-height: 52px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--paper-light);
    background: rgba(33, 29, 25, 0.94);
    border: 1px solid rgba(245, 240, 232, 0.2);
    box-shadow: 0 16px 45px rgba(33, 29, 25, 0.22);
    backdrop-filter: none;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: opacity 0.4s ease, transform 0.5s var(--ease-out);
  }

  .mobile-sticky-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
  }
}

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

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

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

/* Legal page */
.legal-page {
  min-height: 100vh;
  background: var(--paper-light);
}

.legal-header {
  min-height: 100px;
  padding: 20px var(--page-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.legal-return {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-return span {
  margin-left: 8px;
}

.legal-main {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: clamp(90px, 12vw, 180px) var(--page-pad);
  display: grid;
  grid-template-columns: 180px minmax(0, 760px);
  gap: clamp(50px, 8vw, 130px);
  justify-content: center;
}

.legal-aside {
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-aside p {
  margin-top: 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.legal-content > .eyebrow {
  margin-bottom: 26px;
  color: var(--ink-muted);
}

.legal-content > h1 {
  font-family: var(--serif);
  font-size: clamp(66px, 9vw, 124px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.legal-updated {
  margin-top: 23px;
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-intro {
  margin: clamp(60px, 8vw, 105px) 0;
  padding: 32px 0 32px clamp(20px, 5vw, 75px);
  border-left: 1px solid var(--taupe);
}

.legal-intro p {
  max-width: 650px;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.25;
}

.legal-content section {
  padding: 35px 0;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-number {
  padding-top: 6px;
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.legal-content h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.legal-content section p {
  max-width: 620px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
}

.legal-content section a {
  color: var(--ink);
  border-bottom: 1px solid var(--taupe);
}

.legal-footer {
  padding: 28px var(--page-pad);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(245, 240, 232, 0.48);
  background: var(--ink);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-footer a {
  color: var(--paper);
}

@media (max-width: 700px) {
  .legal-header {
    min-height: 80px;
  }

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

  .legal-aside {
    padding-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--line);
  }

  .legal-aside p {
    margin-top: 0;
    font-size: 17px;
    text-align: right;
  }

  .legal-content > h1 {
    font-size: 68px;
  }

  .legal-content section {
    grid-template-columns: 35px 1fr;
  }

  .legal-footer {
    flex-direction: column;
  }
}
