:root {
  --black: #070907;
  --ink: #11130f;
  --charcoal: #151915;
  --forest: #142217;
  --moss: #6d7d54;
  --bronze: #b87943;
  --copper: #d09757;
  --bone: #f1eadb;
  --sand: #d4c2a4;
  --muted: rgba(241, 234, 219, 0.68);
  --dark-muted: rgba(17, 19, 15, 0.64);
  --line: rgba(241, 234, 219, 0.16);
  --dark-line: rgba(17, 19, 15, 0.15);
  --display: "Constantia", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --text: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--bone);
  font-family: var(--text);
  line-height: 1.55;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

::selection {
  background: var(--copper);
  color: var(--black);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.2) 0 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.18) 0 1px, transparent 1px 4px);
  background-size: 3px 3px, 100% 3px, 4px 100%;
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  width: 100%;
  padding: 22px clamp(18px, 4.8vw, 72px);
  transition:
    padding 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

.site-header.is-solid {
  border-bottom: 1px solid rgba(241, 234, 219, 0.11);
  background: rgba(6, 8, 6, 0.78);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand__seal {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(241, 234, 219, 0.35);
  background: rgba(241, 234, 219, 0.06);
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.05em;
}

.brand__name {
  display: grid;
  gap: 2px;
}

.brand__name strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}

.brand__name small {
  color: rgba(241, 234, 219, 0.55);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.desktop-nav a {
  position: relative;
  color: rgba(241, 234, 219, 0.68);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--moss), var(--copper));
  transition: width 0.28s var(--ease);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(241, 234, 219, 0.22);
  padding: 0 16px;
  background: rgba(241, 234, 219, 0.06);
  color: var(--bone);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(241, 234, 219, 0.24);
  background: rgba(241, 234, 219, 0.05);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.28s var(--ease);
}

.menu-button.is-open span:first-child {
  transform: translateY(3.5px) rotate(42deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-42deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 100px 24px 40px;
  background:
    radial-gradient(circle at 52% 16%, rgba(184, 121, 67, 0.18), transparent 40%),
    rgba(6, 8, 6, 0.97);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  border-bottom: 1px solid rgba(241, 234, 219, 0.16);
  padding-bottom: 16px;
  font-family: var(--display);
  font-size: clamp(40px, 13vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: -2.5%;
  z-index: 0;
  transform: scale(1.045);
  transition: transform 0.16s linear;
}

.hero__clip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.84) contrast(1.08) brightness(0.72);
  transform: scale(1.02);
  transition:
    opacity 1.2s var(--ease),
    transform 7s linear,
    filter 1.2s var(--ease);
}

.hero__clip.is-active {
  opacity: 1;
  transform: scale(1.075);
  filter: saturate(0.82) contrast(1.1) brightness(0.74);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.9), rgba(7, 9, 7, 0.54) 38%, rgba(7, 9, 7, 0.12) 58%, rgba(7, 9, 7, 0.72)),
    linear-gradient(180deg, rgba(7, 9, 7, 0.86), rgba(7, 9, 7, 0.08) 24%, rgba(7, 9, 7, 0.18) 58%, rgba(7, 9, 7, 0.96)),
    radial-gradient(circle at 68% 38%, transparent 0 26%, rgba(7, 9, 7, 0.42) 72%);
}

.hero__scanline {
  position: absolute;
  inset: auto -10% 15% -10%;
  z-index: 2;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(232, 188, 117, 0.16), transparent);
  filter: blur(22px);
  transform: rotate(-7deg);
  animation: heroLight 7.5s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(900px, calc(100% - 40px));
  min-height: 100svh;
  margin-left: clamp(20px, 6vw, 92px);
  padding: 126px 0 170px;
}

body.is-copy-switching .hero__content h1,
body.is-copy-switching .hero__content p {
  animation: copyLift 0.72s var(--ease);
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(241, 234, 219, 0.66);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: rgba(17, 19, 15, 0.58);
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8.5vw, 138px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-wrap: balance;
}

.hero p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 30px 0 0;
  color: rgba(241, 234, 219, 0.76);
  font-size: clamp(15px, 1.2vw, 19px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid rgba(241, 234, 219, 0.28);
  padding: 0 18px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--bone);
  color: var(--ink);
}

.button--secondary {
  background: rgba(241, 234, 219, 0.06);
  color: var(--bone);
  backdrop-filter: blur(14px);
}

.film-panel {
  position: absolute;
  right: clamp(18px, 4.5vw, 72px);
  bottom: clamp(30px, 5vw, 72px);
  z-index: 5;
  width: min(590px, calc(100% - 36px));
  border: 1px solid rgba(241, 234, 219, 0.14);
  padding: 18px;
  background: rgba(7, 9, 7, 0.38);
  backdrop-filter: blur(18px);
}

.film-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  color: rgba(241, 234, 219, 0.74);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-panel__top span:first-child {
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: none;
}

.film-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(241, 234, 219, 0.18);
  transform-origin: left;
}

.film-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--moss), var(--copper), var(--bone));
  box-shadow: 0 0 28px rgba(208, 151, 87, 0.38);
  transform: scaleX(0);
  transform-origin: left;
}

.chapter-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.chapter-nav button {
  border: 1px solid rgba(241, 234, 219, 0.12);
  padding: 11px 10px;
  background: rgba(241, 234, 219, 0.045);
  color: rgba(241, 234, 219, 0.52);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.chapter-nav button span {
  display: block;
  margin-bottom: 4px;
  color: var(--copper);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.chapter-nav button.is-active {
  border-color: rgba(241, 234, 219, 0.32);
  background: rgba(241, 234, 219, 0.11);
  color: var(--bone);
  transform: translateY(-2px);
}

.scroll-cue {
  position: absolute;
  left: clamp(20px, 6vw, 92px);
  bottom: clamp(30px, 5vw, 72px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(241, 234, 219, 0.68);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(241, 234, 219, 0.3);
}

.scroll-cue span::after {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--bone);
  transform: translateX(-50%);
  animation: cueDrop 1.55s ease-in-out infinite;
}

.manifest,
.origin-grid,
.collections,
.craft,
.proof,
.contact {
  position: relative;
  z-index: 2;
}

.manifest {
  display: grid;
  grid-template-columns: 0.18fr minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 92px);
  padding: clamp(84px, 10vw, 158px) clamp(20px, 6vw, 96px);
  background:
    radial-gradient(circle at 16% 12%, rgba(184, 121, 67, 0.14), transparent 34%),
    var(--bone);
  color: var(--ink);
}

.manifest__label {
  color: rgba(17, 19, 15, 0.22);
  font-family: var(--display);
  font-size: clamp(78px, 9vw, 140px);
  line-height: 0.82;
}

.manifest h2,
.collections h2,
.craft h2,
.proof h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 6.6vw, 100px);
  font-weight: 500;
  letter-spacing: -0.068em;
  line-height: 0.9;
  text-wrap: balance;
}

.manifest__copy {
  align-self: end;
}

.manifest__copy p,
.craft-steps p,
.contact__intro p {
  margin: 0 0 18px;
  color: var(--dark-muted);
  font-size: clamp(15px, 1.25vw, 18px);
}

.origin-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  grid-auto-rows: minmax(340px, 39vw);
  gap: 14px;
  padding: 14px;
  background: #0a0d0a;
}

.origin-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: var(--black);
}

.origin-card--large {
  grid-row: span 2;
}

.origin-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06) brightness(0.86);
  transform: scale(1.02);
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}

.origin-card:hover img {
  filter: saturate(0.92) contrast(1.1) brightness(0.96);
  transform: scale(1.07);
}

.origin-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 20%, rgba(7, 9, 7, 0.84)),
    radial-gradient(circle at 70% 20%, rgba(241, 234, 219, 0.12), transparent 34%);
}

.origin-card div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
}

.origin-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(241, 234, 219, 0.58);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.origin-card h3 {
  width: min(680px, 100%);
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 4.8vw, 76px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.collections {
  padding: clamp(86px, 10.5vw, 166px) clamp(20px, 6vw, 96px);
  background:
    radial-gradient(circle at 80% 10%, rgba(184, 121, 67, 0.16), transparent 34%),
    linear-gradient(180deg, #0d140f, #070907 82%);
}

.section-heading {
  width: min(1060px, 100%);
  margin-bottom: clamp(48px, 7vw, 96px);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(241, 234, 219, 0.13);
  background: var(--charcoal);
}

.product-card--featured {
  grid-row: span 2;
  min-height: 760px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.84);
  transform: scale(1.03);
  transition: transform 1.3s var(--ease), filter 1.3s var(--ease);
}

.product-card:hover img {
  filter: saturate(0.96) contrast(1.1) brightness(0.94);
  transform: scale(1.075);
}

.product-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 10%, rgba(7, 9, 7, 0.28) 44%, rgba(7, 9, 7, 0.92)),
    radial-gradient(circle at 78% 16%, rgba(241, 234, 219, 0.14), transparent 26%);
}

.product-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(24px, 3.6vw, 42px);
}

.product-card__body span {
  display: block;
  margin-bottom: 16px;
  color: var(--copper);
  font-family: var(--display);
  font-size: 54px;
  line-height: 0.9;
}

.product-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.product-card p {
  width: min(580px, 100%);
  margin: 18px 0 0;
  color: rgba(241, 234, 219, 0.72);
}

.product-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.product-card li {
  border: 1px solid rgba(241, 234, 219, 0.15);
  padding: 7px 9px;
  background: rgba(241, 234, 219, 0.06);
  color: rgba(241, 234, 219, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.craft {
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1.06fr);
  min-height: 760px;
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 121, 67, 0.15), transparent 36%),
    var(--bone);
  color: var(--ink);
}

.craft__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
}

.craft__media video {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.82);
}

.craft__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 24%, rgba(7, 9, 7, 0.7)),
    radial-gradient(circle at 74% 18%, rgba(241, 234, 219, 0.12), transparent 32%);
}

.craft__caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: var(--bone);
}

.craft__caption span {
  display: block;
  margin-bottom: 10px;
  color: rgba(241, 234, 219, 0.62);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.craft__caption strong {
  display: block;
  max-width: 560px;
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 70px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.craft__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7vw, 112px);
}

.craft-steps {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.craft-steps div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 18px;
  border-top: 1px solid var(--dark-line);
  padding-top: 18px;
}

.craft-steps span {
  grid-row: span 2;
  color: var(--bronze);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.craft-steps strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.craft-steps p {
  margin: 0;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(86px, 10vw, 156px) clamp(20px, 6vw, 96px);
  background:
    radial-gradient(circle at 22% 24%, rgba(109, 125, 84, 0.22), transparent 36%),
    linear-gradient(180deg, #060907, #0d140f);
}

.proof__image {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(241, 234, 219, 0.13);
}

.proof__image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.9);
}

.proof__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 9, 7, 0.05), rgba(7, 9, 7, 0.36));
}

.proof__content {
  max-width: 820px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(38px, 5vw, 68px);
}

.proof-grid div {
  min-height: 190px;
  border: 1px solid rgba(241, 234, 219, 0.14);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(241, 234, 219, 0.08), rgba(241, 234, 219, 0.02)),
    rgba(241, 234, 219, 0.04);
}

.proof-grid strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.proof-grid span {
  display: block;
  max-width: 170px;
  margin-top: 18px;
  color: rgba(241, 234, 219, 0.62);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 98px);
  padding: clamp(86px, 10vw, 156px) clamp(20px, 6vw, 96px);
  background:
    linear-gradient(135deg, rgba(109, 125, 84, 0.16), transparent 34%),
    var(--bone);
  color: var(--ink);
}

.contact__intro p {
  max-width: 560px;
  margin-top: 28px;
}

.contact__lines {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: rgba(17, 19, 15, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-self: start;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(17, 19, 15, 0.58);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 15, 0.17);
  border-radius: 0;
  outline: none;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 4px rgba(184, 121, 67, 0.15);
}

.wide {
  grid-column: 1 / -1;
}

.submit-button {
  border: 0;
  padding: 18px 22px;
  background: var(--ink);
  color: var(--bone);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.submit-button:hover {
  background: #273026;
  transform: translateY(-1px);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #87462d;
  font-size: 13px;
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(241, 234, 219, 0.11);
  padding: 36px clamp(20px, 6vw, 96px);
  background: #050705;
  color: rgba(241, 234, 219, 0.58);
}

.footer span:first-child {
  color: var(--bone);
  font-family: var(--display);
  font-size: 25px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.78s var(--ease),
    transform 0.78s var(--ease),
    filter 0.78s var(--ease);
  filter: blur(8px);
}

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

@keyframes copyLift {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(9px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroLight {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-18%) rotate(-7deg);
  }
  50% {
    opacity: 0.42;
    transform: translateX(18%) rotate(-7deg);
  }
}

@keyframes cueDrop {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 15px);
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-action {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 18px;
  }

  .menu-button {
    display: block;
  }

  .hero__content {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding-top: 116px;
  }

  .film-panel {
    right: 20px;
    left: 20px;
    bottom: 86px;
    width: auto;
  }

  .scroll-cue {
    left: 20px;
    bottom: 28px;
  }

  .manifest,
  .craft,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .manifest__label {
    display: none;
  }

  .origin-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .origin-card--large,
  .product-card--featured {
    grid-row: auto;
  }

  .product-card,
  .product-card--featured {
    min-height: 620px;
  }

  .craft__media video {
    min-height: 520px;
  }

  .proof__image,
  .proof__image img {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .brand__seal {
    width: 40px;
    height: 40px;
  }

  .brand__name strong {
    font-size: 20px;
  }

  .brand__name small {
    display: none;
  }

  .hero__content {
    justify-content: flex-start;
    padding-top: 112px;
    padding-bottom: 300px;
  }

  .hero h1 {
    font-size: clamp(44px, 15.5vw, 74px);
  }

  .hero p:not(.eyebrow) {
    max-width: 360px;
    font-size: 14px;
  }

  .button {
    min-height: 44px;
    padding: 0 13px;
    font-size: 10px;
  }

  .film-panel {
    padding: 14px;
  }

  .film-panel__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .chapter-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .chapter-nav button {
    padding: 9px;
    font-size: 9px;
  }

  .manifest,
  .collections,
  .proof,
  .contact {
    padding: 76px 20px;
  }

  .origin-grid {
    gap: 10px;
    padding: 10px;
  }

  .origin-card,
  .origin-grid {
    grid-auto-rows: auto;
  }

  .origin-card {
    min-height: 420px;
  }

  .manifest h2,
  .collections h2,
  .craft h2,
  .proof h2,
  .contact h2 {
    font-size: clamp(38px, 12.5vw, 62px);
  }

  .product-card,
  .product-card--featured {
    min-height: 560px;
  }

  .product-card__body {
    padding: 22px;
  }

  .craft__content {
    padding: 76px 20px;
  }

  .craft__media,
  .craft__media video {
    min-height: 460px;
  }

  .craft-steps div {
    grid-template-columns: 48px 1fr;
  }

  .proof-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    min-height: 168px;
  }

  .footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero__media {
    transform: none !important;
  }
}
