:root {
  --ink: #18231f;
  --ink-soft: #24322d;
  --ink-muted: #56625c;
  --paper: #f6f3ea;
  --paper-deep: #e9e4d7;
  --white: #fffdf8;
  --saffron: #e8993d;
  --saffron-soft: #f6c98f;
  --lime: #d8ef69;
  --indigo: #30456d;
  --indigo-soft: #5b719b;
  --coral: #d8684f;
  --line: rgba(24, 35, 31, 0.16);
  --line-light: rgba(255, 253, 248, 0.2);
  --muted: #707a72;
  --error: #ad352a;
  --success: #2e6b4b;
  --container: 1400px;
  --header-height: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 70px rgba(24, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

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

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

.container {
  width: min(calc(100% - 72px), var(--container));
  margin-inline: auto;
}

.announcement {
  height: 34px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
}

.announcement__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  gap: 26px;
  animation: announcement-slide 32s linear infinite;
}

.announcement__track i {
  color: var(--lime);
  font-size: 8px;
  font-style: normal;
}

@keyframes announcement-slide {
  0%, 18% { transform: translateX(0); }
  82%, 100% { transform: translateX(-14%); }
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 234, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 250ms ease, background 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 8px 30px rgba(24, 35, 31, 0.08);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.brand__parent {
  margin-top: 5px;
  padding-left: 2px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

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

.desktop-nav a,
.desktop-nav__categories a {
  position: relative;
  padding: 30px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a::after,
.desktop-nav__categories a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav__categories a:hover::after,
.desktop-nav__categories a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav__categories {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
}

.desktop-nav__categories a {
  padding: 30px 0;
  font-size: 10px;
}

.desktop-nav__categories a::after {
  bottom: 22px;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  transition: background 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  background: rgba(24, 35, 31, 0.08);
}

.icon-button:active,
.cart-button:active {
  transform: scale(0.94);
}

.icon-button svg,
.cart-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cart-button {
  display: inline-flex;
  height: 42px;
  margin-left: 3px;
  padding: 0 2px 0 12px;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.cart-button:hover {
  background: var(--ink-soft);
}

.cart-count {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  top: calc(34px + var(--header-height));
  right: 0;
  left: 0;
  display: none;
  height: calc(100dvh - 34px - var(--header-height));
  padding: 44px 24px 30px;
  flex-direction: column;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 280ms ease, transform 380ms var(--ease);
}

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

.mobile-menu nav {
  border-top: 1px solid var(--line-light);
}

.mobile-menu nav a {
  display: flex;
  padding: 17px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(32px, 9vw, 52px);
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-menu nav a span {
  color: var(--lime);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.mobile-menu__categories {
  display: block;
  padding: 18px 0 0;
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu__categories a {
  padding: 8px 0;
  border-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.mobile-menu__categories a::before {
  margin-right: 10px;
  color: var(--lime);
  content: "+";
}

.mobile-menu__footer {
  display: flex;
  margin-top: auto;
  align-items: flex-end;
  justify-content: space-between;
  color: rgba(255, 253, 248, 0.64);
  font-size: 12px;
}

.mobile-menu__footer p {
  max-width: 170px;
  margin-bottom: 0;
}

.mobile-menu__footer button {
  padding: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.45);
  color: inherit;
  background: transparent;
  font-size: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms var(--ease);
}

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

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

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

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

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

.button--light:hover {
  background: var(--lime);
}

.button--accent {
  color: var(--ink);
  background: var(--lime);
}

.button--accent:hover {
  background: #e6f78a;
}

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

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

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

.text-link {
  display: inline-flex;
  padding: 9px 0 6px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.text-link--dark {
  margin-top: 20px;
}

.section-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker--light {
  color: rgba(255, 253, 248, 0.6);
}

.home-hero {
  overflow: hidden;
  background: var(--paper);
}

.home-hero__grid {
  display: grid;
  min-height: min(800px, calc(100svh - 34px - var(--header-height)));
  grid-template-columns: 0.94fr 1.06fr;
}

.home-hero__copy {
  display: flex;
  padding: clamp(62px, 7vw, 112px) clamp(36px, 5.2vw, 90px) 46px 0;
  flex-direction: column;
}

.eyebrow {
  display: flex;
  margin-bottom: clamp(28px, 4vw, 56px);
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span:first-child {
  padding: 7px 10px;
  color: var(--ink);
  background: var(--saffron);
}

.eyebrow span + span::before {
  margin-right: 15px;
  content: "/";
}

.home-hero h1,
.shop-intro h1,
.section-heading h2,
.editorial__content h2,
.home-method h2,
.home-values h2,
.related h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.88;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(66px, 8.3vw, 130px);
}

.home-hero h1 em,
.shop-intro h1 em {
  position: relative;
  z-index: 0;
  color: var(--paper);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
}

.home-hero h1 em::before,
.shop-intro h1 em::before {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -4%;
  bottom: -2%;
  left: -3%;
  background: var(--lime);
  content: "";
  transform: rotate(-1.4deg);
}

.home-hero__copy > p {
  max-width: 510px;
  margin-bottom: 34px;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

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

.home-hero__meta {
  display: grid;
  margin-top: auto;
  padding-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-hero__meta div {
  display: flex;
  padding-top: 13px;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.home-hero__meta strong {
  color: #929b92;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.home-hero__meta span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-hero__visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--indigo-soft);
}

.home-hero__visual::before {
  position: absolute;
  z-index: 1;
  top: -12%;
  right: -20%;
  width: 52%;
  height: 125%;
  background: var(--saffron);
  content: "";
  opacity: 0.82;
  transform: rotate(12deg);
}

.home-hero__visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__visual-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 17px 22px;
  justify-content: space-between;
  color: var(--white);
  background: rgba(24, 35, 31, 0.86);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.home-hero__stamp {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.marquee {
  overflow: hidden;
  padding: 20px 0 18px;
  color: var(--paper);
  background: var(--ink);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 27px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 24px;
  letter-spacing: 0.07em;
  line-height: 1;
  white-space: nowrap;
}

.marquee__track i {
  color: var(--lime);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: normal;
}

.section {
  padding: clamp(92px, 10vw, 158px) 0;
}

.section-heading {
  display: grid;
  margin-bottom: 56px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 55px;
}

.section-heading h2,
.home-values h2,
.home-method h2,
.related h2 {
  margin-bottom: 0;
  font-size: clamp(58px, 7.2vw, 112px);
}

.section-heading__aside {
  display: flex;
  padding-bottom: 5px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

.section-heading__aside > p {
  max-width: 275px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 44px 18px;
}

.product-grid--shop {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 18px;
}

.product-card {
  min-width: 0;
}

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

.product-card__media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(24, 35, 31, 0.08);
  content: "";
  pointer-events: none;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 300ms ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.035);
}

.product-card__badges {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.product-badge {
  padding: 7px 9px 6px;
  color: var(--ink);
  background: var(--white);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card__view {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  min-height: 44px;
  padding: 0 15px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 320ms var(--ease);
}

.product-card:hover .product-card__view,
.product-card:focus-within .product-card__view {
  opacity: 1;
  transform: translateY(0);
}

.product-card__body {
  padding-top: 16px;
}

.product-card__category {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.product-card__title-row h3 {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.product-card__title-row h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--saffron);
  text-underline-offset: 3px;
}

.product-card__price {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.product-card__price--unavailable {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.product-card__compare {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  text-decoration: line-through;
}

.product-card__colours {
  display: flex;
  min-height: 16px;
  align-items: center;
  gap: 5px;
}

.colour-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(24, 35, 31, 0.25);
  border-radius: 50%;
  background: var(--swatch, #c6bda9);
}

.colour-dot--active {
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--ink);
}

.colour-dot--more {
  display: grid;
  width: auto;
  min-width: 26px;
  height: 17px;
  padding: 0 5px;
  place-items: center;
  border: 0;
  border-radius: 20px;
  color: var(--muted);
  background: transparent;
  font-size: 8px;
}

.product-skeleton {
  aspect-ratio: 0.7;
  background: linear-gradient(100deg, #e7e2d6 20%, #f2eee4 40%, #e7e2d6 60%);
  background-size: 200% 100%;
  animation: skeleton 1.5s ease infinite;
}

@keyframes skeleton {
  to { background-position-x: -200%; }
}

.product-media__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--muted);
  background: linear-gradient(135deg, #e7e2d6, #d8d2c3);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.home-collections {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.home-collections a {
  display: flex;
  padding: 20px 18px 18px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-collections a + a {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.home-collections a span {
  color: var(--saffron);
  font-size: 15px;
}

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

.editorial__grid {
  display: grid;
  min-height: 780px;
  grid-template-columns: 1.06fr 0.94fr;
}

.editorial__visual {
  position: relative;
  min-height: 700px;
  margin-left: calc((100vw - min(100vw - 72px, var(--container))) / -2);
  overflow: hidden;
}

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

.editorial__index {
  position: absolute;
  bottom: 22px;
  left: 24px;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.editorial__content {
  display: flex;
  padding: 90px clamp(38px, 6.5vw, 110px) 80px 70px;
  flex-direction: column;
  justify-content: center;
}

.editorial__content h2 {
  margin-bottom: 30px;
  font-size: clamp(64px, 7.4vw, 116px);
}

.editorial__content > p {
  max-width: 510px;
  margin-bottom: 35px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 16px;
  line-height: 1.7;
}

.editorial__specs {
  max-width: 520px;
  margin: 0 0 42px;
  border-top: 1px solid var(--line-light);
}

.editorial__specs div {
  display: flex;
  padding: 12px 0;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial__specs dt {
  color: rgba(255, 253, 248, 0.5);
}

.editorial__specs dd {
  margin: 0;
  font-weight: 700;
}

.editorial__content .button {
  align-self: flex-start;
}

.home-method {
  background: var(--white);
}

.home-method__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.home-method__lead {
  max-width: 530px;
  margin: 32px 0 38px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-list li {
  display: grid;
  padding: 21px 0;
  grid-template-columns: 48px 1fr;
  border-bottom: 1px solid var(--line);
}

.method-list li > span {
  color: #969f96;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.method-list h3 {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.method-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.home-method__visual {
  position: relative;
}

.home-method__visual > img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
}

.home-method__note {
  position: absolute;
  right: 0;
  bottom: 46px;
  width: min(310px, 60%);
  padding: 22px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.home-method__note span {
  display: block;
  margin-bottom: 15px;
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-method__note strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-values {
  padding: clamp(90px, 10vw, 150px) 0;
  background: var(--paper-deep);
}

.home-values__heading {
  display: flex;
  margin-bottom: 55px;
  align-items: flex-end;
  justify-content: space-between;
}

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

.value-card {
  position: relative;
  min-height: 400px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.value-card + .value-card {
  border-left: 0;
}

.value-card--accent {
  background: var(--lime);
}

.value-card > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.value-card h3 {
  position: absolute;
  right: 34px;
  bottom: 108px;
  left: 34px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(29px, 2.7vw, 42px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.value-card p {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.value-card--accent p {
  color: rgba(24, 35, 31, 0.68);
}

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

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

.service-grid article {
  position: relative;
  min-height: 250px;
  padding: 42px 34px;
  border-right: 1px solid var(--line);
}

.service-grid article:first-child {
  border-left: 1px solid var(--line);
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.service-grid h3 {
  margin-bottom: 9px;
  font-size: 16px;
}

.service-grid p {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.inline-button {
  margin-top: 14px;
  padding: 0 0 3px;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.newsletter {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 9vw, 132px) 0;
  color: var(--paper);
  background: var(--ink-soft);
}

.newsletter::before {
  position: absolute;
  top: -85%;
  right: -4%;
  width: 560px;
  height: 560px;
  border: 90px solid rgba(216, 239, 105, 0.1);
  border-radius: 50%;
  content: "";
}

.newsletter__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.newsletter h2 {
  margin-bottom: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(62px, 8vw, 118px);
  letter-spacing: 0.005em;
  line-height: 0.88;
  text-transform: uppercase;
}

.newsletter__form-wrap > p:first-child {
  max-width: 440px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.64);
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 253, 248, 0.5);
}

.newsletter-form input {
  min-width: 0;
  height: 60px;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 15px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 253, 248, 0.5);
}

.newsletter-form button {
  padding: 0 3px 0 20px;
  color: var(--lime);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.newsletter-form button span {
  margin-left: 18px;
}

.newsletter-form button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.form-message {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 11px;
}

.form-message.is-error {
  color: #ff9c92;
}

.form-message.is-success {
  color: var(--lime);
}

.site-footer {
  padding: 78px 0 24px;
  color: var(--paper);
  background: var(--ink);
}

.footer-top {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 0.8fr 0.7fr 1.5fr;
  gap: 50px;
}

.brand--footer .brand__name {
  font-size: clamp(42px, 4.5vw, 68px);
}

.brand--footer .brand__parent {
  color: rgba(255, 253, 248, 0.48);
}

.footer-top > p {
  align-self: center;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.62);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 27px;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links h3 {
  margin-bottom: 9px;
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button,
.footer-links span a {
  padding: 0;
  color: rgba(255, 253, 248, 0.65);
  background: transparent;
  font-size: 11px;
  text-align: left;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-links span a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 253, 248, 0.15);
  color: rgba(255, 253, 248, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-bottom button {
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.noscript-note {
  position: fixed;
  z-index: 500;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 15px 20px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  text-align: center;
}

.page-overlay {
  position: fixed;
  z-index: 190;
  inset: 0;
  visibility: hidden;
  background: rgba(8, 13, 11, 0.62);
  opacity: 0;
  transition: opacity 300ms ease, visibility 300ms ease;
  backdrop-filter: blur(4px);
}

.page-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  display: flex;
  width: min(100%, 510px);
  height: 100dvh;
  flex-direction: column;
  background: var(--white);
  box-shadow: -20px 0 70px rgba(0, 0, 0, 0.18);
  visibility: hidden;
  clip-path: inset(0 0 0 100%);
  pointer-events: none;
  transition: clip-path 460ms var(--ease), visibility 0s linear 460ms;
}

.cart-drawer.is-open {
  visibility: visible;
  clip-path: inset(0);
  pointer-events: auto;
  transition: clip-path 460ms var(--ease), visibility 0s;
}

.cart-drawer__header {
  display: flex;
  padding: 25px 25px 20px 29px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.drawer-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-drawer__header h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.cart-drawer__header h2 span {
  color: var(--muted);
  font-size: 14px;
}

.shipping-progress {
  padding: 15px 29px 17px;
  color: var(--white);
  background: var(--ink);
}

.shipping-progress p {
  margin-bottom: 10px;
  font-size: 10px;
  letter-spacing: 0.03em;
}

.shipping-progress > div {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.2);
}

.shipping-progress > div span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
  transition: width 400ms var(--ease);
}

.cart-items {
  flex: 1;
  padding: 4px 29px;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  padding: 21px 0;
  grid-template-columns: 92px 1fr auto;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.cart-item__image,
.cart-item__placeholder {
  width: 92px;
  height: 112px;
  object-fit: cover;
  background: var(--paper-deep);
}

.cart-item__placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cart-item__details {
  min-width: 0;
  padding-top: 3px;
}

.cart-item__details h3 {
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.25;
}

.cart-item__meta {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.cart-item__warning {
  margin: -6px 0 12px;
  color: var(--error);
  font-size: 9px;
  line-height: 1.4;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quantity-control {
  display: grid;
  height: 32px;
  grid-template-columns: 28px 25px 28px;
  border: 1px solid var(--line);
}

.quantity-control button,
.quantity-control span {
  display: grid;
  padding: 0;
  place-items: center;
  background: transparent;
  font-size: 12px;
}

.quantity-control button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.cart-item__remove {
  padding: 3px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cart-item__price {
  padding-top: 4px;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.cart-empty {
  display: flex;
  padding: 50px 30px;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cart-empty__mark {
  display: grid;
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.cart-empty h3 {
  margin-bottom: 7px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cart-empty p {
  max-width: 270px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
}

.cart-summary {
  padding: 22px 29px 25px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.cart-summary > div:first-child {
  display: flex;
  margin-bottom: 7px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
}

.cart-summary > p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.cart-summary__offline {
  min-height: 0;
  color: var(--error);
}

dialog {
  max-width: none;
  max-height: none;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: var(--white);
}

dialog::backdrop {
  background: rgba(8, 13, 11, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-close,
.filter-close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  font-size: 22px;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.dialog-close:hover,
.filter-close:hover {
  color: var(--white);
  background: var(--ink);
  transform: rotate(5deg);
}

.checkout-dialog {
  width: min(1280px, calc(100% - 30px));
  height: calc(100dvh - 30px);
  overflow: auto;
}

.checkout-dialog[open] {
  animation: dialog-in 350ms var(--ease);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.checkout-shell {
  display: grid;
  min-height: 100%;
  grid-template-columns: 1.15fr 0.85fr;
}

.checkout-main {
  padding: 44px clamp(32px, 5vw, 76px) 70px;
}

.checkout-brand {
  margin-bottom: 34px;
}

.checkout-intro {
  max-width: 620px;
  margin-bottom: 42px;
}

.checkout-intro h2,
.order-confirmation h2,
.contact-dialog h2 {
  margin-bottom: 13px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(48px, 5.3vw, 76px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

.checkout-intro p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.checkout-section {
  margin-bottom: 42px;
}

.checkout-section__title {
  display: flex;
  margin-bottom: 24px;
  gap: 15px;
}

.checkout-section__title > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
  font-weight: 800;
}

.checkout-section__title h2 {
  margin-bottom: 3px;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.checkout-section__title p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid label,
.contact-dialog label,
.notes-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-grid label > span,
.contact-dialog label > span,
.notes-field > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-grid label small,
.notes-field small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-grid input,
.form-grid select,
.contact-dialog input,
.contact-dialog textarea,
.notes-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-grid input[readonly] {
  color: var(--muted);
  background: var(--paper);
}

.form-grid input:focus,
.form-grid select:focus,
.contact-dialog input:focus,
.contact-dialog textarea:focus,
.notes-field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--lime);
}

.form-grid input.is-invalid,
.form-grid select.is-invalid,
.contact-dialog input.is-invalid,
.contact-dialog textarea.is-invalid {
  border-color: var(--error);
}

.field-error {
  color: var(--error);
  font-size: 9px;
  line-height: 1.4;
}

.choice-list {
  display: grid;
  gap: 8px;
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 62px;
  padding: 12px 15px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: var(--ink);
  background: rgba(216, 239, 105, 0.15);
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-card::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.choice-card:has(input:checked)::before {
  border: 3px solid var(--white);
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.choice-card__copy {
  display: grid;
  padding-left: 27px;
}

.choice-card__copy strong {
  font-size: 11px;
}

.choice-card__copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.choice-card b {
  font-size: 10px;
  font-weight: 800;
}

.choice-empty,
.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.checkout-note {
  margin-top: 10px;
}

.notes-field {
  margin-bottom: 24px;
}

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

.checkout-error {
  min-height: 0;
  margin: 0 0 14px;
  color: var(--error);
  font-size: 10px;
  line-height: 1.5;
}

.checkout-status {
  min-height: 0;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
}

.checkout-submit {
  justify-content: space-between;
}

.checkout-submit[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.7;
}

.checkout-secure {
  max-width: 460px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.checkout-summary {
  position: relative;
  padding: 90px clamp(32px, 5vw, 70px) 60px;
  background: var(--paper-deep);
}

.checkout-summary > .section-kicker {
  color: var(--muted);
}

.checkout-summary h2 {
  margin-bottom: 34px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

.checkout-item {
  display: grid;
  padding: 13px 0;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.checkout-item img,
.checkout-item__placeholder {
  width: 62px;
  height: 74px;
  object-fit: cover;
  background: var(--paper);
}

.checkout-item__placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.checkout-item h3 {
  margin-bottom: 4px;
  font-size: 10px;
}

.checkout-item p,
.checkout-item strong {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.checkout-item strong {
  color: var(--ink);
  font-weight: 800;
}

.checkout-summary dl {
  margin: 28px 0 20px;
}

.checkout-summary dl > div {
  display: flex;
  margin-bottom: 10px;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-size: 10px;
}

.checkout-summary dt span {
  color: var(--muted);
  font-size: 8px;
}

.checkout-summary dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.checkout-summary .checkout-total {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
  font-size: 15px;
}

.checkout-summary__note {
  max-width: 400px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.order-confirmation {
  max-width: 640px;
  padding: 30px 0 40px;
}

.order-confirmation:focus {
  outline: 0;
}

.order-confirmation > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.order-reference {
  padding: 15px 17px;
  color: var(--ink) !important;
  background: var(--paper);
  font-size: 12px !important;
}

.order-reference strong {
  margin-left: 6px;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.order-payment {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.secure-summary {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.secure-summary h3 {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.secure-summary__items {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.secure-summary__items li {
  display: flex;
  padding: 8px 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.secure-summary__items li > strong {
  flex: 0 0 auto;
  font-weight: 800;
}

.secure-summary__name {
  display: grid;
  gap: 3px;
  font-weight: 800;
}

.secure-summary__name small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
}

.secure-summary__name > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
}

.secure-summary__meta {
  color: var(--muted);
  font-weight: 400;
  text-transform: capitalize;
}

.secure-summary__address {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.secure-summary__address h4 {
  margin: 0 0 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.secure-summary__address address {
  font-size: 10px;
  font-style: normal;
  line-height: 1.7;
}

.secure-summary__meta-list {
  margin: 14px 0 0 !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  line-height: 1.7;
}

.secure-summary dl {
  margin: 0;
}

.secure-summary dl > div {
  display: flex;
  padding: 7px 0;
  justify-content: space-between;
  font-size: 10px;
}

.secure-summary dd {
  margin: 0;
  font-weight: 800;
}

.secure-summary__total {
  margin-top: 8px;
  padding-top: 13px !important;
  border-top: 1px solid var(--ink);
  font-size: 14px !important;
  font-weight: 800;
}

.secure-summary > p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.contact-dialog {
  width: min(610px, calc(100% - 30px));
  max-height: calc(100dvh - 30px);
  overflow: auto;
}

.contact-dialog__inner {
  padding: 58px 56px 52px;
}

.contact-dialog__inner > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.contact-dialog form {
  display: grid;
  gap: 16px;
}

.contact-dialog textarea {
  min-height: 115px;
  resize: vertical;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-width: 270px;
  max-width: min(420px, calc(100% - 32px));
  padding: 14px 20px 14px 14px;
  align-items: center;
  gap: 13px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 15px 45px rgba(24, 35, 31, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 220ms ease, transform 320ms var(--ease);
}

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

.toast__mark {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.toast p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.state-panel {
  padding: 60px 40px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.state-panel--inline {
  grid-column: 1 / -1;
}

.state-panel--offline {
  background: var(--paper-deep);
}

.state-panel__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.state-panel h2 {
  margin-bottom: 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.state-panel p {
  max-width: 480px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.state-panel__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.shop-page {
  padding-bottom: 120px;
}

.shop-intro {
  padding: clamp(72px, 8vw, 130px) 0 clamp(60px, 7vw, 100px);
}

.shop-intro__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 60px;
}

.shop-intro h1 {
  margin: 0;
  font-size: clamp(74px, 10vw, 152px);
}

.shop-intro__copy {
  padding-bottom: 8px;
}

.shop-intro__copy p {
  max-width: 430px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.connection-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connection-line::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.connection-line.is-offline {
  color: var(--error);
}

.shop-toolbar-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.shop-toolbar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.shop-search {
  display: flex;
  max-width: 480px;
  flex: 1;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.shop-search svg {
  width: 18px;
  margin-right: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.shop-search input {
  min-width: 0;
  height: 50px;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.shop-search input::placeholder {
  color: #9aa29a;
}

.shop-search button {
  width: 46px;
  height: 50px;
  background: transparent;
  font-size: 18px;
}

.shop-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.filter-toggle {
  display: none;
  min-height: 40px;
  padding: 0 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-toggle__count {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sort-control select {
  min-height: 40px;
  padding: 0 28px 0 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: var(--white);
  font-size: 10px;
}

.shop-layout {
  display: grid;
  padding-top: 46px;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 40px;
}

.filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  border: 1px solid var(--line);
  background: var(--white);
}

.filter-panel__head {
  display: flex;
  padding: 24px 20px 18px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.filter-panel__head .section-kicker {
  margin-bottom: 7px;
}

.filter-panel__head h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.filter-close {
  display: none;
}

.filter-panel__body {
  max-height: min(68vh, 680px);
  padding: 5px 20px;
  overflow-y: auto;
}

.filter-group {
  margin: 0;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.filter-group legend {
  width: 100%;
  margin-bottom: 12px;
  padding: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.filter-loading {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.filter-option {
  position: relative;
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 9px;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 11px;
}

.filter-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.filter-option__box {
  display: grid;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--muted);
  background: var(--white);
}

.filter-option__box--radio {
  border-radius: 50%;
}

.filter-option input:checked + .filter-option__box {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 0 0 0 3px var(--white);
}

.filter-option input:checked ~ span:not(.filter-option__box) {
  color: var(--ink);
  font-weight: 800;
}

.filter-option__count {
  margin-left: auto;
  color: #9aa29a;
  font-size: 9px;
}

.price-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.price-inputs__to {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-inputs input {
  width: 100%;
  min-height: 40px;
  padding: 8px 9px;
  border: 1px solid var(--line);
  outline: 0;
  background: transparent;
  font-size: 11px;
}

.price-inputs input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--lime);
}

.filter-hint {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.filter-panel__foot {
  padding: 16px 20px 20px;
}

.filter-panel__foot .button {
  min-height: 42px;
}

.filter-overlay {
  display: none;
}

.shop-results {
  min-width: 0;
}

.results-head {
  display: flex;
  min-height: 48px;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.results-count,
.results-status {
  margin: 0;
}

.results-count {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-status {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.active-filters {
  display: flex;
  min-height: 42px;
  margin-bottom: 26px;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.active-filters__empty {
  color: var(--muted);
  font-size: 10px;
}

.filter-chip {
  display: inline-flex;
  min-height: 30px;
  padding: 0 9px 0 11px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 20px;
  color: var(--ink);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.filter-chip:hover {
  color: var(--white);
  background: var(--ink);
}

.pagination {
  display: flex;
  margin-top: 58px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.pagination-button {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.pagination-button:hover:not(:disabled),
.pagination-button.is-current {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.pagination-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.pagination-gap {
  padding: 0 4px;
  color: var(--muted);
}

.product-page {
  padding: 30px 0 130px;
}

.breadcrumbs {
  display: flex;
  padding: 24px 0 38px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-loading {
  max-width: 800px;
  margin: 60px auto;
}

.product-error {
  max-width: 800px;
  margin: 60px auto;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: start;
  gap: clamp(40px, 7vw, 105px);
}

.product-gallery {
  min-width: 0;
}

.product-gallery__main {
  position: relative;
  aspect-ratio: 0.86;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--muted);
  background: linear-gradient(135deg, #e7e2d6, #d8d2c3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-gallery__index {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-gallery__thumbs {
  display: flex;
  margin-top: 10px;
  gap: 8px;
}

.product-thumb {
  display: grid;
  width: 78px;
  height: 92px;
  padding: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb.is-active {
  border: 2px solid var(--ink);
}

.product-detail__info {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding-top: 8px;
}

.product-detail__eyebrow {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail__info h1 {
  margin-bottom: 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(52px, 5.5vw, 86px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}

.product-detail__price {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 800;
}

.product-detail__price s {
  margin-left: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.product-detail__price--unavailable {
  color: var(--muted);
  font-size: 13px;
}

.product-detail__stock {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail__stock span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.product-detail__stock.is-out-stock {
  color: var(--error);
}

.product-detail__description {
  max-width: 550px;
  margin-bottom: 30px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-options {
  margin-bottom: 24px;
}

.option-heading {
  display: flex;
  margin-bottom: 11px;
  align-items: baseline;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.option-heading strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.colour-options,
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.colour-option {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--swatch, var(--paper-deep));
}

.colour-option__dot {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(24, 35, 31, 0.3);
  border-radius: 50%;
  background: var(--swatch, var(--paper-deep));
}

.colour-option.is-selected {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--white), inset 0 0 0 3px var(--ink);
}

.size-option {
  min-width: 48px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 10px;
  font-weight: 800;
}

.size-option:hover:not(:disabled),
.size-option.is-selected {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.size-option:disabled {
  cursor: not-allowed;
  color: #a4aca3;
  background: var(--paper);
  text-decoration: line-through;
}

.product-detail__specs {
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.product-detail__specs > div {
  display: grid;
  padding: 12px 0;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.product-detail__specs dt {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail__specs dd {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.5;
}

.product-purchase {
  display: grid;
  margin-top: 20px;
  grid-template-columns: 100px 1fr;
  gap: 9px;
}

.quantity-control--large {
  height: 52px;
  grid-template-columns: 30px 1fr 30px;
}

.product-purchase .button {
  min-height: 52px;
  justify-content: space-between;
}

.product-detail__note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.related {
  padding-top: clamp(100px, 11vw, 160px);
}

.related .section-heading {
  margin-bottom: 45px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 850ms var(--ease);
}

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

@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;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 160px 1fr 160px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a,
  .desktop-nav__categories a {
    font-size: 10px;
  }

  .home-hero__grid {
    min-height: 690px;
    grid-template-columns: 1fr 0.9fr;
  }

  .home-hero__copy {
    padding-right: 40px;
  }

  .home-hero h1 {
    font-size: clamp(62px, 8.3vw, 100px);
  }

  .product-grid--shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading__aside {
    justify-content: flex-start;
  }

  .editorial__grid {
    min-height: 690px;
  }

  .editorial__content {
    padding: 70px 34px 65px 55px;
  }

  .editorial__content h2 {
    font-size: clamp(60px, 8vw, 92px);
  }

  .home-method__grid {
    gap: 65px;
  }

  .footer-top {
    grid-template-columns: 0.75fr 0.75fr 1.5fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 44px), var(--container));
  }

  .desktop-nav,
  .header-actions .icon-button,
  .cart-button__label {
    display: none;
  }

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

  .menu-button {
    display: inline-grid;
    justify-self: start;
  }

  .header-actions {
    gap: 0;
  }

  .mobile-menu {
    display: flex;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    min-height: 650px;
    padding: 64px 0 44px;
  }

  .home-hero h1 {
    max-width: 700px;
    font-size: clamp(66px, 13vw, 108px);
  }

  .home-hero__meta {
    margin-top: 62px;
  }

  .home-hero__visual {
    min-height: 720px;
  }

  .editorial__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .editorial__visual {
    min-height: 720px;
    margin: 0;
  }

  .editorial__content {
    padding: 80px max(22px, calc((100vw - var(--container)) / 2));
  }

  .home-method__grid {
    grid-template-columns: 1fr;
  }

  .home-method__copy {
    max-width: 680px;
  }

  .home-method__visual {
    margin-left: 10vw;
  }

  .home-method__note {
    right: 0;
  }

  .home-values__heading {
    display: block;
  }

  .home-values__grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 330px;
  }

  .value-card + .value-card {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .value-card h3 {
    font-size: 38px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    grid-row: 1;
  }

  .checkout-main {
    padding-top: 38px;
  }

  .shop-intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .shop-layout {
    display: block;
    position: relative;
  }

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

  .filter-panel {
    position: fixed;
    z-index: 210;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(100%, 380px);
    max-height: none;
    overflow: auto;
    border: 0;
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.18);
    visibility: hidden;
    transform: translateX(-105%);
    transition: transform 320ms var(--ease), visibility 320ms var(--ease);
  }

  .filter-panel.is-open {
    visibility: visible;
    transform: translateX(0);
  }

  .filter-panel__head {
    position: relative;
    padding-right: 68px;
  }

  .filter-close {
    display: grid;
  }

  .filter-panel__body {
    max-height: none;
  }

  .filter-overlay {
    position: fixed;
    z-index: 205;
    inset: 0;
    display: block;
    visibility: hidden;
    background: rgba(8, 13, 11, 0.55);
    opacity: 0;
    transition: opacity 280ms ease, visibility 280ms ease;
  }

  .filter-overlay.is-open {
    visibility: visible;
    opacity: 1;
  }

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

  .product-detail__info {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .announcement__track {
    justify-content: flex-start;
    animation-duration: 24s;
  }

  .announcement__track span:nth-child(n+5),
  .announcement__track i:nth-child(n+4) {
    display: none;
  }

  .brand__name {
    font-size: 25px;
  }

  .header-actions .icon-button {
    display: none;
  }

  .cart-button {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .cart-button svg {
    display: none;
  }

  .cart-count {
    width: 36px;
    height: 36px;
  }

  .home-hero__copy {
    min-height: 610px;
  }

  .eyebrow {
    margin-bottom: 36px;
  }

  .home-hero h1 {
    font-size: clamp(58px, 19vw, 86px);
    line-height: 0.9;
  }

  .home-hero h1 em {
    -webkit-text-stroke-width: 1.5px;
  }

  .home-hero__copy > p {
    font-size: 15px;
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .home-hero__actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .home-hero__meta {
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;
  }

  .home-hero__meta div:last-child {
    display: none;
  }

  .home-hero__visual {
    min-height: 540px;
  }

  .home-hero__visual-note {
    font-size: 8px;
  }

  .marquee__track {
    font-size: 19px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .home-values h2,
  .home-method h2,
  .related h2 {
    font-size: clamp(52px, 17vw, 74px);
  }

  .section-heading__aside {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid,
  .product-grid--shop {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-card__view {
    opacity: 1;
    transform: translateY(0);
  }

  .home-collections {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .home-collections a + a {
    padding-left: 0;
    border-left: 0;
  }

  .editorial__visual {
    min-height: 530px;
  }

  .editorial__content {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .editorial__content h2 {
    font-size: clamp(58px, 18vw, 78px);
  }

  .home-method__grid {
    gap: 55px;
  }

  .home-method__visual {
    margin-left: 0;
  }

  .home-method__note {
    right: 0;
    bottom: 24px;
    width: 74%;
  }

  .value-card {
    min-height: 345px;
    padding: 26px;
  }

  .value-card h3 {
    right: 26px;
    bottom: 96px;
    left: 26px;
    font-size: 36px;
  }

  .value-card p {
    right: 26px;
    bottom: 26px;
    left: 26px;
  }

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

  .service-grid article,
  .service-grid article:first-child {
    min-height: auto;
    padding: 36px 24px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid article:first-child {
    border-top: 1px solid var(--line);
  }

  .newsletter {
    padding: 82px 0;
  }

  .newsletter h2 {
    font-size: clamp(56px, 18vw, 78px);
  }

  .newsletter__grid {
    gap: 45px;
  }

  .footer-top {
    padding-bottom: 50px;
    grid-template-columns: 1fr;
  }

  .footer-top > p {
    margin-top: 15px;
  }

  .footer-links {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

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

  .footer-bottom > span:nth-child(2) {
    display: none;
  }

  .shop-page {
    padding-bottom: 80px;
  }

  .shop-intro {
    padding: 60px 0 48px;
  }

  .shop-intro h1 {
    font-size: clamp(72px, 22vw, 108px);
  }

  .shop-intro__copy p {
    font-size: 15px;
  }

  .shop-toolbar {
    min-height: 0;
    padding: 15px 0;
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .shop-search {
    max-width: none;
  }

  .shop-toolbar__actions {
    justify-content: space-between;
    gap: 12px;
  }

  .sort-control {
    flex: 1;
    justify-content: space-between;
  }

  .sort-control select {
    flex: 1;
  }

  .active-filters {
    min-height: 0;
    margin-bottom: 22px;
  }

  .product-page {
    padding-bottom: 80px;
  }

  .breadcrumbs {
    padding: 18px 0 30px;
    font-size: 8px;
  }

  .product-detail__info h1 {
    font-size: clamp(50px, 16vw, 76px);
  }

  .product-gallery__thumbs {
    overflow-x: auto;
  }

  .product-purchase {
    grid-template-columns: 86px 1fr;
  }

  .product-purchase .button {
    padding: 0 15px;
    gap: 10px;
    font-size: 9px;
  }

  .checkout-dialog {
    width: 100%;
    height: 100dvh;
  }

  .checkout-main {
    padding: 32px 20px 55px;
  }

  .checkout-summary {
    padding: 40px 20px;
  }

  .checkout-intro h2,
  .order-confirmation h2,
  .contact-dialog h2 {
    font-size: 50px;
  }

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

  .form-grid__wide {
    grid-column: auto;
  }

  .state-panel {
    padding: 42px 22px;
  }

  .state-panel__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-dialog {
    width: 100%;
    max-height: 100dvh;
  }

  .contact-dialog__inner {
    padding: 55px 24px 40px;
  }
}
