:root {
  --ink: #11130f;
  --ink-soft: #20231e;
  --stone: #e8e4dc;
  --stone-deep: #cbc5ba;
  --paper: #f7f5f0;
  --white: #fffefa;
  --acid: #caff3d;
  --acid-dark: #94c000;
  --muted: #686b64;
  --line: rgba(17, 19, 15, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --danger: #a53625;
  --radius-sm: 0.35rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.5rem;
  --shadow: 0 1.5rem 4rem rgba(17, 19, 15, 0.14);
  --max-width: 92rem;
  --gutter: clamp(1rem, 3vw, 3rem);
  --font-display: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Aptos", "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
.eyebrow,
.button,
.nav-link,
.brand {
  font-family: var(--font-display);
}

:focus-visible {
  outline: 0.18rem solid var(--acid-dark);
  outline-offset: 0.2rem;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.section--tight {
  padding-block: clamp(2.75rem, 5vw, 5rem);
}

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

.section--stone {
  background: var(--stone);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.section--ink .section-heading p {
  color: rgba(255, 254, 250, 0.64);
}

.eyebrow {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.6rem;
  height: 0.22rem;
  background: var(--acid);
  content: "";
}

.eyebrow--dark::before {
  background: var(--ink);
}

.utility-bar {
  color: var(--ink);
  background: var(--acid);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-block: 0.5rem;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(1rem);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--ink);
  background:
    linear-gradient(135deg, transparent 48%, var(--ink) 49%, var(--ink) 54%, transparent 55%),
    var(--acid);
  font-size: 0;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  justify-content: center;
}

.nav-link {
  position: relative;
  padding-block: 0.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 0.2rem;
  background: var(--acid-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.icon-button {
  position: relative;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.icon-button:hover {
  color: var(--white);
  background: var(--ink);
}

.bag-count {
  display: grid;
  min-width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.68rem;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(53rem, calc(100svh - 7.1rem));
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 20%, rgba(202, 255, 61, 0.14), transparent 22rem),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 5rem 5rem;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 72%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(24rem, 0.94fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: inherit;
  padding-block: clamp(3rem, 7vw, 7rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 8.7ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 8.3vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.79;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--acid);
  font-style: italic;
  font-weight: 500;
}

.hero__summary {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 31rem);
  gap: 1rem;
  align-items: start;
  margin-bottom: 2rem;
  color: rgba(255, 254, 250, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero__summary::before {
  height: 0.22rem;
  margin-top: 0.7rem;
  background: var(--acid);
  content: "";
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-0.12rem);
}

.button--acid {
  border-color: var(--acid);
  color: var(--ink);
  background: var(--acid);
}

.button--acid:hover {
  border-color: var(--white);
  background: var(--white);
}

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

.button--outline {
  border-color: currentColor;
  color: currentColor;
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.button--ghost-light {
  border-color: var(--line-light);
  color: var(--white);
  background: transparent;
}

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

.button--wide {
  width: 100%;
}

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

.hero__frame {
  position: relative;
  width: min(100%, 34rem);
  margin-left: auto;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(1.5deg);
}

.hero__frame::before {
  position: absolute;
  z-index: -1;
  top: -1.5rem;
  right: -1.5rem;
  width: 62%;
  height: 42%;
  background: var(--acid);
  content: "";
}

.hero__image {
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(0.85) contrast(1.08);
}

.hero__stamp {
  position: absolute;
  right: -0.8rem;
  bottom: 2rem;
  display: grid;
  width: 8.4rem;
  height: 8.4rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.hero__index {
  position: absolute;
  top: 50%;
  right: -2.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  color: var(--ink);
  background: var(--acid);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker__item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker__item::after {
  content: "●";
  font-size: 0.45rem;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.5rem);
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.product-card__media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.7);
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms ease;
}

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

.product-card__tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.42rem 0.55rem;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-button {
  position: absolute;
  z-index: 2;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  min-height: 2.75rem;
  border: 1px solid var(--white);
  color: var(--white);
  background: rgba(17, 19, 15, 0.86);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(0.6rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product-card:hover .quick-button,
.quick-button:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  padding-block: 1rem 1.2rem;
}

.product-card__category {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-card h3 a {
  text-decoration: none;
}

.product-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.product-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.editorial-number {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.editorial-copy h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.editorial-copy p {
  max-width: 34rem;
  color: rgba(255, 254, 250, 0.64);
  font-size: 1.06rem;
}

.editorial-visual {
  position: relative;
}

.editorial-visual img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.editorial-visual::after {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 38%;
  height: 35%;
  border: 1px solid var(--acid);
  content: "";
  pointer-events: none;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.principle {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--ink);
}

.principle:last-child {
  border-right: 0;
}

.principle__number {
  display: block;
  margin-bottom: 3rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.principle h3 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.principle p {
  max-width: 26rem;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-band {
  color: var(--ink);
  background: var(--acid);
}

.contact-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 5rem);
}

.contact-band h2 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 8rem);
  color: var(--white);
  background: var(--ink);
}

.page-hero::after {
  position: absolute;
  top: -12rem;
  right: -7rem;
  width: 32rem;
  height: 32rem;
  border: 5rem solid rgba(202, 255, 61, 0.08);
  border-radius: 50%;
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: 3rem;
  align-items: end;
}

.page-hero h1 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 36rem;
  margin-bottom: 0;
  color: rgba(255, 254, 250, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.filter-bar {
  position: sticky;
  z-index: 35;
  top: 5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(1rem);
}

.filter-bar__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding-block: 0.85rem;
}

.filter-list {
  display: flex;
  gap: 0.45rem;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-chip {
  flex: 0 0 auto;
  padding: 0.62rem 0.85rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-chip:hover,
.filter-chip[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--acid);
}

.sort-field {
  display: flex;
  flex: 0 0 auto;
  gap: 0.6rem;
  align-items: center;
}

.sort-field label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sort-field select {
  min-height: 2.5rem;
  padding-inline: 0.7rem 2rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
}

.collection-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 5rem 1rem;
  border-block: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.75fr);
  min-height: calc(100svh - 7.1rem);
}

.product-detail__media {
  position: relative;
  min-width: 0;
  background: var(--stone);
}

.product-detail__media img {
  width: 100%;
  height: 100%;
  min-height: 42rem;
  object-fit: cover;
  filter: saturate(0.72);
}

.product-detail__media-note {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.55rem 0.7rem;
  color: var(--white);
  background: rgba(17, 19, 15, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.product-detail__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--paper);
}

.product-detail__code {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-transform: uppercase;
}

.product-detail__price {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
}

.product-detail__description {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-group__label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.size-button {
  display: grid;
  min-width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
}

.size-button:hover,
.size-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--acid);
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 2.75rem 3.25rem 2.75rem;
  border: 1px solid var(--ink);
}

.quantity-control button,
.quantity-control output {
  display: grid;
  height: 2.75rem;
  place-items: center;
  background: transparent;
}

.quantity-control button {
  cursor: pointer;
  font-size: 1.1rem;
}

.quantity-control button:hover {
  background: var(--stone);
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.product-actions .button {
  min-height: 3.65rem;
}

.product-notice {
  padding: 1rem;
  border-left: 0.25rem solid var(--acid-dark);
  background: var(--stone);
  color: var(--muted);
  font-size: 0.82rem;
}

.detail-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.detail-list details {
  border-bottom: 1px solid var(--line);
}

.detail-list summary {
  padding-block: 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.detail-list summary::-webkit-details-marker {
  display: none;
}

.detail-list summary::after {
  float: right;
  content: "+";
  font-size: 1rem;
}

.detail-list details[open] summary::after {
  content: "−";
}

.detail-list details p {
  padding-right: 1rem;
  padding-bottom: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(2rem, 7vw, 8rem);
}

.contact-aside h2 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
}

.contact-aside > p {
  max-width: 30rem;
  color: var(--muted);
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-card {
  display: block;
  padding: 1.15rem;
  border: 1px solid var(--ink);
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.contact-card:hover {
  color: var(--ink);
  background: var(--acid);
}

.contact-card span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: 1rem;
}

.form-panel {
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--ink);
  background: var(--white);
}

.form-panel__heading {
  margin-bottom: 2rem;
}

.form-panel__heading h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.form-panel__heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
}

.field input,
.field select {
  min-height: 3.25rem;
  padding-inline: 0.9rem;
}

.field textarea {
  min-height: 10rem;
  padding: 0.9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  outline: 0.15rem solid rgba(148, 192, 0, 0.25);
}

.consent-list {
  display: grid;
  gap: 0.75rem;
  grid-column: 1 / -1;
  margin-block: 0.5rem;
}

.check-row {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
}

.check-row input {
  width: 1rem;
  height: 1rem;
  margin: 0.18rem 0 0;
  accent-color: var(--acid-dark);
}

.check-row a {
  color: var(--ink);
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.8rem 1rem;
  border-left: 0.2rem solid var(--acid-dark);
  background: var(--stone);
  font-size: 0.82rem;
}

.form-note {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(2rem, 7vw, 8rem);
}

.legal-nav {
  position: sticky;
  top: 7rem;
  align-self: start;
  padding: 1.25rem;
  border: 1px solid var(--ink);
}

.legal-nav strong {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding-block: 0.45rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-content {
  max-width: 50rem;
}

.legal-content > p:first-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content section {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 7rem;
}

.legal-content h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--ink);
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(22rem, 1.25fr);
  gap: clamp(2rem, 6vw, 7rem);
  padding-block: clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line-light);
}

.footer-newsletter h2 {
  max-width: 10ch;
  margin-bottom: 0.75rem;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-transform: uppercase;
}

.footer-newsletter p {
  max-width: 27rem;
  margin-bottom: 0;
  color: rgba(255, 254, 250, 0.58);
}

.newsletter-form {
  align-self: center;
}

.newsletter-form > label {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.newsletter-input input {
  min-width: 0;
  min-height: 3.4rem;
  padding-inline: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-right: 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.newsletter-input .button {
  min-height: 3.4rem;
}

.consent-list--compact {
  margin-top: 1rem;
}

.consent-list--compact .check-row {
  color: rgba(255, 254, 250, 0.58);
  font-size: 0.7rem;
}

.consent-list--compact .check-row a {
  color: var(--white);
}

.newsletter-form .form-status {
  margin-top: 0.75rem;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.55fr));
  gap: 2rem;
  padding-block: 3rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand .brand__mark {
  border-color: var(--white);
}

.footer-brand p {
  max-width: 25rem;
  color: rgba(255, 254, 250, 0.55);
  font-size: 0.82rem;
}

.footer-column h3 {
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 254, 250, 0.58);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-block: 1rem 1.5rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 254, 250, 0.42);
  font-size: 0.68rem;
}

.bag-overlay {
  position: fixed;
  z-index: 110;
  inset: 0;
  border: 0;
  background: rgba(17, 19, 15, 0.58);
  cursor: default;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.bag-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bag-drawer {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(28rem, 100%);
  height: 100dvh;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(0.22, 0.72, 0.18, 1);
}

.bag-drawer.is-open {
  transform: translateX(0);
}

.bag-drawer__header,
.bag-drawer__footer {
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.bag-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bag-drawer__header h2 {
  margin-bottom: 0;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.close-button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 1.3rem;
}

.bag-items {
  overflow-y: auto;
  padding: 1.25rem;
}

.bag-empty {
  display: grid;
  height: 100%;
  min-height: 16rem;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.bag-empty strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.bag-item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.9rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.bag-item img {
  width: 5.5rem;
  height: 6.8rem;
  object-fit: cover;
}

.bag-item h3 {
  margin-bottom: 0.35rem;
  font-size: 0.94rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.bag-item__meta {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.bag-item__controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}

.mini-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.mini-quantity button,
.mini-quantity span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  background: transparent;
}

.mini-quantity button {
  cursor: pointer;
}

.remove-button {
  padding: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  text-decoration: underline;
}

.bag-drawer__footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.bag-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bag-demo-note {
  margin-top: 0.7rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.quick-view {
  width: min(52rem, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quick-view::backdrop {
  background: rgba(17, 19, 15, 0.68);
}

.quick-view__close {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  color: var(--white);
  border-color: var(--white);
  background: rgba(17, 19, 15, 0.55);
}

.quick-view__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
}

.quick-view__media {
  min-height: 34rem;
  background: var(--stone);
}

.quick-view__media img {
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.quick-view__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.quick-view__content h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-transform: uppercase;
}

.quick-view__content > p {
  color: var(--muted);
}

.quick-view__price {
  margin-bottom: 1rem;
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
}

.toast {
  position: fixed;
  z-index: 160;
  right: 1rem;
  bottom: 1rem;
  width: min(24rem, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  border-left: 0.3rem solid var(--acid);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.noscript-message {
  padding: 1rem;
  color: var(--ink);
  background: var(--acid);
  text-align: center;
}

@media (max-width: 68rem) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: calc(5rem + 1.95rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .nav-link {
    padding-block: 0.9rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }

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

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.68fr);
  }

  .hero h1 {
    font-size: clamp(3.6rem, 9.7vw, 7.4rem);
  }

  .hero__stamp {
    right: 0.2rem;
    width: 7rem;
    height: 7rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-button {
    opacity: 1;
    transform: translateY(0);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 48rem) {
  :root {
    --gutter: 1rem;
  }

  .utility-bar__inner span:last-child {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    min-height: 4.5rem;
  }

  .brand {
    font-size: 1.15rem;
  }

  .brand__mark {
    width: 1.8rem;
    height: 1.8rem;
  }

  .site-nav {
    top: calc(4.5rem + 1.95rem);
  }

  .icon-button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  [data-open-bag] > span[aria-hidden="true"] {
    display: none;
  }

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

  .header-actions .icon-button {
    min-width: 2.7rem;
    padding-inline: 0.55rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 3.5rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.5rem, 15vw, 5.7rem);
    overflow-wrap: anywhere;
  }

  .hero__copy,
  .hero__summary,
  .hero__summary p {
    min-width: 0;
  }

  .hero__summary {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .hero__visual {
    width: min(90%, 27rem);
    margin-inline: auto;
  }

  .hero__frame {
    margin-inline: auto;
  }

  .hero__index {
    display: none;
  }

  .section-heading,
  .page-hero__inner,
  .editorial-grid,
  .contact-layout,
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading {
    gap: 1.2rem;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .page-hero h1 {
    font-size: clamp(3.8rem, 17vw, 6rem);
  }

  .page-hero__inner {
    gap: 1.5rem;
  }

  .principles-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .principle {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .principle__number {
    margin-bottom: 1.5rem;
  }

  .contact-band__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .filter-bar {
    top: 4.5rem;
  }

  .filter-bar__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-list {
    padding-bottom: 0.2rem;
  }

  .sort-field {
    justify-content: space-between;
  }

  .sort-field select {
    min-width: 11rem;
  }

  .product-detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-detail__media img {
    min-height: 0;
    max-height: 80svh;
    aspect-ratio: 4 / 5;
  }

  .product-detail__panel {
    padding: 2.5rem 1rem 4rem;
  }

  .product-detail h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .product-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .consent-list,
  .form-status,
  .form-note {
    grid-column: auto;
  }

  .legal-nav {
    position: static;
  }

  .footer-newsletter {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter-input {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
  }

  .newsletter-input input {
    border-right: 1px solid rgba(255, 255, 255, 0.42);
  }

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

  .quick-view__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .quick-view__media {
    min-height: 17rem;
    max-height: 42svh;
  }

  .quick-view__media img {
    min-height: 17rem;
    max-height: 42svh;
  }

  .quick-view__content {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 32rem) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__stamp {
    right: -0.3rem;
    bottom: 1rem;
    width: 6.2rem;
    height: 6.2rem;
    font-size: 0.62rem;
  }
}

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