:root {
  --ink: #17382e;
  --ink-2: #244a3d;
  --cream: #f3ead8;
  --paper: #fffaf0;
  --sand: #dfcfb4;
  --orange: #e96c2e;
  --orange-dark: #bd4a1e;
  --mustard: #e1b94f;
  --sky: #70b7cf;
  --red: #b43b2f;
  --white: #fffdf8;
  --muted: #6f756d;
  --line: rgba(23, 56, 46, .18);
  --shadow: 0 24px 70px rgba(31, 43, 36, .13);
  --shadow-sm: 0 10px 30px rgba(31, 43, 36, .10);
  --radius: 4px;
  --container: min(1240px, calc(100vw - 32px));
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", sans-serif;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-stretch: condensed;
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 9vw, 7.8rem); }
h2 { font-size: clamp(2.2rem, 5.8vw, 4.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.35rem); }
p { color: var(--ink-2); }
::selection { background: var(--orange); color: var(--white); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px;
  background: var(--ink); color: var(--white); transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(780px, calc(100vw - 32px)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-family: var(--font-display); font-size: .76rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--orange); }
.lede { font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.55; max-width: 68ch; }
.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;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 13px 22px; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--ink); color: var(--white); font-family: var(--font-display);
  font-size: .86rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-dark); border-color: var(--orange-dark); }
.button--secondary { background: transparent; color: var(--ink); }
.button--secondary:hover { background: var(--ink); color: var(--white); }
.button--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button--full { width: 100%; }
.text-link {
  font-family: var(--font-display); font-size: .84rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
}
.announcement {
  background: var(--ink); color: var(--white); text-align: center;
  padding: 8px 16px; font-family: var(--font-display); font-size: .73rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.announcement a { color: var(--mustard); }
.site-header {
  position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line);
  background: rgba(243, 234, 216, .94); backdrop-filter: blur(14px);
}
.header-inner { min-height: 68px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; }
.brand {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 900;
  letter-spacing: -.04em; text-decoration: none; text-transform: lowercase;
}
.brand-mark { display: inline-block; transform: rotate(-5deg); color: var(--orange); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 24px; }
.main-nav a {
  position: relative; font-family: var(--font-display); font-size: .76rem;
  font-weight: 800; letter-spacing: .09em; text-decoration: none; text-transform: uppercase;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px;
  background: var(--orange); transition: right .2s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.icon-button {
  display: inline-grid; place-items: center; width: 44px; height: 44px; padding: 0;
  border: 1px solid transparent; border-radius: 50%; background: transparent; cursor: pointer;
}
.icon-button:hover { border-color: var(--line); background: var(--paper); }
.cart-button { position: relative; width: auto; padding: 0 10px; border-radius: 999px; }
.cart-count {
  display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 5px;
  border-radius: 50%; background: var(--orange); color: var(--white); font-size: .7rem;
}
.menu-toggle { display: none; }
.hero {
  position: relative; overflow: hidden; padding: clamp(50px, 7vw, 96px) 0 0;
  background: var(--cream);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .28; pointer-events: none;
  background-image: linear-gradient(90deg, transparent 49.6%, var(--ink) 49.6%, var(--ink) 50.4%, transparent 50.4%);
  background-size: 130px 100%;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero-copy { position: relative; z-index: 3; padding-bottom: 70px; }
.hero h1 span { display: block; color: var(--orange); }
.hero .lede { max-width: 55ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-art { position: relative; min-height: 610px; }
.hero-art::before {
  content: ""; position: absolute; inset: 9% 0 4% 6%; border: 2px solid var(--ink);
  background: var(--mustard); transform: rotate(2deg);
}
.hero-art::after {
  content: "IX"; position: absolute; right: -2vw; bottom: -1vw; z-index: 1;
  font-family: var(--font-display); font-size: clamp(10rem, 24vw, 23rem);
  font-weight: 900; line-height: .7; color: rgba(23, 56, 46, .09);
}
.hero-shirt {
  position: absolute; z-index: 2; width: 72%; filter: drop-shadow(0 26px 24px rgba(23, 56, 46, .18));
}
.hero-shirt--one { top: 5%; left: 0; transform: rotate(-7deg); }
.hero-shirt--two { right: -7%; bottom: 0; width: 66%; transform: rotate(8deg); }
.hero-stamp {
  position: absolute; z-index: 4; left: 48%; top: 42%; width: 112px; height: 112px;
  display: grid; place-content: center; border-radius: 50%; background: var(--ink); color: var(--cream);
  font-family: var(--font-display); font-size: .72rem; font-weight: 800; letter-spacing: .09em;
  line-height: 1.25; text-align: center; text-transform: uppercase; transform: rotate(-9deg);
}
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 26px; border-right: 1px solid var(--line); text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: .87rem; letter-spacing: .08em; text-transform: uppercase; }
.trust-item span { display: block; margin-top: 4px; color: var(--muted); font-size: .82rem; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 5vw, 52px); }
.section-head h2 { max-width: 780px; margin-bottom: 0; }
.section-head p { max-width: 48ch; margin-bottom: 6px; }
.collection-grid { display: grid; grid-template-columns: 1.18fr .82fr .82fr; gap: 18px; }
.collection-card {
  position: relative; min-height: 420px; overflow: hidden; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px; border: 1px solid var(--line);
  background: var(--paper); text-decoration: none;
}
.collection-card:first-child { min-height: 520px; }
.collection-card::before {
  content: ""; position: absolute; inset: 0; background: var(--card-accent, var(--orange));
  opacity: .12; transition: opacity .25s ease, transform .4s ease;
}
.collection-card:hover::before { opacity: .2; transform: scale(1.03); }
.collection-card__jersey { position: absolute; width: 82%; top: 3%; left: 19%; transform: rotate(-8deg); transition: transform .4s ease; }
.collection-card:hover .collection-card__jersey { transform: rotate(-4deg) translateY(-8px); }
.collection-card__content { position: relative; z-index: 2; }
.collection-card h3 { margin-bottom: 8px; font-size: clamp(2rem, 4vw, 3.4rem); }
.collection-card p { margin-bottom: 16px; max-width: 38ch; }
.collection-card .text-link { display: inline-flex; align-items: center; gap: 8px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card { position: relative; display: flex; flex-direction: column; min-width: 0; }
.product-card__media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line);
  background: var(--card-bg, var(--paper));
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; padding: 6px 9px;
  background: var(--ink); color: var(--white); font-family: var(--font-display);
  font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 15px 4px 0; }
.product-card__meta { color: var(--muted); font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { margin: 6px 0 10px; font-size: 1.28rem; letter-spacing: -.02em; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.price { font-family: var(--font-display); font-weight: 800; }
.price s { margin-left: 6px; color: var(--muted); font-weight: 400; }
.quick-add {
  min-height: 38px; padding: 8px 14px; border: 1px solid var(--ink); border-radius: 999px;
  background: transparent; font-family: var(--font-display); font-size: .7rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; cursor: pointer;
}
.quick-add:hover { background: var(--ink); color: var(--white); }
.editorial-band { background: var(--ink); color: var(--cream); }
.editorial-band h2, .editorial-band h3, .editorial-band h4 { color: var(--white); }
.editorial-band p { color: rgba(255, 253, 248, .76); }
.editorial-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 7vw, 100px); align-items: center; }
.editorial-art { position: relative; min-height: 520px; }
.editorial-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 1px solid rgba(255,255,255,.2); }
.editorial-list { list-style: none; padding: 0; margin: 30px 0 0; border-top: 1px solid rgba(255,255,255,.18); }
.editorial-list li { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.editorial-list span:first-child { color: var(--mustard); font-family: var(--font-display); font-weight: 800; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.article-card { display: flex; flex-direction: column; min-width: 0; text-decoration: none; }
.article-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); margin-bottom: 18px; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.article-card:hover .article-card__media img { transform: scale(1.035); }
.article-card__meta { display: flex; gap: 10px; margin-bottom: 10px; color: var(--muted); font-family: var(--font-display); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.article-card h3 { margin-bottom: 10px; font-size: 1.7rem; }
.article-card p { margin-bottom: 16px; }
.article-card .text-link { margin-top: auto; }
.quote-band { background: var(--orange); color: var(--white); }
.quote-band blockquote {
  width: min(1000px, calc(100vw - 32px)); margin: 0 auto; padding: 72px 0;
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4.6rem); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.02; text-align: center; text-transform: uppercase;
}
.newsletter { background: var(--mustard); }
.newsletter-inner { display: grid; grid-template-columns: 1fr .8fr; gap: 50px; align-items: center; }
.newsletter-form { display: flex; gap: 8px; padding: 7px; background: var(--white); border: 2px solid var(--ink); }
.newsletter-form input { flex: 1; min-width: 0; padding: 12px; border: 0; outline: 0; background: transparent; }
.newsletter-form button { border-radius: 0; }
.form-note { margin: 10px 0 0; font-size: .75rem; }
.page-hero { padding: clamp(60px, 9vw, 126px) 0 clamp(42px, 6vw, 82px); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1100px; margin-bottom: 24px; font-size: clamp(3.2rem, 9vw, 7.4rem); }
.page-hero p { max-width: 68ch; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 42px; color: var(--muted); font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange-dark); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.filter-bar a { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); font-family: var(--font-display); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.filter-bar a[aria-current="page"], .filter-bar a:hover { background: var(--ink); color: var(--white); }
.shop-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: start; padding: 58px 0; border-bottom: 1px solid var(--line); }
.shop-intro h2 { margin-bottom: 0; }
.shop-intro p { margin-bottom: 1em; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); gap: clamp(30px, 6vw, 80px); align-items: start; }
.product-gallery { display: grid; grid-template-columns: 92px 1fr; gap: 14px; align-items: start; }
.product-thumbs { display: grid; gap: 12px; }
.product-thumb { padding: 0; border: 1px solid var(--line); background: var(--paper); cursor: pointer; }
.product-thumb[aria-pressed="true"] { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.product-main-image { aspect-ratio: 4 / 5; border: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-info { position: sticky; top: 104px; }
.product-info h1 { margin-bottom: 18px; font-size: clamp(2.8rem, 5vw, 4.7rem); }
.product-info__price { margin: 18px 0; font-size: 1.4rem; }
.product-summary { font-size: 1.08rem; }
.swatches { display: flex; gap: 8px; margin: 20px 0; }
.swatch { width: 28px; height: 28px; border: 2px solid var(--paper); outline: 1px solid var(--line); border-radius: 50%; }
.size-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 22px 0 10px; }
.size-row label { font-family: var(--font-display); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.size-row a { color: var(--muted); font-size: .78rem; }
.size-options { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.size-option input { position: absolute; opacity: 0; pointer-events: none; }
.size-option span { display: grid; place-items: center; min-height: 44px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; font-family: var(--font-display); font-size: .8rem; font-weight: 800; }
.size-option input:checked + span { background: var(--ink); color: var(--white); }
.product-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 18px; }
.payment-panel { margin-top: 18px; padding: 18px; border: 1px solid var(--line); background: var(--paper); }
.payment-panel p { margin-bottom: 10px; font-size: .78rem; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.payment-badge { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 9px; border: 1px solid var(--line); background: var(--white); font-family: var(--font-display); font-size: .65rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.delivery-note { display: flex; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .84rem; }
.delivery-note svg { flex: 0 0 auto; }
.product-story { padding-top: 36px; }
.product-story blockquote { margin: 28px 0 0; padding-left: 22px; border-left: 4px solid var(--orange); font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.accordion { margin-top: 28px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; cursor: pointer; font-family: var(--font-display); font-size: .82rem; font-weight: 800; letter-spacing: .07em; list-style: none; text-transform: uppercase; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; }
.accordion details[open] summary::after { content: "−"; }
.accordion__body { padding: 0 0 22px; }
.accordion__body p:last-child, .accordion__body ul:last-child { margin-bottom: 0; }
.spec-list { padding-left: 18px; }
.spec-list li { margin-bottom: 7px; }
.size-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.size-table th, .size-table td { padding: 9px; border-bottom: 1px solid var(--line); text-align: left; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 760px) 1fr; gap: 50px; align-items: start; }
.article-toc { position: sticky; top: 105px; padding-top: 8px; }
.article-toc strong { display: block; margin-bottom: 12px; font-family: var(--font-display); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.article-toc a { display: block; padding: 5px 0; color: var(--muted); font-size: .78rem; line-height: 1.35; text-decoration: none; }
.article-toc a:hover { color: var(--orange-dark); }
.article-body { width: 100%; }
.article-body h2 { margin-top: 58px; font-size: clamp(2rem, 4vw, 3.35rem); }
.article-body h3 { margin-top: 36px; }
.article-body p, .article-body li { font-size: 1.08rem; line-height: 1.8; }
.article-body .article-opening { font-size: 1.25rem; line-height: 1.7; }
.article-body .article-opening p:first-child::first-letter {
  float: left; margin: .08em .12em 0 0; color: var(--orange); font-family: var(--font-display);
  font-size: 4.8rem; font-weight: 900; line-height: .72;
}
.article-product-box { margin: 48px 0; padding: 20px; border: 2px solid var(--ink); background: var(--paper); }
.article-product-box header { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.article-product-box h3 { margin: 0; }
.article-product-box .product-card__media { aspect-ratio: 1; }
.article-product-box .article-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.article-product-box .product-card h3 { font-size: 1rem; }
.article-product-box .quick-add { display: none; }
.takeaway { margin: 48px 0; padding: 28px; background: var(--mustard); }
.takeaway strong { display: block; margin-bottom: 8px; font-family: var(--font-display); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.takeaway p { margin: 0; color: var(--ink); font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.cart-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(15, 28, 23, .5); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.cart-overlay.is-open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 210; width: min(460px, 100%); height: 100dvh;
  display: flex; flex-direction: column; background: var(--paper); box-shadow: var(--shadow);
  transform: translateX(102%); transition: transform .3s cubic-bezier(.22,.8,.25,1);
}
.cart-drawer.is-open { transform: none; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin: 0; font-size: 1.7rem; }
.cart-items { flex: 1; overflow: auto; padding: 0 22px; }
.cart-empty { display: grid; place-items: center; min-height: 320px; text-align: center; }
.cart-empty h3 { font-size: 1.8rem; }
.cart-line { display: grid; grid-template-columns: 80px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line__media { aspect-ratio: 4/5; background: var(--cream); overflow: hidden; }
.cart-line__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__title { margin: 0 0 4px; font-size: 1rem; line-height: 1.1; }
.cart-line__meta { color: var(--muted); font-size: .75rem; }
.cart-line__bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; }
.quantity { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.quantity button { width: 32px; height: 32px; border: 0; background: transparent; cursor: pointer; }
.quantity span { min-width: 28px; text-align: center; font-size: .82rem; }
.remove-link { padding: 0; border: 0; background: transparent; color: var(--muted); font-size: .74rem; text-decoration: underline; cursor: pointer; }
.cart-footer { padding: 20px 22px 24px; border-top: 1px solid var(--line); background: var(--cream); }
.shipping-progress { margin-bottom: 18px; }
.shipping-progress__track { height: 6px; overflow: hidden; margin-top: 8px; background: rgba(23,56,46,.14); }
.shipping-progress__bar { height: 100%; width: 0; background: var(--orange); transition: width .3s ease; }
.cart-totals { margin-bottom: 16px; }
.cart-total-row { display: flex; justify-content: space-between; gap: 20px; padding: 4px 0; }
.cart-total-row--grand { padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--line); font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; text-transform: uppercase; }
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 300; width: max-content; max-width: calc(100vw - 32px);
  padding: 12px 18px; background: var(--ink); color: var(--white); box-shadow: var(--shadow-sm);
  font-size: .86rem; transform: translate(-50%, 140%); transition: transform .25s ease;
}
.toast.is-visible { transform: translate(-50%, 0); }
.site-footer { padding: 64px 0 30px; background: var(--ink); color: var(--cream); }
.site-footer p, .site-footer a { color: rgba(255, 253, 248, .72); }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--mustard); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .55fr); gap: 45px; }
.footer-brand .brand { color: var(--white); font-size: 1.65rem; }
.footer-brand p { max-width: 42ch; }
.footer-column h3 { margin-bottom: 16px; color: var(--white); font-size: .8rem; letter-spacing: .08em; }
.footer-column a { display: block; margin-bottom: 8px; font-size: .84rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); font-size: .72rem; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.payment-icons span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.25); color: var(--white); font-family: var(--font-display); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.contact-card { padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.contact-card + .contact-card { margin-top: 16px; }
.contact-card h3 { font-size: 1.45rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 0; background: var(--white); color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.form-status { min-height: 24px; margin-top: 12px; font-size: .84rem; }
.prose { max-width: 780px; }
.prose h2 { margin-top: 48px; }
.prose h3 { margin-top: 34px; }
.prose p, .prose li { font-size: 1.03rem; }
.prose a { color: var(--orange-dark); font-weight: 700; }
.info-box { margin: 28px 0; padding: 24px; border-left: 4px solid var(--orange); background: var(--paper); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { margin-bottom: 8px; font-size: 1.2rem; }
.checkout-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 6vw, 72px); align-items: start; }
.checkout-summary { position: sticky; top: 104px; padding: 28px; background: var(--ink); color: var(--white); }
.checkout-summary h2, .checkout-summary h3 { color: var(--white); }
.checkout-summary p, .checkout-summary a { color: rgba(255,255,255,.74); }
.checkout-line { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: .85rem; }
.checkout-total { display: flex; justify-content: space-between; gap: 18px; margin-top: 16px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; text-transform: uppercase; }
.paypal-box { margin-top: 26px; min-height: 90px; }
.setup-notice { padding: 18px; border: 1px solid var(--line); background: var(--paper); }
.error-page { min-height: 65vh; display: grid; place-items: center; text-align: center; }
.error-page h1 { font-size: clamp(5rem, 18vw, 13rem); }
@media (max-width: 1024px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .68rem; }
  .hero-art { min-height: 520px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-card:first-child { grid-column: 1 / -1; min-height: 460px; }
  .collection-card:first-child .collection-card__jersey { width: 52%; left: 40%; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 760px) 1fr; }
  .article-toc { display: none; }
}
@media (max-width: 760px) {
  :root { --container: min(calc(100% - 24px), 680px); }
  body { font-size: 15px; }
  h1 { font-size: clamp(2.8rem, 15vw, 5.2rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3.5rem); }
  .section { padding: 58px 0; }
  .announcement { font-size: .64rem; }
  .header-inner { min-height: 62px; grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: inline-grid; }
  .main-nav {
    position: fixed; top: 62px; left: 0; right: 0; z-index: 90; display: none;
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px 18px 20px;
    border-bottom: 1px solid var(--line); background: var(--cream); box-shadow: var(--shadow-sm);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: .92rem; }
  .main-nav a::after { display: none; }
  .cart-button span:not(.cart-count) { display: none; }
  .hero { padding-top: 42px; }
  .hero::before { background-size: 80px 100%; }
  .hero-grid, .editorial-grid, .newsletter-inner, .product-layout, .contact-grid, .checkout-layout, .shop-intro { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 20px; }
  .hero-art { min-height: 460px; }
  .hero-art::before { inset: 10% 2% 3% 2%; }
  .hero-stamp { width: 90px; height: 90px; font-size: .61rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-head { display: block; }
  .section-head .text-link { display: inline-flex; margin-top: 15px; }
  .collection-grid, .product-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .collection-card:first-child { grid-column: 1 / -1; }
  .collection-card { min-height: 360px; padding: 20px; }
  .collection-card:first-child { min-height: 390px; }
  .collection-card__jersey { width: 72%; left: 27%; }
  .collection-card:first-child .collection-card__jersey { width: 56%; left: 40%; }
  .newsletter-inner { gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .page-hero { padding: 54px 0 44px; }
  .page-hero h1 { font-size: clamp(3rem, 16vw, 5.5rem); }
  .breadcrumbs { margin-bottom: 30px; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-thumbs { grid-template-columns: repeat(3, 1fr); order: 2; }
  .product-main-image { order: 1; }
  .product-info, .checkout-summary, .article-toc { position: static; }
  .product-actions { grid-template-columns: 1fr; }
  .size-options { grid-template-columns: repeat(3, 1fr); }
  .article-layout { display: block; }
  .article-product-box .article-products { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
}
@media (max-width: 480px) {
  .collection-grid, .product-grid, .article-grid { grid-template-columns: 1fr; }
  .collection-card:first-child { grid-column: auto; }
  .article-product-box .article-products { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .product-actions .button { width: 100%; }
  .hero-art { min-height: 410px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

html, body { width: 100%; overflow-x: clip; }
.product-layout > *, .product-gallery > *, .hero-grid > *, .editorial-grid > * { min-width: 0; }
@media (max-width: 760px) {
  .announcement { padding: 7px 8px; font-size: .56rem; line-height: 1.35; }
  .hero-actions .button { min-height: 46px; padding: 10px 15px; font-size: .72rem; }
  .product-main-image { width: 100%; max-width: 100%; }
  .product-gallery { width: 100%; min-width: 0; }
}


.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0; }
.payment-method { min-height: 92px; padding: 14px; border: 1px solid var(--line); background: var(--paper); }
.payment-method--active { border-color: var(--ink); box-shadow: inset 0 -4px 0 var(--orange); }
.payment-method strong, .payment-method span { display: block; }
.payment-method strong { font-family: var(--font-display); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.payment-method span { margin-top: 5px; color: var(--muted); font-size: .72rem; line-height: 1.35; }
.paypal-action-label { margin: 18px 0 8px; font-family: var(--font-display); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.paypal-inline-note { margin: 0; color: var(--muted); font-size: .76rem; }
@media (max-width: 760px) { .payment-methods { grid-template-columns: 1fr; } }

.contact-card address { color: var(--ink-2); font-style: normal; line-height: 1.6; }
