:root {
  --ink: #172323;
  --ink-soft: #33413d;
  --muted: #746f68;
  --paper: #f6efe5;
  --paper-warm: #eee3d5;
  --stone: #d9cec0;
  --sand: #cfc2b0;
  --sage: #7f8b75;
  --sage-deep: #596553;
  --blush: #caa4a2;
  --charcoal: #111b1c;
  --cream-glass: rgba(255, 250, 242, 0.68);
  --cream-solid: #fbf5ec;
  --border: rgba(40, 35, 31, 0.13);
  --border-dark: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 18px 46px rgba(41, 34, 28, 0.08);
  --shadow-lift: 0 30px 90px rgba(38, 31, 27, 0.14);
  --max-width: 1180px;
  --wide-width: 1360px;
  --narrow-width: 760px;
  --gutter: clamp(1rem, 3.4vw, 2.6rem);
  --radius-xs: 0.45rem;
  --radius-sm: 0.5rem;
  --radius: 0.5rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6rem;
  --font-sans: "Avenir Next", "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.58;
  background:
    radial-gradient(circle at 74% 7%, rgba(191, 157, 149, 0.23), transparent 31rem),
    radial-gradient(circle at 8% 36%, rgba(126, 139, 117, 0.18), transparent 24rem),
    linear-gradient(180deg, #fbf5ec 0%, #f2e8da 42%, #eee2d2 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(23, 35, 35, 0.018) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.48), transparent 18rem);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 80% 18%, transparent 0 7rem, rgba(30, 42, 42, 0.08) 7.05rem 7.12rem, transparent 7.18rem 10.5rem, rgba(30, 42, 42, 0.05) 10.55rem 10.62rem, transparent 10.7rem),
    radial-gradient(circle at 92% 14%, rgba(20, 31, 31, 0.24) 0 0.22rem, transparent 0.24rem),
    radial-gradient(circle at 89% 24%, rgba(20, 31, 31, 0.16) 0 0.16rem, transparent 0.18rem),
    linear-gradient(130deg, transparent 0 79%, rgba(20, 31, 31, 0.12) 79.1% 79.25%, transparent 79.4%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }
p { overflow-wrap: break-word; }
p { color: var(--muted); max-width: 70ch; }
h1, h2, h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}
h1 { font-size: 6.6rem; }
h2 { font-size: 3.9rem; }
h3 { font-size: 1.75rem; }

:focus-visible { outline: 2px solid rgba(23, 35, 35, 0.52); outline-offset: 4px; }
.container { width: min(calc(100% - (var(--gutter) * 2)), var(--max-width)); margin: 0 auto; min-width: 0; }
.narrow { width: min(calc(100% - (var(--gutter) * 2)), var(--narrow-width)); margin: 0 auto; min-width: 0; }
.section { position: relative; padding: clamp(4rem, 7vw, 7.5rem) 0; }
.section + .section { border-top: 1px solid rgba(42, 35, 31, 0.08); }
.section-muted { background: linear-gradient(180deg, rgba(255, 250, 242, 0.38), rgba(232, 220, 204, 0.28)); }
.section-accent {
  background:
    radial-gradient(circle at 15% 25%, rgba(128, 139, 117, 0.19), transparent 17rem),
    linear-gradient(180deg, rgba(230, 220, 207, 0.7), rgba(210, 198, 181, 0.42));
}
.skip-link { position: absolute; left: -999px; top: 1rem; }
.skip-link:focus { left: 1rem; z-index: 90; padding: 0.75rem 1rem; border-radius: 999px; background: var(--cream-solid); box-shadow: var(--shadow-soft); }

.eyebrow,
.slide-label,
.meta,
.featured-slide__kicker,
.footer-title,
.newsletter-form label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}
.lede { color: var(--ink-soft); font-size: 1.15rem; max-width: 42rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}
.text-link::after { content: "\2192"; transition: transform 180ms ease; }
.text-link:hover::after { transform: translateX(0.22rem); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(38, 31, 27, 0.12);
  background: rgba(250, 244, 235, 0.82);
  backdrop-filter: blur(22px) saturate(1.12);
}
.header-inner {
  position: relative;
  min-height: 4.7rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.5rem);
}
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand img { width: auto; height: clamp(2.2rem, 3vw, 2.9rem); filter: drop-shadow(0 10px 18px rgba(27, 23, 20, 0.08)); }
.site-nav ul,
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.35rem);
}
.site-nav a,
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  color: rgba(23, 35, 35, 0.76);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}
.site-nav a:hover,
.footer-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.55rem;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 28px rgba(41, 34, 28, 0.08);
  padding: 0.5rem 0.62rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 1.45rem;
  height: 1px;
  margin: 0.24rem 0;
  background: var(--ink);
}
.nav-toggle::before {
  content: "";
  display: none;
  width: 1.45rem;
  height: 1px;
  background: var(--ink);
  box-shadow: 0 -0.42rem 0 var(--ink), 0 0.42rem 0 var(--ink);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid rgba(17, 27, 28, 0.18);
  border-radius: 999px;
  background: var(--charcoal);
  color: #fffaf2;
  padding: 0.85rem 1.35rem;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(17, 27, 28, 0.18); }
.button-secondary {
  background: rgba(255, 250, 242, 0.54);
  color: var(--ink);
  border-color: rgba(17, 27, 28, 0.18);
}
.button-secondary:hover { background: rgba(255, 250, 242, 0.82); box-shadow: none; }
.button-small { min-height: 2.35rem; padding: 0.55rem 0.9rem; font-size: 0.68rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: var(--space-5); }

.page-hero,
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(34rem, 72vh, 50rem);
  display: grid;
  align-items: center;
  padding: clamp(5rem, 8vw, 8rem) 0;
  border-bottom: 1px solid rgba(42, 35, 31, 0.1);
  background:
    radial-gradient(circle at 73% 48%, rgba(202, 164, 162, 0.32), transparent 17rem),
    radial-gradient(circle at 83% 48%, transparent 0 9.5rem, rgba(54, 66, 63, 0.09) 9.58rem 9.7rem, transparent 9.78rem 15rem, rgba(54, 66, 63, 0.055) 15.08rem 15.2rem, transparent 15.3rem),
    linear-gradient(90deg, rgba(251, 245, 236, 0.96) 0%, rgba(247, 238, 226, 0.88) 48%, rgba(236, 224, 211, 0.62) 100%);
}
.page-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 25%, rgba(17, 27, 28, 0.28) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 94% 39%, rgba(17, 27, 28, 0.22) 0 0.14rem, transparent 0.15rem),
    radial-gradient(circle at 81% 64%, rgba(17, 27, 28, 0.18) 0 0.13rem, transparent 0.14rem),
    linear-gradient(145deg, transparent 0 76%, rgba(17, 27, 28, 0.12) 76.1% 76.22%, transparent 76.35%),
    repeating-linear-gradient(135deg, rgba(17, 27, 28, 0.016) 0 1px, transparent 1px 20px);
}
.page-hero .narrow {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max-width));
  margin: 0 auto;
}
.page-hero .narrow > *,
.hero-copy > * { margin-bottom: 0; }
.page-hero .narrow > * + *,
.hero-copy > * + * { margin-top: 1.2rem; }
.page-hero h1 { max-width: 9ch; }
.page-hero .lede { max-width: 31rem; }

.home-page .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(30rem, 1.18fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
}
.home-page .hero-copy h1 { max-width: 8.8ch; }
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.hero-highlights p {
  margin: 0;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.5);
  color: var(--ink-soft);
  font-size: 0.76rem;
}
.hero-slider--campaign {
  position: relative;
  min-height: clamp(34rem, 57vw, 48rem);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hero-slider--campaign .slider-track { display: grid; min-height: inherit; }
.slide { display: none !important; }
.slide.is-active { display: block !important; }
.slide.is-active.hero-look,
.slide.is-active.featured-slide,
.slide.is-active.showcase-slide { display: grid !important; }
.hero-look {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: inherit;
}
.hero-look__visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2vw, 2rem);
}
.hero-look__visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 5% 10%;
  border-radius: 45% 55% 50% 48%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 250, 242, 0.36), transparent 48%),
    radial-gradient(circle, transparent 0 43%, rgba(23, 35, 35, 0.08) 43.2% 43.6%, transparent 43.8% 61%, rgba(23, 35, 35, 0.055) 61.2% 61.55%, transparent 61.7%),
    linear-gradient(135deg, rgba(202, 164, 162, 0.28), rgba(126, 139, 117, 0.14));
  filter: blur(0.2px);
}
.hero-look__visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 39rem);
  height: min(95%, 43rem);
  object-fit: contain;
  filter: drop-shadow(0 42px 64px rgba(34, 28, 24, 0.22));
}
.hero-look__copy {
  position: relative;
  z-index: 2;
  width: min(22rem, 80%);
  margin: auto 0 0 auto;
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(17, 27, 28, 0.76);
  color: #fffaf2;
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(16px);
}
.hero-look__copy h2,
.hero-look__copy p,
.slide-label { color: #fffaf2; }
.hero-look__copy h2 { font-size: 2.35rem; max-width: 10ch; }
.hero-look__copy .text-link { color: #fffaf2; }
.hero-note { font-size: 0.78rem; letter-spacing: 0; text-transform: uppercase; opacity: 0.7; }
.slider-controls {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.slider-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}
.slider-dots { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.slider-dots button {
  width: 2rem;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 35, 35, 0.22);
  padding: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  cursor: pointer;
}
.featured-slider .slider-dots button {
  width: auto;
  height: auto;
  min-height: 2rem;
  padding: 0.36rem 0.7rem;
  border: 1px solid var(--border);
  background: rgba(255, 250, 242, 0.58);
  color: var(--muted);
  font: inherit;
  font-size: 0.66rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow: visible;
}
.slider-dots button.is-active { background: var(--ink); color: #fffaf2; }

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-heading > div > * { margin-bottom: 0; }
.section-heading > div > * + * { margin-top: 0.5rem; }
.section-heading h2 { max-width: 14ch; }

.featured-slider,
.showcase-band,
.preview-card,
.post-card,
.filter-panel,
.feature-panel,
.contact-panel,
.launch-card,
.card:not(.product-card),
.cta-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.featured-slider,
.showcase-band { padding: clamp(1rem, 2vw, 1.4rem); }
.featured-slide,
.showcase-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
}
.featured-slide__visual,
.showcase-slide__image,
.collection-card__media,
.card-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: clamp(18rem, 32vw, 27rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.75), transparent 38%),
    linear-gradient(155deg, rgba(250, 244, 235, 0.95), rgba(222, 210, 194, 0.74));
}
.featured-slide__visual img,
.showcase-slide__image img,
.collection-card__media img,
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.65rem;
  filter: drop-shadow(0 20px 28px rgba(39, 32, 27, 0.12));
}
.featured-slide__copy,
.showcase-slide__copy { padding: clamp(1rem, 2vw, 2rem); }
.featured-slide__copy > *,
.showcase-slide__copy > * { margin-bottom: 0; }
.featured-slide__copy > * + *,
.showcase-slide__copy > * + * { margin-top: 0.8rem; }
.featured-slide__copy h3,
.showcase-slide__copy h3 { font-size: 3.35rem; max-width: 10ch; }

.collection-grid,
.inventory-grid,
.card-grid,
.two-column-preview,
.feature-split,
.story-split,
.launch-grid,
.contact-layout,
.section-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
}
.collection-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.collection-grid--shop,
.card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.collection-card--double { grid-column: span 2; }
.collection-card {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fffaf2;
}
.collection-card__media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, #1c2524, #756a61);
}
.collection-card__media img {
  object-fit: cover;
  padding: 0;
  opacity: 0.78;
  filter: saturate(0.9) contrast(0.95);
}
.collection-card__media--stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.collection-card__copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  background: linear-gradient(180deg, transparent 20%, rgba(17, 27, 28, 0.78));
}
.collection-card__copy h3,
.collection-card__copy p,
.collection-card__copy .eyebrow { color: #fffaf2; }

.inventory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.8rem);
}
.inventory-grid--shop { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.product-card .card-media {
  min-height: 0;
  aspect-ratio: 0.92 / 1.08;
  border-radius: var(--radius);
  box-shadow: none;
}
.product-card .card-body > * { margin-bottom: 0; }
.product-card .card-body > * + * { margin-top: 0.35rem; }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0;
}
.product-card p:not(.meta) { color: var(--muted); font-size: 0.92rem; }
.product-card .meta {
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: none;
}
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.9rem;
  min-height: 2.75rem;
}
.product-card__actions .text-link {
  min-height: 2rem;
  padding-inline: 0.2rem;
  font-size: 0.66rem;
}

.shop-layout { grid-template-columns: 15rem minmax(0, 1fr); align-items: start; }
.filter-panel {
  position: sticky;
  top: 6rem;
  padding: 1.2rem;
}
.filter-panel h2 { font-size: 1.5rem; }
.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}
.filter-list li,
.pill-row a {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  background: rgba(255, 250, 242, 0.56);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.filter-list li:first-child,
.pill-row a:first-child { background: var(--ink); color: #fffaf2; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }

.page-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: max(2rem, calc((100vw - var(--max-width)) / 2));
  bottom: 0;
  width: min(48vw, 42rem);
  height: 92%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  filter: drop-shadow(0 38px 54px rgba(38, 31, 27, 0.18));
}
.shop-page .page-hero::after,
.about-page .page-hero::after { background-image: url("../assets/demo-images/17.png"); }
.journal-page .page-hero::after { background-image: url("../assets/demo-images/8.png"); transform: rotate(-3deg); opacity: 0.86; }
.coming-soon-page .page-hero::after { background-image: url("../assets/demo-images/16.png"); }
.contact-page .page-hero::after { background-image: url("../assets/demo-images/15.png"); opacity: 0.9; }

.story-split,
.launch-grid { grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr); align-items: center; }
.story-image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.story-image-stack img,
.launch-card--image img,
.post-card--feature img {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream-glass);
  object-fit: contain;
  box-shadow: var(--shadow-soft);
}
.story-image-stack img { aspect-ratio: 0.8 / 1; padding: 0.4rem; }
.story-image-stack img:first-child { transform: translateY(2rem); }
.card-body,
.preview-card,
.post-card,
.filter-panel,
.feature-panel,
.contact-panel,
.launch-card,
.cta-block { padding: clamp(1.2rem, 2.4vw, 2rem); }
.card-body > *,
.preview-card > *,
.post-card > *,
.filter-panel > *,
.feature-panel > *,
.contact-panel > *,
.launch-card > * { margin-bottom: 0; }
.card-body > * + *,
.preview-card > * + *,
.post-card > * + *,
.filter-panel > * + *,
.feature-panel > * + *,
.contact-panel > * + *,
.launch-card > * + * { margin-top: 0.8rem; }
.feature-split,
.two-column-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-panel {
  min-height: 16rem;
  background:
    linear-gradient(180deg, rgba(17, 27, 28, 0.08), rgba(255, 250, 242, 0.58)),
    radial-gradient(circle at 85% 12%, rgba(202, 164, 162, 0.24), transparent 9rem);
}
.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  color: #fffaf2;
  background:
    radial-gradient(circle at 90% 38%, transparent 0 5rem, rgba(255, 255, 255, 0.08) 5.05rem 5.15rem, transparent 5.25rem 8rem),
    linear-gradient(110deg, rgba(89, 101, 83, 0.96), rgba(104, 111, 96, 0.86));
}
.cta-block h2,
.cta-block p,
.cta-block .eyebrow { color: #fffaf2; }

.journal-layout { display: grid; gap: 1.4rem; }
.journal-layout--editorial {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.post-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.post-card--feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 1.4rem;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17, 27, 28, 0.9), rgba(17, 27, 28, 0.62)),
    rgba(17, 27, 28, 0.88);
}
.post-card--feature h2,
.post-card--feature p { color: #fffaf2; }
.post-card--feature img {
  aspect-ratio: 1.35 / 0.8;
  object-fit: contain;
  padding: 0.5rem;
  box-shadow: none;
}

.contact-layout { grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr); }
.contact-list { display: grid; gap: 0.45rem; }
.contact-list a,
.social-links a { text-decoration: underline; text-underline-offset: 0.3rem; }
.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 2.6vw, 2.2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.62);
  box-shadow: var(--shadow-soft);
}
.contact-form label { display: grid; gap: 0.42rem; color: var(--ink); font-size: 0.76rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.contact-form input,
.contact-form textarea,
.contact-form select,
.newsletter-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 242, 0.78);
  color: var(--ink);
  font: inherit;
  padding: 0.9rem 1rem;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible,
.newsletter-form input:focus-visible {
  border-color: rgba(89, 101, 83, 0.78);
  box-shadow: 0 0 0 3px rgba(127, 139, 117, 0.22);
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.form-note.is-success {
  color: var(--sage-deep);
  font-weight: 700;
}
.site-footer .form-note.is-success { color: #f8fff2; }
.detail-list { padding-left: 1.1rem; color: var(--muted); }
.detail-list li + li { margin-top: 0.45rem; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(127, 139, 117, 0.14), transparent 18rem),
    linear-gradient(135deg, #0f191a, #182626);
  color: #f7efe4;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.09) 0 0.2rem, transparent 0.22rem);
}
.footer-grid--premium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 1.2fr) minmax(8rem, 0.7fr) minmax(11rem, 0.8fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
}
.brand-footer {
  display: inline-flex;
  width: fit-content;
  color: #fffaf2;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.site-footer p,
.site-footer a,
.site-footer .footer-title,
.newsletter-form label { color: rgba(255, 250, 242, 0.72); }
.footer-brand-block,
.footer-column,
.newsletter-form { display: grid; align-content: start; gap: 0.85rem; }
.footer-column .footer-nav { display: grid; gap: 0.25rem; }
.newsletter-form {
  padding: 1rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}
.newsletter-form div { display: flex; gap: 0.5rem; }
.newsletter-form input {
  min-width: 0;
  border-color: var(--border-dark);
  background: rgba(255, 255, 255, 0.07);
  color: #fffaf2;
}
.newsletter-form input::placeholder { color: rgba(255, 250, 242, 0.52); }
.social-links { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.site-credit { font-size: 0.82rem; }

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

@media (max-width: 1050px) {
  .inventory-grid,
  .inventory-grid--shop,
  .collection-grid,
  .collection-grid--shop { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-layout,
  .contact-layout,
  .story-split,
  .launch-grid,
  .footer-grid--premium { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
}

@media (max-width: 820px) {
  h1 { font-size: 4.55rem; }
  h2 { font-size: 2.75rem; }
  h3 { font-size: 1.45rem; }
  .showcase-slide__copy h3 { font-size: 2.6rem; }
  .header-inner { grid-template-columns: auto auto; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem var(--gutter) 1.2rem;
    border-bottom: 1px solid var(--border);
    background: rgba(250, 244, 235, 0.97);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; justify-content: stretch; gap: 0.35rem; }
  .site-nav a { min-height: 2.65rem; }
  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 90;
    display: inline-flex;
    transform: translateY(-50%);
    justify-self: end;
  }
  .nav-toggle::before { display: block; }
  .nav-toggle > span:not(.visually-hidden) { display: none; }
  .home-page .hero-grid,
  .featured-slide,
  .showcase-slide,
  .post-card--feature,
  .feature-split,
  .two-column-preview,
  .card-grid-3,
  .journal-layout--editorial { grid-template-columns: 1fr; }
  .page-hero::after { opacity: 0.28; width: 82vw; right: -18vw; }
  .home-page .hero-copy { order: 2; }
  .home-page .hero-slider--campaign { order: 1; min-height: 29rem; }
  .hero-look__copy { width: min(24rem, 100%); margin: auto 0 0; }
  .section-heading,
  .cta-block { align-items: flex-start; flex-direction: column; }
  .collection-card--double { grid-column: auto; }
}

@media (max-width: 560px) {
  :root { --gutter: 1rem; }
  body::after { opacity: 0.24; }
  .brand img { height: 2rem; }
  .page-hero,
  .hero { min-height: auto; padding: 4.2rem 0 3.8rem; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.05rem; }
  h3 { font-size: 1.32rem; }
  .lede { font-size: 1.02rem; }
  .hero-look__copy h2,
  .showcase-slide__copy h3 { font-size: 1.85rem; }
  .page-hero h1,
  .home-page .hero-copy h1 { max-width: 10.5ch; }
  .button-row,
  .product-card__actions,
  .newsletter-form div { align-items: stretch; flex-direction: column; }
  .button,
  .newsletter-form .button { width: 100%; }
  .inventory-grid,
  .inventory-grid--shop,
  .collection-grid,
  .collection-grid--shop { grid-template-columns: 1fr; }
  .hero-look__visual img { width: min(100%, 21rem); }
  .hero-look__copy { padding: 1rem; }
  .featured-slide__copy,
  .showcase-slide__copy { padding: 0.4rem; }
  .featured-slide__visual,
  .showcase-slide__image,
  .collection-card__media,
  .card-media { min-height: 18rem; }
  .story-image-stack { grid-template-columns: 1fr 1fr; }
  .story-image-stack img:first-child { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Premium storefront homepage refresh */
.storefront-page {
  --store-ink: #111716;
  --store-ink-2: #1f2925;
  --store-paper: #f7f2e9;
  --store-paper-2: #e8ded0;
  --store-olive: #697358;
  --store-oxblood: #7e302f;
  --store-smoke: #c4b8a8;
  background:
    linear-gradient(90deg, rgba(17, 23, 22, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8f3eb 0%, #eee4d6 48%, #f4efe7 100%);
  background-size: 4.5rem 4.5rem, auto;
}

.storefront-page::before {
  opacity: 0.55;
  background:
    repeating-linear-gradient(90deg, rgba(17, 23, 22, 0.025) 0 1px, transparent 1px 12rem),
    linear-gradient(135deg, transparent 0 58%, rgba(126, 48, 47, 0.08) 58.1% 58.25%, transparent 58.35%);
}

.storefront-page::after { display: none; }

.storefront-header {
  background: rgba(248, 243, 235, 0.94);
  box-shadow: 0 1px 0 rgba(17, 23, 22, 0.08);
}

.announcement-bar {
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  background: var(--store-ink);
  color: #fffaf2;
}

.announcement-bar__inner {
  min-height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement-bar p {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.announcement-bar a {
  color: #fffaf2;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.28rem;
  text-transform: uppercase;
}

.storefront-header .header-inner { min-height: 4.35rem; }
.storefront-header .brand img { height: 2.45rem; }

.store-hero {
  position: relative;
  overflow: hidden;
  min-height: 40.5rem;
  padding: 2.75rem 0;
  border-bottom: 1px solid rgba(17, 23, 22, 0.12);
  background:
    linear-gradient(90deg, rgba(247, 242, 233, 0.98) 0%, rgba(241, 233, 221, 0.94) 44%, rgba(33, 41, 37, 0.16) 100%),
    linear-gradient(145deg, rgba(105, 115, 88, 0.14), transparent 48%),
    #f7f2e9;
}

.store-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(17, 23, 22, 0.07));
}

.store-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 1.12fr) minmax(16rem, 0.58fr);
  align-items: center;
  gap: clamp(1.5rem, 3.8vw, 4rem);
}

.store-hero__copy {
  align-self: center;
  padding: 1.2rem 0;
}

.store-hero__copy > * { margin-bottom: 0; }
.store-hero__copy > * + * { margin-top: 1.15rem; }

.store-hero__copy h1 {
  max-width: 9.4ch;
  font-size: 4.65rem;
  line-height: 0.91;
}

.store-hero__copy .lede {
  max-width: 35rem;
  color: #33413d;
}

.store-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 38rem);
  margin: 1.45rem 0 0;
  border-top: 1px solid rgba(17, 23, 22, 0.16);
  border-bottom: 1px solid rgba(17, 23, 22, 0.16);
}

.store-hero__stats div {
  padding: 0.85rem 1rem 0.85rem 0;
}

.store-hero__stats div + div {
  padding-left: 1rem;
  border-left: 1px solid rgba(17, 23, 22, 0.12);
}

.store-hero__stats dt {
  color: var(--store-ink);
  font-family: var(--font-display);
  font-size: 1.48rem;
  line-height: 1;
}

.store-hero__stats dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.store-hero__stage {
  position: relative;
  min-height: 35.5rem;
}

.store-hero__stage::before {
  content: "";
  position: absolute;
  inset: 3.5rem 4.5rem 3rem;
  border: 1px solid rgba(17, 23, 22, 0.12);
  transform: rotate(-5deg);
}

.hero-product {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 22, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 250, 242, 0.94), rgba(220, 210, 194, 0.88)),
    #f5efe5;
  box-shadow: 0 28px 70px rgba(38, 31, 27, 0.15);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.85rem;
  filter: drop-shadow(0 24px 30px rgba(17, 23, 22, 0.14));
}

.hero-product--main {
  left: 16%;
  bottom: 1rem;
  z-index: 2;
  width: 61%;
  aspect-ratio: 0.74 / 1;
}

.hero-product--secondary {
  top: 2.5rem;
  right: 0;
  z-index: 1;
  width: 33%;
  aspect-ratio: 0.72 / 1;
  background:
    linear-gradient(160deg, rgba(27, 35, 31, 0.94), rgba(105, 115, 88, 0.78)),
    #1f2925;
}

.hero-product--tertiary {
  left: 0;
  bottom: 5.5rem;
  z-index: 3;
  width: 30%;
  aspect-ratio: 0.78 / 1;
  background:
    linear-gradient(155deg, rgba(126, 48, 47, 0.28), rgba(255, 250, 242, 0.84)),
    #eee1d5;
}

.product-tag {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background: rgba(17, 23, 22, 0.86);
  color: #fffaf2;
}

.product-tag p,
.product-tag h2,
.product-tag span {
  margin: 0;
  color: #fffaf2;
}

.product-tag p,
.product-tag span {
  font-size: 0.68rem;
  text-transform: uppercase;
}

.product-tag h2 {
  font-size: 1.42rem;
  line-height: 1;
}

.store-hero__panel {
  align-self: center;
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(31, 41, 37, 0.96), rgba(17, 23, 22, 0.94)),
    var(--store-ink);
  box-shadow: 0 24px 60px rgba(17, 23, 22, 0.18);
}

.store-hero__panel > * {
  margin: 0;
  color: rgba(255, 250, 242, 0.74);
}

.store-hero__panel h2 {
  max-width: 11ch;
  color: #fffaf2;
  font-size: 2.15rem;
}

.store-hero__panel .eyebrow,
.store-hero__panel .text-link { color: #fffaf2; }

.panel-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.panel-specs span {
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: #fffaf2;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.store-strip {
  padding: 1.15rem 0;
  background: var(--store-ink);
  color: #fffaf2;
}

.store-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 250, 242, 0.12);
}

.store-strip p {
  display: grid;
  gap: 0.2rem;
  min-height: 5.8rem;
  margin: 0;
  padding: 1rem;
  background: var(--store-ink);
  color: rgba(255, 250, 242, 0.68);
}

.store-strip strong {
  color: #fffaf2;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.store-strip span {
  font-size: 0.88rem;
  line-height: 1.45;
}

.store-heading h2 { max-width: 16ch; }
.store-products { background: rgba(255, 250, 242, 0.42); }

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

.store-card {
  display: grid;
  min-width: 0;
  gap: 0.9rem;
}

.store-card__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 0.78 / 1;
  border: 1px solid rgba(17, 23, 22, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, #fffaf2, #ded2c2),
    var(--store-paper);
}

.store-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(17, 23, 22, 0.1));
}

.store-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 220ms ease;
}

.store-card:hover .store-card__media img { transform: scale(1.025); }
.store-card--feature .store-card__media { background: linear-gradient(155deg, #18211e, #707b60); }

.store-card__body {
  display: grid;
  gap: 0.45rem;
}

.store-card__body > * { margin: 0; }

.store-card__body h3 {
  color: var(--store-ink);
  font-size: 1.28rem;
  line-height: 1.05;
}

.store-card__body p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.store-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(17, 23, 22, 0.12);
}

.store-card__footer span {
  color: var(--store-ink);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.capsule-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 23, 22, 0.98), rgba(31, 41, 37, 0.95)),
    var(--store-ink);
  color: #fffaf2;
}

.capsule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
}

.capsule-media {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: end;
}

.capsule-media img {
  width: 100%;
  aspect-ratio: 0.74 / 1;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.02));
  object-fit: contain;
  padding: 0.6rem;
}

.capsule-media img:first-child { transform: translateY(2rem); }

.capsule-copy {
  display: grid;
  gap: 1rem;
}

.capsule-copy > * { margin: 0; }
.capsule-copy h2,
.capsule-copy p,
.capsule-copy .eyebrow { color: #fffaf2; }

.capsule-copy h2 {
  max-width: 12ch;
  font-size: 4.1rem;
}

.capsule-copy p { color: rgba(255, 250, 242, 0.72); }
.capsule-copy .button { width: fit-content; background: #fffaf2; color: var(--store-ink); }

.capsule-list {
  display: grid;
  gap: 1px;
  margin: 0.45rem 0;
  background: rgba(255, 250, 242, 0.13);
}

.capsule-list p {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 0.85rem 0;
  background: var(--store-ink);
}

.capsule-list strong {
  color: #fffaf2;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.shop-window-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.shop-window {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 28rem;
  border-radius: var(--radius);
  background: var(--store-ink);
  color: #fffaf2;
}

.shop-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 240ms ease, opacity 240ms ease;
}

.shop-window:hover img {
  transform: scale(1.03);
  opacity: 0.95;
}

.shop-window span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 250, 242, 0.45);
  color: #fffaf2;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.lookbook-section {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.5), rgba(232, 222, 208, 0.46));
}

.lookbook-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.lookbook-copy {
  display: grid;
  gap: 1rem;
  padding-bottom: 0.25rem;
}

.lookbook-copy > * { margin: 0; }
.lookbook-copy h2 { max-width: 12ch; }

.lookbook-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.lookbook-rail img {
  width: 100%;
  aspect-ratio: 0.72 / 1;
  border: 1px solid rgba(17, 23, 22, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255, 250, 242, 0.88), rgba(214, 203, 187, 0.76));
  object-fit: contain;
  padding: 0.45rem;
}

.lookbook-rail img:nth-child(2),
.lookbook-rail img:nth-child(4) {
  transform: translateY(-1.5rem);
}

.storefront-cta .cta-block {
  background:
    linear-gradient(110deg, rgba(126, 48, 47, 0.94), rgba(105, 115, 88, 0.9)),
    var(--store-oxblood);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.storefront-cta .button-secondary {
  background: rgba(255, 250, 242, 0.12);
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.34);
}

@media (max-width: 1180px) {
  .store-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  }

  .store-hero__panel {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    align-items: center;
  }

  .store-hero__panel .text-link { justify-self: end; }
}

@media (max-width: 1450px) and (min-width: 1181px) {
  .store-hero {
    min-height: 36rem;
    padding: 2rem 0;
  }

  .store-hero__grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(22rem, 1.04fr) minmax(14.5rem, 0.62fr);
    gap: 2rem;
  }

  .store-hero__copy > * + * { margin-top: 0.9rem; }

  .store-hero__copy h1 {
    max-width: 10ch;
    font-size: 3.65rem;
  }

  .store-hero__copy .lede {
    max-width: 29rem;
    font-size: 1rem;
  }

  .store-hero__stats { display: none; }
  .store-hero__stage { min-height: 30.5rem; }
  .store-hero__panel { padding: 1rem; }
  .store-hero__panel h2 { font-size: 1.75rem; }
  .store-hero__panel p { font-size: 0.9rem; }
  .panel-specs span { min-height: 1.65rem; font-size: 0.62rem; }
  .product-tag h2 { font-size: 1.22rem; }
}

@media (max-width: 980px) {
  .store-hero {
    min-height: auto;
    padding: 3.5rem 0 4rem;
  }

  .store-hero__grid,
  .capsule-grid,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .store-hero__copy h1 { font-size: 4.2rem; }
  .store-hero__stage { min-height: 38rem; order: -1; }
  .store-product-grid,
  .lookbook-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-strip__grid,
  .shop-window-grid { grid-template-columns: 1fr; }
  .shop-window { min-height: 23rem; }
  .capsule-media img:first-child,
  .lookbook-rail img:nth-child(2),
  .lookbook-rail img:nth-child(4) { transform: none; }
}

@media (max-width: 820px) {
  .announcement-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .announcement-bar a { display: none; }
  .storefront-header .site-nav { background: rgba(248, 243, 235, 0.98); }
}

@media (max-width: 620px) {
  .store-hero { padding-top: 2.25rem; }

  .store-hero__copy { order: 1; }
  .store-hero__stage { order: 2; }
  .store-hero__panel { order: 3; }

  .store-hero__copy h1 {
    max-width: 10ch;
    font-size: 2.72rem;
  }

  .store-hero .button-row {
    align-items: center;
    flex-direction: row;
    gap: 0.7rem;
  }

  .store-hero .button { width: auto; }
  .store-hero .button-row .button { padding-inline: 1rem; }

  .store-hero__stage { min-height: 25rem; }

  .store-product-grid,
  .capsule-media,
  .lookbook-rail {
    grid-template-columns: 1fr;
  }

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

  .store-hero__stats div,
  .store-hero__stats div + div {
    padding: 0.75rem 0.5rem 0.75rem 0;
    border-top: 0;
  }

  .store-hero__stats div + div {
    padding-left: 0.5rem;
    border-left: 1px solid rgba(17, 23, 22, 0.12);
  }

  .store-hero__stats dt { font-size: 1.2rem; }
  .store-hero__stats dd { font-size: 0.6rem; }

  .hero-product--main {
    left: 10%;
    width: 76%;
  }

  .hero-product--secondary {
    top: 0;
    right: 0;
    width: 33%;
  }

  .hero-product--tertiary {
    left: 0;
    bottom: 3.25rem;
    width: 34%;
  }

  .product-tag {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .store-hero__panel {
    grid-template-columns: 1fr;
  }

  .store-hero__panel .text-link { justify-self: start; }
  .store-card__footer,
  .cta-actions { align-items: flex-start; flex-direction: column; }
  .capsule-copy h2 { font-size: 2.35rem; }
  .shop-window { min-height: 20rem; }
  .shop-window span { font-size: 1.55rem; }
  .lookbook-copy h2 { max-width: 13ch; }
}

/* Shop-ready commerce refresh */
.shop-ready {
  background:
    repeating-linear-gradient(135deg, rgba(23, 35, 35, 0.018) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 82% 18%, transparent 0 7rem, rgba(30, 42, 42, 0.075) 7.05rem 7.12rem, transparent 7.18rem 10.5rem, rgba(30, 42, 42, 0.045) 10.55rem 10.62rem, transparent 10.7rem),
    linear-gradient(180deg, #fbf5ec 0%, #f2e8da 46%, #f7f1e8 100%);
}

.shop-ready::after { opacity: 0.2; }

.shop-ready .site-header {
  background: rgba(251, 245, 236, 0.9);
}

.shop-ready .header-inner {
  min-height: 4.55rem;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}

.shop-ready .site-nav ul {
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.basket-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.42rem;
  min-height: 2.4rem;
  color: rgba(23, 35, 35, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.basket-link:hover,
.basket-link[aria-current="page"] { color: var(--ink); }

.basket-icon {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.commerce-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(42, 35, 31, 0.11);
  background:
    linear-gradient(95deg, rgba(251, 245, 236, 0.98) 0%, rgba(247, 238, 226, 0.9) 54%, rgba(226, 215, 199, 0.72) 100%);
}

.commerce-hero::before {
  content: "";
  position: absolute;
  inset: 3rem 5vw 1rem auto;
  width: min(46vw, 38rem);
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 44%, transparent 0 10rem, rgba(23, 35, 35, 0.1) 10.05rem 10.14rem, transparent 10.2rem 15rem, rgba(23, 35, 35, 0.06) 15.08rem 15.16rem, transparent 15.22rem),
    linear-gradient(140deg, transparent 0 69%, rgba(23, 35, 35, 0.12) 69.1% 69.28%, transparent 69.36%);
}

.commerce-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(28rem, 1.05fr);
  min-height: clamp(29rem, 58vh, 40rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(2rem, 5vw, 3.6rem) 0 clamp(2.4rem, 5vw, 4rem);
}

.commerce-hero__copy h1 {
  max-width: 8.8ch;
  margin-bottom: 1rem;
  font-size: clamp(3.85rem, 7.4vw, 6.15rem);
}

.commerce-hero__copy .lede {
  max-width: 33rem;
  color: var(--ink-soft);
}

.hero-product-panel {
  position: relative;
  display: grid;
  height: clamp(24rem, 39vw, 31.5rem);
  min-height: 0;
  place-items: center;
  overflow: hidden;
}

.hero-product-panel img {
  position: relative;
  z-index: 1;
  width: min(100%, 41rem);
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 38px 52px rgba(38, 31, 27, 0.2));
  transition: transform 240ms ease;
}

.hero-product-panel:hover img { transform: scale(1.018); }

.hero-product-panel__label {
  position: absolute;
  right: clamp(0.5rem, 3vw, 2rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 2;
  display: grid;
  gap: 0.18rem;
  min-width: 12rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 27, 28, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-product-panel__label span,
.hero-product-panel__label em {
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
  text-transform: uppercase;
}

.hero-product-panel__label strong {
  color: var(--ink);
  font-size: 1rem;
}

.hero-product-panel__label em {
  color: var(--ink);
  font-weight: 800;
}

.trust-strip {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(42, 35, 31, 0.09);
  background: rgba(255, 250, 242, 0.42);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.4rem);
}

.trust-strip p {
  position: relative;
  display: grid;
  gap: 0.3rem;
  min-height: 5.5rem;
  margin: 0;
  padding: 0.95rem 0.95rem 0.95rem 1.1rem;
  border-left: 1px solid rgba(17, 27, 28, 0.16);
}

.trust-strip strong {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.25;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.shop-section-heading h2 { max-width: 15ch; }

.shop-card-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
}

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

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

.shop-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(42, 35, 31, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.55);
  box-shadow: 0 18px 42px rgba(41, 34, 28, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 58px rgba(41, 34, 28, 0.12);
}

.shop-card__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 0.84 / 1;
  border-bottom: 1px solid rgba(42, 35, 31, 0.1);
  background:
    radial-gradient(circle at 52% 22%, rgba(255, 255, 255, 0.66), transparent 38%),
    linear-gradient(155deg, #fffaf2, #ddd2c2);
}

.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.85rem;
  filter: drop-shadow(0 18px 24px rgba(39, 32, 27, 0.1));
  transition: transform 220ms ease;
}

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

.status-badge {
  position: absolute;
  left: 0.72rem;
  bottom: 0.72rem;
  z-index: 1;
  display: inline-flex;
  min-height: 1.65rem;
  align-items: center;
  border: 1px solid rgba(17, 27, 28, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.88);
  color: var(--ink);
  padding: 0.32rem 0.62rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-badge--soft {
  background: rgba(17, 27, 28, 0.88);
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.18);
}

.shop-card__body {
  display: grid;
  gap: 0.42rem;
  padding: 1rem;
}

.shop-card__body > * { margin: 0; }

.shop-card__category {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.shop-card h3 {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.shop-card__price {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.shop-card__body p:not(.shop-card__category):not(.shop-card__price):not(.shop-card__sizes) {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.42;
}

.shop-card__sizes {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.shop-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.shop-card__actions .button { width: 100%; border-radius: var(--radius-sm); }
.shop-card__actions .text-link { justify-self: start; font-size: 0.64rem; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.3rem);
}

.category-tile {
  position: relative;
  display: grid;
  min-height: 13.5rem;
  align-content: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fffaf2;
  padding: 1rem;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 27, 28, 0.04), rgba(17, 27, 28, 0.72));
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 220ms ease, opacity 220ms ease;
}

.category-tile:hover img {
  opacity: 0.92;
  transform: scale(1.035);
}

.category-tile span,
.category-tile em {
  position: relative;
  z-index: 1;
  color: #fffaf2;
}

.category-tile span {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-tile em {
  margin-top: 0.3rem;
  font-size: 0.82rem;
  font-style: normal;
}

.current-drop-feature {
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(circle at 84% 24%, transparent 0 5rem, rgba(255, 250, 242, 0.08) 5.05rem 5.15rem, transparent 5.25rem 8rem),
    linear-gradient(100deg, #10191a, #1c2927);
  color: #fffaf2;
}

.current-drop-feature__grid {
  display: grid;
  grid-template-columns: minmax(14rem, 0.46fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.current-drop-feature h2,
.current-drop-feature p,
.current-drop-feature .eyebrow { color: #fffaf2; }

.current-drop-feature__copy {
  display: grid;
  gap: 0.9rem;
}

.current-drop-feature__copy > * { margin: 0; }
.current-drop-feature__copy h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.current-drop-feature__copy .button { width: fit-content; color: var(--ink); background: #fffaf2; }

.current-drop-feature__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.current-drop-feature__rail img {
  width: 100%;
  aspect-ratio: 0.74 / 1;
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.05);
  object-fit: contain;
  padding: 0.45rem;
}

.brand-story-short__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.brand-story-short__images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.brand-story-short__images img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  border: 1px solid rgba(42, 35, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.55);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.brand-story-short__copy {
  display: grid;
  gap: 0.8rem;
}

.brand-story-short__copy > * { margin: 0; }
.brand-story-short__copy h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }

.drop-list-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background:
    radial-gradient(circle at 88% 48%, transparent 0 5rem, rgba(255, 250, 242, 0.09) 5.05rem 5.15rem, transparent 5.25rem 8rem),
    linear-gradient(110deg, #22312c, #172323);
}

.drop-list-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
}

.drop-list-card h2,
.drop-list-card p,
.drop-list-card .eyebrow { color: #fffaf2; }

.drop-list-card h2 { margin-bottom: 0.3rem; }
.drop-list-card p { margin-bottom: 0; color: rgba(255, 250, 242, 0.72); }

.drop-list-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.drop-list-form input {
  min-width: 0;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fffaf2;
  font: inherit;
  padding: 0.9rem 1rem;
}

.drop-list-form input::placeholder { color: rgba(255, 250, 242, 0.58); }
.drop-list-form .form-note { grid-column: 1 / -1; color: rgba(255, 250, 242, 0.6); }

.shop-page-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 2rem;
  border-bottom: 1px solid rgba(42, 35, 31, 0.09);
}

.shop-page-hero h1 {
  max-width: 13ch;
  margin-bottom: 0.9rem;
  font-size: clamp(3rem, 7vw, 5rem);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-tabs a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  padding: 0.25rem 0;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-tabs a:hover,
.filter-tabs a[aria-current="true"] {
  border-color: var(--ink);
  color: var(--ink);
}

.sort-label {
  margin: 0;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail { padding-top: clamp(2.5rem, 5vw, 5rem); }

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.88fr);
  align-items: start;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.product-gallery {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: 0.8rem;
}

.product-gallery__main {
  grid-column: 2;
  display: grid;
  place-items: center;
  min-height: clamp(31rem, 55vw, 45rem);
  overflow: hidden;
  border: 1px solid rgba(42, 35, 31, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.7), transparent 38%),
    linear-gradient(155deg, rgba(255, 250, 242, 0.96), rgba(222, 210, 194, 0.76));
  box-shadow: var(--shadow-soft);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  max-height: 45rem;
  object-fit: contain;
  padding: 1rem;
}

.product-gallery__thumbs {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.product-gallery__thumbs button {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(42, 35, 31, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 242, 0.62);
  padding: 0.2rem;
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border-color: rgba(17, 27, 28, 0.5);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  display: grid;
  gap: 1rem;
  padding-top: 0.25rem;
}

.product-info > * { margin: 0; }

.product-info h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.95;
}

.product-info__line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.product-info__line .status-badge {
  position: static;
}

.product-intro {
  color: var(--ink-soft);
}

.product-control {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.55rem;
}

.product-control > span,
.product-control__header span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-control__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.product-control__header a {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 0.25rem;
}

.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.size-selector button,
.quantity-stepper button,
.basket-remove {
  border: 1px solid rgba(42, 35, 31, 0.13);
  background: rgba(255, 250, 242, 0.68);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.size-selector button {
  min-width: 2.7rem;
  min-height: 2.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 800;
}

.size-selector button.is-selected,
.size-selector button:hover {
  background: var(--ink);
  color: #fffaf2;
}

.quantity-stepper {
  display: inline-grid;
  grid-template-columns: 2.2rem 2.5rem 2.2rem;
  width: fit-content;
  overflow: hidden;
  border: 1px solid rgba(42, 35, 31, 0.13);
  border-radius: var(--radius-sm);
}

.quantity-stepper button {
  min-height: 2.35rem;
  border: 0;
}

.quantity-stepper output {
  display: grid;
  min-height: 2.35rem;
  place-items: center;
  border-left: 1px solid rgba(42, 35, 31, 0.13);
  border-right: 1px solid rgba(42, 35, 31, 0.13);
  background: rgba(255, 250, 242, 0.72);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-primary-action {
  width: 100%;
  border-radius: var(--radius-sm);
}

.product-secondary-action {
  justify-self: center;
}

.product-accordions {
  margin-top: 0.6rem;
  border-top: 1px solid rgba(42, 35, 31, 0.13);
}

.product-accordions details {
  border-bottom: 1px solid rgba(42, 35, 31, 0.13);
  padding: 0.95rem 0;
}

.product-accordions summary {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
}

.product-accordions p {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
}

.related-card {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
}

.related-card img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  border: 1px solid rgba(42, 35, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.58);
  object-fit: contain;
  padding: 0.55rem;
}

.related-card span,
.related-card em {
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.related-card em { color: var(--muted); }

.basket-layout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.42fr);
  align-items: start;
  gap: clamp(1.4rem, 4vw, 4rem);
}

.basket-main h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(3rem, 6vw, 5rem);
}

.basket-items {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.basket-item {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(42, 35, 31, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.58);
  padding: 0.8rem;
}

.basket-item img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 242, 0.78);
  object-fit: contain;
  padding: 0.3rem;
}

.basket-item h2 {
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

.basket-item p,
.basket-item strong {
  margin: 0;
  font-size: 0.8rem;
}

.basket-item strong { color: var(--ink); }

.basket-remove {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  font-size: 1.15rem;
  line-height: 1;
}

.basket-summary {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(42, 35, 31, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.66);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.basket-summary h2 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.basket-summary dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.basket-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  font-size: 0.85rem;
}

.basket-summary dl div:last-child {
  margin-top: 0.35rem;
  border-top: 1px solid rgba(42, 35, 31, 0.13);
  padding-top: 0.75rem;
  font-weight: 800;
}

.basket-summary dd { margin: 0; text-align: right; }
.basket-summary .button { width: 100%; border-radius: var(--radius-sm); }
.basket-summary p { margin: 0; font-size: 0.85rem; }

.footer-grid--shop {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) repeat(3, minmax(7rem, 0.62fr)) minmax(18rem, 1.1fr);
  gap: clamp(1.3rem, 3vw, 2.6rem);
}

.footer-grid--shop .newsletter-form {
  border-radius: var(--radius);
}

@media (max-width: 1180px) {
  .shop-card-grid--catalog,
  .shop-card-grid--featured,
  .category-grid,
  .related-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .shop-ready .header-inner {
    grid-template-columns: auto auto auto;
    gap: 0.8rem;
  }

  .shop-ready .brand { grid-column: 1; }
  .basket-link { grid-column: 2; }

  .shop-ready .nav-toggle {
    position: static;
    grid-column: 3;
    transform: none;
  }

  .shop-ready .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .commerce-hero__grid,
  .product-detail__grid,
  .basket-layout__grid,
  .brand-story-short__grid,
  .current-drop-feature__grid,
  .drop-list-card {
    grid-template-columns: 1fr;
  }

  .commerce-hero__grid {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hero-product-panel {
    height: 28rem;
    order: -1;
  }

  .trust-strip__grid,
  .shop-card-grid--catalog,
  .shop-card-grid--featured,
  .category-grid,
  .related-products__grid,
  .current-drop-feature__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .basket-summary { position: static; }
}

@media (max-width: 620px) {
  .basket-link span { display: none; }
  .commerce-hero__copy h1 { font-size: 3.2rem; }
  .hero-product-panel { height: 24rem; }
  .hero-product-panel__label {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: 0;
  }

  .trust-strip__grid,
  .shop-card-grid--catalog,
  .shop-card-grid--featured,
  .category-grid,
  .related-products__grid,
  .current-drop-feature__rail,
  .brand-story-short__images,
  .footer-grid--shop {
    grid-template-columns: 1fr;
  }

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

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery__main {
    grid-column: 1;
    min-height: 25rem;
  }

  .product-gallery__thumbs {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .basket-item {
    grid-template-columns: 5.5rem minmax(0, 1fr);
  }

  .basket-item .quantity-stepper {
    grid-column: 2;
  }

  .basket-remove {
    grid-column: 2;
    justify-self: start;
  }
}
