:root {
  --ink: #11110f;
  --ink-soft: #24231f;
  --cream: #f6f0e3;
  --paper: #fffaf1;
  --coral: #ff654a;
  --pink: #f43f70;
  --gold: #ffc857;
  --legacy-blue: #3fa5ca;
  --electric-blue: #168bff;
  --electric-cyan: #79e8ff;
  --line: rgba(17, 17, 15, .17);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--legacy-blue); outline-offset: 4px; }

.concept-bar {
  min-height: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 6px clamp(18px, 4vw, 64px);
  background: var(--coral);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.concept-bar span:last-child { text-align: right; }

.site-header {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 4vw, 64px);
  background: var(--ink);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  letter-spacing: -.045em;
  white-space: nowrap;
}
.brand strong { color: var(--coral); }
.brand__bacon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 38px;
  font-size: 1.65rem;
  transform: rotate(90deg);
  filter: saturate(1.25);
}
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.desktop-nav a, .text-button {
  background: none;
  border: 0;
  padding: 10px 0;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}
.desktop-nav a:hover, .text-button:hover { color: white; }
.desktop-nav .is-current { color: white; }
.desktop-nav .is-current::after { content: ""; display: block; height: 2px; margin-top: 3px; background: var(--electric-blue); box-shadow: 0 0 10px rgba(22,139,255,.8); }
.ai-pill { margin-left: 4px; padding: 2px 5px; border-radius: 99px; background: var(--legacy-blue); color: var(--ink); font-size: .6rem; }
.text-button span {
  margin-left: 4px;
  padding: 2px 5px;
  border-radius: 99px;
  background: var(--legacy-blue);
  color: var(--ink);
  font-size: .6rem;
}
.cart-button {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 9px 8px 16px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 99px;
  background: transparent;
  color: white;
  cursor: pointer;
}
.cart-button b {
  width: 27px; height: 27px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
}

.hero {
  min-height: calc(100svh - 108px);
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(520px, 1.2fr);
  grid-template-rows: 1fr auto;
  background: var(--cream);
}
.hero__copy {
  padding: clamp(50px, 7vw, 108px) clamp(28px, 5vw, 80px) 48px;
  align-self: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.eyebrow span { width: 32px; height: 4px; background: var(--coral); border-radius: 4px; }
.hero h1, .legacy h2, .tryon-promo h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 7.4vw, 8.8rem);
  line-height: .84;
  letter-spacing: -.075em;
}
.hero h1 em, .legacy h2 em, .tryon-promo h2 em { color: var(--coral); font-style: normal; }
.hero__lede {
  max-width: 480px;
  margin: 28px 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: #5b554b;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 22px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 4px 4px 0 var(--coral); }
.button--primary { background: var(--ink); color: white; }
.button--ghost { background: transparent; }
.button--light { background: transparent; border-color: var(--cream); color: var(--cream); }
.button--cream { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.hero__stats {
  display: flex;
  gap: clamp(22px, 4vw, 54px);
  margin: 46px 0 0;
}
.hero__stats div { display: grid; }
.hero__stats dt { font-family: var(--display); font-size: 1.5rem; }
.hero__stats dd { margin: 0; color: #776f62; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

.pan-stage {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.pan-stage::before {
  content: "";
  width: 66%;
  aspect-ratio: 1;
  position: absolute;
  left: 44%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(76, 196, 255, .5);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(22,139,255,.9), inset 0 0 14px rgba(121,232,255,.52), 0 0 48px rgba(22,139,255,.44);
  mix-blend-mode: screen;
  filter: blur(.5px);
  z-index: 2;
  pointer-events: none;
  animation: blue-flame-shimmer 2.4s ease-in-out infinite;
}
.pan-stage::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 44% 46%, transparent 22%, rgba(17,17,15,.08) 45%, rgba(17,17,15,.68) 100%);
  pointer-events: none;
  z-index: 1;
}
.pan-stage__image { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 50% 50%; }
.product-on-pan {
  width: min(340px, 42vw);
  position: absolute;
  left: 42%; top: 48%;
  transform: translate(-50%, -50%) rotate(-3deg);
  padding: 16px;
  background: rgba(255,250,241,.96);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 10px;
  box-shadow: 0 28px 90px rgba(0,0,0,.58), 0 0 0 8px rgba(22,139,255,.13), 0 0 44px rgba(22,139,255,.2);
  z-index: 3;
}
.product-on-pan.is-changing { animation: toss .55s cubic-bezier(.2,.8,.25,1); }
@keyframes toss {
  0% { opacity: 0; transform: translate(-110%, -10%) rotate(-22deg) scale(.72); }
  70% { opacity: 1; transform: translate(-47%, -53%) rotate(2deg) scale(1.04); }
  100% { transform: translate(-50%, -50%) rotate(-3deg) scale(1); }
}
.product-on-pan__heat {
  position: absolute; top: -14px; right: 14px;
  padding: 6px 10px;
  border-radius: 3px;
  background: var(--electric-blue);
  color: white;
  box-shadow: 0 0 18px rgba(22,139,255,.58);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.product-on-pan__visual {
  min-height: 180px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--cream);
  overflow: hidden;
}
.product-on-pan__visual img { width: 100%; height: 190px; display: block; object-fit: contain; filter: drop-shadow(0 16px 17px rgba(0,0,0,.42)); }
.product-on-pan__details { display: flex; align-items: end; justify-content: space-between; gap: 14px; padding: 16px 2px 12px; }
.product-on-pan__details p { margin: 0 0 2px; color: #776f62; font-size: .62rem; font-weight: 900; letter-spacing: .13em; }
.product-on-pan__details h2 { margin: 0; font-size: 1.2rem; line-height: 1.1; }
.product-on-pan__details strong { font-family: var(--display); font-size: 1.5rem; }
.product-on-pan__cta { width: 100%; min-height: 42px; padding: 9px 13px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 4px; background: var(--coral); text-transform: uppercase; font-size: .68rem; font-weight: 900; letter-spacing: .1em; cursor: pointer; }
.pan-stage__instruction { position: absolute; left: 24px; bottom: 24px; z-index: 3; padding: 7px 10px; background: rgba(17,17,15,.7); color: rgba(255,255,255,.74); font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; backdrop-filter: blur(10px); }
.steam { position: absolute; width: 130px; height: 220px; border-radius: 50%; border-left: 8px solid rgba(121,232,255,.18); filter: blur(8px); z-index: 2; opacity: .55; animation: steam 4s ease-in-out infinite; }
.steam--one { left: 28%; top: 8%; }
.steam--two { right: 22%; top: 15%; animation-delay: -2s; }
@keyframes steam { 0%,100% { transform: translateY(18px) scale(.85); opacity: .12; } 50% { transform: translateY(-22px) scale(1.1); opacity: .5; } }
@keyframes blue-flame-shimmer {
  0%, 100% { opacity: .48; transform: translate(-50%, -50%) scale(.99); filter: blur(.8px) hue-rotate(-8deg); }
  35% { opacity: .95; transform: translate(-50%, -50%) scale(1.012); filter: blur(.2px) hue-rotate(9deg); }
  67% { opacity: .68; transform: translate(-50%, -50%) scale(1.004); filter: blur(1.4px) hue-rotate(-3deg); }
}

.product-selector {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.product-chip {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(16px, 2.5vw, 34px);
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.product-chip:last-child { border-right: 0; }
.product-chip:hover { background: #f3ead8; }
.product-chip.is-active { background: var(--ink); color: white; }
.product-chip__number { color: var(--coral); font-family: var(--display); font-size: .82rem; }
.product-chip b, .product-chip small { display: block; }
.product-chip b { font-size: .9rem; }
.product-chip small { margin-top: 3px; color: #867d70; }
.product-chip.is-active small { color: rgba(255,255,255,.6); }

.ticker { overflow: hidden; padding: 16px 0; background: var(--gold); border-bottom: 2px solid var(--ink); }
.ticker__track { width: max-content; display: flex; gap: 34px; align-items: center; font-family: var(--display); font-size: 1rem; animation: ticker 22s linear infinite; }
.ticker i { color: var(--coral); font-style: normal; }
@keyframes ticker { to { transform: translateX(-42%); } }

.apparel-concepts { padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 76px); background: var(--paper); }
.apparel-concepts__header { display: grid; grid-template-columns: 1fr minmax(260px, 440px); gap: 40px; align-items: end; margin-bottom: 48px; }
.apparel-concepts__header h2 { margin: 0; font-family: var(--display); font-size: clamp(3.4rem, 6.2vw, 7rem); line-height: .86; letter-spacing: -.07em; }
.apparel-concepts__header h2 em { color: var(--electric-blue); font-style: normal; }
.apparel-concepts__header > p { margin: 0 0 8px; color: #6a6257; font-size: 1.05rem; }
.apparel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.apparel-card { min-width: 0; border: 1px solid var(--line); background: var(--cream); transition: transform .22s ease, box-shadow .22s ease; }
.apparel-card:hover { transform: translateY(-6px); box-shadow: 7px 7px 0 var(--coral); }
.apparel-card--blue:hover { box-shadow: 7px 7px 0 var(--electric-blue); }
.apparel-card__image { aspect-ratio: .88; overflow: hidden; background: var(--cream); }
.apparel-card__image img { width: 100%; height: 100%; display: block; object-fit: contain; }
.apparel-card__copy { padding: 18px 18px 22px; }
.apparel-card__copy span { color: var(--electric-blue); font-size: .66rem; font-weight: 900; letter-spacing: .13em; }
.apparel-card__copy h3 { margin: 6px 0 8px; font-family: var(--display); font-size: 1.15rem; line-height: 1.05; letter-spacing: -.035em; }
.apparel-card__copy p { margin: 0; color: #746c60; font-size: .82rem; line-height: 1.45; }

.legacy { display: grid; grid-template-columns: 1.08fr .92fr; background: var(--ink); color: var(--cream); }
.legacy__image-wrap { min-height: 620px; position: relative; overflow: hidden; }
.legacy__image-wrap::after { content:""; position:absolute; inset:0; background: linear-gradient(135deg, transparent 45%, rgba(17,17,15,.66)); }
.legacy__image-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.08); }
.legacy__image-wrap span { position: absolute; left: 24px; bottom: 24px; z-index: 2; padding: 8px 12px; background: var(--legacy-blue); color: var(--ink); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.legacy__copy { padding: clamp(58px, 8vw, 128px) clamp(28px, 6vw, 96px); align-self: center; }
.legacy h2 { font-size: clamp(3rem, 5.8vw, 6.4rem); }
.legacy__copy > p:not(.eyebrow) { max-width: 590px; margin: 32px 0; color: rgba(246,240,227,.68); font-size: 1.05rem; }

.tryon-promo { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; padding: clamp(60px, 9vw, 128px) clamp(24px, 7vw, 112px); background: var(--coral); }
.tryon-promo h2 { font-size: clamp(3.5rem, 7vw, 8rem); }
.tryon-promo h2 em { color: var(--cream); }
.eyebrow--light span { background: var(--cream); }
.tryon-promo__card { max-width: 520px; justify-self: end; padding: clamp(26px, 4vw, 48px); background: var(--ink); color: white; transform: rotate(2deg); box-shadow: 12px 12px 0 rgba(255,200,87,.8); }
.tryon-promo__badge { display: inline-block; padding: 6px 9px; background: var(--legacy-blue); color: var(--ink); font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.tryon-promo__card p { margin: 26px 0; font-size: clamp(1.1rem, 2vw, 1.45rem); line-height: 1.35; }

footer { min-height: 160px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 42px clamp(24px, 5vw, 72px); background: var(--ink); color: rgba(255,255,255,.7); }
.brand--footer { color: white; }
footer p { font-size: .82rem; }
footer > a:last-child { font-weight: 800; }
.footer-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); font-size: .78rem; font-weight: 800; }
.footer-links a:hover { color: white; }
.mobile-dock { display: none; }

/* Pork Stories on home */
.home-stories { padding: clamp(66px, 9vw, 128px) clamp(20px, 5vw, 76px); background: var(--cream); border-top: 2px solid var(--ink); }
.home-stories__heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: end; margin-bottom: 46px; }
.home-stories__heading h2 { margin: 0; font-family: var(--display); font-size: clamp(3.3rem, 6.5vw, 7rem); line-height: .86; letter-spacing: -.07em; }
.home-stories__heading h2 em { color: var(--coral); font-style: normal; }
.home-stories__heading > div:last-child { max-width: 480px; justify-self: end; }
.home-stories__heading > div:last-child p { margin: 0 0 22px; color: #655e54; font-size: 1.05rem; }
.home-stories__grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 14px; }
.story-card { min-width: 0; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); transition: transform .22s ease, box-shadow .22s ease; }
.story-card:hover { transform: translateY(-5px); box-shadow: 7px 7px 0 var(--electric-blue); }
.story-card__image { aspect-ratio: 1.25; overflow: hidden; background: var(--cream); }
.story-card__image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.story-card:hover .story-card__image img { transform: scale(1.035); }
.story-card[href*="heavyweight"] .story-card__image img, .story-card[href*="playlist"] .story-card__image img { object-fit: contain; }
.story-card__copy { flex: 1; display: flex; flex-direction: column; padding: 20px; }
.story-card__copy p { margin: 0 0 8px; color: var(--electric-blue); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.story-card__copy h3 { margin: 0 0 14px; font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.03; letter-spacing: -.045em; }
.story-card__copy span { margin-top: auto; color: #6e665b; font-size: .82rem; line-height: 1.45; }

/* Pork Stories index */
.stories-hero { padding: 34px clamp(20px, 6vw, 92px) clamp(62px, 8vw, 110px); background: var(--gold); border-bottom: 2px solid var(--ink); }
.stories-hero .breadcrumb { margin-bottom: clamp(45px, 7vw, 82px); }
.stories-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(4.7rem, 11vw, 11rem); line-height: .78; letter-spacing: -.08em; }
.stories-hero h1 em { color: var(--coral); font-style: normal; }
.stories-hero > p:last-child { max-width: 650px; margin: 30px 0 0; font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.stories-index { padding: clamp(46px, 6vw, 82px) clamp(14px, 5vw, 76px) clamp(78px, 10vw, 136px); background: var(--paper); }
.stories-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 34px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.stories-toolbar h2 { margin: 0; font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -.04em; }
.story-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.featured-story { min-width: 0; display: grid; grid-template-columns: 1.16fr .84fr; margin-bottom: 50px; border: 1px solid var(--line); background: var(--cream); transition: box-shadow .22s ease, transform .22s ease; }
.featured-story:hover { transform: translateY(-4px); box-shadow: 8px 8px 0 var(--coral); }
.featured-story__image { min-height: 480px; position: relative; overflow: hidden; }
.featured-story__image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.featured-story__image > span { position: absolute; left: 16px; top: 16px; padding: 7px 10px; background: var(--coral); color: var(--ink); font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.featured-story__copy { align-self: center; padding: clamp(30px, 5vw, 72px); }
.featured-story__copy > p:first-child { margin: 0 0 13px; color: var(--electric-blue); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.featured-story__copy h2 { margin: 0; font-family: var(--display); font-size: clamp(2.4rem, 4.8vw, 5.2rem); line-height: .91; letter-spacing: -.06em; }
.featured-story__copy h2 + p { margin: 24px 0; color: #665f54; font-size: 1rem; line-height: 1.65; }
.featured-story__copy > span { font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* Story article */
.story-article__header { padding: 34px clamp(20px, 7vw, 108px) clamp(52px, 7vw, 94px); background: var(--ink); color: var(--cream); }
.story-article__header .breadcrumb { margin-bottom: clamp(46px, 7vw, 82px); color: rgba(246,240,227,.5); }
.story-article__header h1 { max-width: 1250px; margin: 0; font-family: var(--display); font-size: clamp(3.7rem, 8vw, 8.7rem); line-height: .82; letter-spacing: -.075em; }
.story-article__header h1 em { color: var(--electric-blue); font-style: normal; }
.story-article__dek { max-width: 790px; margin: 30px 0; color: rgba(246,240,227,.72); font-size: clamp(1.05rem, 1.8vw, 1.35rem); line-height: 1.55; }
.story-article__meta { display: flex; gap: 25px; color: rgba(246,240,227,.52); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.story-article__hero { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 70px); transform: translateY(44px); }
.story-article__hero img { width: 100%; max-height: 720px; display: block; object-fit: cover; border: 1px solid var(--line); background: var(--cream); }
.story-article__hero--pan img { aspect-ratio: 1.65; }
.story-article__hero--product img, .story-article__hero--culture img { max-height: 760px; object-fit: contain; }
.story-article__hero figcaption { padding: 9px 2px; color: #756d61; font-size: .72rem; }
.story-article__body { max-width: 790px; margin: 76px auto 0; padding: 0 24px clamp(70px, 9vw, 124px); color: #3f3b34; font-size: 1.08rem; line-height: 1.82; }
.story-article__body p { margin: 0 0 25px; }
.story-article__body .story-article__lead { color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.55; }
.story-article__body h2 { margin: 52px 0 16px; color: var(--ink); font-family: var(--display); font-size: clamp(1.75rem, 3.5vw, 2.8rem); line-height: 1; letter-spacing: -.045em; }
.story-article__body blockquote { margin: 44px -60px; padding: 30px 40px; border-left: 7px solid var(--electric-blue); background: var(--ink); color: var(--cream); font-family: var(--display); font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.15; letter-spacing: -.04em; }
.story-article__body li + li { margin-top: 8px; }
.story-next { max-width: 1040px; min-height: 220px; display: block; margin: 0 auto clamp(78px, 9vw, 120px); padding: 38px clamp(24px, 5vw, 60px); background: var(--coral); color: var(--ink); }
.story-next > p { margin: 0 0 22px; font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.story-next a { display: grid; gap: 6px; }
.story-next a span { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.story-next a strong { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3.8rem); line-height: .98; letter-spacing: -.05em; }

/* About */
.about-hero { min-height: calc(100svh - 108px); display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }
.about-hero__copy { align-self: center; padding: 34px clamp(24px, 6vw, 90px) 70px; }
.about-hero__copy .breadcrumb { margin-bottom: clamp(48px, 7vw, 90px); }
.about-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(3.3rem, 6vw, 6.7rem); line-height: .86; letter-spacing: -.07em; }
.about-hero h1 em { color: var(--coral); font-style: normal; }
.about-hero__copy > p:last-child { max-width: 650px; margin: 30px 0 0; color: #625b50; font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.6; }
.about-hero__image { min-height: 650px; position: relative; overflow: hidden; background: var(--ink); }
.about-hero__image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: contrast(1.06) saturate(.85); }
.about-hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(17,17,15,.72)); }
.about-hero__image span { position: absolute; left: 24px; bottom: 24px; z-index: 2; padding: 8px 11px; background: var(--legacy-blue); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.about-story { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(46px, 8vw, 120px); padding: clamp(72px, 10vw, 145px) clamp(22px, 7vw, 110px); background: var(--paper); }
.about-story h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 5.8vw, 6.5rem); line-height: .86; letter-spacing: -.065em; }
.about-story__body { max-width: 730px; color: #4e4940; font-size: 1.08rem; line-height: 1.8; }
.about-story__body p { margin: 0 0 25px; }
.about-story__body blockquote { margin: 40px 0; padding: 25px 28px; border-left: 7px solid var(--coral); background: var(--cream); color: var(--ink); font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.12; letter-spacing: -.04em; }
.about-principles { padding: clamp(70px, 9vw, 132px) clamp(20px, 6vw, 92px); background: var(--ink); color: var(--cream); }
.about-principles h2 { margin: 0 0 48px; font-family: var(--display); font-size: clamp(3.2rem, 7vw, 7.5rem); line-height: .84; letter-spacing: -.07em; }
.about-principles__grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.16); }
.about-principles article { min-height: 250px; padding: clamp(24px, 3.5vw, 48px); border-right: 1px solid rgba(255,255,255,.16); }
.about-principles article:last-child { border-right: 0; }
.about-principles article > b { color: var(--electric-blue); font-family: var(--display); font-size: 1.4rem; }
.about-principles h3 { margin: 42px 0 12px; font-family: var(--display); font-size: 1.35rem; }
.about-principles article p { margin: 0; color: rgba(246,240,227,.62); }
.about-timeline { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--gold); border-block: 2px solid var(--ink); }
.about-timeline > div { min-height: 245px; padding: clamp(25px, 4vw, 55px); border-right: 2px solid var(--ink); }
.about-timeline > div:last-child { border-right: 0; }
.about-timeline span { color: var(--coral); font-family: var(--display); font-size: 1.8rem; }
.about-timeline h3 { margin: 42px 0 9px; font-family: var(--display); font-size: 1.3rem; }
.about-timeline p { max-width: 360px; margin: 0; }
.about-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: end; padding: clamp(68px, 9vw, 128px) clamp(22px, 7vw, 110px); background: var(--cream); }
.about-cta h2 { margin: 0; font-family: var(--display); font-size: clamp(3.4rem, 7vw, 7.5rem); line-height: .84; letter-spacing: -.07em; }
.about-cta > div:last-child { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.tryon-dialog { width: min(1120px, calc(100vw - 28px)); max-height: calc(100svh - 28px); padding: 0; border: 0; border-radius: 12px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.55); overflow: hidden; }
.tryon-dialog::backdrop { background: rgba(17,17,15,.76); backdrop-filter: blur(8px); }
.tryon-dialog__shell { max-height: calc(100svh - 28px); display: flex; flex-direction: column; margin: 0; }
.tryon-dialog__header { display: flex; justify-content: space-between; gap: 30px; padding: 28px; border-bottom: 1px solid var(--line); }
.tryon-dialog__header p { margin: 0 0 4px; color: var(--coral); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.tryon-dialog__header h2 { margin: 0; font-family: var(--display); font-size: clamp(1.8rem, 5vw, 2.8rem); line-height: 1; letter-spacing: -.05em; }
.close-button { width: 42px; height: 42px; flex: 0 0 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.6rem; cursor: pointer; }
.tryon-dialog__body { min-height: 0; display: grid; grid-template-columns: minmax(320px, .8fr) minmax(390px, 1.2fr); overflow: auto; }
.tryon-controls { padding: 24px; border-right: 1px solid var(--line); }
.tryon-step { margin: 0; padding: 0 0 22px; border: 0; }
.tryon-step + .tryon-step { padding-top: 22px; border-top: 1px solid var(--line); }
.tryon-step > p:first-child, .tryon-step legend { width: 100%; margin: 0 0 12px; font-size: .875rem; font-weight: 800; }
.tryon-step > p:first-child b, .tryon-step legend b { margin-right: 8px; color: var(--electric-blue); font-family: var(--display); }
.upload-zone { min-height: 84px; display: flex; align-items: center; gap: 13px; padding: 14px; border: 2px dashed #b6aa98; background: var(--cream); cursor: pointer; }
.upload-zone:hover { border-color: var(--coral); }
.upload-zone__icon { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); font-size: 1.35rem; }
.upload-zone b, .upload-zone small { display: block; }
.upload-zone b { max-width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-zone small { margin-top: 2px; color: #776f62; font-size: .7rem; }
.upload-zone input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.tryon-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.tryon-product-grid input { position: absolute; opacity: 0; pointer-events: none; }
.tryon-product-grid label > span { min-height: 74px; display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 8px; padding: 7px; border: 1px solid var(--line); background: var(--cream); cursor: pointer; }
.tryon-product-grid img { width: 54px; height: 58px; object-fit: contain; }
.tryon-product-grid b { font-size: .875rem; line-height: 1.15; }
.tryon-product-grid input:checked + span { border-color: var(--ink); box-shadow: inset 0 -4px 0 var(--electric-blue); }
.tryon-product-grid input:focus-visible + span { outline: 3px solid var(--legacy-blue); outline-offset: 2px; }
.tryon-generate { width: 100%; justify-content: space-between; }
.tryon-generate:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.tryon-privacy { margin: 9px 0 0; color: #746c60; font-size: .7rem; }
.tryon-preview { min-width: 0; padding: 24px; background: var(--ink-soft); color: white; }
.tryon-canvas-wrap { width: min(100%, 440px); aspect-ratio: 3 / 4; position: relative; margin: 0 auto; overflow: hidden; background: #151515; border: 1px solid rgba(255,255,255,.14); }
.tryon-canvas-wrap canvas { width: 100%; height: 100%; display: block; object-fit: contain; }
.tryon-placeholder { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 7px; background: radial-gradient(circle at 50% 38%, #30302c, #111); color: rgba(255,255,255,.62); text-align: center; }
.tryon-placeholder > span { color: var(--electric-blue); font-size: 2.5rem; text-shadow: 0 0 24px rgba(22,139,255,.7); }
.tryon-placeholder b { color: white; font-family: var(--display); font-size: 1.25rem; }
.tryon-placeholder small { font-size: .75rem; }
.tryon-working { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 10px; z-index: 3; background: rgba(17,17,15,.78); font-weight: 800; }
.tryon-working span { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.3); border-top-color: var(--electric-blue); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.tryon-adjustments { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 12px; margin-top: 14px; }
.tryon-adjustments label { display: grid; gap: 4px; color: rgba(255,255,255,.72); font-size: .875rem; font-weight: 700; }
.tryon-adjustments label output { color: white; }
.tryon-adjustments input { width: 100%; accent-color: var(--electric-blue); }
.tryon-adjustments .button { min-height: 42px; padding: 8px 14px; border-color: white; color: white; white-space: nowrap; }
.tryon-dialog__note { margin: 13px 0 0; color: rgba(255,255,255,.56); font-size: .72rem; }

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

/* Shop collection */
.breadcrumb { display: flex; align-items: center; gap: 10px; color: #746c60; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumb a:hover { color: var(--coral); }
.shop-hero { padding: 36px clamp(20px, 5vw, 76px) clamp(54px, 7vw, 92px); background: var(--ink); color: var(--cream); }
.shop-hero .breadcrumb { margin-bottom: clamp(46px, 7vw, 84px); color: rgba(246,240,227,.54); }
.shop-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: end; }
.shop-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 9vw, 9rem); line-height: .83; letter-spacing: -.075em; }
.shop-hero h1 em { color: var(--electric-blue); font-style: normal; text-shadow: 0 0 34px rgba(22,139,255,.32); }
.shop-hero__note { max-width: 530px; justify-self: end; }
.shop-hero__note > p { margin: 0 0 28px; color: rgba(246,240,227,.72); font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.shop-hero__note > div { display: flex; flex-wrap: wrap; gap: 9px; }
.shop-hero__note span { padding: 8px 11px; border: 1px solid rgba(246,240,227,.24); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.collection { padding: 0 clamp(14px, 5vw, 76px) clamp(68px, 9vw, 122px); background: var(--paper); }
.collection-toolbar { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.filter-group { display: flex; gap: 8px; }
.filter-chip { min-height: 40px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 99px; background: transparent; font-size: .8rem; font-weight: 800; cursor: pointer; }
.filter-chip.is-active { border-color: var(--ink); background: var(--ink); color: white; }
.sort-control { display: flex; align-items: center; gap: 9px; color: #746c60; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.sort-control select { min-height: 40px; padding: 7px 34px 7px 12px; border: 1px solid var(--line); border-radius: 4px; background: var(--cream); color: var(--ink); font-size: .82rem; }
.collection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 16px; padding-top: 42px; }
.shop-card { min-width: 0; }
.shop-card__image { aspect-ratio: 1.05; display: block; position: relative; overflow: hidden; background: var(--cream); border: 1px solid var(--line); }
.shop-card__image img { width: 100%; height: 100%; display: block; object-fit: contain; transition: transform .45s cubic-bezier(.2,.75,.3,1); }
.shop-card:hover .shop-card__image img { transform: scale(1.035); }
.product-badge { position: absolute; left: 14px; top: 14px; z-index: 2; padding: 7px 9px; background: var(--ink); color: white; font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.shop-card--blue .product-badge { background: var(--electric-blue); box-shadow: 0 0 18px rgba(22,139,255,.4); }
.shop-card__copy { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding: 17px 2px 11px; }
.shop-card__copy p { margin: 0 0 4px; color: #776f62; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }
.shop-card__copy h3 { margin: 0; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.65rem); letter-spacing: -.045em; }
.shop-card__copy strong { font-family: var(--display); font-size: 1.3rem; }
.shop-card__meta { display: flex; justify-content: space-between; gap: 20px; padding-top: 11px; border-top: 1px solid var(--line); color: #6e665b; font-size: .76rem; font-weight: 700; }
.shop-card__meta a { color: var(--ink); text-transform: uppercase; letter-spacing: .06em; }
.collection-empty { padding: 60px; text-align: center; }
.service-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--coral); border-block: 2px solid var(--ink); }
.service-strip > div { min-height: 132px; display: flex; align-items: center; gap: 18px; padding: 26px clamp(18px, 3vw, 42px); border-right: 2px solid var(--ink); }
.service-strip > div:last-child { border-right: 0; }
.service-strip b { font-family: var(--display); font-size: 1.7rem; color: var(--cream); }
.service-strip span, .service-strip strong, .service-strip small { display: block; }
.service-strip strong { font-family: var(--display); font-size: .98rem; }
.service-strip small { margin-top: 3px; font-size: .76rem; }

/* Product detail */
.breadcrumb--product { max-width: 1480px; margin: 0 auto; padding: 28px clamp(20px, 5vw, 76px); }
.pdp { max-width: 1480px; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr); gap: clamp(34px, 6vw, 92px); margin: 0 auto; padding: 0 clamp(20px, 5vw, 76px) clamp(74px, 9vw, 128px); }
.pdp-gallery { min-width: 0; }
.pdp-gallery__main { aspect-ratio: .92; position: sticky; top: 100px; overflow: hidden; background: var(--cream); border: 1px solid var(--line); }
.pdp-gallery__main img { width: 100%; height: 100%; display: block; object-fit: contain; }
.pdp-gallery__details { display: flex; justify-content: space-between; gap: 20px; padding-top: 10px; color: #7a7164; font-size: .64rem; font-weight: 800; letter-spacing: .1em; }
.pdp-info { padding-top: clamp(16px, 3vw, 46px); }
.pdp-kicker { margin: 0 0 12px; color: var(--electric-blue); font-size: .74rem; font-weight: 900; letter-spacing: .14em; }
.pdp-info h1 { margin: 0; font-family: var(--display); font-size: clamp(3.1rem, 5.7vw, 6.2rem); line-height: .88; letter-spacing: -.068em; }
.pdp-price { margin: 19px 0 26px; font-family: var(--display); font-size: 1.75rem; }
.pdp-description { max-width: 620px; margin: 0 0 30px; color: #645d52; font-size: 1.05rem; line-height: 1.65; }
.pdp-tryon-link { width: 100%; margin: 0 0 18px; justify-content: space-between; border-color: var(--electric-blue); box-shadow: inset 4px 0 0 var(--electric-blue); }
.pdp-color { display: flex; justify-content: space-between; padding: 17px 0; border-block: 1px solid var(--line); font-size: .84rem; }
.pdp-color span { color: #746c60; }
.purchase-form { margin-top: 27px; }
.size-picker { margin: 0; padding: 0; border: 0; }
.size-picker__label { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.size-picker__label strong { font-weight: 800; }
.size-picker__label button { border: 0; border-bottom: 1px solid currentColor; background: transparent; color: #6e665b; font-size: .76rem; cursor: pointer; }
.size-options { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; clear: both; }
.size-options input { position: absolute; opacity: 0; pointer-events: none; }
.size-options span { min-height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 4px; background: var(--paper); font-size: .8rem; font-weight: 800; cursor: pointer; }
.size-options input:checked + span { border-color: var(--ink); background: var(--ink); color: white; box-shadow: inset 0 -3px 0 var(--electric-blue); }
.size-options input:focus-visible + span { outline: 3px solid var(--legacy-blue); outline-offset: 3px; }
.quantity-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 24px 0 15px; font-weight: 800; }
.quantity-stepper { display: grid; grid-template-columns: 38px 42px 38px; align-items: center; border: 1px solid var(--line); border-radius: 4px; }
.quantity-stepper button { height: 38px; border: 0; background: transparent; font-size: 1.2rem; cursor: pointer; }
.quantity-stepper output { text-align: center; font-size: .85rem; }
.add-to-bag { width: 100%; min-height: 58px; justify-content: space-between; }
.form-note { min-height: 21px; margin: 8px 0 0; color: #746c60; font-size: .78rem; }
.form-note.is-error { color: #b5291b; font-weight: 700; }
.shipping-nudge { display: flex; gap: 13px; margin: 30px 0; padding: 16px; background: #e9f5ff; border-left: 4px solid var(--electric-blue); }
.shipping-nudge > span { color: var(--electric-blue); font-size: 1.4rem; }
.shipping-nudge p { margin: 0; color: #4e5b66; font-size: .82rem; }
.shipping-nudge strong { color: var(--ink); }
.product-accordions { border-top: 1px solid var(--line); }
.product-accordions details { border-bottom: 1px solid var(--line); }
.product-accordions summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; font-weight: 800; cursor: pointer; }
.product-accordions summary::-webkit-details-marker { display: none; }
.product-accordions details[open] summary span { transform: rotate(45deg); }
.product-accordions details > div { padding: 0 0 22px; color: #6a6257; font-size: .88rem; }
.product-accordions ul { margin: 0; padding-left: 19px; }
.product-accordions li + li { margin-top: 6px; }
.pdp-next { padding: clamp(62px, 8vw, 112px) clamp(14px, 5vw, 76px); background: var(--ink); color: var(--cream); }
.pdp-next h2 { margin: 0 0 42px; font-family: var(--display); font-size: clamp(3.3rem, 7vw, 7rem); line-height: .86; letter-spacing: -.07em; }
.pdp-next h2 em { color: var(--electric-blue); font-style: normal; }
.pdp-next__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pdp-next__grid a { display: grid; background: var(--cream); color: var(--ink); }
.pdp-next__grid img { width: 100%; aspect-ratio: 1; display: block; object-fit: contain; }
.pdp-next__grid span { padding: 14px; border-top: 1px solid var(--line); font-size: .8rem; font-weight: 800; }

/* Pan and size guide */
.cart-drawer { width: min(520px, 100vw); height: 100svh; max-width: none; max-height: none; inset: 0 0 0 auto; margin: 0; padding: 0; border: 0; background: var(--paper); color: var(--ink); box-shadow: -20px 0 70px rgba(0,0,0,.38); }
.cart-drawer::backdrop, .size-guide::backdrop { background: rgba(17,17,15,.72); backdrop-filter: blur(6px); }
.cart-drawer__shell { height: 100%; display: flex; flex-direction: column; }
.cart-drawer__header { min-height: 95px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-drawer__header p { margin: 0 0 3px; color: var(--coral); font-size: .65rem; font-weight: 900; letter-spacing: .14em; }
.cart-drawer__header h2 { margin: 0; font-family: var(--display); font-size: 2rem; letter-spacing: -.045em; }
.pan-summary { min-height: 132px; position: relative; display: grid; align-items: center; overflow: hidden; padding: 20px 24px; isolation: isolate; background: #0b1420; color: white; }
.pan-summary::after { content: ""; position: absolute; width: 180px; height: 180px; left: -35px; top: -25px; z-index: -1; border: 3px solid rgba(121,232,255,.6); border-radius: 50%; box-shadow: 0 0 18px rgba(22,139,255,.9), inset 0 0 16px rgba(121,232,255,.45), 0 0 44px rgba(22,139,255,.45); animation: blue-flame-shimmer 2.4s ease-in-out infinite; }
.pan-summary > img { width: 100%; height: 100%; position: absolute; inset: 0; z-index: -2; object-fit: cover; object-position: 45% 50%; opacity: .42; }
.pan-summary > div { max-width: 260px; margin-left: auto; }
.pan-summary p { margin: 0 0 3px; color: var(--electric-cyan); font-size: .62rem; font-weight: 900; letter-spacing: .14em; }
.pan-summary strong, .pan-summary span { display: block; }
.pan-summary strong { font-family: var(--display); font-size: 1.15rem; }
.pan-summary span { margin-top: 3px; color: rgba(255,255,255,.62); font-size: .7rem; }
.cart-drawer__body { flex: 1; overflow: auto; padding: 0 24px; }
.cart-empty { min-height: 390px; display: grid; place-items: center; align-content: center; gap: 8px; text-align: center; }
.cart-empty > span { font-size: 2.3rem; }
.cart-empty h3 { margin: 0; font-family: var(--display); font-size: 1.5rem; }
.cart-empty p { margin: 0 0 15px; color: #746c60; }
.cart-item { display: grid; grid-template-columns: 92px 1fr auto; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-item__image { width: 92px; height: 104px; background: var(--cream); border: 1px solid var(--line); }
.cart-item__image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item__info h3 { margin: 3px 0; font-family: var(--display); font-size: .95rem; line-height: 1.1; }
.cart-item__info p { margin: 0; color: #746c60; font-size: .72rem; }
.cart-item > strong { font-family: var(--display); font-size: .9rem; }
.cart-item__controls { width: max-content; display: flex; align-items: center; gap: 7px; margin-top: 12px; }
.cart-item__controls button:not(.cart-item__remove) { width: 28px; height: 28px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.cart-item__controls span { min-width: 18px; text-align: center; font-size: .78rem; }
.cart-item__remove { margin-left: 8px; padding: 2px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: #746c60; font-size: .68rem; cursor: pointer; }
.cart-drawer__footer { min-height: 208px; display: block; padding: 22px 24px; background: var(--cream); color: var(--ink); border-top: 1px solid var(--line); }
.cart-drawer__footer > div { display: flex; justify-content: space-between; margin-bottom: 14px; font-weight: 800; }
.cart-drawer__footer strong { font-family: var(--display); font-size: 1.25rem; }
.cart-checkout { width: 100%; }
.cart-drawer__footer small { display: block; margin-top: 10px; color: #746c60; text-align: center; font-size: .68rem; }
.size-guide { width: min(660px, calc(100vw - 24px)); max-height: calc(100svh - 24px); padding: 0; border: 0; background: var(--paper); color: var(--ink); }
.size-guide > div { padding: 24px; }
.size-guide header { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.size-guide h2 { margin: 0; font-family: var(--display); font-size: 2rem; }
.size-guide p { color: #6a6257; font-size: .82rem; }
.size-table-wrap { overflow-x: auto; }
.size-guide table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.size-guide th, .size-guide td { padding: 10px; border: 1px solid var(--line); text-align: left; }
.size-guide thead { background: var(--ink); color: white; }

@media (max-width: 980px) {
  .concept-bar { grid-template-columns: 1fr 1fr; }
  .concept-bar__center { display: none; }
  .desktop-nav { display: none; }
  .site-header { height: 68px; grid-template-columns: 1fr auto; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero__copy { padding-bottom: 42px; }
  .hero h1 { font-size: clamp(4.3rem, 16vw, 7rem); }
  .pan-stage { min-height: 630px; }
  .product-selector { grid-template-columns: repeat(2, 1fr); }
  .apparel-concepts__header { grid-template-columns: 1fr; }
  .apparel-grid { grid-template-columns: repeat(2, 1fr); }
  .product-chip:nth-child(2) { border-right: 0; }
  .product-chip:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .legacy { grid-template-columns: 1fr; }
  .legacy__image-wrap { min-height: 480px; }
  .tryon-promo { grid-template-columns: 1fr; }
  .tryon-promo__card { justify-self: stretch; max-width: none; }
  .shop-hero__grid { grid-template-columns: 1fr; }
  .shop-hero__note { justify-self: start; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-gallery__main { position: relative; top: auto; }
  .pdp-info { max-width: 760px; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip > div { min-height: 102px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .service-strip > div:last-child { border-bottom: 0; }
  footer { flex-wrap: wrap; }
  .home-stories__heading { grid-template-columns: 1fr; }
  .home-stories__heading > div:last-child { justify-self: start; }
  .home-stories__grid { grid-template-columns: repeat(2, 1fr); }
  .story-card--featured { grid-column: 1 / -1; }
  .featured-story { grid-template-columns: 1fr; }
  .featured-story__image { min-height: 390px; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero__image { min-height: 520px; }
  .about-story { grid-template-columns: 1fr; }
  .about-principles__grid { grid-template-columns: 1fr; }
  .about-principles article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .about-principles article:last-child { border-bottom: 0; }
  .about-principles h3 { margin-top: 25px; }
  .about-cta { grid-template-columns: 1fr; }
  .about-cta > div:last-child { justify-content: flex-start; }
}

@media (max-width: 600px) {
  body { padding-bottom: 72px; }
  .concept-bar { min-height: 28px; padding-inline: 14px; font-size: .57rem; }
  .concept-bar span:last-child { display: none; }
  .concept-bar { grid-template-columns: 1fr; text-align: center; }
  .site-header { padding: 0 16px; }
  .brand { font-size: 1.08rem; }
  .brand__bacon { width: 24px; font-size: 1.35rem; }
  .cart-button span { display: none; }
  .cart-button { padding: 6px; border: 0; }
  .hero__copy { padding: 42px 20px 36px; }
  .eyebrow { margin-bottom: 18px; font-size: .66rem; }
  .hero h1 { font-size: clamp(3.6rem, 20vw, 5.3rem); }
  .hero__lede { margin: 21px 0 24px; font-size: 1.05rem; }
  .hero__actions .button { flex: 1; min-width: 145px; padding-inline: 14px; }
  .hero__stats { justify-content: space-between; gap: 12px; margin-top: 34px; }
  .hero__stats dt { font-size: 1.22rem; }
  .hero__stats dd { max-width: 78px; font-size: .6rem; }
  .pan-stage { min-height: 480px; }
  .pan-stage__image { object-position: 51% 50%; }
  .product-on-pan { width: min(285px, 76vw); left: 44%; }
  .product-on-pan__visual { min-height: 128px; }
  .product-on-pan__visual img { height: 138px; }
  .product-on-pan__details h2 { font-size: 1rem; }
  .pan-stage__instruction { left: 14px; bottom: 14px; }
  .product-selector { grid-template-columns: 1fr 1fr; }
  .product-chip { min-height: 82px; gap: 10px; padding: 13px 12px; }
  .product-chip b { font-size: .77rem; }
  .product-chip small { font-size: .7rem; }
  .ticker { padding: 12px 0; }
  .ticker__track { font-size: .75rem; }
  .apparel-concepts { padding: 56px 14px 66px; }
  .apparel-concepts__header { gap: 24px; margin-bottom: 30px; padding: 0 6px; }
  .apparel-concepts__header h2 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .apparel-grid { gap: 8px; }
  .apparel-card__copy { padding: 13px 12px 16px; }
  .apparel-card__copy h3 { font-size: .92rem; }
  .apparel-card__copy p { font-size: .72rem; }
  .legacy__image-wrap { min-height: 300px; }
  .legacy__copy { padding: 50px 20px 60px; }
  .legacy h2 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .tryon-promo { padding: 56px 20px 70px; gap: 34px; }
  .tryon-promo h2 { font-size: clamp(3.25rem, 16vw, 5rem); }
  .tryon-promo__card { transform: rotate(1deg); box-shadow: 8px 8px 0 var(--gold); }
  footer { min-height: 210px; flex-direction: column; align-items: flex-start; padding: 40px 20px; }
  .mobile-dock {
    height: 68px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 10px; right: 10px; bottom: 8px;
    z-index: 30;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    background: rgba(17,17,15,.94);
    box-shadow: 0 8px 32px rgba(0,0,0,.36);
    backdrop-filter: blur(18px);
  }
  .mobile-dock a, .mobile-dock button { display: grid; place-items: center; gap: 1px; padding: 4px; border: 0; border-radius: 8px; background: transparent; color: rgba(255,255,255,.66); font-size: .62rem; font-weight: 700; cursor: pointer; }
  .mobile-dock span { font-size: 1.12rem; }
  .mobile-dock .is-current { background: var(--coral); color: var(--ink); }
  .tryon-dialog { width: 100vw; height: 100svh; max-height: none; inset: 0; margin: 0; border-radius: 0; }
  .tryon-dialog__shell { height: 100%; max-height: none; }
  .tryon-dialog__header { padding: 16px; }
  .tryon-dialog__header h2 { font-size: 1.7rem; }
  .tryon-dialog__body { flex: 1; grid-template-columns: 1fr; padding: 0; }
  .tryon-controls { padding: 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .upload-zone { min-height: 78px; }
  .tryon-preview { padding: 16px; }
  .tryon-canvas-wrap { width: 100%; max-height: none; }
  .tryon-adjustments { grid-template-columns: 1fr 1fr; }
  .tryon-adjustments .button { grid-column: 1 / -1; }
  .shop-hero { padding: 24px 20px 54px; }
  .shop-hero .breadcrumb { margin-bottom: 46px; }
  .shop-hero h1 { font-size: clamp(3.9rem, 20vw, 5.4rem); }
  .shop-hero__grid { gap: 34px; }
  .shop-hero__note > p { font-size: 1rem; }
  .collection { padding-inline: 12px; }
  .collection-toolbar { min-height: 118px; align-items: stretch; flex-direction: column; justify-content: center; gap: 10px; }
  .filter-group { width: 100%; }
  .filter-chip { flex: 1; padding-inline: 8px; }
  .sort-control { justify-content: space-between; }
  .sort-control select { flex: 1; max-width: 220px; }
  .collection-grid { grid-template-columns: 1fr 1fr; gap: 28px 8px; padding-top: 24px; }
  .shop-card__image { aspect-ratio: .86; }
  .product-badge { left: 7px; top: 7px; max-width: calc(100% - 14px); padding: 5px 6px; font-size: .52rem; }
  .shop-card__copy { gap: 6px; padding-top: 10px; }
  .shop-card__copy p { font-size: .56rem; }
  .shop-card__copy h3 { font-size: .94rem; line-height: 1.05; }
  .shop-card__copy strong { font-size: .88rem; }
  .shop-card__meta { display: block; padding-top: 7px; font-size: .62rem; }
  .shop-card__meta a { display: inline-block; margin-top: 5px; }
  .breadcrumb--product { padding: 20px 16px; font-size: .62rem; white-space: nowrap; overflow: hidden; }
  .pdp { padding: 0 12px 66px; gap: 28px; }
  .pdp-gallery__main { aspect-ratio: .9; }
  .pdp-gallery__details { font-size: .54rem; }
  .pdp-info { padding: 0 5px; }
  .pdp-info h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .pdp-price { margin: 15px 0 21px; }
  .pdp-description { font-size: .96rem; }
  .size-options { grid-template-columns: repeat(4, 1fr); }
  .shipping-nudge { margin-block: 24px; }
  .pdp-next { padding: 58px 12px 70px; }
  .pdp-next h2 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .pdp-next__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
  .pdp-next__grid span { padding: 8px; font-size: .62rem; line-height: 1.3; }
  .service-strip > div { padding-inline: 20px; }
  .cart-drawer { width: 100vw; }
  .cart-drawer__header, .cart-drawer__body, .cart-drawer__footer { padding-left: 16px; padding-right: 16px; }
  .pan-summary { min-height: 112px; padding-inline: 16px; }
  .pan-summary::after { width: 150px; height: 150px; }
  .pan-summary > div { max-width: 220px; }
  .cart-drawer__footer { padding-bottom: 86px; }
  .cart-item { grid-template-columns: 76px 1fr auto; gap: 10px; }
  .cart-item__image { width: 76px; height: 90px; }
  .cart-item__controls { gap: 4px; }
  .cart-item__remove { margin-left: 4px; }
  .size-guide > div { padding: 18px; }
  .footer-links { flex-wrap: wrap; }
  .home-stories { padding: 56px 14px 68px; }
  .home-stories__heading { gap: 25px; margin-bottom: 30px; padding-inline: 6px; }
  .home-stories__heading h2 { font-size: clamp(3.1rem, 15vw, 4.5rem); }
  .home-stories__grid { grid-template-columns: 1fr; gap: 9px; }
  .story-card--featured { grid-column: auto; }
  .story-card__image { aspect-ratio: 1.45; }
  .story-card__copy { padding: 16px; }
  .stories-hero { padding: 24px 20px 56px; }
  .stories-hero .breadcrumb { margin-bottom: 46px; }
  .stories-hero h1 { font-size: clamp(4.2rem, 22vw, 6rem); }
  .stories-index { padding: 40px 12px 74px; }
  .stories-toolbar { align-items: flex-start; flex-direction: column; }
  .story-filters { width: 100%; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .story-filters .filter-chip { flex: 0 0 auto; }
  .featured-story { margin-bottom: 32px; }
  .featured-story__image { min-height: 270px; }
  .featured-story__copy { padding: 24px 18px 28px; }
  .featured-story__copy h2 { font-size: clamp(2.3rem, 12vw, 3.4rem); }
  .stories-grid { grid-template-columns: 1fr; gap: 10px; }
  .story-article__header { padding: 24px 20px 58px; }
  .story-article__header .breadcrumb { margin-bottom: 48px; font-size: .62rem; white-space: nowrap; overflow: hidden; }
  .story-article__header h1 { font-size: clamp(3.15rem, 16vw, 4.6rem); }
  .story-article__dek { margin: 24px 0; font-size: 1rem; }
  .story-article__meta { gap: 13px; font-size: .65rem; }
  .story-article__hero { padding-inline: 12px; transform: translateY(20px); }
  .story-article__hero--pan img { aspect-ratio: 1.2; }
  .story-article__body { margin-top: 46px; padding-inline: 20px; font-size: 1rem; line-height: 1.75; }
  .story-article__body blockquote { margin: 34px 0; padding: 24px 22px; }
  .story-next { min-height: 190px; margin: 0 12px 74px; padding: 28px 22px; }
  .about-hero { min-height: auto; }
  .about-hero__copy { padding: 24px 20px 58px; }
  .about-hero__copy .breadcrumb { margin-bottom: 48px; }
  .about-hero h1 { font-size: clamp(3.2rem, 15vw, 4.5rem); }
  .about-hero__image { min-height: 330px; }
  .about-story { gap: 38px; padding: 64px 20px; }
  .about-story h2 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .about-story__body { font-size: 1rem; }
  .about-principles { padding: 62px 16px; }
  .about-principles h2 { font-size: clamp(3.1rem, 15vw, 4.5rem); }
  .about-principles article { padding: 28px 22px; }
  .about-timeline { grid-template-columns: 1fr; }
  .about-timeline > div { min-height: auto; padding: 32px 22px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .about-timeline > div:last-child { border-bottom: 0; }
  .about-timeline h3 { margin-top: 22px; }
  .about-cta { padding: 62px 20px 72px; }
  .about-cta h2 { font-size: clamp(3.2rem, 15vw, 4.7rem); }
  .about-cta > div:last-child { display: grid; }
}

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