:root {
  --ink: #10100f;
  --paper: #f7f4ec;
  --white: #ffffff;
  --muted: #756f65;
  --line: rgba(16, 16, 15, 0.14);
  --red: #d9442e;
  --stone: #ded7cb;
  --moss: #303a2d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: var(--white);
  animation: loader-exit 0.9s ease 2.45s forwards;
}

.skip-intro .intro-loader {
  display: none;
}

.skip-intro body,
.skip-intro .hero-inner,
.skip-intro .hero-product,
.skip-intro .head-watermark {
  animation: none;
}

.skip-intro .head-watermark {
  opacity: 0.24;
  transform: none;
}

.loader-head,
.loader-logo {
  position: absolute;
  color: var(--ink);
}

.loader-head {
  width: min(42vw, 240px);
  opacity: 0;
  filter: invert(1);
  animation: mark-in 0.8s ease 0.15s forwards, mark-out 0.55s ease 1.2s forwards;
}

.loader-logo {
  width: min(60vw, 390px);
  opacity: 0;
  animation: logo-in 0.8s ease 1.45s forwards;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.78) 0%,
    rgba(5, 5, 5, 0.46) 48%,
    rgba(5, 5, 5, 0) 100%
  );
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.97);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

/* Les fiches produit sont sur fond clair : le dégradé du hero n'y a pas lieu d'être. */
.product-detail-body .site-header,
.product-detail-body .site-header.is-scrolled {
  background: #0a0a0a !important;
  background-image: none !important;
}

.brand-logo {
  width: clamp(136px, 17vw, 230px);
  height: auto;
  color: currentColor;
  filter: invert(1);
}

.main-nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 32px);
  align-items: center;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav > a:not(.social-icon-link) {
  position: relative;
  transition: color .2s ease;
}

.main-nav > a:not(.social-icon-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.main-nav > a:not(.social-icon-link):hover::after,
.main-nav > a:not(.social-icon-link):focus-visible::after,
.main-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav > a.is-active {
  color: #ff5a43;
}

.social-icon-link .instagram-icon {
  transition: transform .2s ease, opacity .2s ease;
}

.social-icon-link:hover .instagram-icon,
.social-icon-link:focus-visible .instagram-icon {
  opacity: .72;
  transform: scale(1.12);
}

.nav-action {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-action span {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: 4px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 0.64rem;
}

.social-icon-link {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  line-height: 0;
}

.instagram-icon {
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.instagram-icon .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-instagram-link {
  display: flex;
  gap: 9px;
  align-items: center;
}

.footer-instagram-link .instagram-icon {
  flex: 0 0 20px;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 31;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  top: 24px;
}

.nav-open .menu-toggle span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.hero-shop {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 72px) 52px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll-cue i {
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scroll-cue 1.6s ease-in-out infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-bg .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.9s ease, transform 5.4s ease;
  will-change: opacity, transform;
}

.hero-bg .hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-trail {
  object-position: 68% 18%;
}

.hero-slide-summit {
  object-position: 48% 24%;
}

.hero-slide-studio {
  object-position: 50% 38%;
}

.hero-slide-runners {
  object-position: 50% 20%;
}

.hero-slide-snow {
  object-position: 62% 28%;
}

.hero-slide-hd-14 {
  object-position: 50% 30%;
}

.hero-slide-hd-30 {
  object-position: 50% 50%;
}

.hero-slide-hd-6663 {
  object-position: 50% 50%;
}

.hero-slide-hd-7285 {
  object-position: 50% 42%;
}

.hero-shop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.26) 60%, rgba(0, 0, 0, 0.68)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05) 58%);
}

.head-watermark {
  position: absolute;
  right: clamp(-190px, -10vw, -68px);
  top: 8%;
  width: min(58vw, 760px);
  color: rgba(255, 255, 255, 0.16);
  opacity: 0;
  z-index: -1;
  animation: watermark-in 1s ease 3.45s both;
}

.hero-inner {
  width: min(780px, 100%);
  animation: rise-in 0.8s ease 2.95s both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-logo {
  height: auto;
  width: min(78vw, 620px);
  margin-bottom: 24px;
  color: var(--white);
  filter: invert(1);
}

.hero-copy {
  max-width: 580px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.62;
}

.hero-actions,
.product-line,
.size-grid,
.color-row,
.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.button.wide {
  width: 100%;
}

.hero-product {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(30px, 6vw, 74px);
  width: min(34vw, 390px);
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px 14px 12px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  animation: card-in 0.8s ease 3.1s both;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.hero-product:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
}

.hero-product-media {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.88);
}

.hero-product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product:hover .media-secondary {
  opacity: 1;
}

.hero-product-copy {
  display: grid;
  min-width: 0;
}

.hero-product-copy em,
.hero-product-copy strong,
.hero-product-copy small,
.hero-product-cta {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-product-copy em {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.64rem;
  font-style: normal;
}

.hero-product-copy strong {
  margin-bottom: 6px;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 0.96;
}

.hero-product-copy small {
  font-size: 0.9rem;
}

.hero-product-cta {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 0.66rem;
  transition: color 0.28s ease, background 0.28s ease;
}

.hero-product:hover .hero-product-cta {
  color: var(--ink);
  background: var(--white);
}

.novelties-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: clamp(64px, 9vw, 124px) clamp(18px, 7vw, 112px);
  color: var(--white);
  background: #030303;
  overflow: hidden;
}

.novelties-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(217, 68, 46, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), transparent 1px);
  background-size: auto, 100% 84px;
  opacity: 0.72;
  pointer-events: none;
}

.novelties-heading {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.novelties-heading h2 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  line-height: 0.86;
}

.novelties-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.novelties-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.novelties-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.novelty-arrow {
  display: none;
}

.novelties-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.tees-range {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.tees-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 28px);
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%),
    #111;
}

.tee-focus {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.16;
  overflow: hidden;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.tee-focus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tee-focus span {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  padding: 6px 9px;
  color: var(--white);
  background: var(--ink);
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.range-logo {
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 3vw, 38px);
  color: rgba(255, 255, 255, 0.12);
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(3.6rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
}

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

.colorway-chip {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  align-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: transform 0.24s ease, background 0.24s ease;
}

.colorway-chip:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

.colorway-chip.is-active {
  background: var(--white);
}

.colorway-chip.is-active span {
  box-shadow: 0 0 0 3px rgba(217, 68, 46, 0.32);
}

.colorway-chip span {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--swatch);
}

.tee-range-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.tee-range-bar strong,
.tee-range-bar span {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.tee-range-bar strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
}

.tee-range-bar span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.novelty-card {
  min-width: 0;
  padding: clamp(12px, 2vw, 18px);
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  backdrop-filter: blur(16px);
}

.novelty-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.08;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}

.novelty-media img,
.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.34s ease;
}

.media-secondary {
  opacity: 0;
}

.novelty-card:hover .media-secondary,
.product-card:hover .media-secondary {
  opacity: 1;
}

.novelty-info {
  display: grid;
  justify-items: start;
  padding-top: 20px;
}

.novelty-info h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1;
}

.novelty-rule {
  width: 42px;
  height: 1px;
  margin: 2px 0 10px;
  background: rgba(255, 255, 255, 0.78);
}

.novelty-info p {
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 900;
}

.novelty-swatch {
  width: 22px;
  height: 22px;
  margin-bottom: 8px;
  border: 2px solid var(--swatch-accent);
  border-radius: 50%;
  background: var(--swatch);
}

.novelty-color {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.novelty-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  font-weight: 900;
  font-size: 0.74rem;
  text-decoration: none;
  text-transform: uppercase;
}

.field-2026-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(66px, 9vw, 126px) clamp(18px, 7vw, 112px);
  color: var(--white);
  background: #080808;
  overflow: hidden;
}

.field-2026-copy {
  min-width: 0;
}

.field-2026-copy h2 {
  max-width: 100%;
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 4vw, 4.9rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.field-2026-copy h2 span {
  display: block;
  white-space: nowrap;
}

.field-2026-copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.72;
}

.field-2026-collage {
  display: grid;
  grid-template-columns: 1.05fr 0.82fr 0.78fr;
  grid-auto-rows: minmax(170px, 21vw);
  gap: 14px;
}

.field-photo,
.field-product-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #141414;
}

.field-photo img,
.field-product-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.field-photo-tall {
  grid-row: span 2;
}

.field-photo-wide {
  grid-column: span 2;
}

.field-product-card {
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 28px);
  background: #ffffff;
}

.field-product-card img {
  object-fit: contain;
  background: #ffffff;
}

.field-product-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 9px;
  border-radius: 3px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-section,
.origin-shop-section,
.contact-section,
.product-page {
  padding: clamp(60px, 8vw, 116px) clamp(18px, 5vw, 72px);
}

.origin-shop-section {
  padding-top: 0;
  background: var(--paper);
}

.collection-heading {
  max-width: 980px;
  margin-bottom: clamp(28px, 5vw, 54px);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.collection-heading h1,
.collection-heading h2 {
  max-width: 920px;
  margin: 0 0 20px;
  font-size: clamp(2.7rem, 6.8vw, 7rem);
  line-height: 0.88;
}

.collection-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.72;
}

.origin-heading {
  max-width: 860px;
}

.origin-heading h2 {
  font-size: clamp(2.3rem, 5.6vw, 5.4rem);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--paper);
}

.contact-heading {
  position: sticky;
  top: 96px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-heading h2 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  line-height: 0.88;
}

.contact-heading p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.72;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.contact-direct a {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--white);
}

.contact-direct strong,
.contact-direct span {
  display: block;
}

.contact-direct strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-direct span {
  color: var(--muted);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 38px);
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(16, 16, 15, 0.1);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 15, 0.18);
  border-radius: 4px;
  background: #fbfaf6;
  font: inherit;
  font-weight: 600;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
  line-height: 1.55;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.contact-form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form-status[data-state="success"] {
  color: #23723a;
}

.contact-form-status[data-state="error"] {
  color: #a3291d;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}

.form-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
  text-transform: none;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 460px);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Archivo, Inter, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.9;
}

.section-heading p:last-child,
.feature-copy p,
.product-description {
  color: var(--muted);
  line-height: 1.7;
}

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

.product-card {
  min-width: 0;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(16, 16, 15, 0.08);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: #ebe6dd;
}

.product-media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--ink);
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-item .product-media span:empty {
  display: none;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  min-height: 2.3em;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.15;
}

.product-info .product-ribbon {
  min-height: 1.2em;
  margin: -2px 0 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-info .product-ribbon[hidden] {
  display: none;
}

.shop-section .wix-home-product .product-media img {
  object-fit: cover;
  background: var(--white);
}

.product-line {
  justify-content: space-between;
  align-items: center;
}

.product-line strong {
  color: var(--red);
  font-weight: 900;
}

.product-line a {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.model-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.model-swatches a {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(16, 16, 15, 0.24);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, rgba(16, 16, 15, 0.26) 48%, rgba(16, 16, 15, 0.26) 52%, transparent 53%),
    linear-gradient(135deg, var(--swatch) 0 50%, var(--swatch-2, var(--swatch)) 50% 100%);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.model-swatches a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(217, 68, 46, 0.18);
}

.origin-product-grid .product-card {
  background: #fdfbf5;
}

.shop-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 5vw, 54px);
}

.shop-full-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  height: clamp(430px, 55svh, 540px);
  min-height: 0;
  overflow: hidden;
  padding: 104px clamp(18px, 5vw, 72px) 28px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72)),
    url("assets/home-page-hd.jpeg") center / cover;
}

.shop-full-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  line-height: 0.88;
}

.shop-full-hero p:not(.eyebrow) {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
}

.shop-hero-image {
  width: min(100%, 400px);
  height: 100%;
  max-height: 350px;
  min-height: 0;
  align-self: stretch;
  justify-self: end;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
}

.shop-catalog {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.shop-filters button {
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.shop-filters button:hover,
.shop-filters button.is-active {
  color: var(--white);
  background: var(--ink);
}

.shop-results-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.full-shop-grid {
  align-items: stretch;
}

.shop-item.is-hidden {
  display: none;
}

.shop-item {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.shop-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(16, 16, 15, 0.14);
}

.shop-tee-card {
  grid-column: span 2;
}

.tee-shop-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  aspect-ratio: 2 / 1.05;
  padding: 16px;
  background: #f8f7f2;
}

.tee-shop-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  border-radius: 4px;
  transition: transform 0.24s ease;
}

.shop-tee-card:hover .tee-shop-media img {
  transform: translateY(-3px);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 34px;
  align-items: center;
  padding: clamp(60px, 8vw, 116px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.feature-copy h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.92;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-mark {
  display: grid;
  place-items: center;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at center, rgba(217, 68, 46, 0.18), rgba(255, 255, 255, 0.02) 58%);
}

.feature-mark img {
  width: min(78%, 390px);
  color: var(--white);
}

.stockists-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(60px, 8vw, 116px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.events-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 112px);
  padding: clamp(72px, 10vw, 148px) clamp(18px, 7vw, 112px);
  color: var(--white);
  background: #080808;
}

.events-heading {
  align-self: start;
  position: sticky;
  top: 112px;
}

.events-heading h2 {
  max-width: 650px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 6.5vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.events-heading p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.events-heading .button {
  margin-top: 28px;
}

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

.event-feature-card {
  display: grid;
  align-content: start;
  min-height: 460px;
  padding: clamp(18px, 2.3vw, 30px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 6px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.event-feature-card:hover {
  transform: translateY(-6px);
  background: var(--white);
}

.event-logo {
  display: grid;
  place-items: center;
  height: 160px;
  margin-bottom: 30px;
}

.event-logo img {
  width: 100%;
  max-width: 170px;
  max-height: 130px;
  object-fit: contain;
}

.event-feature-card time {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-feature-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 0.95;
}

.event-feature-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.event-feature-card b {
  margin-top: auto;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.events-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.events-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.event-number {
  color: var(--red);
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.events-list strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.events-list small {
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.events-list .event-pending small {
  color: var(--ink);
  border-color: var(--red);
  background: var(--red);
}

.events-page {
  min-height: 100vh;
  color: var(--white);
  background: #080808;
}

.events-page-hero {
  padding: clamp(150px, 18vw, 250px) clamp(18px, 7vw, 112px) clamp(70px, 9vw, 130px);
}

.events-page-hero h1 {
  max-width: 1100px;
  margin: 0 0 28px;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.8;
  letter-spacing: -0.055em;
}

.events-page-hero > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.events-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 clamp(18px, 7vw, 112px) clamp(80px, 12vw, 170px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.events-directory a {
  min-height: 260px;
  padding: clamp(24px, 4vw, 52px);
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.25s ease, background 0.25s ease;
}

.directory-logo,
.directory-monogram {
  display: block;
  width: auto;
  max-width: 180px;
  height: 64px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
}

.directory-monogram {
  height: auto;
  color: var(--red);
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.events-directory a:hover {
  color: var(--ink);
  background: var(--paper);
}

.events-directory b {
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.events-directory h2 {
  margin: 28px 0 12px;
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  line-height: 0.92;
}

.events-directory p {
  margin: 0 0 28px;
  opacity: 0.68;
}

.events-directory span {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stockists-copy h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.92;
}

.stockists-copy p {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.74;
}

.stockists-actions {
  margin-bottom: 24px;
}

.retailer-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.52fr) minmax(180px, 1fr);
  gap: 18px 28px;
  max-width: 620px;
  padding: clamp(20px, 2.4vw, 30px);
  color: var(--white);
  background: #0b1725;
  border-radius: 6px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.retailer-card:hover {
  color: var(--white);
  background: #132943;
  transform: translateY(-3px);
}

.retailer-logo {
  display: grid;
  align-content: center;
  justify-items: start;
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.retailer-logo i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  color: #0b1725;
  background: #67b6e5;
  border-radius: 50%;
  font-family: Archivo, Inter, sans-serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 900;
}

.retailer-logo strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.85rem;
  line-height: 1;
  text-transform: uppercase;
}

.retailer-copy {
  display: grid;
  align-content: center;
  gap: 5px;
}

.retailer-copy small,
.retailer-link {
  color: #67b6e5;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.retailer-copy b {
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.retailer-copy em {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-style: normal;
}

.retailer-link {
  grid-column: 2;
}

.stockists-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.54fr);
  gap: 14px;
  align-items: end;
}

.stockist-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 6px;
}

.stockist-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.stockist-photo-large img {
  min-height: 560px;
}

.stockist-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.02) 54%);
}

.stockist-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 420px);
  gap: 30px;
  align-items: center;
  padding: clamp(60px, 8vw, 116px) clamp(18px, 5vw, 72px);
  background: #cfe8fb;
}

.story-teaser-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.92;
}

.story-teaser-copy p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.origin-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.origin-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 15, 0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.origin-logo-stack {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 12px;
  align-items: stretch;
}

.origin-logo-stack img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: contain;
  padding: clamp(18px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 6px;
}

.origin-logo-stack img:first-child {
  background: #050505;
}

.size-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.size-grid div,
.contact-grid a,
.contact-grid div {
  padding: 22px;
  background: var(--white);
}

.size-grid strong,
.size-grid span,
.contact-grid strong,
.contact-grid span {
  display: block;
}

.size-grid strong,
.contact-grid strong {
  margin-bottom: 8px;
  font-family: Archivo, Inter, sans-serif;
  text-transform: uppercase;
}

.size-grid span,
.contact-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.story-page {
  background: var(--paper);
}

.story-hero {
  position: relative;
  min-height: 62vh;
  min-height: 62svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(18px, 5vw, 72px) 58px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.story-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.story-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.1));
}

.story-hero-copy {
  max-width: 900px;
}

.story-hero-copy h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 9vw, 8.8rem);
  line-height: 0.86;
}

.story-hero-copy p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

.story-hero-mark {
  position: absolute;
  right: clamp(-90px, -5vw, -28px);
  top: 18%;
  z-index: -1;
  width: min(46vw, 500px);
  opacity: 0.14;
}

.origin-section,
.brand-story,
.events-section {
  padding: clamp(60px, 8vw, 116px) clamp(18px, 5vw, 72px);
}

.story-heading {
  display: block;
  margin-bottom: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.story-heading .eyebrow {
  margin-bottom: clamp(18px, 3vw, 34px);
}

.story-heading h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 8.4rem);
  line-height: 0.84;
  letter-spacing: -.045em;
}

.story-heading p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 58px);
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
}

.timeline-item > span {
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--red);
}

.timeline-item h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 0.96;
}

.timeline-item p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  line-height: 1.78;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: 18px;
  color: var(--white);
  background: var(--ink);
}

.brand-story-panel,
.brand-story-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-story-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.92;
}

.brand-story-panel p,
.brand-story-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.78;
}

.brand-story-card {
  background: rgba(255, 255, 255, 0.06);
}

.brand-story-card img {
  width: min(64%, 260px);
  margin-bottom: 28px;
}

.brand-story-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.event-grid div {
  min-height: 170px;
  padding: 24px;
  background: var(--white);
}

.event-grid strong,
.event-grid span {
  display: block;
}

.event-grid strong {
  max-width: 320px;
  margin-bottom: 12px;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.event-grid span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

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

.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: contain;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(16, 16, 15, 0.08);
  border-radius: 6px;
}

.product-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(16, 16, 15, 0.1);
  border-radius: 6px;
}

.product-panel h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
}

.product-price {
  margin-bottom: 20px;
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 900;
}

.option-block {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.option-block h2 {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.size-pills span,
.color-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.size-pills span {
  cursor: pointer;
}

.size-pills span.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

button.color-chip {
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.color-chip.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(217, 68, 46, 0.14);
}

.color-chip[data-product-image] {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.color-chip[data-product-image]:hover,
.color-chip[data-product-image]:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(217, 68, 46, 0.14);
}

.color-chip i {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, rgba(16, 16, 15, 0.26) 48%, rgba(16, 16, 15, 0.26) 52%, transparent 53%),
    linear-gradient(135deg, var(--swatch) 0 50%, var(--swatch-2, var(--swatch)) 50% 100%);
}

.muted {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.managed-thumbs{display:flex;gap:8px;padding:12px 0;overflow-x:auto}
.managed-thumbs button{flex:0 0 74px;width:74px;height:74px;padding:0;border:1px solid rgba(0,0,0,.14);background:var(--white)}
.managed-thumbs img{width:100%;height:100%;object-fit:cover}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(54px, 7vw, 88px) clamp(18px, 5vw, 72px) 30px;
  color: var(--white);
  background: #0a0a0a;
}

.footer-logo {
  width: min(48vw, 280px);
  margin-bottom: 22px;
  color: var(--white);
  filter: invert(1);
}

.footer-brand p,
.footer-col a,
.footer-col span,
.footer-bottom,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.64);
}

.footer-brand p {
  max-width: 340px;
  line-height: 1.7;
}

.footer-col {
  display: grid;
  gap: 11px;
}

.footer-col h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.82rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.64);
}

.legal-page-body {
  background: #f4f0e7;
}

.legal-page {
  min-height: 70vh;
  padding: clamp(132px, 14vw, 184px) clamp(18px, 6vw, 88px) clamp(72px, 9vw, 120px);
}

.legal-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, .6fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
  padding-bottom: clamp(38px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.legal-hero > * {
  min-width: 0;
}

.legal-hero .eyebrow {
  color: var(--red);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 12px 0 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(3rem, 8vw, 7.7rem);
  font-weight: 900;
  line-height: .83;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.legal-hero-note {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(44px, 8vw, 112px);
  padding-top: clamp(42px, 7vw, 76px);
}

.legal-summary {
  position: sticky;
  top: 126px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.legal-summary strong {
  margin-bottom: 8px;
  font-family: Archivo, Inter, sans-serif;
  font-size: .74rem;
  text-transform: uppercase;
}

.legal-summary a {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
}

.legal-summary a:hover {
  color: var(--red);
}

.legal-content {
  min-width: 0;
}

.legal-section {
  padding: 0 0 38px;
  margin: 0 0 38px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 130px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 18px;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.legal-section h3 {
  margin: 26px 0 10px;
  font-size: .92rem;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li,
.legal-section address {
  color: #4f4a43;
  font-size: .98rem;
  line-height: 1.78;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section ul,
.legal-section ol {
  margin: 12px 0 16px;
  padding-left: 22px;
}

.legal-section address {
  font-style: normal;
}

.legal-section a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-alert {
  margin: 22px 0 0;
  padding: 18px 20px;
  color: #5f210f;
  background: #f5d7cd;
  border-left: 4px solid var(--red);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.55;
}

.legal-data-table {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.legal-data-row {
  display: grid;
  grid-template-columns: minmax(150px, .55fr) minmax(0, 1.45fr);
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.legal-data-row strong {
  font-size: .8rem;
  text-transform: uppercase;
}

.legal-data-row span {
  color: #4f4a43;
  font-size: .92rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .legal-page {
    padding-top: 116px;
  }

  .legal-hero,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 13vw, 5rem);
    overflow-wrap: break-word;
  }

  .legal-summary {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }

  .legal-summary strong {
    grid-column: 1 / -1;
  }

  .legal-data-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-legal-links {
    justify-content: start;
  }
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.commerce-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.commerce-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 61;
  display: grid;
  align-content: start;
  gap: 18px;
  width: min(100vw, 430px);
  height: 100vh;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.2);
  transform: translateX(104%);
  transition: transform 0.28s ease;
  overflow: auto;
}

.cart-opened .commerce-overlay,
.account-opened .commerce-overlay {
  opacity: 1;
  visibility: visible;
}

.cart-opened [data-cart-panel],
.account-opened [data-account-panel] {
  transform: none;
}

.commerce-panel-head,
.cart-line,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.commerce-panel-head strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.commerce-panel-head button,
.cart-line button {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-line {
  padding: 12px;
  background: var(--white);
  border-radius: 6px;
}

.cart-line img {
  width: 64px;
  height: 76px;
  object-fit: cover;
  background: #eee7dc;
  border-radius: 4px;
}

.cart-line-copy {
  flex: 1;
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 5px;
}

.cart-quantity button {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  padding: 0;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: var(--white);
  border-radius: 3px;
}

.cart-line-copy strong,
.cart-total strong {
  font-family: Archivo, Inter, sans-serif;
  text-transform: uppercase;
}

.cart-line-copy span,
.cart-empty,
.account-status {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cart-total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
}

.account-form {
  display: grid;
  gap: 13px;
}

.account-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-form input,
.account-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes mark-in {
  from {
    opacity: 0;
    transform: scale(0.86);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes mark-out {
  to {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes logo-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes loader-exit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes page-ready {
  from {
    background: var(--white);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes watermark-in {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.96);
  }
  to {
    opacity: 0.24;
    transform: none;
  }
}

@keyframes scroll-cue {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-2px) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg .hero-slide {
    transition: none;
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .intro-loader {
    display: none;
  }
}

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

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

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

  .hero-product {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 430px);
    margin-top: 32px;
  }

  .hero-scroll-cue {
    display: none;
  }

  .events-section {
    grid-template-columns: 1fr;
  }

  .events-heading {
    position: static;
  }

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

  .section-heading,
  .novelties-section,
  .field-2026-section,
  .shop-full-hero,
  .shop-toolbar,
  .contact-section,
  .feature-band,
  .stockists-section,
  .story-teaser,
  .story-heading,
  .brand-story,
  .product-detail,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-panel {
    position: static;
  }

  .contact-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    align-items: center;
    mix-blend-mode: normal;
    padding: 14px 16px;
  }

  .hero-product,
  .novelty-card {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-product {
    background: rgba(24, 24, 24, 0.92);
  }

  .novelty-card {
    background: rgba(255, 255, 255, 0.1);
  }

  .brand-logo {
    width: 148px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 22px;
    padding: 96px 24px 36px;
    color: var(--white);
    background: rgba(8, 8, 7, 0.96);
    font-family: Archivo, Inter, sans-serif;
    font-size: clamp(2rem, 10vw, 4rem);
    line-height: 0.9;
    transform: translateX(100%);
    transition: transform 0.32s ease;
  }

  .nav-open .main-nav {
    transform: none;
  }

  .main-nav a {
    width: 100%;
  }

  .main-nav > a:not(.social-icon-link)::after {
    right: auto;
    width: min(180px, 46vw);
    bottom: -9px;
  }

  .main-nav .social-icon-link {
    width: 48px;
    margin-top: 12px;
  }

  .main-nav .social-icon-link .instagram-icon {
    width: 38px;
    height: 38px;
    stroke-width: 1.6;
  }

  .hero-shop {
    min-height: 100vh;
    min-height: 100svh;
    padding: 118px 16px 34px;
  }

  .event-feature-grid,
  .events-directory {
    grid-template-columns: 1fr;
  }

  .event-feature-card {
    min-height: 390px;
  }

  .events-directory a {
    min-height: 220px;
    border-right: 0;
  }

  .head-watermark {
    right: -150px;
    top: 14%;
    width: 520px;
  }

  .hero-product {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .hero-product-cta {
    grid-column: 2;
    width: auto;
    height: 34px;
    border-radius: 4px;
  }

  .shop-section,
  .shop-catalog,
  .shop-full-hero,
  .field-2026-section,
  .contact-section,
  .product-page,
  .story-hero,
  .origin-section,
  .brand-story,
  .events-section,
  .feature-band,
  .stockists-section {
    padding: 54px 16px;
  }

  .product-grid,
  .novelties-grid,
  .field-2026-collage,
  .product-gallery,
  .size-grid,
  .contact-grid,
  .contact-direct,
  .form-row,
  .event-grid,
  .stockists-gallery {
    grid-template-columns: 1fr;
  }

  .field-2026-collage {
    grid-auto-rows: auto;
  }

  .shop-catalog [data-shop-grid] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .shop-catalog .product-card {
    border-radius: 4px;
    box-shadow: 0 10px 26px rgba(16, 16, 15, .07);
  }

  .shop-catalog .product-info {
    padding: 11px 10px 12px;
  }

  .shop-catalog .product-info h3 {
    min-height: 2.4em;
    margin-bottom: 10px;
    font-size: .78rem;
    line-height: 1.2;
  }

  .shop-catalog .product-info p {
    display: none;
  }

  .shop-catalog .product-line {
    gap: 6px;
    align-items: end;
  }

  .shop-catalog .product-line strong {
    font-size: .78rem;
  }

  .shop-catalog .product-line a {
    font-size: .62rem;
  }

  .shop-tee-card {
    grid-column: span 1;
  }

  .field-photo-tall,
  .field-photo-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .field-photo {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .field-product-card {
    min-height: clamp(280px, 82vw, 350px);
    padding: 24px;
  }

  .field-product-card img {
    width: min(88%, 310px);
    height: auto;
    max-height: 270px;
    object-position: center;
  }

  .shop-hero-image {
    display: none;
  }

  .shop-full-hero {
    height: clamp(360px, 58svh, 500px);
    min-height: 0;
    padding: 94px 16px 30px;
  }

  .shop-full-hero h1 {
    max-width: 620px;
    font-size: clamp(2.7rem, 13vw, 5rem);
  }

  .tee-shop-media {
    aspect-ratio: 1 / 1.05;
    grid-template-columns: 1fr;
  }

  .origin-logo-stack {
    grid-template-columns: 1fr;
  }

  .origin-logo-stack img {
    min-height: 220px;
  }

  .stockist-photo img,
  .stockist-photo-large img {
    min-height: 360px;
  }

  .retailer-card {
    grid-template-columns: 1fr;
  }

  .retailer-logo {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .retailer-link {
    grid-column: 1;
  }

  .novelties-heading {
    max-width: none;
  }

  .novelties-heading h2 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
  }

  .tees-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .range-logo {
    left: 16px;
    bottom: 16px;
    font-size: clamp(3.2rem, 18vw, 6rem);
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .product-panel {
    padding: 22px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: min(70vw, 260px);
  }

  .footer-bottom {
    display: grid;
  }

  .commerce-panel {
    width: 100vw;
    padding: 20px 16px;
  }
}
