/** Shopify CDN: Minification failed

Line 452:0 Expected "}" to go with "{"

**/
/* ============================================================
   COLD SCHOOL — BASE STYLESHEET
   Design system: Ink / Bone / Paper + collection-scoped accent
   Type: Fraunces (display serif) + Inter (grotesque UI/body)
   Mobile-first. Restraint is the house style.
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand core — permanent */
  --ink: #111110;
  --bone: #F4F1EC;
  --paper: #FFFFFF;
  --graphite: #5A5A57;
  --line: #DED9D0;

  /* 001 accent — product-scoped only (never core UI) */
  --cobalt: #12327A;
  --mist: #E9EEF7;

  /* Semantic */
  --bg: var(--bone);
  --fg: var(--ink);
  --muted: var(--graphite);
  --hairline: var(--line);
  --accent: var(--cobalt);

  /* Type families */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Fluid type scale (clamp: mobile -> desktop) */
  --fs-display: clamp(2.75rem, 9vw, 6.5rem);
  --fs-h1: clamp(2rem, 6vw, 3.75rem);
  --fs-h2: clamp(1.6rem, 4.5vw, 2.75rem);
  --fs-h3: clamp(1.25rem, 3vw, 1.75rem);
  --fs-body-l: clamp(1.05rem, 2.2vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-overline: 0.72rem;

  /* Spacing base 4px */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px;
  --s9: 96px; --s10: 128px;

  /* Layout */
  --page-max: 1440px;
  --content-max: 720px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 64px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 320ms;

  /* Radius — editorial sharpness */
  --radius: 2px;

  --z-header: 100;
  --z-drawer: 300;
  --z-popup: 400;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* ---------- TYPOGRAPHY ---------- */
.display, .h-display {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
h1, .h1 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h1); line-height: 1.08; letter-spacing: -0.01em; }
h2, .h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h2); line-height: 1.12; }
h3, .h3 { font-family: var(--font-display); font-weight: 420; font-size: var(--fs-h3); line-height: 1.2; }
.body-l { font-size: var(--fs-body-l); line-height: 1.55; }
.small { font-size: var(--fs-small); }
.overline {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: var(--fs-overline);
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--muted);
}
.measure { max-width: var(--content-max); }
.serif { font-family: var(--font-display); }

/* ---------- LAYOUT ---------- */
.page { width: 100%; }
.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(56px, 10vw, 128px); }
.section--tight { padding-block: clamp(40px, 7vw, 80px); }
.stack > * + * { margin-top: var(--s5); }
.center { text-align: center; }
.full-bleed { width: 100vw; margin-inline: calc(50% - 50vw); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  min-height: 48px; padding: 0 var(--s6);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), opacity var(--dur) var(--ease);
  text-align: center;
}
.btn--primary { background: var(--ink); color: var(--bone); }
.btn--primary:hover { background: #2b2b28; }
.btn--secondary { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.btn--secondary:hover { background: var(--ink); color: var(--bone); }
.btn--accent { background: var(--cobalt); color: #fff; }
.btn--accent:hover { background: #0d2963; }
.btn--full { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.link-underline { display: inline-block; padding-bottom: 2px; box-shadow: inset 0 -1px 0 currentColor; }

/* ---------- FORMS ---------- */
.field { display: flex; flex-direction: column; gap: var(--s2); }
.field label { font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.02em; }
.input, select.input, textarea.input {
  width: 100%; min-height: 48px; padding: var(--s3) var(--s4);
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem;
}
.input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 2px rgba(17,17,16,.12); }
textarea.input { min-height: 120px; resize: vertical; }
.field--check { flex-direction: row; align-items: flex-start; gap: var(--s3); }
.field--check input { margin-top: 4px; }
.field--check label { font-weight: 400; color: var(--muted); font-size: 0.8rem; line-height: 1.5; }
.form-note { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ---------- ANIMATION UTILITIES ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement { background: var(--ink); color: var(--bone); text-align: center; }
.announcement__inner { padding: var(--s3) var(--gutter); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.announcement a { box-shadow: inset 0 -1px 0 currentColor; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: color-mix(in srgb, var(--bone) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header--transparent { background: transparent; backdrop-filter: none; color: var(--bone); position: fixed; width: 100%; }
.site-header--transparent.is-scrolled { background: color-mix(in srgb, var(--bone) 92%, transparent); backdrop-filter: saturate(140%) blur(10px); color: var(--ink); }
.header__bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: var(--header-h); gap: var(--s4); }
.header__nav { display: none; }
.header__logo { justify-self: center; }
.header__logo img { height: clamp(23px, 3.6vw, 29px); width: auto; }
.header__logo [data-logo-light] { display: none; }
.header__logo [data-logo-dark] { display: block; }
.site-header--transparent:not(.is-scrolled) .header__logo [data-logo-light] { display: block; }
.site-header--transparent:not(.is-scrolled) .header__logo [data-logo-dark] { display: none; }
.header__actions { justify-self: end; display: flex; align-items: center; gap: var(--s4); }
.header__icon { display: inline-flex; padding: var(--s2); }
.header__icon svg { width: 22px; height: 22px; }
.cart-count { position: relative; }
.cart-count[data-count]:not([data-count="0"])::after {
  content: attr(data-count); position: absolute; top: -2px; right: -4px;
  background: var(--cobalt); color: #fff; font-size: 0.6rem; font-weight: 700;
  min-width: 15px; height: 15px; border-radius: 999px; display: grid; place-items: center; padding: 0 3px;
}
.burger { display: inline-flex; }
@media (min-width: 900px) {
  .header__bar { grid-template-columns: 1fr auto 1fr; }
  .header__nav { display: flex; gap: var(--s6); align-items: center; justify-self: start; }
  .header__nav a { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; padding-block: var(--s2); }
  .header__nav a:hover { color: var(--muted); }
  .burger { display: none; }
}

/* ---------- MOBILE NAV DRAWER ---------- */
.mobile-nav { position: fixed; inset: 0; z-index: var(--z-drawer); visibility: hidden; }
.mobile-nav.is-open { visibility: visible; }
.mobile-nav__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.4); opacity: 0; transition: opacity var(--dur) var(--ease); }
.mobile-nav.is-open .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel {
  position: absolute; inset: 0 0 0 auto; width: min(86vw, 380px); background: var(--bone);
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  display: flex; flex-direction: column; padding: var(--s5); gap: var(--s4);
}
.mobile-nav.is-open .mobile-nav__panel { transform: none; }
.mobile-nav__links { display: flex; flex-direction: column; gap: var(--s2); margin-top: var(--s6); }
.mobile-nav__links a { font-family: var(--font-display); font-size: 1.75rem; padding-block: var(--s3); border-bottom: 1px solid var(--line); }
.mobile-nav__close { align-self: flex-end; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 88svh; display: grid; align-items: end; color: var(--bone); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.05) 40%, rgba(0,0,0,.65) 100%); }
.hero__content { position: relative; z-index: 1; padding-block: var(--s9) var(--s8); }
.hero__title { color: var(--bone); max-width: 14ch; }
.hero__sub { margin-top: var(--s4); max-width: 40ch; color: rgba(244,241,236,.85); }
.hero__cta { margin-top: var(--s6); display: flex; flex-wrap: wrap; gap: var(--s3); }
.hero__cta .btn--secondary { color: var(--bone); box-shadow: inset 0 0 0 1px var(--bone); }
.hero__cta .btn--secondary:hover { background: var(--bone); color: var(--ink); }

/* ---------- COUNTDOWN ---------- */
.countdown { background: var(--ink); color: var(--bone); text-align: center; }
.countdown__inner { padding-block: clamp(28px, 5vw, 48px); }
.countdown__label { color: rgba(244,241,236,.7); margin-bottom: var(--s3); }
.countdown__title { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.4rem); }
.countdown__clock { display: inline-flex; gap: clamp(12px, 3vw, 28px); margin-top: var(--s4); font-variant-numeric: tabular-nums; }
.countdown__unit { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.countdown__num { font-family: var(--font-display); font-size: clamp(2rem, 7vw, 3.25rem); line-height: 1; }
.countdown__unit span:last-child { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,241,236,.6); margin-top: var(--s2); }
.countdown__sub { margin-top: var(--s4); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,236,.7); }
.countdown__cta { margin-top: var(--s5); }
.countdown[data-state="open"] { background: var(--cobalt); }
.countdown[data-state="closed"] .countdown__clock { display: none; }

/* ---------- PRODUCT CARD ---------- */
.product-grid { display: grid; grid-template-columns: 1fr; gap: var(--s6) var(--s5); }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s8) var(--s6); } }
.product-card { display: flex; flex-direction: column; }
.product-card__media { aspect-ratio: 1 / 1; overflow: hidden; position: relative; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: opacity var(--dur) var(--ease), transform 600ms var(--ease); }
.product-card__media img.is-hover { position: absolute; inset: 0; opacity: 0; }
@media (hover: hover) { .product-card:hover .product-card__media img.is-hover { opacity: 1; } }
.product-card__badge { position: absolute; top: var(--s3); left: var(--s3); background: var(--ink); color: var(--bone); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--radius); font-weight: 600; }
.product-card__badge--soldout { background: var(--graphite); }
.product-card__badge--preorder { background: var(--cobalt); }
.product-card__info { padding-top: var(--s3); display: flex; flex-direction: column; gap: 2px; }
.product-card__name { font-family: var(--font-display); font-size: 1.15rem; }
.product-card__meta { font-size: 0.82rem; color: var(--muted); }
.product-card__price { font-size: 0.95rem; margin-top: 2px; }
.product-card__price s { color: var(--muted); margin-right: 6px; }

/* ---------- EDITORIAL / IMAGE-TEXT ---------- */
.editorial { display: grid; gap: var(--s6); align-items: center; }
@media (min-width: 860px) { .editorial { grid-template-columns: 1fr 1fr; gap: var(--s9); } .editorial--reverse .editorial__media { order: 2; } }
.editorial__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 38% center; }
.featured-drop .editorial__media { background: #fff; }
.featured-drop .editorial__media img { object-fit: contain; object-position: center; }
.editorial__body { max-width: 46ch; }
.editorial__body .overline { margin-bottom: var(--s3); }
.editorial__body h2 { margin-bottom: var(--s4); }
.editorial__body p + .btn, .editorial__body p + p { margin-top: var(--s4); }

.full-image { position: relative; }
.full-image img { width: 100%; height: clamp(340px, 70svh, 760px); object-fit: cover; object-position: center 20%; }
.full-image__caption { position: absolute; left: var(--gutter); bottom: var(--s7); color: var(--bone); font-family: var(--font-display); font-size: var(--fs-h2); max-width: 18ch; text-shadow: 0 1px 30px rgba(0,0,0,.4); }

/* ---------- COMMUNITY GALLERY ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s2); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery--offset img:nth-child(even) { aspect-ratio: 4/5; }

/* ---------- MANIFESTO / BRAND STORY ---------- */
.manifesto { background: var(--ink); color: var(--bone); text-align: center; }
.manifesto h2 { color: var(--bone); max-width: 20ch; margin-inline: auto; }
.manifesto p { color: rgba(244,241,236,.72); max-width: 46ch; margin-inline: auto; }

/* ---------- NEWSLETTER ---------- */
.newsletter { text-align: center; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: var(--s2); max-width: 460px; margin: var(--s5) auto 0; }
.newsletter__form .input { flex: 1 1 220px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ink); color: var(--bone); padding-block: var(--s8) var(--s6); }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6) var(--s5); }
@media (min-width: 860px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s7); } }
.footer__col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(244,241,236,.55); margin-bottom: var(--s4); font-weight: 600; }
.footer__col a { display: block; padding-block: 6px; font-size: 0.9rem; color: rgba(244,241,236,.85); }
.footer__col a:hover { color: var(--bone); }
.footer__brand img { height: 36px; margin-bottom: var(--s4); }
.footer__brand p { color: rgba(244,241,236,.6); font-size: 0.85rem; max-width: 30ch; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s3); margin-top: var(--s8); padding-top: var(--s5); border-top: 1px solid rgba(244,241,236,.14); font-size: 0.75rem; color: rgba(244,241,236,.5); }

/* ---------- CART DRAWER ---------- */
.drawer { position: fixed; inset: 0; z-index: var(--z-drawer); visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.45); opacity: 0; transition: opacity var(--dur) var(--ease); }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel { position: absolute; inset: 0 0 0 auto; width: min(92vw, 440px); background: var(--bone); transform: translateX(100%); transition: transform var(--dur) var(--ease); display: flex; flex-direction: column; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: var(--s5); border-bottom: 1px solid var(--line); }
.drawer__title { font-family: var(--font-display); font-size: 1.4rem; }
.drawer__items { flex: 1; overflow-y: auto; padding: var(--s5); display: flex; flex-direction: column; gap: var(--s5); }
.cart-line { display: grid; grid-template-columns: 72px 1fr auto; gap: var(--s4); }
.cart-line img { width: 72px; aspect-ratio: 4/5; object-fit: cover; background: var(--paper); }
.cart-line__name { font-family: var(--font-display); font-size: 1.05rem; }
.cart-line__meta { font-size: 0.8rem; color: var(--muted); }
.cart-line__preorder { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cobalt); font-weight: 600; margin-top: 4px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); margin-top: var(--s2); }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; font-size: 1rem; }
.qty input { width: 34px; text-align: center; border: none; background: none; font-family: inherit; }
.cart-line__remove { font-size: 0.72rem; text-decoration: underline; color: var(--muted); margin-top: var(--s2); }
.drawer__foot { padding: var(--s5); border-top: 1px solid var(--line); background: var(--paper); }
.drawer__subtotal { display: flex; justify-content: space-between; font-size: 1rem; margin-bottom: var(--s2); }
.drawer__note { font-size: 0.75rem; color: var(--muted); margin-bottom: var(--s4); }
.drawer__empty { padding: var(--s8) var(--s5); text-align: center; color: var(--muted); }

/* ---------- MODAL (size guide) ---------- */
.modal { position: fixed; inset: 0; z-index: var(--z-popup); display: none; place-items: center; padding: var(--s4); }
.modal.is-open { display: grid; }
.modal__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.modal__box { position: relative; background: var(--bone); max-width: 640px; width: 100%; max-height: 88svh; overflow-y: auto; padding: var(--s6); border-radius: var(--radius); }
.modal__close { position: absolute; top: var(--s4); right: var(--s4); }
.size-table { width: 100%; border-collapse: collapse; margin-top: var(--s4); font-size: 0.9rem; }
.size-table th, .size-table td { border: 1px solid var(--line); padding: var(--s3); text-align: center; }
.size-table th { background: var(--paper); font-weight: 600; }
.size-table caption { font-size: 0.78rem; color: var(--muted); margin-top: var(--s3); caption-side: bottom; text-align: left; }

/* ---------- SIGNUP POPUP ---------- */
.popup { position: fixed; inset: 0; z-index: var(--z-popup); display: none; place-items: center; padding: var(--s4); }
.popup.is-open { display: grid; }
.popup__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.popup__box { position: relative; background: var(--bone); max-width: 440px; width: 100%; border-radius: var(--radius); overflow: hidden; }
.popup__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.popup__body { padding: var(--s6); text-align: center; }
.popup__close { position: absolute; top: var(--s3); right: var(--s3); z-index: 2; color: #fff; mix-blend-mode: difference; }
.popup__eyebrow { margin-bottom: var(--s2); }
.popup__title { font-family: var(--font-display); font-size: 1.75rem; line-height: 1.1; }
.popup__form { margin-top: var(--s5); display: flex; flex-direction: column; gap: var(--s3); }
.popup__success { display: none; }
.popup.is-success .popup__form, .popup.is-success .popup__title, .popup.is-success .popup__eyebrow { display: none; }
.popup.is-success .popup__success { display: block; }

/* ---------- PDP ---------- */
.pdp { display: grid; gap: var(--s6); }
@media (min-width: 900px) { .pdp { grid-template-columns: 1.15fr 1fr; gap: var(--s8); align-items: start; } }
.pdp__gallery { display: flex; flex-direction: column; gap: var(--s2); }
@media (min-width: 900px) { .pdp__gallery { position: sticky; top: calc(var(--header-h) + 16px); } }
.pdp__main-img { aspect-ratio: 1 / 1; overflow: hidden; background: var(--paper); }
.pdp__main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s2); }
.pdp__thumbs button { aspect-ratio: 1; background: var(--paper); overflow: hidden; border: 1px solid transparent; }
.pdp__thumbs button[aria-current="true"] { border-color: var(--ink); }
.pdp__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp__info { display: flex; flex-direction: column; gap: var(--s4); }
.pdp__title { font-family: var(--font-display); font-size: clamp(2.25rem, 6vw, 3.25rem); line-height: 1; }
.pdp__subtitle { color: var(--muted); font-size: 1.05rem; }
.pdp__price { font-size: 1.5rem; }
.pdp__price s { color: var(--muted); font-size: 1.1rem; margin-right: 8px; }
.preorder-flag { display: inline-flex; align-items: center; gap: var(--s2); align-self: flex-start; background: var(--mist); color: var(--cobalt); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; padding: 8px 14px; border-radius: var(--radius); }
.preorder-line { font-size: 0.9rem; color: var(--muted); }
.variant-group { display: flex; flex-direction: column; gap: var(--s3); }
.variant-group__label { display: flex; justify-content: space-between; align-items: baseline; }
.variant-group__label .overline { margin: 0; }
.swatches { display: flex; flex-wrap: wrap; gap: var(--s2); }
.swatch { min-width: 46px; min-height: 46px; padding: 0 var(--s3); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); font-size: 0.85rem; display: inline-flex; align-items: center; justify-content: center; }
.swatch[aria-pressed="true"] { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.swatch[disabled] { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }
.swatch--color { width: 46px; height: 46px; padding: 0; position: relative; }
.swatch--color span { position: absolute; inset: 4px; border-radius: 1px; }
.size-guide-link { background: none; text-decoration: underline; font-size: 0.8rem; color: var(--muted); }
.pdp__accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--s4); padding: var(--s4) 0; text-align: left; font-weight: 600; font-size: 0.95rem; }
.accordion__icon {
    transition: transform var(--dur) var(--ease);
    flex: none;
    width: 20px;
    height: 20px;
.accordion__trigger[aria-expanded="true"] .accordion__icon { transform: rotate(45deg); }
.accordion__panel { overflow: hidden; max-height: 0; transition: max-height var(--dur) var(--ease); }
.accordion__panel-inner { padding-bottom: var(--s4); color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* Sticky mobile add-to-cart */
.sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: color-mix(in srgb, var(--bone) 94%, transparent); backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: var(--s3) var(--gutter); display: none; align-items: center; gap: var(--s4); transform: translateY(100%); transition: transform var(--dur) var(--ease); }
.sticky-atc.is-visible { transform: none; }
.sticky-atc__info { flex: 1; min-width: 0; }
.sticky-atc__name { font-family: var(--font-display); font-size: 1rem; line-height: 1; }
.sticky-atc__price { font-size: 0.85rem; color: var(--muted); }
.sticky-atc .btn { flex: none; }
@media (max-width: 899px) { .sticky-atc { display: flex; } }

/* ---------- REVIEWS ---------- */
.reviews__summary { display: flex; align-items: center; gap: var(--s3); }
.stars { display: inline-flex; gap: 2px; color: var(--ink); }
.stars svg { width: 16px; height: 16px; }
.review { padding: var(--s5) 0; border-bottom: 1px solid var(--line); }
.review__head { display: flex; justify-content: space-between; gap: var(--s3); }
.review__author { font-weight: 600; font-size: 0.9rem; }
.reviews__empty { padding: var(--s7) 0; text-align: center; color: var(--muted); }

/* ---------- BREADCRUMB / MISC ---------- */
.eyebrow-row { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.hr { height: 1px; background: var(--line); border: 0; margin-block: var(--s6); }
.tag { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); border: 1px solid var(--line); padding: 3px 8px; border-radius: 999px; }
.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; }
.text-accent { color: var(--cobalt); }

/* ---------- PAGE HERO (interior) ---------- */
.page-hero { padding-block: clamp(64px, 12vw, 140px) clamp(32px, 6vw, 64px); }
.page-hero .overline { margin-bottom: var(--s4); }
.page-hero h1 { max-width: 16ch; }
.page-hero p { max-width: 52ch; margin-top: var(--s4); color: var(--muted); }

/* ---------- AMBASSADOR ---------- */
.steps { display: grid; gap: var(--s5); counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { border-top: 2px solid var(--ink); padding-top: var(--s3); }
.step__num { font-family: var(--font-display); font-size: 2rem; }
.step__title { font-weight: 600; margin-block: var(--s2); }
.step p { font-size: 0.88rem; color: var(--muted); }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 5vw, 48px); }
.form-grid { display: grid; gap: var(--s4); }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
