@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ink: #171816;
  --ink-soft: #353733;
  --cream: #f4f1eb;
  --paper: #fbfaf7;
  --line: rgba(23, 24, 22, .14);
  --line-light: rgba(244, 241, 235, .2);
  --orange: #ed6946;
  --orange-dark: #be462b;
  --yellow: #f0bf44;
  --blue: #93a9cf;
  --max-width: 1440px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: 'Space Grotesk', 'PingFang SC', 'Microsoft YaHei', sans-serif; font-size: 16px; line-height: 1.5; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.noise { position: fixed; inset: 0; z-index: 20; opacity: .035; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E"); }
.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; }
.section-pad { width: min(100%, var(--max-width)); margin: 0 auto; padding-left: clamp(24px, 5.5vw, 92px); padding-right: clamp(24px, 5.5vw, 92px); }

.site-header { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 78px; padding: 0 clamp(24px, 5.5vw, 92px); background: rgba(244, 241, 235, .88); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); transition: background .3s var(--ease), box-shadow .3s var(--ease); }
.site-header.is-scrolled { background: rgba(244, 241, 235, .96); box-shadow: 0 8px 24px rgba(23, 24, 22, .05); }
.brand { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.brand-mark { display: grid; grid-template-columns: repeat(2, 9px); grid-template-rows: repeat(2, 9px); gap: 2px; width: 20px; height: 20px; transform: rotate(8deg); }
.brand-mark span { display: block; background: var(--ink); transition: transform .4s var(--ease); }
.brand-mark span:nth-child(2) { background: var(--orange); }
.brand-mark span:nth-child(3) { background: var(--yellow); }
.brand:hover .brand-mark span:nth-child(1) { transform: translate(-2px, -2px); }
.brand:hover .brand-mark span:nth-child(4) { transform: translate(2px, 2px); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 20px; letter-spacing: -.07em; font-weight: 700; }
.brand-copy small { margin-top: 3px; color: var(--ink-soft); font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .15em; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 40px); margin-left: auto; margin-right: 20px; }
.main-nav a, .footer-links a { position: relative; color: var(--ink-soft); font-size: 13px; font-weight: 500; transition: color .25s var(--ease); }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--orange); transition: right .35s var(--ease); }
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 19px; }
.language-switch { display: inline-flex; align-items: center; gap: 5px; padding: 0; background: none; border: 0; cursor: pointer; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .04em; }
.language-current { color: var(--orange-dark); font-weight: 500; }
.language-slash { color: #9c9b96; }
.language-next { color: #6e6f6a; }
.header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px 10px; border: 1px solid var(--ink); border-radius: 999px; font-size: 12px; transition: color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease); }
.header-cta:hover { background: var(--ink); color: var(--cream); transform: translateY(-1px); }
.header-cta span { font-size: 16px; line-height: .7; }
.menu-toggle { display: none; width: 36px; height: 36px; padding: 9px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 16px; height: 1px; margin: 4px 0; background: var(--ink); transition: transform .35s var(--ease); }

.hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(30px, 7vw, 120px); min-height: 690px; padding-top: clamp(64px, 9vw, 144px); padding-bottom: clamp(80px, 10vw, 150px); align-items: center; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 10px; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow { color: #6b6c67; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(237, 105, 70, .14); }
.hero h1 { max-width: 620px; margin: 24px 0 28px; font-size: clamp(54px, 7.3vw, 112px); font-weight: 600; line-height: .92; letter-spacing: -.09em; }
.hero h1 em, .contact-inner h2 em { color: var(--orange); font-style: normal; }
.hero-intro { max-width: 460px; margin: 0; color: #666762; font-size: 15px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; gap: 20px; border-radius: 999px; padding: 14px 17px 14px 22px; font-size: 12px; font-weight: 600; transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(.98); }
.button-primary { color: var(--paper); background: var(--orange); }
.button-primary:hover { background: var(--orange-dark); }
.button-dark { color: var(--cream); background: var(--ink); }
.button-dark:hover { background: #30312d; }
.button-arrow { display: inline-grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: var(--ink); background: var(--cream); font-size: 16px; line-height: 1; }
.button-dark .button-arrow { color: var(--ink); background: var(--orange); }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 600; }
.text-link > span:last-child { color: var(--orange); font-size: 18px; transition: transform .3s var(--ease); }
.text-link:hover > span:last-child { transform: translateX(5px); }
.hero-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 72px; }
.hero-meta div { display: flex; flex-direction: column; gap: 2px; min-width: 80px; }
.hero-meta strong { font-family: 'DM Mono', monospace; font-size: 22px; font-weight: 400; letter-spacing: -.08em; }
.hero-meta span { color: #777873; font-size: 10px; }

.hero-visual { position: relative; min-height: 520px; isolation: isolate; }
.cube-stage { position: absolute; inset: 44px 8% 36px 6%; display: grid; place-items: center; perspective: 1100px; }
.cube { position: absolute; width: min(30vw, 305px); height: min(30vw, 305px); transform-style: preserve-3d; transform: rotateX(-19deg) rotateY(-35deg) rotateZ(0deg); animation: cubeFloat 8s ease-in-out infinite; }
.cube-small { width: min(16vw, 160px); height: min(16vw, 160px); right: 5%; bottom: 5%; transform: rotateX(-19deg) rotateY(-35deg) rotateZ(-8deg) translateZ(150px); animation-delay: -3s; }
.cube-face { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); gap: 5px; padding: 5px; border: 7px solid var(--ink); background: var(--ink); border-radius: 9px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.cube-face i { display: block; border-radius: 4px; box-shadow: inset 0 2px 4px rgba(255,255,255,.25), inset 0 -3px 5px rgba(0,0,0,.17); }
.cube-front { transform: translateZ(calc(min(30vw, 305px) / 2)); background: #f3d94d; }
.cube-front i:nth-child(3n + 1) { background: #f5d63d; }
.cube-front i:nth-child(3n + 2) { background: #ed6848; }
.cube-front i:nth-child(3n) { background: #ecb745; }
.cube-right { transform: rotateY(90deg) translateZ(calc(min(30vw, 305px) / 2)); background: #df644c; }
.cube-right i:nth-child(3n + 1) { background: #d34d3b; }
.cube-right i:nth-child(3n + 2) { background: #efc244; }
.cube-right i:nth-child(3n) { background: #e98e4f; }
.cube-top { transform: rotateX(90deg) translateZ(calc(min(30vw, 305px) / 2)); background: #d3e4d1; }
.cube-top i:nth-child(3n + 1) { background: #a8cdb4; }
.cube-top i:nth-child(3n + 2) { background: #d4e5d1; }
.cube-top i:nth-child(3n) { background: #98bba9; }
.cube-small .cube-face { gap: 3px; padding: 4px; border-width: 5px; border-radius: 6px; }
.cube-small .cube-face i { border-radius: 2px; }
.cube-small .cube-front { transform: translateZ(calc(min(16vw, 160px) / 2)); background: #efc23e; }
.cube-small .cube-right { transform: rotateY(90deg) translateZ(calc(min(16vw, 160px) / 2)); background: #3e567f; }
.cube-small .cube-top { transform: rotateX(90deg) translateZ(calc(min(16vw, 160px) / 2)); background: #f3eee0; }
.cube-shadow { position: absolute; width: min(35vw, 360px); height: 80px; bottom: 10%; border-radius: 50%; background: rgba(23,24,22,.18); filter: blur(28px); transform: rotateX(68deg) translateZ(-100px); }
.hero-orbit { position: absolute; border: 1px solid rgba(23,24,22,.14); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 83%; height: 55%; top: 13%; left: 7%; transform: rotate(-26deg); }
.orbit-two { width: 68%; height: 42%; top: 22%; left: 17%; border-style: dashed; transform: rotate(24deg); }
.visual-label { position: absolute; z-index: 3; display: flex; flex-direction: column; gap: 4px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .08em; }
.visual-label span { color: #81827d; }
.visual-label b { font-size: 11px; font-weight: 500; }
.label-top { top: 4%; left: 4%; }
.label-bottom { right: 1%; bottom: 9%; text-align: right; }
.hero-sticker { position: absolute; z-index: 4; right: 12%; top: 17%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 88px; height: 88px; border: 1px solid var(--ink); border-radius: 50%; color: var(--ink); background: var(--yellow); font-family: 'DM Mono', monospace; font-size: 8px; line-height: 1.2; letter-spacing: .12em; transform: rotate(12deg); animation: stickerFloat 5s ease-in-out infinite; }
.hero-sticker strong { margin: 1px 0; font-family: 'Space Grotesk', sans-serif; font-size: 29px; line-height: 1; }
@keyframes cubeFloat { 0%, 100% { transform: rotateX(-19deg) rotateY(-35deg) translate3d(0, 0, 0); } 50% { transform: rotateX(-16deg) rotateY(-28deg) translate3d(0, -12px, 12px); } }
@keyframes stickerFloat { 0%, 100% { transform: rotate(12deg) translateY(0); } 50% { transform: rotate(15deg) translateY(-7px); } }

.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); color: var(--cream); }
.ticker-track { display: flex; align-items: center; gap: 30px; min-width: max-content; padding: 15px 0 14px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .11em; animation: ticker 28s linear infinite; }
.ticker-track b { color: var(--orange); font-size: 16px; font-weight: 400; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-kicker { color: #777873; }
.section-kicker > span:first-child { color: var(--orange-dark); }
.intro-section { padding-top: clamp(100px, 14vw, 200px); padding-bottom: clamp(105px, 14vw, 210px); }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10%; align-items: end; margin-top: clamp(44px, 6vw, 76px); }
.display-title { margin: 0; font-size: clamp(46px, 6.5vw, 88px); line-height: .96; letter-spacing: -.085em; font-weight: 500; }
.display-title span { color: #a2a39e; }
.intro-text { max-width: 340px; padding-bottom: 7px; }
.intro-text p, .heading-row > p, .craft-copy > p, .contact-inner > p { margin: 0 0 25px; color: #777873; font-size: 14px; line-height: 1.85; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(76px, 10vw, 142px); border-top: 1px solid var(--line); }
.principle { min-height: 320px; padding: 24px 26px 20px 0; border-right: 1px solid var(--line); }
.principle + .principle { padding-left: 30px; }
.principle:last-child { border-right: 0; }
.principle-index { color: var(--orange-dark); font-family: 'DM Mono', monospace; font-size: 11px; }
.principle-symbol { position: relative; display: grid; place-items: center; width: 64px; height: 64px; margin: 44px 0 24px; }
.symbol-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 3px; transform: rotate(-10deg); }
.symbol-grid span { background: var(--ink); }
.symbol-grid span:nth-child(2) { background: var(--orange); }.symbol-grid span:nth-child(3) { background: var(--yellow); }
.symbol-arc { border: 1px solid var(--ink); border-radius: 50%; }.symbol-arc::before, .symbol-arc::after { content: ''; position: absolute; width: 42px; height: 42px; border: 1px solid var(--orange); border-radius: 50%; }.symbol-arc::before { left: -7px; top: 7px; }.symbol-arc::after { left: 16px; top: 18px; border-color: var(--ink); }
.symbol-cross { color: var(--orange); font-size: 57px; font-weight: 300; line-height: 1; }.symbol-cross::before, .symbol-cross::after { content: ''; position: absolute; border: 1px solid var(--line); border-radius: 50%; }.symbol-cross::before { inset: 5px; }.symbol-cross::after { inset: 16px; border-color: var(--orange); }
.principle h3 { margin: 0; font-size: 22px; font-weight: 500; line-height: 1.12; letter-spacing: -.05em; }.principle p { max-width: 205px; margin: 14px 0 0; color: #858680; font-size: 12px; line-height: 1.7; }

.collection-section { padding-bottom: clamp(100px, 13vw, 190px); }
.section-heading .section-kicker { margin-bottom: 55px; }
.heading-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10%; align-items: end; }.heading-row > p { max-width: 300px; margin-bottom: 5px; }
.filter-row { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin: 70px 0 25px; }.filter-button { padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: #777873; cursor: pointer; font-size: 11px; transition: color .3s var(--ease), background .3s var(--ease), border .3s var(--ease), transform .3s var(--ease); }.filter-button:hover, .filter-button.active { color: var(--cream); background: var(--ink); border-color: var(--ink); }.filter-button:active { transform: scale(.97); }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }.product-card { grid-column: span 4; min-width: 0; }.product-card-wide { grid-column: span 8; }.product-card-tall { grid-row: span 2; }
.product-media { position: relative; display: grid; place-items: center; min-height: 300px; overflow: hidden; border-radius: 2px; isolation: isolate; }.product-card-wide .product-media { min-height: 410px; }.product-card-tall .product-media { min-height: 455px; }.product-media img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; opacity: .9; transition: opacity .6s var(--ease), transform .7s var(--ease); }.product-card:hover .product-media img { opacity: .32; transform: scale(1.07) rotate(-2deg); }.media-dark { background: #20211f; }.media-sand { background: #d8d0bb; }.media-blue { background: #aab8d0; }.media-coral { background: #da7155; }.media-ink { background: #292d36; }.media-paper { background: #dedbd1; }.media-fallback { position: relative; z-index: 0; transition: transform .7s var(--ease); }.product-card:hover .media-fallback { transform: scale(1.08) rotate(-4deg); }.cube-fallback { width: 130px; height: 130px; border-radius: 12px; transform: rotate(-14deg) skewY(13deg); background: var(--fallback-a, var(--yellow)); box-shadow: 35px 30px 0 var(--fallback-b, var(--orange)), 18px -22px 0 var(--fallback-c, #c4e0ce), 0 16px 25px rgba(23,24,22,.25); }.orange-cube { --fallback-a: #f2cf45; --fallback-b: #e06046; --fallback-c: #b4d1c2; }.yellow-cube { --fallback-a: #f4ca48; --fallback-b: #d66b3e; --fallback-c: #e4e6d2; }.blue-cube { --fallback-a: #b8cce1; --fallback-b: #577398; --fallback-c: #ddaa53; }.coral-cube { --fallback-a: #d84f3d; --fallback-b: #f3cf4e; --fallback-c: #aac4cf; }.number-fallback { display: grid; grid-template-columns: repeat(3, 49px); grid-template-rows: repeat(3, 49px); gap: 5px; transform: rotate(-10deg); }.number-fallback b { display: grid; place-items: center; color: #f0d05a; background: #343945; font-family: 'DM Mono', monospace; font-size: 18px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }.stack-fallback { display: flex; align-items: flex-end; gap: 5px; height: 150px; transform: rotate(-10deg); }.stack-fallback span { display: block; width: 27px; border: 4px solid var(--ink); border-bottom-width: 8px; background: var(--orange); }.stack-fallback span:nth-child(1) { height: 82px; background: #b2c8ad; }.stack-fallback span:nth-child(2) { height: 123px; background: var(--yellow); }.stack-fallback span:nth-child(3) { height: 105px; background: #b7cce2; }.stack-fallback span:nth-child(4) { height: 144px; background: var(--orange); }.product-index, .product-tag { position: absolute; z-index: 2; top: 17px; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .04em; }.product-index { left: 17px; color: rgba(244,241,235,.72); }.product-tag { right: 17px; color: rgba(244,241,235,.9); }.media-sand .product-index, .media-blue .product-index, .media-paper .product-index, .media-sand .product-tag, .media-blue .product-tag, .media-paper .product-tag { color: rgba(23,24,22,.6); }.product-info { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 18px 0 30px; border-bottom: 1px solid var(--line); }.product-info h3 { margin: 0 0 4px; font-size: 18px; font-weight: 500; letter-spacing: -.045em; }.product-info p { margin: 0; color: #868782; font-size: 11px; }.product-arrow { display: inline-grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; font-size: 16px; line-height: 1; transition: color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease); }.product-card:hover .product-arrow, .athlete-card:hover .product-arrow { color: var(--cream); background: var(--ink); transform: rotate(45deg); }.collection-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 28px; color: #858680; font-family: 'DM Mono', monospace; font-size: 10px; }

.craft-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 750px; background: var(--ink); color: var(--cream); }.craft-visual { display: grid; place-items: center; padding: 72px clamp(24px, 6vw, 100px); background: #262824; }.craft-frame { position: relative; width: min(100%, 520px); aspect-ratio: .87; padding: 23px; border: 1px solid rgba(244,241,235,.22); }.frame-top, .frame-bottom { display: flex; align-items: center; justify-content: space-between; color: rgba(244,241,235,.62); font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .08em; }.frame-bottom { position: absolute; right: 23px; bottom: 22px; left: 23px; }.lab-cube { position: absolute; inset: 23% 18% 22%; display: grid; place-items: center; perspective: 900px; }.lab-face { position: absolute; width: 56%; height: 56%; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); gap: 3px; padding: 4px; border: 5px solid #080908; border-radius: 5px; background: #080908; }.lab-face span { display: grid; place-items: center; color: #1c1d1a; background: var(--orange); font-family: 'DM Mono', monospace; font-size: 11px; }.lab-front { transform: translateZ(74px) rotateX(-12deg) rotateY(-32deg); }.lab-right { transform: rotateY(90deg) translateZ(74px) rotateX(-12deg) rotateZ(10deg); background: #efbf48; }.lab-top { transform: rotateX(90deg) translateZ(74px) rotateY(-32deg); background: #b5d0be; }.craft-copy { display: flex; flex-direction: column; justify-content: center; padding-top: 90px; padding-bottom: 90px; }.craft-copy .section-kicker { color: rgba(244,241,235,.58); }.craft-copy .section-kicker > span:first-child { color: var(--orange); }.craft-copy .display-title { margin: 52px 0 28px; }.craft-copy .display-title span { color: rgba(244,241,235,.43); }.craft-copy > p { max-width: 420px; color: rgba(244,241,235,.58); }.spec-list { max-width: 480px; margin: 26px 0 37px; border-top: 1px solid var(--line-light); }.spec-list > div { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: baseline; padding: 13px 0 12px; border-bottom: 1px solid var(--line-light); }.spec-list span { color: var(--orange); font-family: 'DM Mono', monospace; font-size: 10px; }.spec-list b { font-size: 13px; font-weight: 500; }.spec-list small { color: rgba(244,241,235,.45); font-size: 10px; }

.athletes-section { padding-top: clamp(105px, 13vw, 190px); padding-bottom: clamp(100px, 13vw, 180px); }.athletes-section .section-heading .section-kicker { margin-bottom: 55px; }.athlete-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; margin-top: 72px; }.athlete-card { min-width: 0; }.athlete-photo { position: relative; display: grid; place-items: end start; min-height: 385px; overflow: hidden; }.athlete-photo::before, .athlete-photo::after { content: ''; position: absolute; border-radius: 50%; }.photo-one { background: #9bb1a5; }.photo-one::before { width: 340px; height: 340px; right: -35px; bottom: -120px; border: 1px solid rgba(23,24,22,.28); }.photo-one::after { width: 230px; height: 230px; right: 15px; bottom: -43px; border: 1px solid rgba(23,24,22,.22); }.photo-two { background: #db7152; }.photo-two::before { width: 210px; height: 210px; right: -25px; bottom: -43px; border: 1px solid rgba(244,241,235,.42); box-shadow: 0 0 0 30px rgba(244,241,235,.08), 0 0 0 60px rgba(244,241,235,.07); }.photo-three { background: #b8c6d9; }.photo-three::before { width: 270px; height: 270px; left: -45px; bottom: -115px; border: 1px solid rgba(23,24,22,.27); box-shadow: 0 0 0 32px rgba(23,24,22,.05), 0 0 0 66px rgba(23,24,22,.05); }.athlete-photo > span { position: relative; z-index: 1; padding: 20px; color: rgba(23,24,22,.65); font-family: 'DM Mono', monospace; font-size: clamp(60px, 8vw, 130px); font-weight: 500; line-height: .8; letter-spacing: -.1em; }.photo-two > span { color: rgba(244,241,235,.72); }.athlete-copy { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; padding: 16px 0 28px; border-bottom: 1px solid var(--line); }.athlete-country { color: #888983; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .08em; }.athlete-copy h3 { margin: 7px 0 5px; font-size: 18px; font-weight: 500; letter-spacing: -.05em; }.athlete-copy p { margin: 0; color: #888983; font-size: 11px; }.record-line { display: grid; grid-template-columns: 1fr auto 1fr auto; gap: 18px; align-items: center; margin-top: 38px; padding-top: 18px; border-top: 1px solid var(--line); color: #858680; font-family: 'DM Mono', monospace; font-size: 10px; }.record-line strong { color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-size: clamp(40px, 5vw, 70px); font-weight: 500; letter-spacing: -.09em; line-height: 1; }.record-line strong span { margin-left: 3px; color: var(--orange); font-family: 'DM Mono', monospace; font-size: 15px; letter-spacing: 0; }.record-mark { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); font-size: 16px; }

.quote-section { display: flex; flex-direction: column; align-items: center; padding-top: clamp(115px, 15vw, 220px); padding-bottom: clamp(115px, 15vw, 220px); text-align: center; }.quote-mark { color: var(--orange); font-family: Georgia, serif; font-size: 78px; line-height: .5; }.quote-section blockquote { max-width: 900px; margin: 36px auto 39px; font-size: clamp(37px, 5.2vw, 70px); font-weight: 500; line-height: 1.02; letter-spacing: -.08em; }.quote-by { display: flex; align-items: center; gap: 11px; color: #777873; font-family: 'DM Mono', monospace; font-size: 9px; text-align: left; line-height: 1.5; letter-spacing: .07em; }.quote-by > span { width: 24px; height: 1px; background: var(--orange); }.quote-by p { margin: 0; }.quote-by small { color: #999a94; font-family: inherit; font-size: inherit; letter-spacing: 0; }

.contact-section { padding-top: clamp(90px, 12vw, 170px); padding-bottom: clamp(105px, 14vw, 200px); background: var(--yellow); }.contact-inner { max-width: 900px; }.contact-inner h2 { margin: 54px 0 23px; font-size: clamp(50px, 7.5vw, 103px); line-height: .93; letter-spacing: -.095em; font-weight: 500; }.contact-inner > p { max-width: 360px; color: rgba(23,24,22,.61); }.subscribe-form { display: flex; max-width: 480px; margin-top: 46px; border-bottom: 1px solid rgba(23,24,22,.62); }.subscribe-form input { flex: 1; min-width: 0; padding: 14px 0; color: var(--ink); background: transparent; border: 0; outline: 0; font-size: 15px; }.subscribe-form input::placeholder { color: rgba(23,24,22,.48); }.subscribe-form button { display: grid; place-items: center; width: 42px; height: 42px; margin: 3px 0; border: 0; border-radius: 50%; color: var(--cream); background: var(--ink); cursor: pointer; font-size: 20px; transition: transform .3s var(--ease), background .3s var(--ease); }.subscribe-form button:hover { background: var(--orange-dark); transform: rotate(45deg); }.form-note { margin: 11px 0 0; color: rgba(23,24,22,.5); font-family: 'DM Mono', monospace; font-size: 9px; }

.site-footer { padding: 34px clamp(24px, 5.5vw, 92px) 24px; color: var(--cream); background: var(--ink); }.footer-top { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; padding-bottom: 65px; }.site-footer .brand-copy small { color: rgba(244,241,235,.58); }.site-footer .brand-mark span:nth-child(1), .site-footer .brand-mark span:nth-child(4) { background: var(--cream); }.footer-links { display: flex; gap: 25px; }.footer-links a { color: rgba(244,241,235,.65); }.footer-links a:hover { color: var(--cream); }.footer-social { display: flex; justify-content: flex-end; gap: 7px; }.footer-social a { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(244,241,235,.28); border-radius: 50%; color: rgba(244,241,235,.7); font-family: 'DM Mono', monospace; font-size: 8px; transition: color .3s var(--ease), background .3s var(--ease); }.footer-social a:hover { color: var(--ink); background: var(--cream); }.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 16px; border-top: 1px solid rgba(244,241,235,.16); color: rgba(244,241,235,.48); font-family: 'DM Mono', monospace; font-size: 9px; }.footer-bottom a { color: rgba(244,241,235,.72); }
.mobile-menu { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .85s var(--ease), transform .85s var(--ease); }.reveal.is-visible { opacity: 1; transform: translateY(0); }.reveal-delay-1 { transition-delay: .12s; }.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .main-nav { gap: 17px; margin-right: 0; }.main-nav a { font-size: 12px; }.header-cta { display: none; }
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 86px; }.hero-copy { max-width: 640px; }.hero-visual { min-height: 500px; max-width: 700px; width: 100%; margin: 0 auto; }.cube { width: min(43vw, 300px); height: min(43vw, 300px); }.cube-front { transform: translateZ(calc(min(43vw, 300px) / 2)); }.cube-right { transform: rotateY(90deg) translateZ(calc(min(43vw, 300px) / 2)); }.cube-top { transform: rotateX(90deg) translateZ(calc(min(43vw, 300px) / 2)); }.cube-small { width: min(20vw, 150px); height: min(20vw, 150px); }.cube-small .cube-front { transform: translateZ(calc(min(20vw, 150px) / 2)); }.cube-small .cube-right { transform: rotateY(90deg) translateZ(calc(min(20vw, 150px) / 2)); }.cube-small .cube-top { transform: rotateX(90deg) translateZ(calc(min(20vw, 150px) / 2)); }
  .intro-grid, .heading-row { grid-template-columns: 1fr .72fr; gap: 7%; }.principles-grid { gap: 0; }.principle h3 { font-size: 19px; }.product-media { min-height: 260px; }.product-card-wide .product-media { min-height: 350px; }.product-card-tall .product-media { min-height: 390px; }.craft-section { min-height: 650px; }.athlete-photo { min-height: 300px; }
}
@media (max-width: 720px) {
  .site-header { min-height: 68px; }.main-nav, .header-actions .language-switch { display: none; }.header-actions { margin-left: auto; }.menu-toggle { display: block; }.menu-toggle.is-open span:first-child { transform: translateY(2px) rotate(45deg); }.menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 25; inset: 68px 0 0; display: grid; align-items: start; padding: 52px 24px; background: rgba(244,241,235,.98); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .35s var(--ease), transform .35s var(--ease); }.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }.mobile-menu-inner { display: flex; flex-direction: column; gap: 25px; }.mobile-menu a { font-size: 37px; font-weight: 500; line-height: 1; letter-spacing: -.08em; }.mobile-menu a::after { content: '↗'; margin-left: 10px; color: var(--orange); font-family: 'DM Mono', monospace; font-size: 20px; }
  .hero { min-height: 0; padding-top: 70px; padding-bottom: 85px; }.hero h1 { margin-top: 22px; font-size: clamp(51px, 14vw, 82px); }.hero-intro { font-size: 14px; }.hero-meta { margin-top: 52px; gap: 20px; }.hero-meta div { min-width: 75px; }.hero-visual { min-height: 380px; margin-top: 20px; }.cube-stage { inset: 28px 0 22px; }.hero-sticker { right: 8%; top: 12%; width: 70px; height: 70px; font-size: 7px; }.hero-sticker strong { font-size: 23px; }.visual-label { font-size: 8px; }.label-bottom { right: 0; bottom: 2%; }
  .ticker-track { gap: 21px; padding: 12px 0; font-size: 9px; }
  .intro-section { padding-top: 100px; padding-bottom: 110px; }.intro-grid, .heading-row { display: block; margin-top: 42px; }.intro-text { margin-top: 28px; }.display-title { font-size: clamp(44px, 12vw, 72px); }.principles-grid { display: block; margin-top: 70px; }.principle, .principle + .principle { min-height: 0; padding: 28px 0 31px; border-right: 0; border-bottom: 1px solid var(--line); }.principle:last-child { border-bottom: 0; }.principle-symbol { margin: 27px 0 19px; }.principle h3 { font-size: 24px; }
  .section-heading .section-kicker, .athletes-section .section-heading .section-kicker { margin-bottom: 37px; }.heading-row > p { max-width: 320px; margin-top: 24px; }.filter-row { margin-top: 49px; }.filter-button { padding: 8px 12px; font-size: 10px; }.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 13px; }.product-card, .product-card-wide, .product-card-tall { grid-column: auto; grid-row: auto; }.product-media, .product-card-wide .product-media, .product-card-tall .product-media { min-height: 190px; }.product-card-wide { grid-column: span 2; }.product-card-wide .product-media { min-height: 280px; }.product-card-tall { grid-row: span 1; }.product-card-tall .product-media { min-height: 250px; }.product-info { padding: 13px 0 20px; }.product-info h3 { font-size: 15px; }.product-info p { font-size: 10px; }.product-tag, .product-index { top: 11px; font-size: 8px; }.product-tag { right: 11px; }.product-index { left: 11px; }.number-fallback { grid-template-columns: repeat(3, 36px); grid-template-rows: repeat(3, 36px); gap: 3px; }.number-fallback b { font-size: 14px; }.cube-fallback { width: 88px; height: 88px; box-shadow: 24px 21px 0 var(--fallback-b, var(--orange)), 12px -15px 0 var(--fallback-c, #c4e0ce), 0 12px 18px rgba(23,24,22,.25); }.stack-fallback { height: 100px; gap: 3px; }.stack-fallback span { width: 18px; border-width: 3px; border-bottom-width: 6px; }.stack-fallback span:nth-child(1) { height: 54px; }.stack-fallback span:nth-child(2) { height: 80px; }.stack-fallback span:nth-child(3) { height: 69px; }.stack-fallback span:nth-child(4) { height: 92px; }.collection-footer { display: block; line-height: 2; }.collection-footer .text-link { display: flex; margin-top: 8px; }
  .craft-section { display: block; }.craft-visual { min-height: 480px; padding: 55px 24px; }.craft-copy { padding-top: 80px; padding-bottom: 90px; }.craft-copy .display-title { margin-top: 42px; }.spec-list > div { grid-template-columns: 28px 1fr; gap: 8px; }.spec-list small { grid-column: 2; }.lab-front { transform: translateZ(53px) rotateX(-12deg) rotateY(-32deg); }.lab-right { transform: rotateY(90deg) translateZ(53px) rotateX(-12deg) rotateZ(10deg); }.lab-top { transform: rotateX(90deg) translateZ(53px) rotateY(-32deg); }
  .athletes-section { padding-top: 100px; padding-bottom: 115px; }.athlete-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 55px; }.athlete-main { grid-column: span 2; }.athlete-photo { min-height: 235px; }.athlete-main .athlete-photo { min-height: 310px; }.athlete-photo > span { padding: 15px; font-size: 80px; }.athlete-copy { padding: 13px 0 20px; }.athlete-copy h3 { font-size: 15px; }.athlete-copy p { font-size: 10px; }.record-line { grid-template-columns: 1fr auto; gap: 12px; }.record-line strong { grid-column: 2; grid-row: 1 / span 2; }.record-line > span:nth-of-type(3) { grid-column: 1; }.record-mark { grid-column: 2; grid-row: 3; justify-self: end; }
  .quote-section { padding-top: 120px; padding-bottom: 125px; }.quote-section blockquote { margin-top: 28px; font-size: clamp(34px, 10vw, 55px); }.quote-mark { font-size: 65px; }
  .contact-section { padding-top: 90px; padding-bottom: 110px; }.contact-inner h2 { margin-top: 44px; font-size: clamp(50px, 14vw, 80px); }.subscribe-form { margin-top: 40px; }
  .site-footer { padding-top: 30px; }.footer-top { grid-template-columns: 1fr auto; gap: 33px 20px; padding-bottom: 45px; }.footer-links { grid-row: 2; grid-column: span 2; flex-wrap: wrap; gap: 12px 18px; }.footer-social { align-self: start; }.footer-bottom { flex-wrap: wrap; gap: 9px 14px; line-height: 1.6; }.footer-bottom span:nth-child(2) { order: 3; width: 100%; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.ticker-track, .cube, .hero-sticker { animation: none; }.reveal { transition: none; opacity: 1; transform: none; } }
