:root {
  --black: #090909;
  --paper: #f1efe9;
  --white: #fff;
  --red: #ff3b24;
  --acid: #c9ff25;
  --line: rgba(255,255,255,.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--black); color: var(--white); font-family: Inter, Arial, sans-serif; font-size: 16px; }
body.drawer-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

.site-header { height: 78px; padding: 0 clamp(20px, 4vw, 64px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); position: relative; z-index: 10; }
.brand { display: flex; align-items: baseline; gap: 8px; width: max-content; }
.brand-mark, h1, h2, .footer-brand { font-family: Anton, Impact, sans-serif; letter-spacing: .01em; text-transform: uppercase; }
.brand-mark { font-size: 2rem; line-height: 1; transform: skew(-8deg); }
.brand-sub { font-size: .7rem; font-weight: 800; letter-spacing: .22em; color: var(--acid); }
nav { display: flex; gap: 34px; text-transform: uppercase; font-size: .75rem; font-weight: 700; letter-spacing: .13em; }
nav a:hover { color: var(--acid); }
.cart-button { justify-self: end; color: var(--white); background: transparent; border: 1px solid var(--white); text-transform: uppercase; font-size: .75rem; font-weight: 800; letter-spacing: .1em; padding: 10px 12px; display: flex; gap: 12px; align-items: center; }
.cart-button span { background: var(--acid); color: var(--black); min-width: 22px; height: 22px; display: grid; place-items: center; }

.hero { min-height: calc(100svh - 78px); position: relative; display: flex; align-items: flex-end; border-bottom: 1px solid var(--line); overflow: hidden; background: #111 url('products/tmb-intro.jpeg') center 34% / cover no-repeat; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.38) 42%, rgba(0,0,0,.12) 70%), linear-gradient(0deg, rgba(0,0,0,.72) 0%, transparent 48%); }
.hero-copy { position: relative; z-index: 2; width: 100%; padding: 70px clamp(24px, 6vw, 92px) 72px; display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow { font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--acid); margin: 0 0 20px; }
h1 { font-size: clamp(5rem, 10vw, 9.5rem); line-height: .79; margin: 0; font-weight: 400; }
h1 em { color: var(--red); font-style: normal; }
.hero-text { max-width: 430px; margin: 30px 0 0; color: #ededed; font-size: 1.05rem; line-height: 1.65; text-shadow: 0 2px 18px rgba(0,0,0,.7); }
.customization-notice { max-width: 570px; margin-top: 22px; padding: 15px 17px; border-left: 4px solid var(--acid); background: rgba(0,0,0,.68); backdrop-filter: blur(5px); display: grid; gap: 6px; }
.customization-notice strong { color: var(--acid); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.customization-notice span { color: #f1f1ed; font-size: .84rem; line-height: 1.5; }
.primary-link { background: var(--acid); color: var(--black); padding: 17px 20px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; display: flex; align-items: center; gap: 40px; }
.primary-link span { font-size: 1.2rem; transition: transform .2s; }
.primary-link:hover span { transform: translate(4px, 4px); }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue b { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; display: grid; place-items: center; font-size: 1.1rem; animation: scroll-bounce 1.6s ease-in-out infinite; }
.intro-stamp { position: absolute; right: 28px; bottom: 28px; z-index: 2; font-family: Anton, Impact, sans-serif; font-size: 2.1rem; line-height: .8; color: var(--acid); text-align: right; transform: rotate(-5deg); }
@keyframes scroll-bounce { 50% { transform: translateY(6px); } }

.marquee { overflow: hidden; background: var(--red); color: var(--black); padding: 17px 0 14px; font-family: Anton, Impact, sans-serif; font-size: 1.7rem; letter-spacing: .05em; white-space: nowrap; }
.marquee div { width: max-content; animation: marquee 20s linear infinite; }
.marquee span { padding: 0 24px; }
@keyframes marquee { to { transform: translateX(-25%); } }

.shop-section { background: var(--paper); color: var(--black); padding: 100px clamp(20px, 4vw, 64px) 120px; }
.shop-section .eyebrow { color: #64645d; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 44px; }
.section-heading h2 { font-size: clamp(3.6rem, 7vw, 7rem); line-height: .88; font-weight: 400; margin: 0; }
.section-heading > p { max-width: 270px; color: #5c5c56; line-height: 1.6; margin: 0 0 10px; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.collection-banner { grid-column: 1 / -1; margin-top: 58px; padding: 34px; background: var(--black); color: var(--white); display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; border-left: 8px solid var(--acid); }
.collection-banner .eyebrow { margin-bottom: 12px; }
.collection-banner h3 { margin: 0; font-family: Anton, Impact, sans-serif; font-size: clamp(2.4rem, 5vw, 5.3rem); line-height: .95; font-weight: 400; text-transform: uppercase; }
.collection-banner > p { max-width: 330px; margin: 0 0 7px; color: #bdbdb8; line-height: 1.55; }
.product-card { background: var(--white); border: 1px solid #d6d4cc; }
.product-media { height: clamp(340px, 44vw, 610px); position: relative; overflow: hidden; background: #d7d7d5; }
.product-media > img, .gallery-track img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-media.clean { background: #fff; }
.product-media.clean > img { object-fit: contain; padding: 7%; }
.product-media.dark-clean { background: #171717; }
.product-media.dark-clean > img { object-fit: contain; padding: 8%; }
.gallery-track { width: 100%; height: 100%; }
.gallery-track img[hidden] { display: none; }
.gallery-controls { position: absolute; z-index: 2; left: 20px; bottom: 20px; display: flex; flex-wrap: wrap; gap: 8px; max-width: 280px; background: rgba(0,0,0,.66); padding: 10px; }
.gallery-dot { width: 28px; height: 5px; border: 0; background: rgba(255,255,255,.45); padding: 0; }
.gallery-dot.active { background: var(--acid); }
.product-number { position: absolute; top: 18px; right: 18px; background: var(--black); color: var(--white); padding: 8px 9px; font-size: .72rem; font-weight: 800; }
.bundle-label { position: absolute; top: 18px; left: 18px; z-index: 2; background: var(--red); color: var(--black); padding: 9px 12px; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.new-label { position: absolute; top: 18px; left: 18px; z-index: 2; background: var(--acid); color: var(--black); padding: 9px 12px; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.chrome-label { position: absolute; top: 18px; left: 18px; z-index: 2; background: var(--black); color: var(--acid); padding: 9px 12px; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.chrome-card .product-media { background: #181818; }
.chrome-card .product-media > img { filter: contrast(1.04) saturate(1.06); }
.headgear-crop > img { object-position: 72% 34%; }
.product-media.shoe-media > img { padding: 5%; }
.product-media.rotated-outfit > img { transform: rotate(-90deg) scale(.78); object-fit: contain; }
.product-info { padding: 24px 22px; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; border-top: 1px solid #d6d4cc; }
.product-info h3 { font-size: 1.2rem; margin: 0 0 7px; text-transform: uppercase; letter-spacing: -.02em; }
.product-info p { margin: 0; color: #70706a; font-size: .85rem; }
.product-info strong { font-family: Anton, Impact, sans-serif; font-size: 2rem; line-height: 1; font-weight: 400; }
.variant-picker { padding: 17px 22px; border-top: 1px solid #d6d4cc; display: grid; gap: 8px; background: #f6f5f1; }
.variant-picker > span { font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.variant-picker select { width: 100%; min-height: 44px; border: 1px solid #aaa89f; background: #fff; color: var(--black); padding: 8px 10px; font: inherit; font-size: .88rem; }
.add-button { width: 100%; border: 0; border-top: 1px solid #d6d4cc; background: var(--white); color: var(--black); padding: 17px 22px; display: flex; justify-content: space-between; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .77rem; }
.add-button:hover { background: var(--black); color: var(--white); }
.add-button.featured { background: var(--acid); }
.add-button.featured:hover { background: var(--black); color: var(--acid); }
.customize-button { width: 100%; border: 0; border-top: 1px solid #d6d4cc; background: var(--black); color: var(--acid); padding: 17px 22px; display: flex; justify-content: space-between; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .77rem; }
.customize-button:hover { background: var(--red); color: var(--black); }
.price-pending { max-width: 110px; text-align: right; font-family: Inter, Arial, sans-serif !important; font-size: .72rem !important; line-height: 1.25 !important; letter-spacing: .08em; text-transform: uppercase; }
.pending-button:disabled { cursor: default; background: #e7e5de; color: #77776f; }

.closing { min-height: 560px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; background: var(--red); color: var(--black); }
.closing .eyebrow { color: var(--black); }
.closing h2 { font-size: clamp(4.5rem, 10vw, 10rem); font-weight: 400; line-height: .82; margin: 0 0 40px; }
.closing h2 span { color: var(--paper); }
.closing a { border-bottom: 2px solid var(--black); padding: 12px 2px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; display: flex; gap: 30px; }
footer { min-height: 190px; padding: 42px clamp(24px, 5vw, 72px); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-top: 1px solid var(--line); }
.footer-brand { font-size: 5rem; line-height: 1; color: var(--acid); transform: skew(-8deg); }
footer > div:nth-child(2) { display: flex; flex-direction: column; gap: 8px; }
footer > div:nth-child(2) a { color: #bdbdb7; font-size: .84rem; text-decoration: underline; text-underline-offset: 4px; }
footer > div:nth-child(2) a:hover { color: var(--acid); }
footer > a { justify-self: end; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); }
.cart-drawer { position: fixed; z-index: 60; right: 0; top: 0; bottom: 0; width: min(460px, 100%); background: var(--paper); color: var(--black); transform: translateX(100%); transition: transform .28s ease; display: grid; grid-template-rows: auto 1fr auto; box-shadow: -20px 0 50px rgba(0,0,0,.28); }
.cart-drawer.open { transform: translateX(0); }
.drawer-header { padding: 28px; border-bottom: 1px solid #cbc9c1; display: flex; justify-content: space-between; align-items: flex-start; }
.drawer-header .eyebrow { color: #666; margin-bottom: 8px; }
.drawer-header h2 { font-size: 3.4rem; line-height: 1; margin: 0; font-weight: 400; }
.close-button { border: 1px solid #999; background: transparent; width: 42px; height: 42px; font-size: 1.7rem; line-height: 1; }
.cart-items { overflow: auto; padding: 0 28px; }
.empty-cart { color: #6b6b65; line-height: 1.6; margin-top: 36px; }
.cart-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 22px 0; border-bottom: 1px solid #cbc9c1; }
.cart-row h3 { margin: 0 0 8px; font-size: .95rem; text-transform: uppercase; }
.cart-row strong { font-family: Anton, Impact, sans-serif; font-size: 1.4rem; font-weight: 400; }
.quantity { display: flex; align-items: center; gap: 10px; }
.quantity button { width: 30px; height: 30px; border: 1px solid #aaa; background: transparent; font-weight: 800; }
.cart-footer { padding: 24px 28px 28px; border-top: 1px solid #cbc9c1; }
.subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; text-transform: uppercase; font-weight: 800; }
.subtotal strong { font-family: Anton, Impact, sans-serif; font-size: 2.1rem; font-weight: 400; }
.checkout-button { width: 100%; padding: 17px; border: 0; background: var(--black); color: var(--acid); text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.cart-footer p { text-align: center; color: #72726b; font-size: .72rem; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 100; transform: translate(-50%, 140%); opacity: 0; transition: .25s; background: var(--acid); color: var(--black); padding: 13px 18px; font-weight: 800; text-transform: uppercase; font-size: .76rem; letter-spacing: .08em; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.payment-dialog { width: min(620px, calc(100% - 28px)); max-height: 92vh; overflow: auto; border: 0; padding: 0; background: var(--paper); color: var(--black); box-shadow: 0 28px 90px rgba(0,0,0,.55); }
.payment-dialog::backdrop, .custom-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(5px); }
.payment-dialog form { padding: 30px; }
.payment-header { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; margin-bottom: 28px; }
.payment-header .eyebrow { color: #63635d; margin-bottom: 10px; }
.payment-header h2 { font-size: clamp(2.6rem, 7vw, 4.4rem); line-height: .92; font-weight: 400; margin: 0; max-width: 440px; }
.payment-options { display: grid; gap: 10px; }
.payment-option { min-height: 78px; display: grid; grid-template-columns: auto auto 1fr auto; gap: 15px; align-items: center; border: 1px solid #c5c3ba; background: #fff; padding: 12px 16px 12px 12px; cursor: pointer; }
.payment-option:has(input:checked) { border: 2px solid var(--black); padding: 11px 15px 11px 11px; box-shadow: 5px 5px 0 var(--acid); }
.payment-option input { accent-color: var(--black); width: 18px; height: 18px; }
.payment-option > span:nth-of-type(2) { display: flex; flex-direction: column; gap: 5px; }
.payment-option strong { text-transform: uppercase; font-size: .9rem; letter-spacing: .02em; }
.payment-option small { color: #686862; font-size: .75rem; }
.payment-option b { font-size: 1.5rem; }
.payment-icon { width: 44px; height: 38px; display: grid; place-items: center; background: var(--black); color: #fff; font-weight: 900; font-size: .82rem; border-radius: 5px; }
.cashapp .payment-icon { background: #00d64f; color: #fff; font-size: 1.5rem; }
.venmo .payment-icon { background: #008cff; color: #fff; font-size: 1.2rem; font-style: italic; }
.continue-payment { width: 100%; margin-top: 22px; padding: 17px; border: 0; background: var(--black); color: var(--acid); text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.payment-note { color: #676760; text-align: center; font-size: .72rem; line-height: 1.5; margin: 14px auto 0; max-width: 440px; }
.custom-dialog { width: min(650px, calc(100% - 28px)); max-height: 92vh; overflow: auto; border: 0; padding: 0; background: var(--paper); color: var(--black); box-shadow: 0 28px 90px rgba(0,0,0,.55); }
.custom-dialog form { padding: 30px; }
.custom-product-name { margin: 12px 0 0; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #5f5f59; }
.custom-type { border: 0; padding: 0; margin: 0 0 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.custom-type legend { grid-column: 1 / -1; font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.custom-type label { display: flex; align-items: center; gap: 12px; min-height: 76px; background: #fff; border: 1px solid #c5c3ba; padding: 13px; cursor: pointer; }
.custom-type label:has(input:checked) { border: 2px solid var(--black); padding: 12px; box-shadow: 4px 4px 0 var(--acid); }
.custom-type input { width: 18px; height: 18px; accent-color: var(--black); }
.custom-type label span { display: flex; flex-direction: column; gap: 5px; }
.custom-type strong { text-transform: uppercase; font-size: .85rem; }
.custom-type small { color: #686862; font-size: .72rem; }
.custom-field { margin-bottom: 22px; }
.custom-field > label { display: block; margin-bottom: 9px; font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.custom-field input[type="text"], .custom-field input[type="file"], .custom-field textarea { width: 100%; min-height: 52px; border: 1px solid #aaa89f; background: #fff; padding: 13px; font: inherit; font-size: 1rem; resize: vertical; }
.custom-field > label span { color: #74746d; font-weight: 600; }
.custom-field > small { display: block; color: #707069; margin-top: 7px; font-size: .72rem; }
.custom-total { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #bbb9b0; padding-top: 18px; text-transform: uppercase; font-size: .8rem; font-weight: 800; }
.custom-total strong { font-family: Anton, Impact, sans-serif; font-size: 2.3rem; font-weight: 400; }

@media (max-width: 820px) {
  .site-header { height: 68px; grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: calc(100svh - 68px); background-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.83) 0%, rgba(0,0,0,.08) 70%); }
  .hero-copy { padding-top: 80px; padding-bottom: 84px; }
  .hero-copy h1 { font-size: clamp(4.5rem, 16vw, 7rem); }
  .hero-text { max-width: 290px; margin-top: 18px; }
  .customization-notice { max-width: 520px; margin-right: 90px; }
  .intro-stamp { top: 24px; right: 20px; bottom: auto; font-size: 1.65rem; }
  .scroll-cue { left: auto; right: 20px; bottom: 24px; transform: none; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .collection-banner { align-items: flex-start; flex-direction: column; padding: 26px 22px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-media { height: min(125vw, 600px); }
  footer { grid-template-columns: 1fr auto; gap: 30px; }
  footer > div:nth-child(2) { display: none; }
}

@media (max-width: 480px) {
  .brand-sub { display: none; }
  .hero-copy { padding-left: 20px; padding-right: 20px; }
  .customization-notice { margin-right: 0; }
  h1 { font-size: clamp(4.3rem, 23vw, 6.5rem); }
  .shop-section { padding-top: 72px; }
  .product-info { padding: 20px 16px; }
  .closing h2 { font-size: 4.7rem; }
  .payment-dialog form { padding: 22px 16px; }
  .custom-dialog form { padding: 22px 16px; }
  .custom-type { grid-template-columns: 1fr; }
  .payment-option { grid-template-columns: auto auto 1fr; }
  .payment-option > b { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
