:root {
  --ink: #080808;
  --ink-soft: #11100f;
  --paper: #e9e4da;
  --paper-dim: #bbb4a8;
  --line: rgba(255, 255, 255, 0.17);
  --acid: #bca175;
  --gold-light: #d8c39c;
  --gold-dark: #8b7048;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { width: 100%; max-width: 100%; overflow-x: clip; overscroll-behavior-x: none; scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background:
    radial-gradient(circle at 82% 22%, rgba(131, 103, 67, .07), transparent 28%),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body.locked { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
button, a { color: inherit; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { text-decoration: none; }
img { display: block; width: 100%; user-select: none; -webkit-user-drag: none; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-content: center;
  justify-items: center;
  background: #080808;
  transition: transform 1.05s cubic-bezier(.76, 0, .24, 1), visibility 1.05s;
}
.page-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(188, 161, 117, .18);
  margin: 18px;
  pointer-events: none;
}
.page-loader .loader-monogram {
  font-family: var(--serif);
  font-size: 66px;
  letter-spacing: -.06em;
  color: var(--paper);
  opacity: 0;
  animation: loaderFade .7s .1s ease forwards;
}
.loader-rule { width: 136px; height: 1px; margin: 18px 0 14px; overflow: hidden; background: #292621; }
.loader-rule span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); transform: translateX(-100%); animation: loaderRule 1.1s .18s cubic-bezier(.65,0,.35,1) forwards; }
.page-loader p { margin: 0; color: #6f685e; font-size: 8px; text-transform: uppercase; letter-spacing: .32em; opacity: 0; animation: loaderFade .7s .42s ease forwards; }
body.page-ready .page-loader { transform: translateY(-102%); visibility: hidden; }
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderRule { to { transform: translateX(0); } }

.scroll-progress { position: fixed; z-index: 80; left: 0; top: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); box-shadow: 0 0 12px rgba(188,161,117,.28); pointer-events: none; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: .024;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 94px;
  padding: 0 3.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .45s ease, border-color .45s ease, height .45s ease, backdrop-filter .45s ease;
}
.site-header.scrolled { position: fixed; height: 76px; background: rgba(9,9,9,.78); border-color: rgba(188,161,117,.2); backdrop-filter: blur(18px) saturate(80%); }
.brand { display: flex; align-items: center; gap: 11px; letter-spacing: .04em; transition: opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1); }
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(188,161,117,.8);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}
.brand-word { font-size: 17px; font-weight: 600; letter-spacing: .25em; }
.header-athletes-link, .text-button { color: rgba(255,255,255,.76); font-size: 13px; transition: color .2s; }
.header-athletes-link:hover, .text-button:hover { color: white; }
.mobile-header-nav { display: none; }
.mobile-library-link { padding: 0; border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
.header-actions { display: flex; align-items: center; gap: 25px; }
.text-button, .bag-button, .menu-button, .icon-button { background: none; border: 0; cursor: pointer; padding: 0; }
.bag-button {
  height: 42px;
  padding: 0 8px 0 18px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  transition: opacity .3s ease, transform .4s cubic-bezier(.16,1,.3,1), border-color .25s;
}
.cart-count { width: 27px; height: 27px; display: grid; place-items: center; background: var(--gold-light); color: #111; border-radius: 50%; }
.menu-button { position: relative; z-index: 3; display: none; width: 30px; height: 30px; }
.menu-button span { position: absolute; left: 3px; top: 10px; display: block; width: 24px; height: 1px; margin: 0; background: white; transition: top .35s cubic-bezier(.16,1,.3,1), transform .35s cubic-bezier(.16,1,.3,1), background .25s; }
.menu-button span:last-child { top: 19px; }
@keyframes mobileBagIn { from { opacity: 0; transform: translateX(12px) scale(.92); } }

.hero { position: relative; min-height: 760px; height: 100vh; overflow: hidden; background: #090807; isolation: isolate; }
.hero-image { position: absolute; inset: -3% 0; height: 106%; object-fit: cover; object-position: 52% center; filter: saturate(.62) contrast(1.1) brightness(.84); scale: 1.035; will-change: transform; animation: heroFocus 2.2s cubic-bezier(.16,1,.3,1) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,5,4,.97) 0%, rgba(8,6,5,.82) 24%, rgba(8,6,5,.38) 45%, rgba(5,4,4,.05) 70%), linear-gradient(0deg, rgba(3,3,3,.78), transparent 49%), radial-gradient(ellipse at 57% 36%, rgba(196,164,116,.07), transparent 33%); }
.hero-shade::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 42%, rgba(0,0,0,.42) 100%); mix-blend-mode: multiply; }
.hero-frame { position: absolute; z-index: 1; inset: 118px 3.5vw 42px; border: 1px solid rgba(215,195,156,.15); border-top: 0; pointer-events: none; }
@keyframes heroFocus { from { filter: saturate(.3) contrast(1.18) brightness(.52); scale: 1.095; } }
.hero-copy { position: absolute; z-index: 2; left: 5vw; bottom: 15vh; width: min(1050px, 83vw); text-align: left; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .19em; font-size: 10px; font-weight: 600; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.eyebrow span { width: 24px; height: 1px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.hero h1 { margin: 0; font-size: clamp(72px, 8.2vw, 142px); line-height: .78; letter-spacing: -.052em; font-weight: 500; text-transform: uppercase; }
.hero h1 > span, .hero h1 > em { display: block; }
.hero h1 em { margin-left: 0; font-family: var(--serif); font-size: .69em; line-height: .95; letter-spacing: -.035em; font-weight: 400; text-transform: uppercase; white-space: nowrap; color: var(--gold-light); text-shadow: 0 8px 40px rgba(167,132,81,.12); }
.hero-description { width: min(520px, 90%); margin: 38px 0 28px; color: rgba(255,255,255,.68); font-size: 14px; letter-spacing: .01em; }
.hero-actions { display: flex; align-items: center; gap: 27px; }
.hero-scroll-link { display: inline-flex; align-items: center; gap: 18px; padding: 8px 0; color: var(--paper); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; transition: color .25s, gap .35s; }
.hero-scroll-link i { color: var(--gold-light); font-size: 17px; font-style: normal; animation: bounce 1.8s infinite; }
.hero-scroll-link:hover { color: var(--gold-light); gap: 25px; }
.primary-button, .outline-button {
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 10px;
  font-weight: 600;
  min-height: 54px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  transition: transform .2s, background .2s;
}
.primary-button { position: relative; overflow: hidden; background: linear-gradient(115deg, #a7895d, #d4bf96); color: #0b0b0b; box-shadow: 0 10px 40px rgba(111,84,47,.12); }
.primary-button::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.34) 50%, transparent 80%); transform: translateX(-140%); transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.primary-button:hover { transform: translateY(-2px); background: linear-gradient(115deg, #b99a6d, #dfcba3); box-shadow: 0 14px 50px rgba(111,84,47,.2); }
.primary-button:hover::before { transform: translateX(140%); }
.outline-button { background: transparent; color: white; border: 1px solid rgba(255,255,255,.46); }
.outline-button:hover { background: white; color: #111; }
.hero-price { display: flex; align-items: center; gap: 9px; font-size: 11px; letter-spacing: .08em; color: rgba(255,255,255,.62); text-transform: uppercase; }
.hero-price i { width: 2px; height: 2px; border-radius: 50%; background: var(--acid); }
.hero-index { position: absolute; z-index: 2; right: 3.5vw; bottom: 55px; display: flex; align-items: center; gap: 10px; font-size: 9px; letter-spacing: .15em; }
.hero-index-line { width: 85px; height: 1px; background: linear-gradient(90deg, var(--acid) 16%, rgba(255,255,255,.32) 16%); }
.scroll-cue { position: absolute; z-index: 2; left: 3.5vw; bottom: 48px; display: flex; align-items: center; gap: 15px; font-size: 9px; text-transform: uppercase; letter-spacing: .17em; color: rgba(255,255,255,.62); }
.scroll-cue i { font-style: normal; color: var(--gold-light); font-size: 17px; animation: bounce 1.8s infinite; }
@keyframes bounce { 50% { transform: translateY(5px); } }

.section-shell { width: min(1380px, 89vw); margin-inline: auto; }
.intro { padding: 160px 0 155px; display: grid; grid-template-columns: 1fr 3fr; border-bottom: 1px solid var(--line); }
.section-kicker { margin: 9px 0 0; color: #918e88; }
.intro-copy { display: grid; grid-template-columns: 1.9fr 1fr; gap: 7vw; align-items: end; }
.intro h2, .promise h2 { margin: 0; font-size: clamp(52px, 6vw, 100px); line-height: .88; letter-spacing: -.045em; text-transform: uppercase; font-weight: 500; }
.intro h2 em, .promise h2 em { font-family: var(--serif); font-weight: 400; text-transform: none; color: var(--gold-light); }
.intro-copy > p { margin: 0 0 6px; max-width: 360px; color: #9d9992; font-size: 14px; }

.releases, .catalog, .athletes { padding: 125px 0 150px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 44px; }
.section-heading h2 { margin: 7px 0 0; font-size: clamp(48px, 5.4vw, 84px); line-height: .9; font-weight: 500; letter-spacing: -.045em; text-transform: uppercase; }
.section-heading > a, .section-heading > button { padding: 0 0 9px; border: 0; border-bottom: 1px solid rgba(255,255,255,.4); background: transparent; color: var(--paper); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; cursor: pointer; transition: border-color .25s, color .25s; }
.section-heading > a:hover, .section-heading > button:hover { color: var(--gold-light); border-color: var(--gold-light); }
.section-heading > a span, .section-heading > button span { color: var(--acid); margin-left: 38px; }
.film-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 16px; }
.film-card { min-width: 0; cursor: pointer; }
.film-image { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: #181818; }
.film-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 25%, rgba(221,202,168,.12) 50%, transparent 75%); transform: translateX(-120%); transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.film-image img { height: 100%; object-fit: cover; filter: saturate(.64) contrast(1.04); transition: transform 1.1s cubic-bezier(.16,1,.3,1), filter .7s; }
.film-card:hover .film-image img { transform: scale(1.045); filter: brightness(.68) saturate(.82); }
.film-card:hover .film-image::after { transform: translateX(120%); }
.film-badge { position: absolute; left: 14px; top: 14px; z-index: 2; padding: 7px 9px; background: rgba(12,12,12,.8); border: 1px solid rgba(216,195,156,.5); backdrop-filter: blur(8px); color: var(--gold-light); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.film-play { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: opacity .3s; }
.film-play span { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; border: 1px solid white; backdrop-filter: blur(7px); font-size: 12px; }
.film-card:hover .film-play { opacity: 1; }
.film-info { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 16px 1px 0; }
.film-info h3 { margin: 0 0 5px; font-size: 18px; font-weight: 500; letter-spacing: -.02em; }
.film-info p { margin: 0; color: #77746f; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.film-price { color: var(--gold-light); font-family: var(--serif); font-size: 19px; }

.catalog { padding-bottom: 175px; }
.filter-row { display: flex; gap: 5px; }
.filter-button { padding: 9px 14px; border: 1px solid #343434; border-radius: 30px; background: transparent; color: #86837e; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; }
.filter-button.active, .filter-button:hover { border-color: var(--gold-light); color: var(--gold-light); }
.catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 65px 17px; }
.catalog-grid .film-image { aspect-ratio: 16 / 9; }
.film-card.is-hidden { display: none; }

.athletes { border-top: 1px solid var(--line); }
.athlete-carousel-section { width: 100%; max-width: 100%; overflow: hidden; padding-bottom: 135px; contain: layout paint; }
.carousel-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 44px; }
.carousel-heading h2 { margin: 7px 0 0; font-size: clamp(48px, 5.4vw, 84px); line-height: .9; font-weight: 500; letter-spacing: -.045em; text-transform: uppercase; }
.carousel-controls { display: flex; gap: 8px; }
.carousel-button { width: 48px; height: 48px; border: 1px solid #363431; background: transparent; color: var(--paper); cursor: pointer; font-size: 17px; transition: border-color .25s, color .25s, background .25s; }
.carousel-button:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(188,161,117,.06); }
.athlete-carousel { display: flex; width: 100%; max-width: 100%; gap: 16px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: 5.5vw; scroll-behavior: smooth; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 0 5.5vw 25px; cursor: grab; }
.athlete-carousel::-webkit-scrollbar { display: none; }
.athlete-slide { flex: 0 0 clamp(210px, 16.3vw, 270px); min-width: 0; scroll-snap-align: start; scroll-snap-stop: always; contain: layout paint; }
.athlete-slide-image { position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; contain: paint; isolation: isolate; transform: translateZ(0); background: #151515; }
.athlete-slide-image::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(110deg, transparent 25%, rgba(221,202,168,.13) 50%, transparent 75%); transform: translateX(-120%); transition: transform 1s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.athlete-slide-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.08) 64%); }
.athlete-slide-image img { width: 100%; max-width: 100%; height: 100%; object-fit: cover; backface-visibility: hidden; transform: translateZ(0); filter: saturate(.47) contrast(1.05); transition: transform 1.1s cubic-bezier(.16,1,.3,1), filter .7s; }
.athlete-slide:hover img { transform: scale(1.045); filter: brightness(.72) saturate(.78); }
.athlete-slide:hover .athlete-slide-image::before { transform: translateX(120%); }
.athlete-slide-number { position: absolute; z-index: 2; left: 18px; top: 16px; color: rgba(255,255,255,.56); font-family: var(--serif); font-size: 16px; }
.athlete-slide-arrow { position: absolute; z-index: 3; right: 14px; top: 14px; width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 11px; opacity: 0; transform: translateY(6px); transition: background .3s, color .3s, transform .3s, opacity .3s; }
.athlete-slide:hover .athlete-slide-arrow { opacity: 1; background: var(--gold-light); border-color: var(--gold-light); color: #111; transform: rotate(45deg); }
.athlete-slide-copy { position: absolute; z-index: 3; left: 16px; right: 16px; bottom: 15px; transition: transform .45s cubic-bezier(.16,1,.3,1); }
.athlete-slide:hover .athlete-slide-copy { transform: translateY(-4px); }
.athlete-slide-copy h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 27px; line-height: .95; font-weight: 400; letter-spacing: -.02em; }
.athlete-slide-copy > span { display: block; color: var(--gold-light); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.carousel-note { margin-top: 6px; color: #77726b; font-size: 11px; letter-spacing: .04em; }
.athlete-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.athlete-card { position: relative; height: 560px; overflow: hidden; }
.athlete-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.88), transparent 55%); }
.athlete-card img { height: 100%; object-fit: cover; filter: saturate(.46) contrast(1.04); transition: transform 1.15s cubic-bezier(.16,1,.3,1), filter .7s; }
.athlete-card:hover img { transform: scale(1.035); filter: saturate(.75); }
.athlete-card > div { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; display: flex; align-items: end; justify-content: space-between; }
.athlete-card h3 { margin: 0; font-size: 42px; line-height: 1; font-family: var(--serif); font-weight: 400; }
.athlete-card span { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: #aaa; }

.promise { padding: 150px 0 140px; border-top: 1px solid var(--line); }
.promise > .section-kicker { margin-bottom: 32px; }
.promise h2 { max-width: 1000px; }
.promise-grid { margin-top: 110px; margin-left: 25%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.promise-grid > div { border-top: 1px solid #323232; padding-top: 16px; }
.promise-grid span { color: var(--acid); font-size: 10px; }
.promise-grid h3 { margin: 32px 0 10px; font-weight: 500; font-size: 16px; }
.promise-grid p { margin: 0; max-width: 250px; color: #76736e; font-size: 12px; }

.site-footer { position: relative; padding: 110px 5.5vw 35px; background: #d9d2c5; color: #0b0b0b; border-top: 4px solid var(--gold-dark); }
.footer-title { font-size: clamp(92px, 17.8vw, 292px); line-height: .78; letter-spacing: -.075em; font-weight: 600; white-space: nowrap; }
.footer-title em { font-family: var(--serif); font-weight: 400; }
.footer-bottom { margin-top: 105px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,.3); display: flex; align-items: center; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer-bottom nav { display: flex; gap: 30px; }

.drawer { position: fixed; z-index: 110; top: 0; right: 0; width: min(520px, 100vw); height: 100dvh; padding: 38px; background: #111; transform: translateX(102%); transition: transform .45s cubic-bezier(.22,.75,.2,1); display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; border-bottom: 1px solid #333; padding-bottom: 25px; }
.drawer-head .section-kicker { margin: 0 0 8px; }
.drawer-head h2 { margin: 0; text-transform: uppercase; font-size: 32px; font-weight: 500; }
.icon-button { width: 38px; height: 38px; border: 1px solid #454545; border-radius: 50%; font-size: 24px; line-height: 1; color: #bbb; }
.cart-empty { margin: auto; text-align: center; }
.cart-empty > span { display: block; margin: auto auto 24px; font-family: var(--serif); font-size: 78px; color: #2c2c2c; }
.cart-empty h3 { margin: 0 0 7px; font-size: 20px; font-weight: 500; }
.cart-empty p { margin: 0 0 25px; color: #737373; font-size: 13px; }
.cart-items { overflow: auto; }
.cart-item { display: grid; grid-template-columns: 125px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid #282828; }
.cart-item img { height: 80px; object-fit: cover; }
.cart-item h3 { margin: 5px 0 4px; font-size: 14px; font-weight: 500; }
.cart-item p { margin: 0; color: #6f6f6f; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.remove-button { align-self: start; border: 0; background: none; color: #797979; cursor: pointer; font-size: 18px; }
.cart-summary { margin-top: auto; padding-top: 25px; border-top: 1px solid #333; }
.cart-summary > div { display: flex; justify-content: space-between; margin-bottom: 20px; }
.cart-summary strong { color: var(--acid); font-size: 23px; }
.cart-summary .primary-button { width: 100%; }
.cart-summary small { display: block; text-align: center; margin-top: 12px; color: #666; }
.library-drawer { overflow-y: auto; overscroll-behavior: contain; }
.library-account-bar { margin-top: 18px; padding: 14px 0; border-bottom: 1px solid #2d2d2b; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.library-account-bar div { min-width: 0; display: grid; gap: 2px; }
.library-account-bar span { color: #68645e; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.library-account-bar strong { overflow: hidden; color: #c6c0b5; font-size: 11px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.library-signout, .library-auth-back { padding: 0; border: 0; background: none; color: #8a857d; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; cursor: pointer; }
.library-guest { margin: auto 0; padding: 44px 0; }
.library-eyebrow { margin: 0 0 18px; color: var(--gold-light); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .17em; }
.library-guest h3 { margin: 0; font-size: clamp(42px, 4vw, 58px); line-height: .87; text-transform: uppercase; letter-spacing: -.045em; font-weight: 500; }
.library-guest h3 em { font-family: var(--serif); font-weight: 400; text-transform: none; color: var(--gold-light); }
.library-guest > p:not(.library-eyebrow) { max-width: 400px; margin: 27px 0 0; color: #827e77; font-size: 13px; line-height: 1.65; }
.library-auth-actions { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.library-auth-actions .primary-button { width: 100%; }
.library-create-button { min-height: 54px; padding: 0 18px; border: 1px solid #3b3936; background: transparent; color: var(--paper); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .11em; cursor: pointer; transition: border-color .25s, color .25s; }
.library-create-button:hover { border-color: var(--gold-light); color: var(--gold-light); }
.library-benefits { margin: 42px 0 0; padding: 0; border-top: 1px solid #2d2d2b; list-style: none; }
.library-benefits li { position: relative; padding: 12px 0 12px 18px; border-bottom: 1px solid #242422; color: #726e68; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.library-benefits li::before { content: ""; position: absolute; left: 0; top: 18px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-dark); }
.library-auth-form { margin: auto 0; padding: 40px 0; }
.library-auth-form .library-auth-back { margin-bottom: 38px; }
.library-auth-form h3 { margin: 0 0 30px; font-size: 44px; line-height: .9; text-transform: uppercase; letter-spacing: -.04em; font-weight: 500; }
.library-auth-form label { display: grid; gap: 8px; margin-bottom: 18px; color: #8a857d; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.library-auth-form input { width: 100%; height: 51px; padding: 0 14px; border: 1px solid #353330; border-radius: 0; outline: 0; background: #171716; color: var(--paper); font: 400 16px var(--sans); transition: border-color .25s, background .25s; }
.library-auth-form input:focus { border-color: var(--gold-light); background: #1b1a18; }
.library-auth-submit { width: 100%; margin-top: 12px; }
.library-auth-note { margin: 16px 0 0; color: #5f5c57; font-size: 10px; line-height: 1.5; text-align: center; }
.library-empty { margin: auto 0; text-align: center; }
.library-empty > span { display: block; font-family: var(--serif); font-size: 92px; line-height: 1; color: #2a2927; }
.library-empty h3 { margin: 22px 0 9px; font-size: 25px; font-weight: 500; }
.library-empty p { max-width: 360px; margin: 0 auto 28px; color: #77736c; font-size: 12px; }
.library-empty .primary-button { width: 100%; }
.library-owned { padding: 30px 0; }
.library-owned-grid { display: grid; gap: 25px; }
.library-film > div { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.library-film img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s; }
.library-film:hover img { transform: scale(1.025); filter: brightness(.76); }
.library-film > div span { position: absolute; left: 10px; top: 10px; padding: 6px 8px; background: var(--gold-light); color: #111; font-size: 7px; text-transform: uppercase; letter-spacing: .11em; }
.library-film h4 { margin: 13px 0 3px; font-size: 18px; font-weight: 500; }
.library-film p { margin: 0; color: #6f6b65; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.library-status { min-height: 18px; margin: auto 0 0; color: var(--gold-light); font-size: 9px; text-align: center; text-transform: uppercase; letter-spacing: .12em; }

.page-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.75); backdrop-filter: blur(5px); }
.product-modal { width: min(980px, 94vw); max-width: 94vw; max-height: 92dvh; padding: 0; border: 1px solid rgba(216,195,156,.18); background: #0f0f0e; color: white; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; box-shadow: 0 30px 110px rgba(0,0,0,.78); }
.product-modal[open] { display: block; animation: modalIn .4s cubic-bezier(.16,1,.3,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(15px) scale(.99); } }
.product-modal::backdrop { background: rgba(0,0,0,.84); backdrop-filter: blur(6px); }
.product-modal .modal-close { position: absolute; right: 14px; top: 14px; z-index: 5; background: rgba(15,15,14,.74); backdrop-filter: blur(8px); }
.modal-media { position: relative; width: 100%; max-width: 100%; min-height: 0; aspect-ratio: 16 / 9; overflow: hidden; contain: layout paint; isolation: isolate; touch-action: pan-y; background: #171716; }
.modal-media::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 38%); pointer-events: none; }
.modal-image { width: 100%; max-width: 100%; height: 100%; object-fit: cover; pointer-events: none; backface-visibility: hidden; transform: translateZ(0); transition: opacity .28s ease, transform .55s cubic-bezier(.16,1,.3,1); }
.modal-image.is-changing { opacity: .28; transform: scale(1.018); }
.modal-gallery-count { position: absolute; z-index: 3; left: 18px; top: 18px; padding: 7px 9px; background: rgba(12,12,11,.65); border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.82); backdrop-filter: blur(8px); font-family: var(--serif); font-size: 12px; letter-spacing: .08em; }
.modal-gallery-button { position: absolute; z-index: 3; top: 50%; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(10,10,9,.28); color: white; backdrop-filter: blur(7px); cursor: pointer; transform: translateY(-50%); transition: background .25s, color .25s, border-color .25s; }
.modal-gallery-button:hover { border-color: var(--gold-light); background: var(--gold-light); color: #111; }
.modal-gallery-prev { left: 18px; }
.modal-gallery-next { right: 18px; }
.modal-thumbnails { position: absolute; z-index: 3; left: 18px; bottom: 16px; display: flex; gap: 7px; max-width: calc(100% - 36px); overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain; touch-action: pan-x; scrollbar-width: none; }
.modal-thumbnails::-webkit-scrollbar { display: none; }
.modal-thumbnail { flex: 0 0 72px; width: 72px; padding: 0; border: 1px solid rgba(255,255,255,.2); background: #111; aspect-ratio: 16 / 9; overflow: hidden; cursor: pointer; opacity: .52; transition: opacity .25s, border-color .25s, transform .25s; }
.modal-thumbnail:hover, .modal-thumbnail.active { opacity: 1; border-color: var(--gold-light); transform: translateY(-2px); }
.modal-thumbnail img { height: 100%; object-fit: cover; }
.modal-copy { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 64px; padding: 38px 42px 42px; }
.modal-copy h2 { margin: 12px 0 18px; font-size: clamp(43px, 5vw, 70px); line-height: .86; text-transform: uppercase; letter-spacing: -.045em; font-weight: 500; }
.modal-description { max-width: 560px; margin-bottom: 0; color: #8d8d8d; font-size: 13px; }
.modal-details { display: flex; flex-direction: column; }
.modal-copy dl { margin: 0; border-top: 1px solid #303030; }
.modal-copy dl div { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid #303030; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.modal-copy dt { color: #676767; }
.modal-copy dd { margin: 0; }
.modal-purchase { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.modal-price { font-family: var(--serif); font-size: 40px; color: var(--acid); font-weight: 400; }
.toast { position: fixed; z-index: 200; bottom: 25px; left: 50%; transform: translate(-50%, 25px); padding: 12px 20px; background: var(--acid); color: #111; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.athlete-picker-modal { width: min(1180px, 92vw); max-height: 90dvh; padding: 50px; border: 1px solid rgba(216,195,156,.22); background: #0e0e0d; color: var(--paper); overflow-y: auto; box-shadow: 0 35px 130px rgba(0,0,0,.78); }
.athlete-picker-modal[open] { animation: pickerIn .55s cubic-bezier(.16,1,.3,1); }
.athlete-picker-modal::backdrop { background: rgba(0,0,0,.84); backdrop-filter: blur(10px) saturate(65%); }
.athlete-picker-modal::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(216,195,156,.09); pointer-events: none; }
.athlete-picker-close { position: absolute; z-index: 2; top: 25px; right: 25px; }
.athlete-picker-head { max-width: 720px; margin-bottom: 40px; }
.athlete-picker-head .section-kicker { margin: 0 0 17px; color: var(--gold-light); }
.athlete-picker-head h2 { margin: 0; font-size: clamp(48px, 5.5vw, 82px); line-height: .87; text-transform: uppercase; letter-spacing: -.045em; font-weight: 500; }
.athlete-picker-head h2 em { font-family: var(--serif); color: var(--gold-light); text-transform: none; font-weight: 400; }
.athlete-picker-head > p:last-child { max-width: 510px; margin: 22px 0 0; color: #827d75; font-size: 12px; }
.athlete-picker-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.picker-athlete { min-width: 0; }
.picker-athlete-image { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #181817; }
.picker-athlete-image::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(110deg, transparent 25%, rgba(221,202,168,.13) 50%, transparent 75%); transform: translateX(-120%); transition: transform 1s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.picker-athlete-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.9), transparent 62%); }
.picker-athlete img { height: 100%; object-fit: cover; filter: saturate(.42) contrast(1.05); transition: transform .9s cubic-bezier(.16,1,.3,1), filter .6s; }
.picker-athlete:hover img { transform: scale(1.045); filter: brightness(.72) saturate(.72); }
.picker-athlete:hover .picker-athlete-image::before { transform: translateX(120%); }
.picker-athlete-image .picker-athlete-arrow { position: absolute; z-index: 3; right: 11px; top: 11px; width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 10px; opacity: 0; transition: background .25s, color .25s, transform .25s, opacity .25s; }
.picker-athlete:hover .picker-athlete-arrow { opacity: 1; background: var(--gold-light); border-color: var(--gold-light); color: #111; transform: rotate(45deg); }
.picker-athlete-copy { position: absolute; z-index: 3; left: 12px; right: 12px; bottom: 12px; transition: transform .4s cubic-bezier(.16,1,.3,1); }
.picker-athlete:hover .picker-athlete-copy { transform: translateY(-3px); }
.picker-athlete-copy h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 20px; line-height: .95; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.picker-athlete-copy p { margin: 0; color: var(--gold-light); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
@keyframes pickerIn { from { opacity: 0; transform: translateY(18px) scale(.985); } }

/* Athlete collection page */
.athlete-page .site-header { position: absolute; }
.athlete-page .site-header.scrolled { position: fixed; }
.athlete-hero { position: relative; min-height: 780px; height: 92vh; overflow: hidden; }
.athlete-hero-image { position: absolute; inset: -3% 0; height: 106%; object-fit: cover; object-position: center 32%; filter: saturate(.5) contrast(1.08); scale: 1.035; will-change: transform; }
.athlete-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,6,6,.93) 0%, rgba(6,6,6,.12) 59%), linear-gradient(90deg, rgba(5,5,5,.34), transparent 62%); }
.athlete-hero-inner { position: absolute; z-index: 2; left: 5.5vw; right: 5.5vw; bottom: 58px; display: grid; grid-template-columns: 1.55fr .45fr; gap: 8vw; align-items: end; }
.athlete-back { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; color: #aba69e; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.athlete-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(88px, 12.5vw, 205px); line-height: .69; letter-spacing: -.055em; font-weight: 400; }
.athlete-hero-meta { padding-bottom: 4px; }
.athlete-hero-meta > span { color: var(--gold-light); font-size: 9px; text-transform: uppercase; letter-spacing: .17em; }
.athlete-hero-meta p { color: #aaa49a; font-size: 13px; line-height: 1.65; margin: 18px 0 26px; max-width: 360px; }
.athlete-meta-line { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2); display: flex; justify-content: space-between; color: #77726b; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.athlete-films { padding: 130px 0 165px; }
.athlete-films-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; }
.athlete-films-heading h2 { margin: 8px 0 0; font-size: clamp(48px, 5.3vw, 82px); line-height: .9; text-transform: uppercase; letter-spacing: -.045em; font-weight: 500; }
.athlete-film-count { font-family: var(--serif); font-size: 24px; color: var(--gold-light); }
.athlete-film-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 65px 17px; }
.athlete-film-grid .film-image { aspect-ratio: 16 / 9; }
.athlete-selector { padding-top: 125px; border-top: 1px solid var(--line); }
.athlete-selector .athlete-slide.is-current .athlete-slide-image { outline: 1px solid var(--gold-light); outline-offset: -1px; }
.athlete-selector .athlete-slide.is-current .athlete-slide-number { color: var(--gold-light); }

.reveal { opacity: 0; transform: translateY(34px); filter: blur(5px); transition: opacity 1.05s cubic-bezier(.16,1,.3,1), transform 1.05s cubic-bezier(.16,1,.3,1), filter 1.05s ease; }
.reveal.visible { opacity: 1; transform: none; filter: none; }

.hero-copy.visible .eyebrow { animation: luxuryFade .9s .1s both; }
.hero-copy.visible h1 { animation: luxuryFade 1.2s .22s cubic-bezier(.16,1,.3,1) both; }
.hero-copy.visible .hero-description { animation: luxuryFade 1s .4s both; }
.hero-copy.visible .hero-actions { animation: luxuryFade 1s .52s both; }
@keyframes luxuryFade { from { opacity: 0; transform: translateY(18px); filter: blur(5px); } }

@media (max-width: 900px) {
  .site-header { height: 76px; padding: 0 20px; }
  .desktop-nav { display: none; }
  .menu-button { display: none; }
  .mobile-header-nav { position: absolute; z-index: 2; top: 16px; left: 20px; right: 62px; height: 44px; display: flex; visibility: hidden; align-items: center; justify-content: flex-end; gap: clamp(20px, 6vw, 36px); padding-right: 10px; background: linear-gradient(90deg, rgba(9,9,9,.02), rgba(9,9,9,.96) 23%); opacity: 0; clip-path: inset(0 0 0 100%); transform: translateX(16px); pointer-events: none; transition: visibility 0s .52s, opacity .25s ease, clip-path .52s cubic-bezier(.16,1,.3,1), transform .52s cubic-bezier(.16,1,.3,1); }
  .mobile-header-nav a, .mobile-header-nav button { color: rgba(255,255,255,.76); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; transition: color .25s; }
  .mobile-header-nav a:hover, .mobile-header-nav button:hover { color: var(--gold-light); }
  .site-header.menu-open { background: rgba(9,9,9,.9); border-color: rgba(188,161,117,.26); backdrop-filter: blur(18px) saturate(80%); }
  .site-header.menu-open .brand { opacity: 0; transform: translateX(-16px); pointer-events: none; }
  .site-header.menu-open .mobile-header-nav { visibility: visible; opacity: 1; clip-path: inset(0); transform: translateX(0); pointer-events: auto; transition-delay: 0s; }
  .site-header.menu-open .menu-button span:first-child { top: 15px; transform: rotate(45deg); background: var(--gold-light); }
  .site-header.menu-open .menu-button span:last-child { top: 15px; transform: rotate(-45deg); background: var(--gold-light); }
  .hero { min-height: 680px; }
  .hero-copy { left: 23px; bottom: 128px; width: calc(100% - 46px); }
  .hero h1 { font-size: clamp(58px, 12vw, 92px); line-height: .82; }
  .hero h1 em { margin-left: 0; font-size: .62em; }
  .hero-description { margin-top: 28px; }
  .hero-index { display: none; }
  .scroll-cue { left: 23px; bottom: 35px; }
  .section-shell { width: calc(100% - 40px); }
  .intro { padding: 100px 0; display: block; }
  .intro > .section-kicker { margin-bottom: 35px; }
  .intro-copy { display: block; }
  .intro-copy > p { margin-top: 35px; }
  .film-grid { grid-template-columns: repeat(2, 1fr); }
  .athlete-card { height: 430px; }
  .athlete-slide { flex-basis: 31vw; }
  .athlete-slide-image { height: auto; }
  .athlete-picker-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 10px; }
  .athlete-hero-inner { grid-template-columns: 1.2fr .8fr; }
  .promise-grid { margin-left: 0; }
  .modal-copy { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 620px) {
  .brand-word { font-size: 14px; }
  .header-actions { gap: 13px; }
  .header-athletes-link, .text-button { display: none; }
  .bag-button { display: none; }
  .menu-button { display: block; }
  body.has-cart-items .bag-button { height: 36px; padding: 0 5px 0 11px; display: flex; gap: 7px; border-color: rgba(216,195,156,.48); font-size: 9px; animation: mobileBagIn .5s cubic-bezier(.16,1,.3,1) both; }
  body.has-cart-items .bag-button .cart-count { width: 24px; height: 24px; font-size: 10px; }
  body.has-cart-items .site-header.menu-open .bag-button { opacity: 0; transform: translateX(12px); pointer-events: none; }
  .hero { height: 92svh; }
  .hero-image { object-position: 52% center; filter: saturate(.6) contrast(1.08) brightness(.8); }
  .hero-shade { background: linear-gradient(0deg, rgba(5,4,4,.96) 0%, rgba(6,5,4,.63) 46%, rgba(5,4,4,.16) 76%), radial-gradient(ellipse at 52% 33%, rgba(197,165,117,.07), transparent 37%); }
  .hero-copy { bottom: 115px; }
  .hero h1 { font-size: clamp(48px, 14.5vw, 70px); line-height: .83; }
  .hero h1 em { margin-left: 0; }
  .hero-description { font-size: 13px; width: 92%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .primary-button { min-height: 50px; }
  .intro h2, .promise h2 { font-size: 48px; }
  .releases, .catalog, .athletes { padding: 90px 0; }
  .section-heading { align-items: flex-start; gap: 28px; flex-direction: column; }
  .section-heading h2 { font-size: 51px; }
  .film-grid, .catalog-grid { grid-template-columns: 1fr; gap: 38px; }
  .filter-row { width: 100%; overflow-x: auto; }
  .athlete-strip { grid-template-columns: 1fr; }
  .athlete-card { height: 480px; }
  .carousel-heading { align-items: end; }
  .carousel-heading h2 { font-size: 49px; }
  .athlete-carousel { padding-inline: 20px; }
  .athlete-slide { flex-basis: 68vw; }
  .athlete-slide-image { height: auto; }
  .athlete-picker-modal { width: calc(100vw - 20px); max-height: 92dvh; padding: 36px 18px 24px; }
  .athlete-picker-modal::before { inset: 7px; }
  .athlete-picker-close { top: 16px; right: 16px; }
  .athlete-picker-head { padding-right: 35px; margin-bottom: 30px; }
  .athlete-picker-head h2 { font-size: 45px; }
  .athlete-picker-head > p:last-child { font-size: 11px; }
  .athlete-picker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 8px; }
  .picker-athlete-copy h3 { font-size: 18px; }
  .carousel-note { margin-top: 5px; }
  .athlete-hero { min-height: 720px; height: 90svh; }
  .athlete-hero-image { object-position: center center; }
  .athlete-hero-inner { left: 20px; right: 20px; bottom: 38px; display: block; }
  .athlete-hero h1 { font-size: 25vw; line-height: .74; }
  .athlete-hero-meta { margin-top: 38px; }
  .athlete-hero-meta p { margin: 12px 0 18px; }
  .athlete-films { padding: 90px 0 110px; }
  .athlete-films-heading { align-items: end; }
  .athlete-films-heading h2 { font-size: 45px; }
  .athlete-film-grid { grid-template-columns: 1fr; gap: 42px; }
  .athlete-selector { padding-top: 90px; }
  .promise { padding: 100px 0; }
  .promise-grid { margin-top: 70px; grid-template-columns: 1fr; }
  .site-footer { padding-top: 70px; }
  .footer-title { font-size: 25vw; }
  .footer-bottom { margin-top: 65px; align-items: flex-start; flex-direction: column; gap: 20px; }
  .drawer { padding: 25px 20px; }
  .library-guest { padding: 32px 0; }
  .library-guest h3 { font-size: clamp(38px, 11.5vw, 48px); }
  .library-auth-actions { grid-template-columns: 1fr; }
  .library-benefits { margin-top: 32px; }
  .library-auth-form { padding: 28px 0; }
  .product-modal { width: calc(100vw - 20px); max-height: 92dvh; }
  .product-modal[open] { display: block; overflow-y: auto; }
  .product-modal .modal-close { top: 10px; right: 10px; }
  .modal-media { min-height: 0; height: auto; aspect-ratio: 16 / 9; }
  .modal-gallery-count { left: 11px; top: 11px; padding: 5px 7px; font-size: 10px; }
  .modal-gallery-button { width: 38px; height: 38px; }
  .modal-gallery-prev { left: 10px; }
  .modal-gallery-next { right: 10px; }
  .modal-thumbnails { left: 11px; bottom: 9px; max-width: calc(100% - 22px); gap: 5px; }
  .modal-thumbnail { flex-basis: 50px; width: 50px; }
  .modal-copy { padding: 30px 20px 25px; }
  .modal-copy h2 { font-size: 42px; }
  .modal-purchase { margin-top: 25px; }
}

@media (hover: none) and (pointer: coarse) {
  .film-card:hover .film-image img { transform: none; filter: saturate(.64) contrast(1.04); }
  .film-card:hover .film-image::after { transform: translateX(-120%); }
  .film-card:hover .film-play { opacity: 0; }
  .athlete-slide:hover img { transform: translateZ(0); filter: saturate(.47) contrast(1.05); }
  .athlete-slide:hover .athlete-slide-image::before { transform: translateX(-120%); }
  .athlete-slide:hover .athlete-slide-arrow { opacity: 0; color: inherit; background: transparent; border-color: rgba(255,255,255,.55); transform: translateY(6px); }
  .athlete-slide:hover .athlete-slide-copy { transform: none; }
  .picker-athlete:hover img { transform: none; filter: saturate(.42) contrast(1.05); }
  .picker-athlete:hover .picker-athlete-image::before { transform: translateX(-120%); }
  .picker-athlete:hover .picker-athlete-arrow { opacity: 0; color: inherit; background: transparent; border-color: rgba(255,255,255,.55); transform: none; }
  .modal-thumbnail:hover:not(.active) { opacity: .52; border-color: rgba(255,255,255,.2); transform: none; }
}

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

/* WordPress and WooCommerce integration */
.admin-bar .site-header { top: 32px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.catalog-placeholder { grid-column: 1 / -1; padding: 55px 0; border-top: 1px solid var(--line); color: #77736c; font-size: 13px; }
.content-page, .commerce-page { min-height: 70vh; padding-top: 175px; padding-bottom: 140px; }
.content-page article + article { margin-top: 90px; padding-top: 80px; border-top: 1px solid var(--line); }
.content-page h1, .commerce-page h1 { margin: 8px 0 45px; font-size: clamp(52px, 7vw, 108px); line-height: .84; letter-spacing: -.05em; text-transform: uppercase; font-weight: 500; }
.entry-content { max-width: 850px; color: #a39e95; }
.entry-content a, .commerce-page a:not(.button) { color: var(--gold-light); }
.modal-add:disabled, .remove-button:disabled { cursor: wait; opacity: .45; }
.modal-add.is-unavailable { cursor: not-allowed; }
.cart-item .woocommerce-Price-amount { color: var(--gold-light); }

.commerce-page .woocommerce { color: var(--paper); }
.woocommerce .woocommerce-breadcrumb { margin-bottom: 40px; color: #77736c; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message { margin: 0 0 30px; padding: 18px 20px; border: 1px solid #36332f; border-top-color: var(--gold-dark); background: #121210; color: #bdb6aa; list-style-position: inside; }
.woocommerce form .form-row { margin-bottom: 17px; }
.woocommerce form .form-row label { display: block; margin-bottom: 7px; color: #8e8981; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.woocommerce form .input-text, .woocommerce form select, .select2-container--default .select2-selection--single, .woocommerce textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #353330; border-radius: 0; outline: none; background: #151514; color: var(--paper); font: 400 16px var(--sans); }
.woocommerce textarea { min-height: 130px; }
.woocommerce form .input-text:focus, .woocommerce textarea:focus { border-color: var(--gold-light); }
.woocommerce button.button, .woocommerce a.button, .woocommerce input.button, .woocommerce #respond input#submit { min-height: 50px; padding: 0 21px; border: 0; border-radius: 0; background: linear-gradient(115deg, #a7895d, #d4bf96); color: #0b0b0b; font-size: 10px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.woocommerce table.shop_table { border: 1px solid #34312e; border-radius: 0; border-collapse: collapse; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 15px; border-color: #2b2926; }
.woocommerce-checkout #payment { border-radius: 0; background: #151513; }
.woocommerce-checkout #payment div.payment_box { background: #22201d; color: #aaa399; }
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: #22201d; }
.woocommerce-account .woocommerce { display: grid; grid-template-columns: minmax(190px, .28fr) minmax(0, 1fr); gap: clamp(35px, 6vw, 90px); }
.woocommerce-account .woocommerce::before, .woocommerce-account .woocommerce::after { display: none; }
.woocommerce-account .woocommerce-MyAccount-navigation, .woocommerce-account .woocommerce-MyAccount-content { float: none; width: auto; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; border-top: 1px solid #312e2a; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li { border-bottom: 1px solid #312e2a; }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 14px 0; color: #817c74; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a { color: var(--gold-light); }
.woocommerce-account:not(.logged-in) .woocommerce { display: block; max-width: 620px; }
.woocommerce-account #customer_login { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; width: min(960px, 100%); }
.woocommerce-account #customer_login .u-column1, .woocommerce-account #customer_login .u-column2 { float: none; width: auto; }
.woocommerce-account form.login, .woocommerce-account form.register { margin: 0; padding: 28px; border: 1px solid #35322f; border-radius: 0; }
.woocommerce-account .fz-player h2, .woocommerce-account .fz-library-empty h2 { font-size: clamp(36px, 5vw, 70px); line-height: .9; text-transform: uppercase; letter-spacing: -.04em; }

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 700px) {
  .content-page, .commerce-page { padding-top: 125px; padding-bottom: 90px; }
  .woocommerce-account .woocommerce, .woocommerce-account #customer_login { grid-template-columns: 1fr; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; gap: 18px; overflow-x: auto; border-top: 0; }
  .woocommerce-account .woocommerce-MyAccount-navigation li { flex: 0 0 auto; border-bottom: 0; }
  .woocommerce-account .woocommerce-MyAccount-navigation a { padding: 8px 0; }
}
