:root {
  --ink: #121314;
  --ink-2: #1d1f20;
  --paper: #f2eee5;
  --paper-2: #e4dfd4;
  --line: rgba(18, 19, 20, .2);
  --reverse-line: rgba(255, 255, 255, .2);
  --orange: #ff5a12;
  --white: #fffdf8;
  --muted: #6d6a64;
  --max: 1520px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 2px;
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: var(--paper); color: var(--ink); }
body { margin: 0; overflow-x: hidden; font-family: var(--body); background: var(--paper); color: var(--ink); line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 1000; left: 20px; top: -100px; background: var(--orange); color: var(--ink); padding: 12px 18px; font-weight: 900; }
.skip-link:focus { top: 20px; }

.project-strip { min-height: 32px; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad); background: var(--orange); color: var(--ink); font: 800 11px/1 var(--body); letter-spacing: .16em; text-transform: uppercase; }
.project-strip__status { display: flex; align-items: center; gap: 9px; }
.project-strip__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.site-header { position: sticky; top: 0; z-index: 90; min-height: 82px; display: grid; grid-template-columns: 240px 1fr auto; align-items: center; gap: 28px; padding: 12px var(--pad); border-bottom: 1px solid var(--line); background: rgba(242, 238, 229, .96); backdrop-filter: blur(14px); transition: min-height .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { min-height: 68px; box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.site-brand { width: 190px; height: 52px; display: flex; align-items: center; overflow: hidden; text-decoration: none; }
.site-brand img { width: 174px; height: 72px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 46px); }
.site-nav a, .locale-switcher a { position: relative; font-size: 12px; font-weight: 800; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.locale-switcher { display: flex; align-items: center; gap: 10px; }
.locale-switcher a { color: var(--muted); font-size: 10px; }
.locale-switcher a[aria-current="page"] { color: var(--ink); border-bottom: 2px solid var(--orange); }
.menu-toggle { display: none; }

.garage-hero { position: relative; min-height: min(780px, calc(100vh - 114px)); display: flex; align-items: center; overflow: hidden; background: var(--ink); color: var(--white); }
.garage-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.garage-hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,5,5,.88) 0%, rgba(4,5,5,.58) 32%, rgba(4,5,5,.04) 68%); }
.garage-hero__copy { position: relative; z-index: 2; width: min(700px, 55vw); margin-left: var(--pad); padding: 90px 0 110px; }
.eyebrow { margin: 0 0 20px; font-size: 11px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 2px; margin: 0 12px 3px 0; background: var(--orange); }
.garage-hero h1 { max-width: 850px; margin: 0; font: 900 clamp(54px, 7vw, 112px)/.88 var(--display); letter-spacing: -.035em; text-transform: uppercase; text-wrap: balance; }
.garage-hero__copy > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.4vw, 20px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; border-radius: var(--radius); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--accent { background: var(--orange); color: var(--ink); }
.button--ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.button--ghost:hover { background: var(--white); color: var(--ink); }
.button--dark { background: var(--ink); color: var(--white); }
.hero-index { position: absolute; z-index: 3; right: var(--pad); bottom: 36px; display: grid; grid-template-columns: auto 90px auto; align-items: center; gap: 12px; font-size: 9px; letter-spacing: .15em; }
.hero-index b { color: var(--orange); font-size: 18px; }
.hero-index span { height: 1px; background: rgba(255,255,255,.55); }

.route-section { padding: clamp(80px, 10vw, 150px) var(--pad); }
.section-intro { display: grid; grid-template-columns: .65fr 1.45fr .8fr; align-items: end; gap: 32px; margin-bottom: 54px; }
.section-intro .eyebrow { align-self: start; }
.section-intro h2, .project-wall h2, .shift-panel h2, .source-story h2, .support-section h2, .catalog-hero h1 { margin: 0; font: 900 clamp(48px, 6vw, 96px)/.9 var(--display); letter-spacing: -.025em; text-transform: uppercase; }
.section-intro > p:last-child { max-width: 460px; margin: 0 0 6px; color: var(--muted); font-size: 16px; }
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.route-card { position: relative; min-height: 320px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: color .25s ease, background .25s ease; }
.route-card > span { font: 900 12px var(--body); color: var(--orange); }
.route-card h3 { margin: 80px 0 12px; font: 900 clamp(28px, 2.6vw, 44px)/1 var(--display); text-transform: uppercase; }
.route-card p { max-width: 290px; color: var(--muted); font-size: 14px; }
.route-card i { position: absolute; right: -45px; bottom: -45px; width: 120px; height: 120px; border: 2px solid var(--orange); transform: rotate(45deg); }
.route-card:hover { color: var(--white); background: var(--ink); }
.route-card:hover p { color: rgba(255,255,255,.7); }

.project-wall { display: grid; grid-template-columns: 1.65fr .85fr; min-height: 640px; background: var(--ink); color: var(--white); }
.project-wall__image { min-height: 620px; overflow: hidden; }
.project-wall__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-wall:hover img { transform: scale(1.015); }
.project-wall__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 7vw, 110px); border-left: 1px solid var(--reverse-line); }
.project-wall__copy p:not(.eyebrow) { max-width: 460px; color: rgba(255,255,255,.68); }
.text-link { align-self: flex-start; margin-top: 28px; border-bottom: 1px solid var(--orange); padding-bottom: 8px; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.text-link span { color: var(--orange); margin-left: 18px; }

.product-rail { padding: clamp(70px, 9vw, 130px) var(--pad); background: var(--paper-2); }
.product-rail__head { display: flex; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.product-grid, .catalog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.product-card { min-width: 0; background: var(--white); border: 1px solid rgba(0,0,0,.08); }
.product-card-image { position: relative; aspect-ratio: 1; display: block; overflow: hidden; background: #f7f5ef; }
.product-card-image img { width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: transform .35s ease; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-badges { position: absolute; left: 12px; top: 12px; display: flex; gap: 6px; }
.product-stock-badge, .variant-count { position: absolute; bottom: 10px; left: 10px; padding: 5px 8px; background: var(--ink); color: var(--white); font-size: 9px; font-weight: 800; }
.product-card-body { min-height: 190px; display: flex; flex-direction: column; padding: 18px; border-top: 1px solid rgba(0,0,0,.08); }
.product-card-brand { margin: 0 0 6px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-size: 15px; line-height: 1.35; }
.product-card h3 a { text-decoration: none; }
.product-card-rating, .rating { margin-top: 10px; font-size: 11px; }
.product-card-delivery, .game-club-product-options { font-size: 11px; color: var(--muted); }
.product-card-footer { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-top: auto; padding-top: 18px; }
.product-card-footer strong { font: 900 16px var(--body); }
.product-card-arrow { width: 32px; height: 32px; display: grid; place-items: center; background: var(--orange); color: var(--ink); text-decoration: none; }

.shift-panel { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 650px; }
.shift-panel__visual { min-height: 620px; overflow: hidden; }
.shift-panel__visual img { width: 100%; height: 100%; object-fit: cover; }
.shift-panel__copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(46px, 8vw, 120px); }
.shift-panel__copy > p:not(.eyebrow) { max-width: 490px; color: var(--muted); font-size: 17px; }
.shift-panel--driveway { background: var(--white); }
.shift-panel--yard { grid-template-columns: .9fr 1.1fr; background: #c8d8b6; }
.route-line { width: 100%; display: flex; align-items: center; gap: 10px; margin: 32px 0; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.route-line i { flex: 1; height: 1px; background: var(--ink); }

.source-story { position: relative; min-height: 720px; display: flex; align-items: end; overflow: hidden; color: var(--white); background: var(--ink); }
.source-story > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.source-story::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,9,.72), transparent 65%); }
.source-story__copy { position: relative; z-index: 2; max-width: 720px; margin: var(--pad); padding: clamp(34px, 6vw, 76px); background: rgba(18,19,20,.88); backdrop-filter: blur(10px); }
.source-story__copy p:last-child { max-width: 600px; color: rgba(255,255,255,.72); }

.support-section { display: grid; grid-template-columns: 1.25fr .75fr; padding: clamp(70px, 10vw, 150px) var(--pad); gap: clamp(40px, 8vw, 120px); }
.checklist ol { margin: 50px 0 0; padding: 0; list-style: none; counter-reset: setup; }
.checklist li { counter-increment: setup; display: grid; grid-template-columns: 50px 1fr; padding: 18px 0; border-top: 1px solid var(--line); }
.checklist li::before { content: "0" counter(setup); color: var(--orange); font-size: 11px; font-weight: 900; }
.support-card { align-self: end; padding: 40px; background: var(--ink); color: var(--white); }
.support-card > span { color: var(--orange); font-size: 42px; }
.support-card h2 { margin-top: 60px; font-size: clamp(38px, 4vw, 68px); }
.support-card p { color: rgba(255,255,255,.68); }
.support-card .button { margin-top: 20px; }

.catalog-page { min-height: 70vh; }
.catalog-hero { display: grid; grid-template-columns: 1fr .75fr; min-height: 480px; background: var(--ink); color: var(--white); }
.catalog-hero > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vw, 120px) var(--pad); }
.catalog-hero > div > p:last-child { max-width: 650px; color: rgba(255,255,255,.7); }
.catalog-hero img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; }
.catalog-tools { padding: 40px var(--pad) 0; }
.catalog-tools form { max-width: 680px; }
.catalog-tools label { display: block; margin-bottom: 8px; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.catalog-tools form > div { display: flex; border-bottom: 2px solid var(--ink); }
.catalog-tools input { flex: 1; min-width: 0; padding: 12px 0; border: 0; background: transparent; font-size: 20px; }
.catalog-tools button { width: 50px; border: 0; background: var(--orange); font-size: 22px; }
.category-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.category-filter a { padding: 8px 12px; border: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-decoration: none; }
.category-filter a[aria-current="page"] { background: var(--ink); color: var(--white); border-color: var(--ink); }
.catalog-grid { padding: 18px var(--pad) 100px; }
.catalog-empty { padding: 80px var(--pad); font-size: 20px; }

.site-footer { padding: clamp(60px, 9vw, 120px) var(--pad) 30px; background: var(--ink); color: var(--white); }
.footer-mark { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 55px; border-bottom: 1px solid var(--reverse-line); }
.footer-mark img { width: 250px; height: 78px; object-fit: contain; padding: 8px 12px; background: var(--paper); }
.footer-mark h2 { max-width: 800px; margin: 0; font: 900 clamp(44px, 6vw, 96px)/.9 var(--display); text-align: right; text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr .65fr; gap: 50px; padding: 50px 0; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid p { margin: 0 0 10px; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.footer-grid a { font-size: 13px; font-weight: 700; text-decoration: none; }
.footer-grid span { color: rgba(255,255,255,.62); font-size: 13px; }
.footer-route-links { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.footer-route-links a:not(:last-child)::after { content: "·"; margin-left: 14px; color: rgba(255,255,255,.35); }
.footer-locales { display: flex; gap: 10px; }
.footer-base { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid var(--reverse-line); color: rgba(255,255,255,.5); font-size: 10px; }
.footer-base p { max-width: 760px; margin: 0; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 190px 1fr auto; }
  .locale-switcher { display: none; }
  .section-intro { grid-template-columns: 1fr 2fr; }
  .section-intro > p:last-child { grid-column: 2; }
  .route-grid, .product-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .project-wall, .shift-panel, .shift-panel--yard { grid-template-columns: 1fr 1fr; }
  .support-section { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  .project-strip__status { display: none; }
  .site-header { min-height: 68px; grid-template-columns: 1fr auto; padding-block: 8px; }
  .site-brand { width: 150px; height: 46px; }
  .site-brand img { width: 145px; }
  .menu-toggle { display: flex; align-items: center; gap: 10px; min-height: 42px; border: 0; background: transparent; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
  .menu-toggle i, .menu-toggle i::before, .menu-toggle i::after { display: block; width: 22px; height: 2px; background: var(--ink); content: ""; transition: transform .2s ease; }
  .menu-toggle i { position: relative; }
  .menu-toggle i::before { position: absolute; top: -7px; }
  .menu-toggle i::after { position: absolute; top: 7px; }
  .menu-toggle[aria-expanded="true"] i { background: transparent; }
  .menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }
  .site-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; gap: 0; padding: 10px var(--pad) 24px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .garage-hero { min-height: 680px; align-items: end; }
  .garage-hero > img { object-position: 64% center; }
  .garage-hero__scrim { background: linear-gradient(0deg, rgba(4,5,5,.93) 4%, rgba(4,5,5,.45) 75%, rgba(4,5,5,.1)); }
  .garage-hero__copy { width: 100%; min-width: 0; max-width: 100vw; margin: 0; padding: 170px var(--pad) 94px; overflow: hidden; }
  .garage-hero h1 { max-width: 100%; font-size: clamp(37px, 9.7vw, 52px); overflow-wrap: normal; text-wrap: wrap; }
  .garage-hero__copy > p:not(.eyebrow) { max-width: 100%; }
  .button-row .button { flex: 1 1 150px; }
  .hero-index { left: var(--pad); right: auto; bottom: 24px; }
  .section-intro { display: block; }
  .section-intro h2, .project-wall h2, .shift-panel h2, .source-story h2, .support-section h2, .catalog-hero h1 { font-size: clamp(44px, 13vw, 68px); }
  .section-intro > p:last-child { margin-top: 20px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 230px; }
  .route-card h3 { margin-top: 50px; }
  .project-wall, .shift-panel, .shift-panel--yard, .support-section, .catalog-hero { grid-template-columns: 1fr; }
  .project-wall__image, .shift-panel__visual { min-height: 420px; }
  .project-wall__copy { border: 0; border-top: 1px solid var(--reverse-line); }
  .product-grid, .catalog-grid { grid-template-columns: 1fr; }
  .product-card-body { min-height: 160px; }
  .shift-panel--yard .shift-panel__copy { order: 2; }
  .shift-panel--yard .shift-panel__visual { order: 1; }
  .source-story { min-height: 640px; }
  .source-story__copy { margin: 20px; padding: 30px 24px; }
  .support-section { gap: 60px; }
  .catalog-hero img { max-height: 360px; }
  .footer-mark { display: block; }
  .footer-mark h2 { margin-top: 40px; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { display: block; }
  .footer-base span { display: block; margin-top: 16px; }
}

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