:root {
  --bg: #050505;
  --bg-elevated: #0a0a0a;
  --surface: #101010;
  --surface-soft: #171717;
  --text: #f4f2ed;
  --text-strong: #ffffff;
  --muted: #9a9994;
  --muted-strong: #c5c3bd;
  --accent: #ff2a2f;
  --accent-deep: #bf0f18;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.26);
  --display: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --body: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(100% - 80px, 1440px);
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(circle at 8% 25%, rgba(255, 42, 47, 0.055), transparent 25rem),
    var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: white;
  background: var(--accent);
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--bg);
  background: var(--text);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.eyebrow span {
  color: var(--text);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 16px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition:
    min-height 350ms var(--ease),
    background-color 350ms ease,
    border-color 350ms ease,
    backdrop-filter 350ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  width: clamp(164px, 14vw, 208px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--muted-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.site-nav a:hover {
  color: var(--text-strong);
}

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

.header-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    background-color 220ms ease;
}

.header-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #080808;
}

.hero__media,
.hero__shade,
.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -4;
  object-fit: cover;
  object-position: 58% center;
  scale: 1.015;
  animation: hero-settle 1.6s var(--ease) both;
}

.hero__shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 30%, rgba(0, 0, 0, 0.08) 68%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, transparent 30%);
}

.hero__grain {
  z-index: -2;
  opacity: 0.09;
  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='.65'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  width: min(100% - 80px, 1440px);
  margin: 0 auto;
  padding: calc(var(--header-height) + 82px) 0 clamp(150px, 17vh, 208px);
}

.hero__content .eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 8.1ch;
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(4.8rem, 9.4vw, 10rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.81;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  margin-left: 0.42em;
  font-size: 0.78em;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.hero__lede {
  max-width: 545px;
  margin-bottom: 36px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 260ms ease,
    background-color 260ms ease,
    transform 260ms var(--ease);
}

.button--primary {
  color: white;
  background: var(--accent);
}

.button--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 220ms ease;
}

.text-link:hover {
  border-color: var(--accent);
}

.hero__proof {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 46px;
  display: flex;
  width: min(620px, 48vw);
  justify-content: flex-end;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  display: grid;
  min-width: 165px;
  gap: 10px;
  padding: 17px 22px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted-strong);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__proof li span {
  color: var(--accent);
  font-size: 0.62rem;
}

.scroll-cue {
  position: absolute;
  bottom: 42px;
  left: clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}

.scroll-cue i::after {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  content: "";
  animation: scroll-line 2.4s ease-in-out infinite;
}

.intro {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 40px;
  padding-block: clamp(112px, 14vw, 220px);
  border-bottom: 1px solid var(--line);
}

.section-index {
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro__copy {
  max-width: 1000px;
}

.intro h2 {
  max-width: 14ch;
  margin-bottom: 48px;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.intro__copy > p:last-child {
  max-width: 660px;
  margin: 0 0 0 auto;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.72;
}

.collection {
  padding-block: clamp(100px, 12vw, 180px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 66px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.5vw, 7rem);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-heading__note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.filter-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted-strong);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--text);
  color: var(--bg);
  background: var(--text);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.inventory-card {
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition:
    border-color 300ms ease,
    transform 420ms var(--ease);
}

.inventory-card:first-child {
  grid-column: span 6;
}

.inventory-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
}

.inventory-card__media {
  position: relative;
  display: block;
  min-height: 450px;
  overflow: hidden;
  background: #111;
}

.inventory-card:first-child .inventory-card__media {
  min-height: 520px;
}

.inventory-card__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.inventory-card:first-child .inventory-card__media img {
  object-position: center;
}

.inventory-card:hover .inventory-card__media img {
  transform: scale(1.035);
}

.inventory-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent);
  content: "";
  pointer-events: none;
}

.inventory-card__status {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  color: var(--text);
  background: rgba(5, 5, 5, 0.76);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.inventory-card__body {
  padding: 24px;
}

.inventory-card__category {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inventory-card h3 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.inventory-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 26px;
  padding: 0;
}

.inventory-card__specs div {
  display: flex;
  gap: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.inventory-card__specs dt {
  font-weight: 700;
}

.inventory-card__specs dd {
  margin: 0;
}

.inventory-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.inventory-card__price {
  margin: 0;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 750;
}

.inventory-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--muted-strong);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inventory-card__link:hover {
  color: var(--accent);
}

.inventory-grid__empty,
.noscript-note {
  grid-column: 1 / -1;
  padding: 52px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: center;
  padding-block: clamp(110px, 14vw, 210px);
  border-top: 1px solid var(--line);
}

.experience__feature {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.experience__feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 55%);
  content: "";
}

.experience__feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.experience__feature-copy {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 36px;
  left: 34px;
}

.experience__feature-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience__feature-copy p {
  max-width: 520px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 4.2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.experience__content h2 {
  max-width: 10ch;
  margin-bottom: 48px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.experience__list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.experience__list article:last-child {
  border-bottom: 1px solid var(--line);
}

.experience__list article > span {
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 800;
}

.experience__list h3 {
  margin-bottom: 9px;
  font-size: 1rem;
  font-weight: 700;
}

.experience__list p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.kinetic-line {
  overflow: hidden;
  padding: 28px 0;
  border-block: 1px solid var(--line);
}

.kinetic-line > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  animation: marquee 26s linear infinite;
}

.kinetic-line span {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.kinetic-line i {
  width: 9px;
  height: 9px;
  background: var(--accent);
  rotate: 45deg;
}

.process {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 9vw, 150px);
  padding-block: clamp(110px, 14vw, 210px);
}

.process__heading {
  align-self: start;
}

.process__heading h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.8vw, 6.3rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.process__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process__steps li {
  display: grid;
  grid-template-columns: 62px minmax(170px, 0.8fr) 1fr;
  gap: 22px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.process__steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process__steps span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
}

.process__steps h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.brand-story {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 45%, rgba(255, 42, 47, 0.17), transparent 28rem),
    #090909;
}

.brand-story::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.65) 48%, transparent 82%);
  content: "";
}

.brand-story__concept {
  position: absolute;
  z-index: -2;
  top: 50%;
  right: -7vw;
  width: min(72vw, 1120px);
  max-width: none;
  opacity: 0.32;
  transform: translateY(-48%);
}

.brand-story__inner {
  display: flex;
  min-height: 76svh;
  flex-direction: column;
  justify-content: center;
  padding-block: 90px;
}

.brand-story h2 {
  max-width: 9ch;
  margin-bottom: 32px;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.84;
  text-transform: uppercase;
}

.brand-story__inner > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(70px, 10vw, 160px);
  padding-block: clamp(110px, 14vw, 200px);
}

.contact__intro h2 {
  max-width: 10ch;
  margin-bottom: 32px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  font-weight: 730;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.contact__intro > p {
  max-width: 560px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.contact__aside {
  max-width: 520px;
  margin-top: 54px;
  padding: 24px;
  border-left: 2px solid var(--accent);
  background: var(--surface);
}

.contact__aside span {
  display: block;
  margin-bottom: 9px;
  font-weight: 700;
}

.contact__aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 26px;
  align-content: start;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.field {
  position: relative;
  min-width: 0;
}

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

.field label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
  color: var(--muted-strong);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: none;
  color: var(--text);
  background: transparent;
  transition: border-color 220ms ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 22px,
    calc(100% - 11px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

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

.field [aria-invalid="true"] {
  border-color: var(--accent);
}

.field__error {
  display: block;
  min-height: 18px;
  padding-top: 6px;
  color: #ff7277;
  font-size: 0.72rem;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 4px;
}

.form-footer p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.form-status {
  min-height: 24px;
  margin: -14px 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-status[data-state="error"] {
  color: #ff8b8e;
}

.form-status[data-state="success"] {
  color: #9fd7a3;
}

.site-footer {
  padding: 70px clamp(24px, 4vw, 64px) 24px;
  border-top: 1px solid var(--line);
  background: #030303;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 40px;
  padding-bottom: 70px;
}

.site-footer__top > p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-transform: uppercase;
}

.back-to-top {
  justify-self: end;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms var(--ease),
    transform 800ms var(--ease);
}

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

@keyframes hero-settle {
  from {
    opacity: 0;
    scale: 1.07;
  }
  to {
    opacity: 1;
    scale: 1.015;
  }
}

@keyframes scroll-line {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(260%);
  }
}

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

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1100px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .inventory-card,
  .inventory-card:first-child {
    grid-column: span 6;
  }

  .inventory-card:first-child {
    grid-row: span 2;
  }

  .inventory-card__media,
  .inventory-card:first-child .inventory-card__media {
    min-height: 420px;
  }

  .experience {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 54px;
  }

  .experience__feature {
    min-height: 640px;
  }

  .process__steps li {
    grid-template-columns: 46px 1fr;
  }

  .process__steps p {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
    --shell: min(100% - 36px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    padding-inline: 18px;
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    backdrop-filter: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 0;
    border: 0;
    color: var(--text);
    background: transparent;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    position: relative;
    display: grid;
    width: 24px;
    height: 16px;
    align-content: center;
    gap: 5px;
  }

  .menu-toggle__icon i {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition:
      transform 260ms ease,
      translate 260ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    translate: 0 3px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    translate: 0 -3px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 110px 24px 60px;
    opacity: 0;
    background:
      radial-gradient(circle at 80% 16%, rgba(255, 42, 47, 0.16), transparent 22rem),
      #050505;
    transform: translateY(-14px);
    transition:
      opacity 260ms ease,
      transform 260ms var(--ease),
      visibility 260ms;
  }

  .site-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(2.8rem, 12vw, 5.2rem);
    font-weight: 720;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .hero__content {
    width: var(--shell);
    padding-bottom: 190px;
  }

  .hero__media {
    object-position: 67% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.56) 70%, rgba(0, 0, 0, 0.22) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.91) 0%, transparent 56%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 30%);
  }

  .hero h1 {
    font-size: clamp(4.3rem, 16vw, 7.5rem);
  }

  .hero__proof {
    right: 18px;
    bottom: 30px;
    left: 18px;
    width: auto;
    justify-content: stretch;
  }

  .hero__proof li {
    min-width: 0;
    flex: 1;
    padding-inline: 10px;
  }

  .scroll-cue {
    display: none;
  }

  .intro,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-index {
    display: none;
  }

  .section-heading {
    display: grid;
    gap: 28px;
  }

  .section-heading__note {
    max-width: 560px;
  }

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

  .experience__feature {
    min-height: min(720px, 84svh);
  }

  .experience__content h2 {
    max-width: 12ch;
  }

  .process {
    gap: 70px;
  }

  .process__heading h2 {
    max-width: 12ch;
  }

  .brand-story__concept {
    right: -28vw;
    width: 125vw;
    opacity: 0.2;
  }

  .contact {
    gap: 70px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top > p {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 28px, 560px);
  }

  .brand img {
    width: 160px;
  }

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

  .hero__content {
    padding-top: 132px;
    padding-bottom: 214px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.9rem, 20vw, 6.2rem);
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero__lede {
    max-width: 360px;
    margin-bottom: 28px;
    font-size: 0.96rem;
  }

  .hero__actions {
    display: grid;
    justify-items: start;
    gap: 18px;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__proof li {
    display: block;
    font-size: 0.56rem;
    line-height: 1.45;
  }

  .hero__proof li span {
    display: block;
    margin-bottom: 7px;
  }

  .intro,
  .collection,
  .experience,
  .process,
  .contact {
    padding-block: 92px;
  }

  .intro h2,
  .section-heading h2,
  .experience__content h2,
  .process__heading h2,
  .contact__intro h2 {
    font-size: clamp(2.9rem, 14.5vw, 4.6rem);
  }

  .filter-bar {
    width: calc(100% + 14px);
    overflow-x: auto;
    padding-right: 14px;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .inventory-card,
  .inventory-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .inventory-card__media,
  .inventory-card:first-child .inventory-card__media {
    min-height: 390px;
  }

  .experience__feature {
    min-height: 520px;
  }

  .experience__feature-copy {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .experience__list article {
    grid-template-columns: 34px 1fr;
  }

  .process__steps li {
    grid-template-columns: 38px 1fr;
  }

  .brand-story {
    min-height: 680px;
  }

  .brand-story__inner {
    min-height: 680px;
  }

  .brand-story h2 {
    font-size: clamp(3.7rem, 18vw, 6.5rem);
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 20px;
  }

  .field--wide {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__top > p {
    grid-column: auto;
  }

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

  .site-footer__bottom {
    flex-direction: column;
  }
}

@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 [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
