:root {
  --ink: #111111;
  --muted: #66615d;
  --line: #dedbd4;
  --paper: #ffffff;
  --soft: #f6f5f2;
  --stone: #d8d2c6;
  --olive: #3f4b3d;
  --clay: #8e6955;
  --sea: #486b6c;
  --danger: #b3261e;
  --shadow: 0 16px 45px rgba(20, 18, 15, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-initial-route="non-home"][data-route-rendered="false"] #app > .hero-shell {
  display: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.bag-open {
  overflow: hidden;
}

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

.route-skeleton {
  display: none;
  min-height: clamp(520px, 72vh, 760px);
  padding: clamp(72px, 12vw, 132px) var(--page-pad);
  background:
    linear-gradient(120deg, rgba(255,255,255,.92), rgba(245,239,230,.94)),
    radial-gradient(circle at 80% 18%, rgba(155, 119, 87, .14), transparent 34%);
  color: var(--ink);
}

html[data-initial-route="non-home"][data-route-rendered="false"] .route-skeleton {
  display: grid;
  align-items: center;
}

.route-skeleton > div {
  max-width: 720px;
}

.route-skeleton h1 {
  margin: 0;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 7vw, 4.8rem);
  line-height: .95;
}

.route-skeleton p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

html[data-route-rendered="true"] .route-skeleton {
  display: none;
}

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

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

button {
  cursor: pointer;
}

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

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: #f7f7f5;
  color: #2b2927;
  font-size: 12px;
}

.utility-bar nav {
  display: flex;
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 8px 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  isolation: isolate;
}

.simple-header {
  display: flex;
  justify-content: center;
  padding-bottom: 22px;
}

.brand {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 150px;
  height: auto;
  aspect-ratio: 1;
  overflow: visible;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.icon-button,
.cart-button,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.icon-button {
  width: 42px;
  height: 42px;
}

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

.cart-button {
  gap: 8px;
  min-height: 42px;
  padding: 0 4px;
  font-size: 14px;
}

.cart-button strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
}

.site-nav {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  min-height: 56px;
  font-size: 14px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--ink);
}

.sale-link {
  color: var(--danger);
}

.search-panel {
  position: sticky;
  top: 146px;
  z-index: 19;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 18px 42px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.search-panel[hidden] {
  display: none;
}

.search-field input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  padding: 0 16px;
  border-radius: var(--radius);
}

.loading-state,
.empty-state {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 42px;
  text-align: center;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  font-size: 14px;
}

.eyebrow,
.micro {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(620px, 1.25fr);
  min-height: 520px;
  border-bottom: 1px solid var(--line);
  background: #f8f7f4;
}

.hero-copy {
  align-self: center;
  padding: 50px 5vw;
}

.hero-copy h1 {
  max-width: 640px;
  margin: 0 0 18px;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 700;
}

.hero-copy p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  align-self: center;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ebe8df;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ks-active-hero .hero-media {
  background: #efede8;
}

.ks-active-hero .hero-media img {
  object-position: center;
}

.brand-ribbon {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 42px 18px;
  content-visibility: auto;
  contain-intrinsic-size: 150px;
}

.brand-logo-card {
  display: grid;
  place-items: center;
  padding: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}

.brand-logo-card img {
  width: min(150px, 100%);
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.section-block {
  padding: 48px 42px;
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

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

.section-head h2,
.feature-band h2,
.newsletter-panel h2,
.checkout-card h2,
.policy-card h2,
.care-panel h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

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

.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: var(--card-aspect, 4 / 5);
  overflow: hidden;
  background: var(--media-background, #f7f6f3);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: var(--card-fit, cover);
  object-position: var(--card-position, 50% 50%);
  transition: transform 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-media img {
    transform: scale(1.025);
  }
}

.coming-soon-media {
  display: grid;
  place-items: start end;
  min-height: 100%;
  padding: 14px;
  background: var(--soft);
}

.coming-soon-media span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.card-coming-soon-media {
  height: 100%;
}

.product-coming-soon-media {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card-photo-status,
.card-compatibility,
.coming-soon-copy,
.waitlist-interest {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.card-photo-status {
  font-weight: 700;
  color: var(--ink);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.product-badge.sold-out {
  background: var(--ink);
  color: #fff;
}

.product-card-body {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.product-brand {
  color: var(--muted);
  font-size: 12px;
}

.product-card h3 {
  min-height: 42px;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-line s {
  color: var(--muted);
  font-size: 13px;
}

.search-result-group + .search-result-group {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.compact-head {
  margin-bottom: 22px;
}

.launching-soon-badge,
.launching-soon-label {
  letter-spacing: 0.11em;
  font-size: 11px;
  font-weight: 800;
}

.launching-soon-badge {
  background: var(--ink);
  color: #fff;
}

.launching-soon-label {
  margin: 0;
  color: var(--olive);
}

.move-card-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: start;
  gap: 8px;
}

.wishlist-heart {
  display: grid;
  place-items: center;
  width: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 23px;
  line-height: 1;
}

.wishlist-heart[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

.move-card-wishlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.move-card-wishlist-panel[hidden] {
  display: none;
}

.move-card-wishlist-panel label {
  display: grid;
  gap: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.move-card-wishlist-panel select {
  min-height: 38px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.move-card-wishlist-panel .button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 11px;
}

.move-card-wishlist-panel .variant-error {
  grid-column: 1 / -1;
  margin: 0;
}

.card-stock {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.card-display-colour {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.card-stock.is-sold-out {
  color: var(--danger);
}

.card-view-link {
  margin-top: 3px;
}

.swatches {
  display: flex;
  gap: 7px;
  min-height: 18px;
}

.swatches span,
.swatches button {
  width: 14px;
  height: 14px;
  border: 1px solid #c4c0b8;
  border-radius: 999px;
  background: var(--swatch);
  padding: 0;
}

.quick-selectors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quick-selectors select {
  width: 100%;
  height: 38px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}

.mobile-filter-bar,
.filter-panel-head,
.active-filter-row {
  display: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  font-weight: 700;
}

.category-tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--soft);
}

.category-tile span {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 3px;
  padding: 32px 15px 14px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.category-tile small {
  font-size: 11px;
  font-weight: 500;
}

.move-subcategories {
  background: #fff;
}

.move-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.move-audience-card {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  display: grid;
  align-content: end;
  gap: 12px;
}

.move-audience-card span {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
}

.move-audience-card p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.move-audience-card.visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #2b2927;
}

.move-audience-card.visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 32%, rgba(17, 17, 17, 0.78) 100%);
}

.move-audience-card.visual > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.move-audience-card.visual > span,
.move-audience-card.visual > p {
  position: relative;
  z-index: 2;
}

.move-audience-card.visual p {
  color: rgba(255, 255, 255, 0.86);
}

.move-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.move-category-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.move-category-links a[aria-current="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.move-shop-header {
  display: grid;
  gap: 18px;
  padding: 34px 42px 0;
}

.move-shop-header h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.12;
}

.move-shop-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.audience-tabs {
  display: inline-flex;
  width: fit-content;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.audience-tabs a {
  min-width: 82px;
  padding: 10px 16px;
  border-radius: 999px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.audience-tabs a[aria-current="true"] {
  background: var(--ink);
  color: #fff;
}

.move-category-links.compact {
  margin-top: 0;
}

.edit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.edit-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.edit-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: var(--soft);
}

.edit-card span {
  padding: 18px 18px 4px;
  font-size: 20px;
  font-weight: 700;
}

.edit-card p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--muted);
  line-height: 1.55;
}

.outdoor-cooking-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr) minmax(260px, 0.72fr);
  gap: 0;
  margin: 28px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  color: #fff;
}

.outdoor-cooking-media {
  display: block;
  min-height: 520px;
  background: #191817;
}

.outdoor-cooking-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outdoor-cooking-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 48px;
}

.outdoor-cooking-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.outdoor-cooking-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.outdoor-cooking-copy .button {
  width: fit-content;
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.outdoor-cooking-products {
  display: grid;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.outdoor-cooking-products a {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.outdoor-cooking-products a:last-child {
  border-bottom: 0;
}

.outdoor-cooking-products img {
  width: 78px;
  height: 98px;
  border-radius: 6px;
  object-fit: cover;
  background: #242220;
}

.outdoor-cooking-products span,
.outdoor-cooking-products strong {
  grid-column: 2;
}

.outdoor-cooking-products span {
  align-self: end;
  font-weight: 700;
  line-height: 1.3;
}

.outdoor-cooking-products strong {
  align-self: start;
  color: rgba(255, 255, 255, 0.78);
}

.feature-band {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: stretch;
  margin: 28px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
  content-visibility: auto;
  contain-intrinsic-size: 620px;
}

.feature-band > div {
  align-self: center;
  padding: 54px;
}

.feature-band p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.move-launch-teaser,
.move-launch-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 520px;
  background: #171a17;
  color: #fff;
}

.signature-tee-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) repeat(2, minmax(0, 0.65fr));
  gap: 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: #f4f1eb;
}

.signature-tee-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 5vw, 72px);
}

.signature-tee-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.signature-tee-copy > p:not(.eyebrow):not(.signature-tee-price) {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.signature-tee-price {
  display: grid;
  gap: 5px;
  margin: 0;
}

.signature-tee-price strong {
  font-size: 24px;
}

.signature-tee-price span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-tee-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signature-tee-images a {
  display: block;
  min-height: 100%;
  background: #e9e5de;
}

.signature-tee-images img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.move-launch-copy,
.move-launch-hero > div {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 72px);
}

.move-launch-copy h2,
.move-launch-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(34px, 4.1vw, 60px);
  line-height: 1.02;
}

.move-launch-copy p:not(.eyebrow):not(.launching-soon-label),
.move-launch-hero p:not(.launching-soon-label) {
  max-width: 47ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.move-launch-teaser > img,
.move-launch-hero > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.move-launch-hero .brand-hero-logo {
  width: min(160px, 44%);
  height: auto;
  filter: brightness(0) invert(1);
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 32px;
  align-items: center;
  padding: 54px 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfaf7;
  content-visibility: auto;
  contain-intrinsic-size: 260px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip a {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 26px 42px;
  border-right: 1px solid var(--line);
}

.trust-strip a:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-size: 15px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.newsletter-panel p {
  color: var(--muted);
}

.newsletter-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.newsletter-consent input {
  width: 16px !important;
  height: 16px !important;
  margin-top: 1px;
}

.newsletter-panel input,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.newsletter-panel input {
  height: 46px;
  padding: 0 14px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--olive);
  font-size: 13px;
}

.page-hero {
  padding: 76px 42px 54px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero.compact {
  padding-top: 52px;
  padding-bottom: 42px;
}

.confirmation-page {
  min-height: 520px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0 0 12px;
  font-size: 52px;
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  padding: 34px 42px 58px;
}

.filter-panel {
  position: sticky;
  top: 166px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.filter-panel form,
.checkout-form,
.form-grid {
  display: grid;
  gap: 16px;
}

.filter-panel label,
.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-panel select,
.filter-panel input,
.checkout-form input,
.checkout-form select {
  height: 44px;
  padding: 0 12px;
}

.checkout-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.shop-toolbar a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
}

.active-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.active-filter-row a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
}

.filter-panel-head {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.filter-panel-head button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 42px;
}

.brand-card-large {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
}

.brand-card-large a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  min-height: 330px;
}

.brand-card-large--text a {
  grid-template-columns: 1fr;
  min-height: 330px;
  background:
    radial-gradient(circle at 88% 10%, rgba(196, 162, 103, 0.24), transparent 34%),
    linear-gradient(145deg, #1f2924, #35453d 58%, #728074);
}

.brand-image {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  background: var(--soft);
}

.brand-content {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  background: transparent;
}

.brand-content p {
  margin: 0;
  color: var(--muted);
}

.brand-card-logo {
  width: min(260px, 88%);
  height: auto;
  max-height: 148px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-card-status {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-card-large--text .brand-content,
.brand-card-large--text .brand-content p,
.brand-card-large--text .brand-card-status {
  color: rgba(255, 255, 255, 0.82);
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  min-height: 520px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.brand-hero > div {
  align-self: center;
  padding: 54px 7vw;
}

.brand-hero h1 {
  margin: 0 0 14px;
  font-size: 56px;
}

.brand-hero p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.brand-hero > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.brand-hero-logo {
  width: min(300px, 100%);
  height: auto;
  max-height: 180px;
  margin-bottom: 26px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.outdoor-collection-intro {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 36px 42px 22px;
  border-bottom: 1px solid var(--line);
}

.outdoor-collection-logo {
  width: 132px;
  height: auto;
  max-height: 132px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.outdoor-collection-intro p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.outdoor-appliance-collection {
  padding-top: 30px;
}

.outdoor-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  min-height: 560px;
  border-bottom: 1px solid var(--line);
  background: #eeece5;
}

.outdoor-hero > div {
  align-self: center;
  padding: 54px 7vw;
}

.outdoor-hero--text {
  grid-template-columns: minmax(0, 1fr);
  min-height: 430px;
  background:
    radial-gradient(circle at 82% 18%, rgba(197, 165, 107, 0.28), transparent 28%),
    linear-gradient(145deg, #202923, #39473d 62%, #737b68);
}

.outdoor-hero--text > div {
  max-width: 820px;
}

.outdoor-hero--text h1,
.outdoor-hero--text p,
.outdoor-hero--text .eyebrow {
  color: #fff;
}

.outdoor-hero--text p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.outdoor-hero h1 {
  max-width: 560px;
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
}

.outdoor-hero p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.outdoor-hero > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.outdoor-anchor-grid,
.bundle-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.outdoor-anchor-card,
.bundle-roadmap-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.outdoor-anchor-card > div,
.bundle-roadmap-card {
  padding: 20px;
}

.outdoor-anchor-card h3,
.bundle-roadmap-card h3 {
  margin: 8px 0;
  font-size: 21px;
}

.outdoor-anchor-card p,
.bundle-roadmap-card p {
  color: var(--muted);
  line-height: 1.55;
}

.outdoor-appliance-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.outdoor-appliance-links a {
  display: grid;
  min-height: 120px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  font-weight: 700;
}

.outdoor-appliance-links span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.outdoor-care-band,
.outdoor-waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 32px;
  margin: 42px;
  padding: 38px;
  border-radius: var(--radius);
}

.outdoor-care-band {
  background: var(--olive);
  color: #fff;
}

.outdoor-care-band h2,
.outdoor-waitlist-panel h2 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
}

.outdoor-care-band p {
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.outdoor-waitlist-panel {
  align-items: start;
  border: 1px solid var(--line);
  background: #f2efe7;
}

.outdoor-waitlist-panel > div > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 42px;
  padding: 42px;
}

.coming-soon-detail-status {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--olive);
  background: var(--soft);
}

.coming-soon-detail-status strong {
  font-size: 15px;
}

.coming-soon-detail-status p {
  margin: 6px 0 0;
  color: var(--muted);
}

.move-launch-price {
  margin: 14px 0 4px;
  font-size: 24px;
}

.move-launch-actions {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
}

.wishlist-button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

.move-notify-form {
  display: grid;
  gap: 13px;
  margin-top: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.move-notify-form[hidden] {
  display: none;
}

.move-notify-form label:not(.consent) {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.move-notify-form input[type="email"] {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.move-notify-form .consent {
  font-size: 13px;
  line-height: 1.45;
}

.form-intro {
  margin: 0;
  font-weight: 800;
}

.concept-image-disclosure {
  font-weight: 700;
  color: var(--ink) !important;
}

.outdoor-waitlist-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.outdoor-waitlist-form label,
.outdoor-waitlist-form fieldset {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.outdoor-waitlist-form input,
.outdoor-waitlist-form select {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.outdoor-waitlist-form .optional {
  color: var(--muted);
  font-weight: 400;
}

.waitlist-ownership {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
}

.waitlist-ownership legend {
  padding: 0 5px;
  font-size: 13px;
  font-weight: 700;
}

.waitlist-ownership label,
.outdoor-waitlist-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
}

.waitlist-ownership input,
.outdoor-waitlist-form .consent input {
  min-height: 0;
  margin: 3px 0 0;
}

.product-gallery {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-gallery-frame {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: start;
  background: var(--media-background, var(--soft));
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: min(820px, 82vh);
  object-fit: var(--gallery-fit, contain);
  object-position: var(--gallery-position, 50% 50%);
  background: var(--media-background, var(--soft));
}

.gallery-open,
.gallery-count {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.gallery-open {
  right: 12px;
  top: 12px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
}

.gallery-count {
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  padding: 7px 11px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px 0;
  background: #fff;
}

.gallery-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c9c4bb;
}

.gallery-dots button[aria-current="true"] {
  background: var(--ink);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 10px;
  padding: 12px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.gallery-thumbs button {
  display: block;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: var(--soft);
  overflow: hidden;
  cursor: pointer;
}

.gallery-thumbs button[aria-current="true"] {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: var(--gallery-fit, cover);
  object-position: var(--gallery-position, center);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  padding: 24px;
}

.gallery-lightbox img {
  width: min(88vw, 920px);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 81;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-nav.prev {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

body.lightbox-open {
  overflow: hidden;
}

.product-info {
  align-self: start;
  display: grid;
  gap: 18px;
  position: sticky;
  top: 160px;
}

.product-info h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.stock-line {
  color: var(--olive) !important;
  font-weight: 700;
}

.sku-line {
  color: var(--ink) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.selector-row label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.selector-row select {
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.variant-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-previews button {
  width: 58px;
  height: 68px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

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

.variant-error {
  min-height: 18px;
  margin: -8px 0 0 !important;
  color: var(--danger) !important;
  font-size: 13px;
  font-weight: 700;
}

[aria-invalid="true"] {
  border-color: var(--danger) !important;
}

.accordion-list {
  border-top: 1px solid var(--line);
}

.accordion-list details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.accordion-list summary {
  cursor: pointer;
  font-weight: 700;
}

.accordion-list ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.spec-list {
  display: grid;
  margin: 14px 0 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  line-height: 1.5;
}

.spec-list dt {
  color: var(--ink);
  font-weight: 700;
}

.spec-list dd {
  color: var(--muted);
}

.inline-help-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.inline-help-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.inline-help-form input,
.inline-help-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.inline-help-form input {
  height: 42px;
  padding: 0 12px;
}

.inline-help-form textarea {
  min-height: 92px;
  padding: 12px;
  resize: vertical;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: end;
  background: rgba(0, 0, 0, 0.36);
}

.cart-drawer[aria-hidden="false"] {
  display: grid;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(460px, 100vw);
  height: 100vh;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.cart-head h2 {
  margin: 0;
}

.cart-items {
  overflow: auto;
  padding: 8px 24px;
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.cart-summary > div,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.bag-line,
.order-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.bag-line img,
.order-line img {
  width: 92px;
  height: 112px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--soft);
}

.bag-line a {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 700;
}

.bag-line p,
.order-line span {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}

.qty-row button {
  min-width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.qty-row button:last-child {
  width: auto;
  padding: 0 8px;
  color: var(--muted);
}

.cart-page,
.checkout-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  padding: 42px;
}

.panel,
.checkout-card,
.care-panel,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.panel {
  padding: 24px;
}

.checkout-card,
.care-panel {
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 24px;
  position: sticky;
  top: 160px;
}

.checkout-card p,
.care-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.checkout-form h2 {
  margin: 14px 0 0;
  font-size: 22px;
}

.payment-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

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

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

.option-card {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink) !important;
}

.option-card input {
  width: 18px !important;
  height: 18px !important;
  margin-top: 2px;
}

.option-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

.consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--muted) !important;
  font-weight: 400 !important;
}

.consent input {
  width: 18px !important;
  height: 18px !important;
  margin-top: 1px;
}

.order-list {
  display: grid;
}

.order-line {
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.order-line img {
  width: 68px;
  height: 82px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 42px;
}

.policy-card {
  padding: 28px;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  background: #f7f6f3;
}

.footer-service {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 42px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 32px;
  padding: 38px 42px;
}

.footer-grid img {
  width: 120px;
  height: auto;
  margin-bottom: 12px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 14px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer-section summary {
  margin: 0 0 14px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.footer-section summary::-webkit-details-marker {
  display: none;
}

.footer-section summary::after {
  content: "+";
  float: right;
  font-size: 18px;
  font-weight: 400;
}

.footer-section[open] summary::after {
  content: "−";
}

.footer-section > div {
  padding-top: 2px;
}

@media (min-width: 901px) {
  .footer-section summary::after {
    display: none;
  }
}

.copyright {
  margin: 0;
  padding: 0 42px 34px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .product-grid,
  .rail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .site-nav {
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .utility-bar {
    padding: 0 18px;
  }

  .utility-bar nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 180px;
    padding: 5px 14px;
    gap: 8px;
  }

  .brand {
    width: min(180px, 100%);
    height: auto;
    aspect-ratio: 1;
    overflow: visible;
  }

  .account-link {
    display: none;
  }

  .header-actions.left {
    display: flex;
  }

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

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    align-items: stretch;
    min-height: 0;
    padding: 10px 0 2px;
    gap: 0;
    overflow: auto;
  }

  .site-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    min-height: 44px;
    border-bottom: 1px solid var(--line);
  }

  .search-panel {
    top: 65px;
    padding: 12px 18px;
  }

  .hero-shell,
  .brand-hero,
  .outdoor-hero,
  .product-detail,
  .feature-band,
  .move-launch-teaser,
  .move-launch-hero,
  .outdoor-cooking-band,
  .newsletter-panel,
  .shop-layout,
  .cart-page,
  .checkout-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .signature-tee-feature {
    grid-template-columns: 1fr;
  }

  .signature-tee-copy {
    padding: 32px 20px;
  }

  .signature-tee-images img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-shell {
    min-height: 0;
  }

  .hero-media {
    order: -1;
  }

  .hero-copy {
    padding: 26px 20px 30px;
  }

  .hero-actions {
    margin-top: 20px;
  }

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

  .hero-media,
  .brand-hero > img,
  .move-launch-teaser > img,
  .move-launch-hero > img,
  .outdoor-hero > img {
    min-height: 360px;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-media img {
    object-fit: cover;
  }

  .outdoor-hero > div {
    padding: 46px 24px 28px;
  }

  .outdoor-anchor-grid,
  .bundle-roadmap-grid,
  .outdoor-appliance-links,
  .outdoor-care-band,
  .outdoor-waitlist-panel {
    grid-template-columns: 1fr;
  }

  .outdoor-care-band,
  .outdoor-waitlist-panel {
    margin: 24px 18px;
    padding: 28px 22px;
  }

  .brand-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px 18px 10px;
  }

  .outdoor-collection-intro {
    align-items: flex-start;
    padding: 24px 18px 16px;
  }

  .outdoor-collection-logo {
    width: 88px;
    max-height: 88px;
  }

  .move-audience-grid {
    grid-template-columns: 1fr;
  }

  .section-block,
  .page-hero,
  .move-shop-header,
  .shop-layout,
  .brand-grid,
  .product-detail,
  .cart-page,
  .checkout-layout,
  .contact-layout,
  .policy-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .product-card h3 {
    min-height: 36px;
    font-size: 14px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

  .feature-band {
    margin: 18px;
  }

  .outdoor-cooking-band {
    margin: 18px;
  }

  .outdoor-cooking-media {
    min-height: 420px;
  }

  .outdoor-cooking-copy {
    padding: 32px;
  }

  .outdoor-cooking-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .outdoor-cooking-products a {
    grid-template-columns: 1fr;
    align-content: start;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
  }

  .outdoor-cooking-products a:last-child {
    border-right: 0;
  }

  .outdoor-cooking-products img,
  .outdoor-cooking-products span,
  .outdoor-cooking-products strong {
    grid-column: auto;
  }

  .outdoor-cooking-products img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .feature-band > div {
    padding: 28px;
  }

  .newsletter-panel form,
  .edit-grid,
  .trust-strip,
  .form-grid.two,
  .option-grid,
  .policy-grid,
  .footer-service,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-service {
    gap: 0;
    padding: 14px 18px;
    font-size: 12px;
  }

  .footer-grid {
    gap: 0;
    padding: 20px 18px 14px;
  }

  .footer-grid img {
    width: 126px;
    height: 96px;
    margin-bottom: 6px;
  }

  .copyright {
    padding: 0 18px 22px;
  }

  .trust-strip a {
    min-height: 0;
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip a:last-child {
    border-bottom: 0;
  }

  .filter-panel,
  .product-info,
  .checkout-card,
  .care-panel {
    position: static;
  }

  .mobile-filter-bar {
    position: sticky;
    top: 65px;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: -8px 0 18px;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
  }

  .shop-layout > div {
    order: 1;
  }

  .filter-panel {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    order: 2;
    max-height: 82vh;
    padding: 18px;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -20px 55px rgba(17, 17, 17, 0.18);
    overflow: auto;
    transform: translateY(105%);
    transition: transform 180ms ease;
  }

  .filter-panel-head {
    display: flex;
  }

  .shop-layout.filters-open .filter-panel {
    transform: translateY(0);
  }

  .active-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: -6px 0 14px;
  }

  .active-filter-row a {
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--soft);
    font-size: 12px;
  }

  .brand-card-large a {
    grid-template-columns: 1fr;
  }

  .page-hero h1,
  .brand-hero h1 {
    font-size: 38px;
  }

  .product-info h1 {
    font-size: 32px;
  }

  .product-detail {
    gap: 22px;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .product-gallery img {
    height: auto;
    min-height: 0;
  }

  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 8px;
  }

  .gallery-thumbs button {
    flex: 0 0 58px;
  }

  .gallery-open {
    display: none;
  }

  .product-info {
    gap: 14px;
  }

  .product-card-body {
    gap: 6px;
    padding: 11px;
  }

  .product-brand {
    font-size: 10px;
  }

  .price-line {
    min-height: 20px;
    gap: 6px;
    font-size: 14px;
  }

  .price-line s {
    font-size: 11px;
  }

  .swatches {
    gap: 5px;
    min-height: 14px;
  }

  .swatches span,
  .swatches button {
    width: 11px;
    height: 11px;
  }

  .card-stock,
  .card-view-link {
    display: none;
  }

  .product-media {
    aspect-ratio: var(--mobile-card-aspect, var(--card-aspect, 4 / 5));
  }

  .product-media img {
    object-fit: var(--mobile-card-fit, var(--card-fit, cover));
    object-position: var(--mobile-card-position, var(--card-position, 50% 50%));
  }

  .gallery-slide img {
    max-height: min(74vh, 620px);
  }

  .footer-section {
    border-top: 1px solid var(--line);
    padding: 13px 0;
  }

  .footer-section summary {
    min-height: 28px;
    font-size: 13px;
    font-weight: 700;
  }

  .footer-section > div {
    padding-top: 8px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: min(176px, 100%);
    height: auto;
  }

  .cart-button span {
    display: none;
  }

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

  .product-card-body {
    padding: 10px;
  }

  .outdoor-cooking-media {
    min-height: 330px;
  }

  .outdoor-cooking-copy {
    padding: 24px;
  }

  .outdoor-cooking-copy h2 {
    font-size: 28px;
  }

  .outdoor-cooking-products {
    grid-template-columns: 1fr;
  }

  .outdoor-cooking-products a {
    grid-template-columns: 78px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .outdoor-cooking-products a:last-child {
    border-bottom: 0;
  }

  .outdoor-cooking-products img {
    width: 78px;
    height: 98px;
  }

  .outdoor-cooking-products span,
  .outdoor-cooking-products strong {
    grid-column: 2;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .button {
    padding: 0 14px;
    font-size: 13px;
  }

  .brand-ribbon {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    width: 100vw;
  }
}

@media (max-width: 390px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: 180px 42px;
    min-height: 232px;
  }

  .brand {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 180px;
    max-width: 100%;
  }

  .header-actions.left,
  .header-actions.right {
    grid-row: 2;
  }

}

@media (max-width: 359px) {
  .product-grid,
  .rail-grid {
    grid-template-columns: 1fr;
  }
}
