:root {
  --ink: #050505;
  --ink-soft: #11110f;
  --paper: #f3f0e8;
  --paper-deep: #e7e2d6;
  --white: #fffdf7;
  --muted: #6d6a63;
  --line: rgba(5, 5, 5, .16);
  --line-light: rgba(255, 253, 247, .2);
  --red: #c8202d;
  --orange: #d06a2e;
  --yellow: #e7d22c;
  --violet: #8a216f;
  --blue: #2d6ba4;
  --success: #167d4a;
  --danger: #b51f2e;
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-height: 82px;
  --shadow: 0 24px 70px rgba(5, 5, 5, .18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { min-width: 320px; margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
main { overflow: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.shell { width: min(1420px, calc(100% - 64px)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; z-index: 1000; top: -100px; left: 16px; padding: 12px 18px; background: var(--yellow); color: var(--ink); font-size: 12px; font-weight: 900; text-transform: uppercase; transition: top .2s; }
.skip-link:focus { top: 16px; }

.staging-banner { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 9px 16px; background: var(--yellow); color: var(--ink); text-align: center; font-size: 12px; line-height: 1.35; }
.staging-banner strong { font-size: 10px; font-weight: 900; letter-spacing: .12em; white-space: nowrap; }
.staging-banner span { font-weight: 700; }

.ecosystem-bar { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 7px 24px; background: var(--red); color: var(--white); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.ecosystem-bar a { border-bottom: 1px solid rgba(255,255,255,.65); }
.site-header { position: sticky; z-index: 100; top: 0; min-height: var(--header-height); display: grid; grid-template-columns: minmax(230px, .8fr) minmax(540px, 1.5fr) minmax(210px, .7fr); align-items: stretch; padding-inline: 32px; border-bottom: 1px solid rgba(255,255,255,.13); background: rgba(5,5,5,.96); color: var(--white); transition: min-height .25s, box-shadow .25s, background .25s; }
.site-header.is-scrolled { min-height: 70px; background: rgba(5,5,5,.985); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.brand-lockup { display: flex; width: max-content; align-items: center; gap: 12px; align-self: center; }
.brand-lockup img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; box-shadow: 5px 0 0 var(--violet), -3px 0 0 var(--blue); }
.brand-lockup span { display: flex; flex-direction: column; line-height: .85; }
.brand-lockup b { font: 900 20px/1 var(--display); letter-spacing: -.035em; }
.brand-lockup small { margin-top: 7px; font-size: 7px; font-weight: 900; letter-spacing: .3em; }
.site-menu { display: flex; justify-content: center; align-items: stretch; }
.site-menu > a { position: relative; display: grid; place-items: center; padding: 0 clamp(11px, 1.4vw, 24px); color: #dedbd3; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.site-menu > a::after { content: ""; position: absolute; right: 12px; bottom: 19px; left: 12px; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-menu > a:hover::after, .site-menu > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-menu .menu-store { background: var(--paper); color: var(--ink); }
.site-menu .menu-store::after { background: var(--red); }
.header-actions { display: flex; align-items: stretch; justify-content: flex-end; }
.header-actions > a { display: flex; align-items: center; padding: 0 16px; border-left: 1px solid rgba(255,255,255,.13); color: #d8d5ce; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.header-actions > a:hover { color: var(--yellow); }
.header-cart { gap: 10px; }
.cart-count { display: inline-grid; min-width: 23px; height: 23px; place-items: center; padding-inline: 6px; border-radius: 99px; background: var(--red); color: white; font-size: 9px; font-weight: 900; }
.menu-toggle { display: none; }

.messages { position: fixed; z-index: 250; top: 130px; left: 50%; width: min(520px, calc(100vw - 32px)); transform: translateX(-50%); pointer-events: none; }
.message { margin: 0 0 8px; padding: 15px 18px; border-left: 5px solid var(--blue); background: var(--white); box-shadow: var(--shadow); color: var(--ink); font-size: 13px; font-weight: 700; pointer-events: auto; transition: opacity .25s, transform .25s; }
.message-success { border-left-color: var(--success); }
.message-error { border-left-color: var(--danger); }
.message.is-leaving { opacity: 0; transform: translateY(-8px); }
.toast { position: fixed; z-index: 300; top: 128px; right: 24px; display: grid; grid-template-columns: 38px 1fr auto 25px; align-items: center; gap: 12px; width: min(480px, calc(100vw - 32px)); padding: 15px; background: var(--white); box-shadow: 0 22px 80px rgba(0,0,0,.32); color: var(--ink); animation: toast-in .28s ease-out; }
.toast-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--success); color: white; font-weight: 900; }
.toast div { display: grid; }
.toast small { color: var(--muted); }
.toast > a { padding-bottom: 2px; border-bottom: 2px solid; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.toast button { padding: 0; border: 0; background: transparent; font-size: 25px; }
.toast.is-leaving { opacity: 0; transform: translateY(-8px); transition: .2s; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-12px); } }

@media (max-width: 600px) {
  .staging-banner { flex-wrap: wrap; gap: 2px 8px; font-size: 11px; }
}

.section-space { padding-block: clamp(90px, 10vw, 160px); }
.section-number { margin: 0; font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 17px; color: #5c5953; font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 3px; background: var(--red); }
.eyebrow.light { color: #d9d5cc; }
.eyebrow.light > span { background: var(--yellow); }
.inverse { color: var(--white); }
.empty-state { grid-column: 1 / -1; margin: 0; padding: 60px 0; color: var(--muted); }
.empty-state.inverse { color: #aaa69d; }

.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 26px; padding: 0 25px; border: 2px solid transparent; background: transparent; font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-3px); }
.button span { font-size: 16px; }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--yellow); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--red); }
.button-ghost { border-color: rgba(255,255,255,.45); color: var(--white); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.button-outline { border-color: var(--ink); color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.button-disabled, .button:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.button-wide { width: 100%; }
.text-link { display: inline-flex; width: max-content; align-items: center; padding-bottom: 7px; border-bottom: 2px solid currentColor; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.text-link:hover { color: var(--red); }
.light-link { color: var(--white); }
.light-link:hover { color: var(--yellow); }

.hero { position: relative; min-height: max(700px, calc(100svh - 114px)); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); color: var(--white); }
.hero-media, .hero-media img, .hero-wash { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 56%; filter: saturate(.8) contrast(1.06); }
.hero-wash { background: linear-gradient(90deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.57) 43%, rgba(5,5,5,.12) 75%), linear-gradient(0deg, rgba(5,5,5,.82), transparent 58%); }
.hero-copy { position: relative; z-index: 2; padding-bottom: clamp(72px, 9vh, 120px); }
.hero h1 { max-width: 950px; margin: 0; font: 900 clamp(64px, 10.2vw, 154px)/.78 var(--display); letter-spacing: -.075em; text-transform: uppercase; }
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: transparent; -webkit-text-stroke: 2px var(--white); text-shadow: 8px 5px 0 rgba(200,32,45,.82); }
.hero-intro { max-width: 560px; margin: 33px 0 28px; color: #ddd8cd; font-size: clamp(15px, 1.35vw, 19px); }
.hero-actions { display: flex; gap: 10px; }
.hero-stamp { position: absolute; z-index: 2; right: clamp(28px, 5vw, 80px); bottom: 72px; display: grid; width: 134px; height: 134px; place-items: center; align-content: center; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; text-align: center; transform: rotate(8deg); }
.hero-stamp::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(255,255,255,.45); border-radius: inherit; }
.hero-stamp span { font: 900 27px/1 var(--display); }
.hero-stamp small { margin-top: 7px; font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.hero-scroll { position: absolute; z-index: 3; right: 18px; bottom: 20px; display: flex; align-items: center; gap: 12px; writing-mode: vertical-rl; font-size: 8px; font-weight: 900; letter-spacing: .2em; }
.hero-scroll i { width: 2px; height: 44px; background: linear-gradient(var(--yellow), transparent); }

.manifesto { display: grid; grid-template-columns: 1fr 4fr; gap: 8vw; border-bottom: 1px solid var(--line); }
.manifesto h2 { max-width: 1050px; margin: 0; font: 900 clamp(43px, 6.5vw, 94px)/.9 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.manifesto h2 em { color: var(--red); font-style: normal; }
.manifesto-copy { display: grid; grid-template-columns: minmax(260px, 550px) auto; align-items: end; gap: 60px; margin-top: 45px; }
.manifesto-copy p { margin: 0; color: #4e4b45; font-size: clamp(16px, 1.4vw, 20px); }

.collection-feature { min-height: 720px; display: grid; grid-template-columns: 1.15fr .85fr; background: var(--ink); color: var(--white); }
.collection-feature-media { min-height: 620px; overflow: hidden; background: #181714; }
.collection-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.collection-feature:hover .collection-feature-media img { transform: scale(1.025); }
.collection-feature-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(60px, 7vw, 120px); background: radial-gradient(circle at 100% 0, rgba(138,33,111,.42), transparent 30%), var(--ink); }
.collection-feature-copy .section-number { margin-bottom: 80px; color: #8d8981; }
.collection-feature-copy h2 { margin: 0; font: 900 clamp(50px, 6vw, 90px)/.86 var(--display); letter-spacing: -.06em; text-transform: uppercase; }
.collection-feature-copy > p:not(.section-number, .eyebrow) { max-width: 520px; margin: 28px 0 38px; color: #bbb7ae; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: clamp(45px, 6vw, 80px); }
.section-heading h2 { margin: 0; font: 900 clamp(44px, 6.3vw, 88px)/.88 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.section-heading.compact h2 { font-size: clamp(42px, 5.6vw, 78px); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 54px 16px; }
.product-card { min-width: 0; }
.product-card-media { position: relative; display: block; aspect-ratio: .78; overflow: hidden; background: var(--paper-deep); }
.product-card-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(0,0,0,.06); pointer-events: none; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s; }
.product-card:hover img { transform: scale(1.04); filter: saturate(1.08); }
.media-placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: var(--ink); color: var(--paper); font: 900 clamp(28px, 5vw, 64px)/1 var(--display); }
.media-placeholder.large { min-height: 600px; }
.product-index { position: absolute; z-index: 2; top: 12px; left: 13px; display: grid; width: 30px; height: 30px; place-items: center; background: var(--ink); color: var(--white); font-size: 8px; font-weight: 900; }
.product-badge { position: absolute; z-index: 2; top: 12px; right: 12px; padding: 7px 9px; background: var(--yellow); color: var(--ink); font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.product-card-copy { padding-top: 15px; }
.product-card-copy > p { margin: 0 0 4px; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.product-card-copy h3 { margin: 0; font-size: 15px; line-height: 1.2; }
.product-card-copy h3 a:hover { color: var(--red); }
.product-card-copy > div { display: flex; justify-content: space-between; gap: 10px; margin-top: 11px; padding-top: 11px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 800; }
.product-card-copy i { color: var(--red); font-style: normal; }

.brand-break { position: relative; overflow: hidden; padding: 95px 0 115px; background: var(--red); color: var(--white); }
.brand-break-word { width: max-content; margin-left: -2vw; color: transparent; font: 900 clamp(80px, 16vw, 240px)/.74 var(--display); letter-spacing: -.08em; white-space: nowrap; -webkit-text-stroke: 1px rgba(255,255,255,.28); }
.brand-break-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(45px, 8vw, 130px); margin-top: 70px; }
.brand-break-media { aspect-ratio: 1.2; overflow: hidden; box-shadow: 18px 18px 0 var(--yellow); transform: rotate(-2deg); }
.brand-break-media img { width: 100%; height: 100%; object-fit: cover; }
.brand-break-copy h2 { margin: 0; font: 900 clamp(46px, 6vw, 84px)/.87 var(--display); letter-spacing: -.055em; }
.brand-break-copy > p:not(.section-number,.eyebrow) { max-width: 560px; margin: 28px 0; color: #fff2e9; font-size: 18px; }

.rider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rider-card > div { aspect-ratio: .82; overflow: hidden; background: #d7d2c7; }
.rider-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); transition: transform .55s, filter .35s; }
.rider-card:hover img { transform: scale(1.035); filter: grayscale(0); }
.rider-card > p { display: grid; grid-template-columns: 1fr auto; margin: 0; padding: 16px 0; border-bottom: 2px solid var(--ink); }
.rider-card p span { grid-column: 1/-1; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.rider-card p b { margin-top: 4px; font-size: 18px; }
.rider-card p i { align-self: end; color: var(--red); font-style: normal; }

.stories-section { background: var(--ink); color: var(--white); }
.story-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story-card > div { aspect-ratio: 1.12; overflow: hidden; background: #1a1916; }
.story-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .55s, filter .35s; }
.story-card:hover img { transform: scale(1.035); filter: saturate(1); }
.story-card > p { margin: 17px 0 7px; color: var(--yellow); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.story-card h3 { margin: 0 0 18px; font: 900 clamp(20px, 2vw, 30px)/1.02 var(--display); text-transform: uppercase; }
.story-card > span { color: #88857e; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.store-cta { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; padding-block: clamp(85px, 9vw, 135px); }
.store-cta h2 { margin: 0; font: 900 clamp(58px, 8vw, 114px)/.83 var(--display); letter-spacing: -.065em; }
.store-cta > div:last-child { display: grid; justify-items: start; padding-bottom: 8px; }
.store-cta > div:last-child p { max-width: 520px; margin: 0 0 26px; color: #5a5750; font-size: 18px; }

.site-footer { overflow: hidden; background: var(--ink); color: var(--white); }
.footer-marquee { display: flex; width: max-content; border-block: 1px solid var(--line-light); color: var(--yellow); font: 900 21px/1 var(--display); white-space: nowrap; animation: marquee 24s linear infinite; }
.footer-marquee span { display: block; padding: 18px 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(2, .8fr) 1.2fr; gap: clamp(30px, 5vw, 80px); padding-block: 78px; }
.footer-grid section { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid p { margin: 0; }
.footer-grid section > a:not(.text-link) { color: #bfbbb2; font-size: 12px; }
.footer-grid section > a:hover { color: var(--yellow); }
.footer-label { margin-bottom: 10px!important; color: #77736c; font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.footer-wordmark { color: var(--white); font: 900 clamp(56px, 7vw, 95px)/.75 var(--display); letter-spacing: -.07em; }
.footer-brand > p:last-child, .footer-planeta > p:nth-child(2) { color: #8e8a82; font-size: 12px; }
.footer-planeta .text-link { margin-top: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 19px; border-top: 1px solid var(--line-light); color: #77736c; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom a { color: #aaa69e; }

/* Indexes, editorial pages and product detail */
.page-heading { padding-block: clamp(90px, 10vw, 150px) clamp(60px, 7vw, 100px); }
.page-heading.compact-heading { padding-block: 0 50px; }
.page-heading h1, .page-hero h1, .collection-hero h1, .story-detail-head h1, .checkout-heading h1, .account-head h1, .staff-head h1 { margin: 0; font: 900 clamp(58px, 9.5vw, 136px)/.82 var(--display); letter-spacing: -.07em; text-transform: uppercase; }
.page-heading > p:last-child, .page-heading > div > p:last-child { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: clamp(15px, 1.5vw, 19px); }
.dark-heading { width: 100%; background: var(--ink); color: var(--white); }
.dark-heading > .shell { padding-block: clamp(90px, 10vw, 150px) clamp(70px, 8vw, 110px); }
.dark-heading > .shell > p:last-child { color: #a9a59c; }
.catalog-section { padding-bottom: 140px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 6px; padding-block: 18px; border-block: 1px solid var(--line); }
.filter-bar a { display: inline-flex; align-items: center; min-height: 36px; padding: 0 15px; border: 1px solid transparent; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.filter-bar a:hover { color: var(--ink); border-color: var(--ink); }
.filter-bar a.active { background: var(--ink); color: var(--white); }
.catalog-meta { display: flex; justify-content: space-between; margin: 24px 0 36px; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }

.collection-index { display: grid; grid-template-columns: repeat(2, 1fr); gap: 90px 18px; padding-bottom: 150px; }
.collection-card { position: relative; min-width: 0; }
.collection-card > div { aspect-ratio: 1.35; overflow: hidden; background: var(--paper-deep); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.collection-card:hover img { transform: scale(1.035); }
.collection-card > span, .collection-card > p { display: block; margin: 16px 0 0; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.collection-card h2 { margin: 4px 55px 0 0; font: 900 clamp(31px, 4vw, 58px)/.9 var(--display); letter-spacing: -.045em; text-transform: uppercase; }
.collection-card > p { margin-top: 9px; }
.collection-card > i { position: absolute; right: 6px; bottom: 6px; color: var(--red); font-size: 28px; font-style: normal; }
.collection-hero { position: relative; min-height: 760px; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); color: var(--white); }
.collection-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,5,5,.88), transparent 65%); }
.collection-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collection-hero > .shell { position: relative; z-index: 2; padding-bottom: 75px; }
.collection-copy { display: grid; grid-template-columns: 1fr 3fr; gap: 8vw; }
.collection-copy > div { max-width: 800px; color: #4f4c46; font-size: 19px; }
.collection-copy > div p:first-child { margin-top: 0; }
.collection-copy + .products-section { padding-bottom: 140px; }

.breadcrumb { display: flex; align-items: center; gap: 10px; padding: 28px 0; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--red); }
.product-detail { padding-bottom: 130px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(360px, .55fr); align-items: start; gap: clamp(35px, 6vw, 90px); }
.product-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.product-gallery figure { margin: 0; background: var(--paper-deep); }
.product-gallery figure:first-child { grid-column: 1/-1; }
.product-gallery img { width: 100%; aspect-ratio: .84; object-fit: cover; }
.product-gallery figure:first-child img { aspect-ratio: 1.12; }
.product-gallery figcaption { padding: 10px; color: var(--muted); font-size: 9px; }
.product-info { position: sticky; top: calc(var(--header-height) + 26px); padding-top: 22px; }
.product-info h1 { margin: 0; font: 900 clamp(44px, 5vw, 72px)/.88 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.product-description { margin: 28px 0; color: #55524c; font-size: 17px; }
.product-specs { margin: 26px 0; padding-block: 20px; border-block: 1px solid var(--line); color: #514e48; font-size: 13px; }
.product-specs > p:first-child { margin: 0 0 10px; color: var(--ink); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.product-specs p { margin: 6px 0; }
.buy-form { display: grid; gap: 10px; margin-top: 32px; padding: 25px; background: var(--white); border: 1px solid var(--line); }
.buy-form label { font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.buy-form select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--ink); border-radius: 0; background: var(--paper); color: var(--ink); }
.product-info > small { display: block; margin: 15px 0; color: var(--muted); font-size: 9px; }
.product-promises { display: grid; gap: 0; margin-top: 25px; border-top: 1px solid var(--line); }
.product-promises span { padding: 12px 0; border-bottom: 1px solid var(--line); color: #4b4842; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-promises span::before { content: "●"; margin-right: 10px; color: var(--red); }

.page-hero { padding-block: clamp(115px, 13vw, 200px) clamp(75px, 8vw, 120px); background: radial-gradient(circle at 80% 10%, rgba(200,32,45,.34), transparent 34%), var(--ink); color: var(--white); }
.page-hero h1 { max-width: 1150px; }
.page-hero > .shell > p:last-child { margin: 30px 0 0; color: var(--yellow); font-size: 18px; }
.about-intro { display: grid; grid-template-columns: .6fr 1.3fr 1fr; gap: clamp(35px, 6vw, 95px); }
.about-intro h2 { margin: 0; font: 900 clamp(42px, 5vw, 74px)/.86 var(--display); letter-spacing: -.055em; }
.about-intro > div:last-child { color: #514e47; font-size: 17px; }
.about-intro > div:last-child p:first-child { margin-top: 0; }
.timeline { background: var(--yellow); }
.timeline-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.timeline article { min-height: 280px; padding: 42px; border-right: 1px solid rgba(5,5,5,.25); }
.timeline article:first-child { border-left: 1px solid rgba(5,5,5,.25); }
.timeline span { font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.timeline h3 { margin: 55px 0 12px; font: 900 30px/1 var(--display); }
.timeline p { max-width: 300px; margin: 0; }
.about-visual { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: clamp(40px, 8vw, 130px); }
.about-visual > div { aspect-ratio: 1.15; overflow: hidden; box-shadow: 18px 18px 0 var(--blue); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-visual blockquote { margin: 0; font: 900 clamp(31px, 4.2vw, 59px)/.95 var(--display); letter-spacing: -.04em; }
.values { display: grid; grid-template-columns: .7fr 3fr; gap: 7vw; border-top: 1px solid var(--line); }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.value-grid article { min-height: 300px; padding: 30px; border-left: 1px solid var(--line); }
.value-grid span { color: var(--red); font-size: 9px; font-weight: 900; }
.value-grid h3 { margin: 95px 0 12px; font: 900 24px/1 var(--display); }
.value-grid p { margin: 0; color: var(--muted); }

.stockist-card { display: grid; grid-template-columns: .7fr 2fr 1fr auto; align-items: center; gap: clamp(24px, 5vw, 80px); margin-bottom: 18px; padding: clamp(35px, 5vw, 70px); background: var(--red); color: var(--white); }
.stockist-card > div span, .stockist-card > div p { display: block; margin: 0; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.stockist-card > div span { margin-bottom: 50px; color: var(--yellow); }
.stockist-card h2 { margin: 0; font: 900 clamp(43px, 5.4vw, 78px)/.84 var(--display); letter-spacing: -.055em; }
.stockist-card > p { color: #ffe7e4; }
.secondary-stockist { margin-bottom: 130px; background: var(--paper-deep); color: var(--ink); }
.secondary-stockist > p { color: var(--muted); }

.team-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px 17px; padding-bottom: 140px; }
.team-profile-card > div { position: relative; aspect-ratio: .8; overflow: hidden; background: var(--paper-deep); }
.team-profile-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25); transition: .5s; }
.team-profile-card:hover img { transform: scale(1.035); filter: grayscale(0); }
.team-profile-card > div > span { position: absolute; top: 13px; left: 13px; display: grid; width: 34px; height: 34px; place-items: center; background: var(--ink); color: var(--white); font-size: 8px; font-weight: 900; }
.team-profile-card > p { margin: 16px 0 5px; color: var(--red); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.team-profile-card h2 { margin: 0; font: 900 clamp(25px, 3vw, 42px)/.9 var(--display); letter-spacing: -.035em; text-transform: uppercase; }
.team-profile-card small { color: var(--muted); }
.rider-detail { min-height: calc(100svh - var(--header-height)); display: grid; grid-template-columns: 1.15fr .85fr; background: var(--ink); color: var(--white); }
.rider-portrait { min-height: 720px; overflow: hidden; }
.rider-portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); }
.rider-detail-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(50px, 8vw, 125px); }
.rider-detail-copy h1 { margin: 0; font: 900 clamp(55px, 7vw, 105px)/.82 var(--display); letter-spacing: -.065em; text-transform: uppercase; }
.rider-detail-copy blockquote { margin: 38px 0 26px; padding-left: 20px; border-left: 5px solid var(--yellow); color: #e0dcd3; font: 900 clamp(20px, 2.2vw, 33px)/1.08 var(--display); }
.rider-detail-copy > div { max-width: 620px; color: #aaa69e; }
.rider-detail-copy .text-link { margin-top: 30px; }

.story-index { display: grid; grid-template-columns: repeat(2, 1fr); gap: 95px 20px; padding-block: 110px 150px; }
.story-index-card > div { position: relative; aspect-ratio: 1.25; overflow: hidden; background: var(--paper-deep); }
.story-index-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.story-index-card:hover img { transform: scale(1.035); }
.story-index-card > div span { position: absolute; top: 14px; left: 14px; display: grid; width: 35px; height: 35px; place-items: center; background: var(--yellow); color: var(--ink); font-size: 8px; font-weight: 900; }
.story-index-card > p { margin: 17px 0 7px; color: var(--red); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.story-index-card h2 { margin: 0; font: 900 clamp(31px, 4vw, 57px)/.9 var(--display); letter-spacing: -.045em; text-transform: uppercase; }
.story-index-card > small { display: block; max-width: 640px; margin-top: 13px; color: var(--muted); font-size: 14px; }
.story-index-card > i { display: block; margin-top: 18px; color: var(--red); font-size: 9px; font-style: normal; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.story-detail { padding: 110px 0 150px; }
.story-detail-head { max-width: 1160px; }
.story-detail-head h1 { max-width: 1100px; }
.story-detail-head > p:last-child { max-width: 760px; margin: 36px 0 0; color: var(--muted); font-size: 20px; }
.story-cover { width: min(1640px, calc(100% - 40px)); margin: 80px auto 0; }
.story-cover img { width: 100%; max-height: 900px; object-fit: cover; }
.story-body { max-width: 850px; padding-top: 80px; color: #34322e; font-size: 19px; line-height: 1.75; }
.story-body p:first-child { margin-top: 0; }

/* Forms and commerce */
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field-full { grid-column: 1/-1; }
.field { display: grid; gap: 7px; }
.field label { font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field select, .field textarea, .staff-filters select { width: 100%; min-height: 50px; padding: 11px 13px; border: 1px solid #aaa69e; border-radius: 0; background: var(--white); color: var(--ink); outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 2px var(--yellow); }
.field .errorlist, .auth-form .errorlist, .checkout-form .errorlist { margin: 0; padding: 0; color: var(--danger); font-size: 10px; list-style: none; }
.form-alert { padding: 14px; border-left: 4px solid var(--danger); background: #fae2e2; color: #65131d; font-size: 12px; }

.cart-page { padding-block: 75px 130px; }
.cart-panel { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr); align-items: start; gap: clamp(40px, 7vw, 100px); }
.cart-panel > .cart-count { display: none; }
.cart-table-head { display: grid; grid-template-columns: 1fr 95px 120px; padding: 0 0 13px 150px; border-bottom: 2px solid var(--ink); color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.cart-line { position: relative; display: grid; grid-template-columns: 125px minmax(0,1fr) 95px 120px; align-items: center; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-line-image { aspect-ratio: .83; overflow: hidden; background: var(--paper-deep); }
.cart-line-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info > p { margin: 0 0 4px; color: var(--red); font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.cart-line-info h2 { margin: 0; font-size: 15px; }
.cart-line-info > span { color: var(--muted); font-size: 10px; }
.mobile-line-price { display: none; }
.cart-quantity select { width: 66px; height: 42px; padding: 0 10px; border: 1px solid var(--ink); border-radius: 0; background: var(--white); }
.cart-line-total { font-size: 13px; text-align: right; }
.cart-remove { position: absolute; right: 0; bottom: 9px; }
.cart-remove button { padding: 3px 0; border: 0; border-bottom: 1px solid; background: transparent; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.keep-shopping { margin-top: 24px; }
.cart-summary { position: sticky; top: calc(var(--header-height) + 25px); padding: 30px; background: var(--ink); color: var(--white); }
.cart-summary > div:not(.summary-total,.secure-note) { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line-light); color: #aba79f; font-size: 11px; }
.summary-total { display: flex; justify-content: space-between; align-items: end; padding: 24px 0 18px; }
.summary-total strong { font-size: 22px; }
.summary-total small { color: #8c8881; font-size: 8px; }
.summary-note { color: #8d8981; font-size: 9px; }
.checkout-button { width: 100%; margin-top: 14px; background: var(--red); }
.checkout-button:hover { background: var(--yellow); color: var(--ink); }
.secure-note { margin-top: 17px; color: #8d8981; font-size: 8px; text-align: center; text-transform: uppercase; }
.secure-note span { color: #4ada89; }
.cart-empty { grid-column: 1/-1; min-height: 480px; display: grid; place-items: center; align-content: center; padding: 60px; border: 1px solid var(--line); text-align: center; }
.cart-empty h2 { max-width: 700px; margin: 0; font: 900 clamp(42px, 6vw, 80px)/.88 var(--display); letter-spacing: -.05em; }
.cart-empty > p:not(.eyebrow) { color: var(--muted); }
.empty-orbit { color: var(--red); font-size: 70px; line-height: 1; }

.checkout-page { padding-block: 58px 130px; }
.checkout-heading { display: grid; grid-template-columns: 180px 1fr 180px; align-items: start; margin-bottom: 60px; }
.checkout-heading > a, .checkout-lock { padding-top: 8px; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.checkout-heading > div { text-align: center; }
.checkout-heading .eyebrow { justify-content: center; }
.checkout-heading h1 { font-size: clamp(52px, 7vw, 100px); }
.checkout-lock { text-align: right; }
.checkout-lock::first-letter { color: var(--success); }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .48fr); align-items: start; gap: clamp(45px, 7vw, 100px); }
.checkout-form { display: grid; gap: 14px; }
.guest-checkout-note { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px; border: 1px solid var(--line); background: var(--white); }
.guest-checkout-note > div { display: flex; align-items: center; gap: 13px; }
.guest-checkout-note > div > span { color: var(--red); font-size: 25px; }
.guest-checkout-note p { display: grid; margin: 0; }
.guest-checkout-note small { color: var(--muted); }
.guest-checkout-note > a { border-bottom: 1px solid; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.checkout-step { padding: 30px; border: 1px solid var(--line); background: var(--white); }
.step-title { display: flex; gap: 17px; margin-bottom: 25px; }
.step-title > span { display: grid; flex: 0 0 35px; height: 35px; place-items: center; background: var(--ink); color: var(--white); font-size: 8px; font-weight: 900; }
.step-title h2 { margin: 0; font: 900 24px/1 var(--display); text-transform: uppercase; }
.step-title p { margin: 6px 0 0; color: var(--muted); font-size: 11px; }
.radio-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.radio-card { position: relative; min-height: 80px; display: flex; align-items: center; gap: 12px; padding: 15px; border: 1px solid #aaa69e; cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; }
.radio-indicator { flex: 0 0 16px; width: 16px; height: 16px; border: 1px solid var(--ink); border-radius: 50%; }
.radio-card:has(input:checked) { border: 2px solid var(--ink); background: #faf7ee; }
.radio-card:has(input:checked) .radio-indicator { border: 5px solid var(--red); }
.radio-card > span:last-child { display: grid; }
.radio-card b { font-size: 11px; }
.radio-card small { color: var(--muted); font-size: 9px; }
.shipping-address { margin-top: 20px; }
.shipping-address.is-hidden { display: none; }
.final-step { display: grid; gap: 18px; }
.terms-check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 10px; }
.terms-check input { margin-top: 3px; accent-color: var(--red); }
.place-order-note { margin: 0; color: var(--muted); font-size: 9px; text-align: center; }
.checkout-summary { position: sticky; top: calc(var(--header-height) + 25px); padding: 28px; background: var(--ink); color: var(--white); }
.checkout-products { display: grid; gap: 14px; margin: 23px 0; }
.checkout-product { display: grid; grid-template-columns: 62px 1fr auto; align-items: center; gap: 12px; }
.checkout-product > div { position: relative; width: 62px; height: 72px; background: #1b1a18; }
.checkout-product img { width: 100%; height: 100%; object-fit: cover; }
.checkout-product > div > span { position: absolute; top: -6px; right: -6px; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: var(--red); font-size: 8px; font-weight: 900; }
.checkout-product p { display: grid; margin: 0; }
.checkout-product b { font-size: 11px; }
.checkout-product small { color: #8e8a82; font-size: 9px; }
.checkout-product > strong { font-size: 11px; }
.checkout-totals { padding-top: 12px; border-top: 1px solid var(--line-light); }
.checkout-totals > div { display: flex; justify-content: space-between; padding: 10px 0; color: #a5a199; font-size: 10px; }
.checkout-totals > div:last-child { margin-top: 5px; padding-top: 18px; border-top: 1px solid var(--line-light); color: var(--white); }
.checkout-totals > div:last-child strong { font-size: 18px; }
.checkout-totals small { color: #8e8a82; font-size: 8px; }
.summary-trust { color: #8e8a82; font-size: 8px; text-align: center; text-transform: uppercase; }
.summary-trust span { color: #4ada89; }

/* Confirmation, account and staff screens */
.success-page { padding-block: 80px 140px; }
.success-hero { max-width: 970px; margin: 0 auto 78px; text-align: center; }
.success-hero .eyebrow { justify-content: center; }
.success-orbit { display: grid; width: 82px; height: 82px; place-items: center; margin: 0 auto 28px; border: 2px solid var(--ink); border-radius: 50%; box-shadow: 7px 5px 0 var(--yellow); color: var(--success); font-size: 30px; font-weight: 900; }
.success-hero h1 { margin: 0; font: 900 clamp(65px, 10vw, 138px)/.8 var(--display); letter-spacing: -.075em; }
.success-hero h1 em { color: var(--red); font-style: normal; }
.success-hero > p:last-child { max-width: 700px; margin: 28px auto 0; color: var(--muted); font-size: 17px; }
.success-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; max-width: 1120px; margin: auto; }
.order-card, .next-steps, .order-address { padding: 30px; border: 1px solid var(--line); background: var(--white); }
.order-card-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 22px; border-bottom: 2px solid var(--ink); }
.order-card-head h2 { margin: 4px 0 0; font: 900 26px/1 var(--display); text-transform: uppercase; }
.order-card-head > span { color: var(--muted); font-size: 9px; }
.order-item { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.order-item > span { color: var(--red); font-size: 10px; font-weight: 900; }
.order-item p { display: grid; margin: 0; }
.order-item b { font-size: 12px; }
.order-item small { color: var(--muted); font-size: 9px; }
.order-item strong { font-size: 11px; }
.order-card-totals { padding-top: 13px; }
.order-card-totals > div { display: flex; justify-content: space-between; padding: 7px 0; color: var(--muted); font-size: 11px; }
.order-card-totals > div:last-child { margin-top: 8px; padding-top: 16px; border-top: 2px solid var(--ink); color: var(--ink); font-size: 15px; }
.next-steps ol { display: grid; margin: 21px 0 0; padding: 0; list-style: none; }
.next-steps li { display: flex; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.next-steps li > span { color: var(--red); font-size: 9px; font-weight: 900; }
.next-steps li p { display: grid; margin: 0; }
.next-steps li b { font-size: 12px; }
.next-steps li small { color: var(--muted); }
.success-actions { display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 50px; }
.order-detail-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.order-address h2 { margin: 7px 0 20px; font: 900 25px/1 var(--display); text-transform: uppercase; }
.order-address p { color: var(--muted); }

.auth-page { min-height: calc(100svh - var(--header-height)); display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual { position: sticky; top: var(--header-height); min-height: 760px; height: calc(100svh - var(--header-height)); display: flex; align-items: flex-end; padding: clamp(45px, 7vw, 100px); background: linear-gradient(0deg, rgba(5,5,5,.88), transparent 67%), url("/static/images/play-about.5e4ca93d6c35.jpg") center/cover; color: var(--white); }
.register-visual { background-image: linear-gradient(0deg, rgba(5,5,5,.88), transparent 67%), url("/static/images/play-craft.d133fff1b779.jpg"); }
.auth-visual p { margin: 0 0 8px; color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.auth-visual h2 { margin: 0; font: 900 clamp(42px, 5vw, 75px)/.87 var(--display); letter-spacing: -.05em; }
.auth-panel { display: grid; min-height: 760px; place-items: center; padding: 70px; }
.auth-form-wrap { width: min(500px, 100%); }
.auth-form-wrap h1 { margin: 0; font: 900 clamp(49px, 6vw, 80px)/.88 var(--display); letter-spacing: -.055em; }
.auth-intro { margin: 20px 0 32px; color: var(--muted); }
.auth-form { display: grid; gap: 17px; }
.auth-form .button { width: 100%; margin-top: 6px; }
.help-text { color: var(--muted); font-size: 9px; }
.help-text ul { margin: 5px 0 0; padding-left: 17px; }
.forgot-link { justify-self: end; margin-top: -8px; padding-bottom: 2px; border-bottom: 1px solid; color: var(--muted); font-size: 9px; }
.auth-switch { margin: 25px 0; color: var(--muted); text-align: center; }
.auth-switch a { border-bottom: 1px solid var(--ink); color: var(--ink); font-weight: 800; }
.guest-path { display: grid; justify-items: center; gap: 10px; color: var(--muted); }
.guest-path span { font-size: 9px; }
.guest-path a { font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.simple-auth { min-height: 72vh; display: grid; place-items: center; padding-block: 100px; }
.simple-auth > div { width: min(620px, 100%); padding: clamp(32px, 6vw, 75px); border: 1px solid var(--line); background: radial-gradient(circle at 100% 0, rgba(231,210,44,.35), transparent 30%), var(--white); }
.simple-auth h1 { margin: 0; font: 900 clamp(47px, 7vw, 83px)/.86 var(--display); letter-spacing: -.055em; }
.simple-auth > div > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); }
.simple-auth .back-link { display: inline-block; margin-top: 25px; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }

.account-page, .staff-page { min-height: 72vh; padding-block: 80px 140px; }
.account-head, .staff-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 35px; margin-bottom: 55px; }
.account-head h1, .staff-head h1 { max-width: 1050px; font-size: clamp(50px, 7.2vw, 100px); overflow-wrap: anywhere; }
.account-head > div > p:last-child, .staff-head > div > p:last-child { color: var(--muted); }
.account-head form button { border: 0; }
.staff-banner { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 20px; margin-bottom: 55px; padding: 22px 25px; border: 2px solid var(--ink); background: var(--yellow); }
.staff-banner > span { font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.staff-banner p { display: grid; margin: 0; }
.staff-banner small { color: #514f47; }
.staff-banner i { color: var(--red); font-style: normal; font-size: 22px; }
.account-section-head, .staff-card-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.account-section-head h2, .staff-card-head h2 { margin: 4px 0 0; font: 900 29px/1 var(--display); text-transform: uppercase; }
.account-section-head > a, .staff-card-head > a { color: var(--muted); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.orders-list { border-top: 2px solid var(--ink); }
.account-order { display: grid; grid-template-columns: 140px 140px 1fr 140px 20px; align-items: center; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.account-order:hover { background: rgba(255,255,255,.45); }
.account-order .order-number { font-weight: 900; }
.account-order > strong { text-align: right; }
.account-order i { color: var(--red); font-style: normal; }
.status-pill { display: inline-flex; width: max-content; min-height: 24px; align-items: center; padding: 0 9px; border: 1px solid #858179; color: #4d4a45; font-size: 7px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.status-confirmed, .status-paid, .status-active, .status-completed { border-color: var(--success); color: var(--success); }
.status-pending, .status-preparing { border-color: var(--orange); color: #a14818; }
.status-cancelled, .status-out { border-color: var(--danger); color: var(--danger); }
.account-empty { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 20px; padding: 36px; border: 1px solid var(--line); background: var(--white); }
.account-empty > span { color: var(--red); font-size: 50px; }
.account-empty p { display: grid; margin: 0; }
.account-empty small { color: var(--muted); }

.staff-nav { display: flex; gap: 30px; margin-bottom: 40px; border-bottom: 2px solid var(--ink); }
.staff-nav a { position: relative; padding: 0 0 15px; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.staff-nav a.active { color: var(--ink); }
.staff-nav a.active::after { content: ""; position: absolute; right: 0; bottom: -2px; left: 0; height: 5px; background: var(--red); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 52px; }
.metric-grid article { min-height: 160px; display: grid; align-content: space-between; padding: 22px; border: 1px solid var(--line); background: var(--white); }
.metric-grid article > span { color: var(--red); font-size: 8px; font-weight: 900; }
.metric-grid p { margin: 0; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.metric-grid strong { font: 900 36px/1 var(--display); }
.staff-columns { display: grid; grid-template-columns: 1.35fr .65fr; gap: 16px; }
.staff-card { padding: 25px; border: 1px solid var(--line); background: var(--white); }
.staff-table > a { display: grid; grid-template-columns: 80px 1fr 105px 95px; align-items: center; gap: 12px; padding: 15px 0; border-top: 1px solid var(--line); }
.staff-table > a > span:first-child { color: var(--red); font-size: 9px; font-weight: 900; }
.staff-table p, .stock-list p, .data-row p { display: grid; margin: 0; }
.staff-table b, .stock-list b, .data-row b { font-size: 11px; }
.staff-table small, .stock-list small, .data-row small { color: var(--muted); font-size: 8px; }
.staff-table > a > strong { text-align: right; font-size: 10px; }
.stock-list > a { display: grid; grid-template-columns: 42px 1fr 20px; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.stock-number { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--orange); color: #9c4519; font-size: 10px; font-weight: 900; }
.stock-number.out { border-color: var(--danger); color: var(--danger); }
.stock-list i { color: var(--red); font-style: normal; }
.staff-empty { padding: 30px 0; color: var(--muted); }
.staff-filters { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.staff-filters label { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.staff-filters select { width: auto; min-width: 170px; min-height: 42px; }
.data-table { border: 1px solid var(--line); background: var(--white); }
.data-table-head, .data-row { display: grid; grid-template-columns: 2fr 1fr .7fr .7fr .8fr 25px; align-items: center; gap: 18px; padding: 14px 20px; }
.data-table-head { background: var(--ink); color: #aaa69e; font-size: 7px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.data-row { min-height: 68px; border-top: 1px solid var(--line); font-size: 11px; }
.data-row:hover { background: #fbf8ef; }
.data-row i { color: var(--red); font-style: normal; }
.orders-table .data-table-head, .orders-table .data-row { grid-template-columns: .6fr 1.3fr .9fr 1.15fr .8fr .7fr; }

/* Motion is progressively enhanced: content never disappears without JS. */
.reveal.reveal-pending { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.reveal.reveal-pending.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .shell { width: min(100% - 40px, 1200px); }
  .site-header { grid-template-columns: 205px 1fr 190px; padding-inline: 20px; }
  .site-menu > a { padding-inline: 10px; letter-spacing: .08em; }
  .site-menu > a:nth-child(4), .site-menu > a:nth-child(5) { display: none; }
  .header-actions > a { padding-inline: 11px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail-grid { grid-template-columns: minmax(0,1.2fr) minmax(330px,.8fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 35px; }
  .cart-panel { gap: 45px; }
  .checkout-grid { gap: 45px; }
}

@media (max-width: 920px) {
  :root { --header-height: 70px; }
  .ecosystem-bar { justify-content: center; text-align: center; }
  .ecosystem-bar a { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; min-height: var(--header-height); padding-inline: 20px; }
  .site-header.is-scrolled { min-height: 64px; }
  .brand-lockup img { width: 40px; height: 40px; }
  .brand-lockup b { font-size: 17px; }
  .brand-lockup small { display: none; }
  .menu-toggle { display: grid; width: 48px; height: 48px; place-content: center; gap: 5px; order: 3; padding: 0; border: 0; background: transparent; }
  .menu-toggle span { display: block; width: 23px; height: 2px; background: var(--white); transition: transform .2s, opacity .2s; }
  .menu-toggle em { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-menu { position: absolute; top: 100%; right: 0; left: 0; display: none; height: calc(100svh - var(--header-height)); align-content: start; overflow-y: auto; padding: 28px 20px 80px; background: rgba(5,5,5,.99); }
  .site-menu.is-open { display: grid; }
  .site-menu > a, .site-menu > a:nth-child(4), .site-menu > a:nth-child(5) { display: flex; min-height: 66px; justify-content: space-between; padding: 0; border-bottom: 1px solid var(--line-light); color: var(--white); font: 900 clamp(29px, 7vw, 48px)/1 var(--display); letter-spacing: -.04em; }
  .site-menu > a::after { content: "↗"; position: static; width: auto; height: auto; background: none; color: var(--red); font: 20px var(--body); transform: none; }
  .site-menu .menu-store { margin-top: 25px; padding-inline: 18px; background: var(--yellow); color: var(--ink); }
  .header-actions { order: 2; }
  .header-actions > a:first-child { display: none; }
  .header-cart { border: 0!important; }
  .header-cart > span { display: none; }
  .hero { min-height: 740px; }
  .hero-media img { object-position: 61% center; }
  .hero-wash { background: linear-gradient(0deg, rgba(5,5,5,.9), rgba(5,5,5,.16) 72%); }
  .hero-stamp { display: none; }
  .manifesto { grid-template-columns: 1fr; gap: 35px; }
  .manifesto-copy { grid-template-columns: 1fr; gap: 25px; }
  .collection-feature { grid-template-columns: 1fr; }
  .collection-feature-media { min-height: 650px; }
  .collection-feature-copy { padding-block: 85px; }
  .collection-feature-copy .section-number { margin-bottom: 50px; }
  .brand-break-grid { gap: 55px; }
  .store-cta { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 25px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-info { position: static; padding-top: 30px; }
  .about-intro { grid-template-columns: 1fr 1.1fr; }
  .about-intro > .section-number { grid-column: 1/-1; }
  .about-visual { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .stockist-card { grid-template-columns: 1fr 1fr; }
  .stockist-card > .button { justify-self: start; }
  .rider-detail { grid-template-columns: 1fr; }
  .rider-portrait { min-height: 700px; }
  .rider-detail-copy { padding-block: 85px; }
  .cart-panel, .checkout-grid { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary { position: static; }
  .checkout-summary { grid-row: 1; }
  .checkout-heading { grid-template-columns: 1fr auto; }
  .checkout-heading > div { grid-column: 1/-1; grid-row: 2; margin-top: 35px; text-align: left; }
  .checkout-heading .eyebrow { justify-content: flex-start; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-panel { min-height: 70vh; }
  .success-grid, .order-detail-layout { grid-template-columns: 1fr; }
  .staff-columns { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .data-table { overflow-x: auto; }
  .data-table-head, .data-row { min-width: 820px; }
}

@media (max-width: 680px) {
  .shell { width: calc(100% - 28px); }
  .ecosystem-bar { padding-inline: 12px; font-size: 8px; letter-spacing: .1em; }
  .site-header { padding-inline: 14px; }
  .brand-lockup { gap: 9px; }
  .brand-lockup img { width: 36px; height: 36px; }
  .hero { min-height: 670px; }
  .hero-copy { padding-bottom: 55px; }
  .hero h1 { font-size: clamp(55px, 17vw, 86px); }
  .hero h1 strong { text-shadow: 5px 4px 0 rgba(200,32,45,.82); -webkit-text-stroke-width: 1px; }
  .hero-intro { max-width: 350px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 360px; }
  .hero-scroll { display: none; }
  .section-space { padding-block: 80px; }
  .manifesto h2, .section-heading h2 { font-size: 44px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .collection-feature-media { min-height: 480px; }
  .collection-feature-copy { padding: 70px 20px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px 9px; }
  .product-card-copy h3 { font-size: 12px; }
  .product-card-copy > div { align-items: flex-start; flex-direction: column; gap: 3px; font-size: 10px; }
  .product-card-copy i { display: none; }
  .brand-break { padding-block: 70px 90px; }
  .brand-break-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .brand-break-media { box-shadow: 9px 10px 0 var(--yellow); }
  .rider-grid, .team-index { grid-template-columns: 1fr; }
  .rider-card > div { aspect-ratio: .9; }
  .story-row, .story-index { grid-template-columns: 1fr; }
  .story-row { gap: 55px; }
  .store-cta { padding-block: 80px; }
  .store-cta h2 { font-size: 65px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); padding-block: 60px; }
  .footer-brand, .footer-planeta { grid-column: 1/-1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .page-heading { padding-block: 80px 58px; }
  .page-heading h1, .page-hero h1, .collection-hero h1, .story-detail-head h1 { font-size: clamp(54px, 16vw, 82px); }
  .catalog-section { padding-bottom: 95px; }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; }
  .filter-bar a { flex: 0 0 auto; }
  .collection-index { grid-template-columns: 1fr; gap: 65px; padding-bottom: 100px; }
  .collection-hero { min-height: 620px; }
  .collection-copy { grid-template-columns: 1fr; gap: 35px; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery figure:first-child { grid-column: auto; }
  .product-gallery figure:first-child img, .product-gallery img { aspect-ratio: .82; }
  .media-placeholder.large { min-height: 430px; }
  .page-hero { padding-block: 100px 80px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro > .section-number { grid-column: auto; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline article { min-height: 220px; border: 0; border-bottom: 1px solid rgba(5,5,5,.25); }
  .timeline article:first-child { border-left: 0; }
  .timeline h3 { margin-top: 40px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 220px; border-left: 0; border-top: 1px solid var(--line); }
  .value-grid h3 { margin-top: 65px; }
  .stockist-card { grid-template-columns: 1fr; gap: 25px; }
  .stockist-card > div span { margin-bottom: 25px; }
  .rider-portrait { min-height: 540px; }
  .story-index { padding-block: 75px 100px; }
  .story-detail { padding-block: 80px 100px; }
  .story-cover { margin-top: 55px; }
  .story-body { padding-top: 55px; font-size: 17px; }
  .cart-page { padding-block: 55px 90px; }
  .cart-table-head { display: none; }
  .cart-line { grid-template-columns: 90px 1fr 58px; gap: 12px; padding: 18px 0; }
  .cart-line-total { display: none; }
  .mobile-line-price { display: block; margin-top: 8px; }
  .cart-remove { bottom: 16px; }
  .cart-summary { padding: 23px; }
  .checkout-page { padding-block: 42px 90px; }
  .checkout-lock { font-size: 7px; }
  .checkout-heading h1 { font-size: 50px; }
  .checkout-step, .checkout-summary { padding: 20px; }
  .field-grid, .radio-cards { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .guest-checkout-note { align-items: flex-start; }
  .guest-checkout-note > div > span { display: none; }
  .success-page { padding-block: 60px 100px; }
  .success-hero h1 { font-size: 66px; }
  .order-card, .next-steps, .order-address { padding: 21px; }
  .success-actions { align-items: stretch; flex-direction: column; text-align: center; }
  .auth-panel { min-height: 650px; padding: 70px 20px; }
  .auth-form-wrap h1 { font-size: 53px; }
  .account-page, .staff-page { padding-block: 55px 90px; }
  .account-head, .staff-head { align-items: flex-start; flex-direction: column; gap: 24px; }
  .account-head h1, .staff-head h1 { font-size: 50px; }
  .staff-banner { grid-template-columns: 1fr auto; }
  .staff-banner > span { grid-column: 1/-1; }
  .account-order { grid-template-columns: 1fr auto; gap: 9px; }
  .account-order > span:nth-child(2), .account-order .status-pill { grid-column: 1; }
  .account-order > strong, .account-order > i { grid-column: 2; grid-row: 1; }
  .account-empty { grid-template-columns: 1fr; justify-items: start; }
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 7px; }
  .metric-grid article { min-height: 135px; padding: 16px; }
  .staff-table > a { grid-template-columns: 62px 1fr 80px; }
  .staff-table > a .status-pill { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  .footer-marquee { animation: none; }
  .reveal.reveal-pending { opacity: 1; transform: none; }
}
