:root {
  color-scheme: dark;
  --ink: #050505;
  --raised: #101010;
  --graphite: #262626;
  --mist: #a8a8a8;
  --paper: #f4f4f0;
  --white: #fff;
  --gutter: clamp(20px, 4.3vw, 64px);
  --header-height: 76px;
  --utility-height: 28px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  border-radius: 0;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateY(-140%);
}

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

.utility-bar {
  min-height: var(--utility-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--mist);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}

.utility-bar a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.store-header,
.portfolio-header {
  position: relative;
  z-index: 20;
  height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 5, .97);
}

.store-logo,
.portfolio-logo {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.store-logo img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.portfolio-logo img {
  width: 86px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.store-nav,
.portfolio-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 52px);
}

.store-nav a,
.portfolio-nav a,
.portfolio-nav span {
  min-width: 44px;
  min-height: 44px;
  border-bottom: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.store-nav a[aria-current="page"],
.portfolio-nav a[aria-current="page"] {
  border-bottom-color: var(--paper);
}

.portfolio-nav span[aria-disabled="true"] {
  color: #656565;
}

.cart-count {
  margin-left: .35em;
}

.entry-body {
  overflow: hidden;
}

.entry-page {
  min-height: 100svh;
  padding: 32px 24px;
  display: grid;
  place-items: center;
}

.entry-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(42px, 7vh, 68px);
  transform: translateY(-2vh);
}

.entry-logo {
  width: clamp(210px, 30vw, 330px);
  height: auto;
  display: block;
}

.entry-link {
  min-height: 48px;
  padding: 0 18px 0 25px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 1.2vw, 17px);
  font-weight: 500;
  letter-spacing: .55em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.entry-link:hover {
  border-color: var(--graphite);
}

.entry-footer {
  position: fixed;
  right: 0;
  bottom: max(28px, env(safe-area-inset-bottom));
  left: 0;
  color: #555;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-page {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(52px, 7vw, 96px) var(--gutter) 60px;
}

.gallery-intro {
  margin-bottom: clamp(38px, 5vw, 72px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.gallery-intro--compact {
  margin-bottom: clamp(22px, 3vw, 36px);
  align-items: center;
}

.gallery-intro--compact .gallery-kicker {
  margin: 0;
}

.gallery-kicker,
.gallery-index,
.collection-index,
.product-index,
.cart-index,
.eyebrow {
  margin: 0 0 14px;
  color: var(--mist);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.gallery-intro h1,
.collection-intro h1,
.cart-intro h1 {
  margin: 0;
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .78;
  text-transform: uppercase;
}

.gallery-index {
  margin: 0;
  padding-bottom: 4px;
}

.gallery-card {
  position: relative;
  min-height: min(57vw, 630px);
  overflow: hidden;
  border: 1px solid var(--graphite);
  display: block;
  background: #090909;
  color: var(--paper);
  text-decoration: none;
  isolation: isolate;
}

.gallery-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("/assets/campaign-gallery.webp") center / cover no-repeat;
  content: "";
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .48) 42%, rgba(0, 0, 0, .08) 74%);
  content: "";
}

.gallery-card:hover::before {
  filter: contrast(1.04);
  transform: scale(1.015);
}

.gallery-card-copy {
  position: absolute;
  right: 40%;
  bottom: clamp(30px, 4vw, 58px);
  left: clamp(28px, 4vw, 58px);
}

.gallery-card h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .78;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - var(--utility-height));
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #080808 url("/assets/campaign-home.webp") center / cover no-repeat;
  isolation: isolate;
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .74) 0%, rgba(0, 0, 0, .18) 44%, transparent 72%);
  content: "";
}

.hero-copy {
  width: min(720px, 72vw);
  padding: 0 var(--gutter) clamp(52px, 7vw, 94px);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(82px, 11vw, 170px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .76;
  text-transform: uppercase;
}

.support {
  margin: 25px 0 0;
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-action,
.cart-return {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.primary-action:hover,
.cart-return:hover {
  background: transparent;
  color: var(--paper);
}

.product-cue {
  color: var(--mist);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 48px;
  color: #777;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.collection-preview,
.collection-page {
  padding: clamp(64px, 8vw, 118px) var(--gutter);
}

.section-heading,
.collection-intro {
  margin-bottom: clamp(38px, 6vw, 74px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .85;
  text-transform: uppercase;
}

.section-heading > p,
.collection-description {
  max-width: 420px;
  margin: 0;
  color: var(--mist);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.75;
  text-transform: uppercase;
}

.product-grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 36px);
}

.product-card,
.collection-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  color: var(--paper);
  text-decoration: none;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
  background: #e8e8e5;
  transition: transform 220ms ease;
}

.collection-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  background: #e8e8e5;
}

.collection-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-card:hover img,
.collection-card:hover img {
  transform: scale(1.018);
}

.product-card-meta,
.collection-card-meta {
  min-height: 82px;
  padding: 16px 0 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  overflow: visible;
  position: relative;
  z-index: 1;
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.collection-intro {
  margin-bottom: 56px;
}

.collection-rule {
  min-height: 44px;
  margin-bottom: 26px;
  border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.collection-image-wrap {
  position: relative;
}

.collection-card-meta h2,
.collection-card-meta p {
  margin: 0;
}

.collection-card-meta > div,
.product-card-meta > span:first-child {
  min-width: 0;
}

.collection-card-meta > span,
.product-card-meta > span:last-child {
  flex: 0 0 auto;
}

.collection-card-meta h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  overflow-wrap: normal;
  word-break: normal;
}

.collection-card-meta p {
  margin-top: 7px;
  color: #777;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .13em;
}

.collection-footer,
.site-footer {
  min-height: 80px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--graphite);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #676767;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product-page {
  min-height: calc(100svh - var(--header-height) - var(--utility-height));
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(380px, .92fr);
}

.product-gallery {
  min-width: 0;
  padding: clamp(24px, 3vw, 46px);
  border-right: 1px solid var(--graphite);
}

.product-stage {
  position: relative;
  min-height: min(72vw, 760px);
  overflow: hidden;
  background: #e5e5e2;
  touch-action: pan-y;
}

.product-slide {
  position: absolute;
  inset: 0;
}

.product-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-slide img.studio-view {
  object-fit: contain;
}

.product-slide img.detail-view {
  object-fit: contain;
  transform: scale(1.55);
  transform-origin: 58% 38%;
}

.product-slide img.crop-view {
  object-fit: cover;
  transform: scale(1.18);
}

.product-image-label {
  position: absolute;
  top: 18px;
  left: 18px;
  min-height: 30px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  background: rgba(5, 5, 5, .84);
  color: var(--paper);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gallery-nav {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, .88);
}

.gallery-arrow {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 18px;
}

.gallery-position {
  min-width: 74px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
}

.gallery-thumbs {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  gap: 8px;
}

.gallery-thumb {
  width: 56px;
  height: 56px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #ddd;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--paper);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.swipe-note {
  margin: 14px 0 0;
  color: #6d6d6d;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.product-panel {
  align-self: start;
  min-width: 0;
  min-height: calc(100svh - var(--header-height) - var(--utility-height));
  padding: clamp(40px, 5vw, 74px) clamp(28px, 4vw, 62px);
  position: sticky;
  top: 0;
}

.product-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.product-heading h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(42px, 4.4vw, 70px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .86;
  text-transform: uppercase;
}

.product-price {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.product-color {
  margin: 24px 0 0;
  color: var(--mist);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-form {
  margin-top: 38px;
}

.product-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.product-fieldset legend,
.quantity-row > span {
  width: 100%;
  margin: 0 0 12px;
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.selection-value {
  color: #6d6d6d;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(44px, 1fr));
}

.size-options button {
  min-width: 44px;
  min-height: 48px;
  padding: 0;
  border: 1px solid var(--graphite);
  border-right: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.size-options button:last-child {
  border-right: 1px solid var(--graphite);
}

.size-options button.is-selected {
  background: var(--paper);
  color: var(--ink);
}

.quantity-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quantity-row > span {
  width: auto;
  margin: 0;
}

.quantity-control,
.cart-quantity-control {
  min-height: 48px;
  border: 1px solid var(--graphite);
  display: grid;
  grid-template-columns: 44px 46px 44px;
  align-items: center;
  text-align: center;
}

.quantity-control button,
.cart-quantity-control button {
  min-width: 44px;
  min-height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 16px;
}

.quantity-value,
.cart-quantity-value {
  font-size: 10px;
  font-weight: 700;
}

.product-add {
  width: 100%;
  min-height: 56px;
  margin-top: 20px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.product-add:hover,
.product-add.is-added {
  background: transparent;
  color: var(--paper);
}

.product-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: #747474;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-description {
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--graphite);
}

.product-description h2 {
  margin: 0 0 14px;
  color: var(--mist);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.product-description p {
  max-width: 520px;
  margin: 0;
  color: #c8c8c4;
  font-size: 12px;
  line-height: 1.75;
}

.cart-page {
  min-height: calc(100svh - var(--header-height) - var(--utility-height));
  padding: clamp(52px, 6vw, 82px) var(--gutter) 64px;
}

.cart-intro {
  margin-bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.cart-intro-note {
  max-width: 390px;
  margin: 0;
  color: var(--mist);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

.cart-rule {
  min-height: 42px;
  padding: 0 18px;
  border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px 112px;
  align-items: center;
  color: #777;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cart-rule span:nth-child(2) {
  text-align: center;
}

.cart-rule span:last-child {
  text-align: right;
}

.cart-line {
  min-height: 198px;
  padding: 18px;
  border-bottom: 1px solid var(--graphite);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px 112px;
  align-items: center;
}

.cart-product {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.cart-thumb {
  width: 154px;
  height: 154px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #e5e5e2;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.cart-product-copy {
  min-width: 0;
}

.cart-product-copy h2 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .96;
  text-transform: uppercase;
}

.cart-variant,
.cart-unit-price {
  margin: 10px 0 0;
  color: var(--mist);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.cart-remove {
  min-height: 44px;
  margin: 8px 0 0 -12px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: #888;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.cart-quantity {
  text-align: center;
}

.cart-quantity-control {
  width: 144px;
  margin: 0 auto;
}

.cart-unit-price {
  display: block;
  margin-top: 8px;
  font-size: 6px;
}

.cart-line-total-wrap {
  text-align: right;
}

.cart-line-total,
.cart-summary-row strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.cart-mobile-label {
  display: none;
}

.cart-summary {
  width: min(430px, 100%);
  margin: 34px 0 0 auto;
}

.cart-summary-row {
  min-height: 54px;
  border-top: 1px solid var(--paper);
  border-bottom: 1px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cart-summary > p {
  margin: 12px 0 22px;
  color: #696969;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.cart-disabled-message {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.cart-empty {
  min-height: 430px;
  padding: 40px 18px;
  border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cart-empty-index {
  margin: 0 0 14px;
  color: var(--mist);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.cart-empty h2 {
  margin: 0;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .9;
  text-transform: uppercase;
}

.cart-return {
  min-width: 240px;
  margin-top: 30px;
}

.cart-empty-boundary {
  margin: 22px 0 0;
  color: #666;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

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

.not-found {
  min-height: 100svh;
  padding: var(--gutter);
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found img {
  width: 96px;
}

.not-found h1 {
  margin: 30px 0 12px;
  font-size: clamp(64px, 12vw, 150px);
  letter-spacing: -.08em;
  line-height: .78;
}

.not-found p {
  color: var(--mist);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.not-found a {
  min-height: 48px;
  margin-top: 20px;
  padding: 0 20px;
  border: 1px solid var(--paper);
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

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

@media (min-width: 701px) and (max-width: 1024px) {
  .product-grid,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page {
    display: block;
  }

  .product-gallery {
    border-right: 0;
    border-bottom: 1px solid var(--graphite);
  }

  .product-stage {
    min-height: 760px;
  }

  .product-panel {
    min-height: auto;
    padding-top: 58px;
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
    gap: 42px;
  }

  .product-panel > .product-heading,
  .product-panel > .product-color,
  .product-panel > .product-form {
    grid-column: 1;
  }

  .product-description {
    grid-column: 2;
    grid-row: 1 / 5;
    margin-top: 0;
    align-self: start;
  }

  .cart-rule,
  .cart-line {
    grid-template-columns: minmax(0, 1fr) 170px 90px;
  }

  .cart-line {
    min-height: 180px;
    padding-right: 0;
    padding-left: 0;
  }

  .cart-thumb {
    width: 138px;
    height: 138px;
  }

  .cart-product-copy h2 {
    max-width: 260px;
    font-size: 25px;
  }

  .cart-quantity-control {
    width: 132px;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 18px;
    --header-height: 72px;
  }

  .utility-bar {
    justify-content: space-between;
    gap: 4px;
    font-size: 6px;
  }

  .store-logo img {
    width: 42px;
    height: 42px;
  }

  .portfolio-logo img {
    width: 64px;
    height: 48px;
  }

  .store-nav,
  .portfolio-nav {
    gap: 18px;
  }

  .store-nav a,
  .portfolio-nav a,
  .portfolio-nav span {
    font-size: 8px;
  }

  .entry-brand {
    gap: 42px;
  }

  .entry-logo {
    width: min(260px, 72vw);
  }

  .gallery-page {
    padding-top: 52px;
  }

  .gallery-intro {
    margin-bottom: 34px;
    display: block;
  }

  .gallery-intro--compact {
    margin-bottom: 24px;
    display: flex;
  }

  .gallery-intro--compact .gallery-index {
    margin-top: 0;
  }

  .gallery-intro h1 {
    font-size: 58px;
  }

  .gallery-index {
    margin-top: 18px;
  }

  .collection-intro h1 {
    font-size: 54px;
  }

  .cart-intro h1 {
    font-size: 64px;
  }

  .gallery-card {
    min-height: 580px;
  }

  .gallery-card::before {
    background-position: 62% center;
  }

  .gallery-card::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .18) 62%, rgba(0, 0, 0, .08) 100%);
  }

  .gallery-card-copy {
    right: 22px;
    bottom: 28px;
    left: 22px;
  }

  .gallery-card h2 {
    font-size: 50px;
  }

  .home-hero {
    min-height: calc(100svh - var(--header-height) - var(--utility-height));
    background-position: 62% center;
  }

  .home-hero::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .32) 44%, transparent 72%);
  }

  .hero-copy {
    width: 100%;
    padding: 0 var(--gutter) 40px;
  }

  .hero-copy h1 {
    font-size: 82px;
  }

  .support {
    max-width: 290px;
    margin-top: 18px;
    font-size: 8px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 24px;
    display: block;
  }

  .primary-action {
    width: 100%;
  }

  .product-cue {
    margin-top: 15px;
    display: block;
  }

  .scroll-cue {
    display: none;
  }

  .collection-preview,
  .collection-page {
    padding-top: 62px;
    padding-bottom: 58px;
  }

  .section-heading,
  .collection-intro {
    display: block;
  }

  .section-heading h2 {
    font-size: 54px;
  }

  .section-heading > p,
  .collection-description {
    margin-top: 24px;
    font-size: 8px;
  }

  .product-grid,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .product-card-meta,
  .collection-card-meta {
    min-height: 76px;
    padding: 12px 0 20px;
    gap: 8px;
    font-size: 8px;
    line-height: 1.4;
  }

  .collection-card-meta h2 {
    font-size: 8px;
  }

  .collection-card-meta p {
    margin-top: 5px;
    font-size: 7px;
  }

  .collection-footer {
    margin-top: 50px;
    font-size: 6px;
  }

  .product-page {
    display: block;
  }

  .product-gallery {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--graphite);
  }

  .product-stage {
    min-height: 500px;
  }

  .gallery-nav {
    right: 12px;
    bottom: 12px;
  }

  .gallery-thumbs {
    bottom: 12px;
    left: 12px;
    gap: 5px;
  }

  .gallery-thumb {
    width: 44px;
    height: 44px;
  }

  .gallery-position {
    min-width: 64px;
  }

  .swipe-note {
    padding: 0 var(--gutter) 14px;
  }

  .product-panel {
    min-height: auto;
    padding: 40px var(--gutter) 54px;
    position: static;
  }

  .product-heading h1 {
    font-size: 46px;
  }

  .product-form {
    margin-top: 32px;
  }

  .size-options button {
    min-height: 50px;
  }

  .product-add {
    min-height: 54px;
  }

  .cart-page {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .cart-intro {
    margin-bottom: 28px;
    display: block;
  }

  .cart-intro-note {
    max-width: 320px;
    margin-top: 18px;
    font-size: 6px;
    text-align: left;
  }

  .cart-rule {
    min-height: 38px;
    padding: 0;
    display: flex;
    font-size: 6px;
  }

  .cart-rule span:nth-child(2),
  .cart-rule span:last-child {
    display: none;
  }

  .cart-line {
    min-height: 0;
    padding: 14px 0 16px;
    grid-template-columns: minmax(0, 1fr) 76px;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 12px;
  }

  .cart-product {
    grid-column: 1;
    grid-row: 1 / 3;
    align-items: flex-start;
    gap: 12px;
  }

  .cart-thumb {
    width: 76px;
    height: 92px;
  }

  .cart-product-copy h2 {
    max-width: 145px;
    font-size: 14px;
  }

  .cart-variant {
    max-width: 150px;
    margin-top: 7px;
    font-size: 5.5px;
  }

  .cart-remove {
    min-height: 44px;
    margin-top: 3px;
    font-size: 6px;
  }

  .cart-quantity {
    grid-column: 2;
    grid-row: 1;
  }

  .cart-quantity-control {
    width: 76px;
    min-height: 44px;
    grid-template-columns: 24px 1fr 24px;
  }

  .cart-quantity-control button {
    min-width: 24px;
    min-height: 44px;
  }

  .cart-unit-price {
    font-size: 5px;
  }

  .cart-line-total-wrap {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    padding-top: 8px;
  }

  .cart-mobile-label {
    margin-bottom: 5px;
    display: block;
    color: #696969;
    font-size: 5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .cart-line-total {
    font-size: 8px;
  }

  .cart-summary {
    margin-top: 24px;
  }

  .cart-summary-row {
    min-height: 46px;
    font-size: 7px;
  }

  .cart-summary > p {
    margin: 9px 0 15px;
    font-size: 5.5px;
  }

  .cart-disabled-message {
    min-height: 48px;
    font-size: 6.5px;
  }

  .cart-empty {
    min-height: 390px;
    padding: 30px 16px;
  }

  .cart-empty h2 {
    font-size: 44px;
  }

  .cart-return {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    margin-top: 24px;
    font-size: 8px;
  }
}

@media (max-height: 560px) {
  .entry-brand {
    gap: 28px;
    transform: none;
  }

  .entry-logo {
    width: min(190px, 38vh);
  }

  .entry-footer {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
