:root{
  --ink:#0c0a07;
  --coal:#161209;
  --rust:#b6431a;
  --flame:#e8641f;
  --sand:#d8c49c;
  --bone:#ece4d2;
  --hazard:#dfa41f;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
  background:var(--ink);
  color:var(--bone);
  font-family:'Oswald',sans-serif;
  font-weight:300;
  letter-spacing:.02em;
  overflow-x:hidden;
}
::selection{background:var(--flame);color:var(--ink)}
h1,h2,h3,.display{font-family:'Black Ops One',cursive;font-weight:400;line-height:.95;text-transform:uppercase}
.marker{font-family:'Permanent Marker',cursive}
img{display:block;max-width:100%}

/* grain overlay */
body::after{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:9999;opacity:.5;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== header ===== */
header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 28px;
  background:linear-gradient(180deg,rgba(12,10,7,.92),rgba(12,10,7,0));
}
.logo{display:inline-block}
.logo img{height:34px;width:auto;filter:drop-shadow(0 2px 6px rgba(0,0,0,.6))}
nav{display:flex;gap:6px;flex-wrap:wrap}
nav a{
  color:var(--bone);text-decoration:none;font-weight:500;text-transform:uppercase;font-size:13px;letter-spacing:.12em;
  padding:8px 14px;background:rgba(12,10,7,.55);border:1px solid rgba(236,228,210,.25);
  clip-path:polygon(6% 0,100% 4%,96% 100%,0 92%);
  transition:background .2s,color .2s;
}
nav a:hover,nav a.active{background:var(--flame);color:var(--ink)}
nav a:nth-child(odd){transform:rotate(1.2deg)}
nav a:nth-child(even){transform:rotate(-1.4deg)}
nav a.lang-switch{
  background:var(--hazard);color:var(--ink);border-color:var(--ink);
  font-weight:700;letter-spacing:.2em;
}
nav a.lang-switch:hover{background:var(--bone)}

/* ===== RU typography (Rubik Dirt has no Cyrillic) ===== */
html[lang="ru"] h1,html[lang="ru"] h2,html[lang="ru"] h3,html[lang="ru"] .display,
html[lang="ru"] .btn,html[lang="ru"] .play,html[lang="ru"] .stat b,html[lang="ru"] .route .num,
html[lang="ru"] .page-hero .bignum,html[lang="ru"] .peace,html[lang="ru"] .exp-quote,
html[lang="ru"] .strip-quote .q,html[lang="ru"] .next-race .name,html[lang="ru"] .names,
html[lang="ru"] .hazard-strip span{
  font-family:'Stalinist One','Black Ops One',cursive;letter-spacing:0;line-height:1.08;
}
html[lang="ru"] .sec-label,html[lang="ru"] .hero-sticker,html[lang="ru"] .video-sticker,
html[lang="ru"] .video-cap,html[lang="ru"] .cap,html[lang="ru"] .yr,html[lang="ru"] .go,
html[lang="ru"] .routes-note,html[lang="ru"] .origin,html[lang="ru"] .pin,html[lang="ru"] .crumbs,
html[lang="ru"] .who,html[lang="ru"] .mail,html[lang="ru"] .quote p,html[lang="ru"] .next-race .lbl,
html[lang="ru"] .news-item .date,html[lang="ru"] .manifesto-photo figcaption,html[lang="ru"] .page-hero .sub{
  font-family:'Neucha',cursive;
}
/* Stalinist One is much wider — scale headings down */
html[lang="ru"] .hero h1{font-size:clamp(15px,2.4vw,34px)}
html[lang="ru"] .page-hero h1{font-size:clamp(30px,5.4vw,80px)}
html[lang="ru"] h2{font-size:clamp(26px,4.2vw,58px)}
html[lang="ru"] .story-copy h2{font-size:clamp(24px,3.4vw,46px)}
html[lang="ru"] .route h3{font-size:22px}
html[lang="ru"] .news-item h3{font-size:19px}
html[lang="ru"] .stat b{font-size:30px}
html[lang="ru"] .route .num{font-size:44px}
html[lang="ru"] .btn{font-size:15px}
html[lang="ru"] .play{font-size:clamp(14px,1.8vw,20px)}
html[lang="ru"] .strip-quote .q{font-size:clamp(18px,2.8vw,36px)}
html[lang="ru"] .exp-quote{font-size:clamp(18px,2.8vw,36px)}
html[lang="ru"] .peace{font-size:clamp(15px,2vw,26px)}
html[lang="ru"] .names{font-size:clamp(16px,1.8vw,24px)}
html[lang="ru"] .next-race .name{font-size:clamp(28px,5.4vw,72px)}
html[lang="ru"] .hazard-strip span{font-size:15px}
html[lang="ru"] .contact h2{font-size:clamp(30px,5vw,70px)}

/* ===== hero (home) ===== */
.hero{position:relative;min-height:100vh;isolation:isolate}
.hero-bg{position:absolute;inset:0;z-index:-2}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center 0%;filter:saturate(.92) contrast(1.06)}
.hero::before{content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(0deg,rgba(12,10,7,.72) 0%,rgba(12,10,7,0) 26%),
             linear-gradient(180deg,rgba(12,10,7,.5) 0%,rgba(12,10,7,0) 22%)}
.hero-inner{position:absolute;top:13vh;left:5vw;max-width:640px}
.hero-cta{position:absolute;left:5vw;bottom:6vh;max-width:400px}
.hero h1{font-size:clamp(22px,3.7vw,52px);color:var(--bone)}
.hero h1 .line{display:block;width:fit-content;max-width:100%;padding:.06em .24em;margin-top:.1em}
.hero h1 .l1{transform:rotate(-2deg);background:var(--ink);clip-path:polygon(0 12%,2% 0,98% 6%,100% 20%,99% 86%,95% 100%,3% 94%,0 78%)}
.hero h1 .l2{transform:rotate(1.1deg) translateX(1.5vw);background:var(--rust);color:var(--ink);clip-path:polygon(1% 8%,97% 0,100% 74%,98% 100%,4% 96%,0 66%)}
.hero h1 .l3{transform:rotate(-1deg) translateX(.6vw);background:var(--hazard);color:var(--ink);clip-path:polygon(0 18%,3% 0,100% 10%,97% 92%,90% 100%,2% 88%)}
.hero-tag{max-width:400px;font-size:15px;line-height:1.5;color:var(--bone);transform:rotate(-.6deg);text-shadow:0 1px 10px rgba(12,10,7,.95)}
.hero-cta .btn{margin-top:18px}
.btn{
  display:inline-block;margin-top:30px;padding:16px 40px;
  font-family:'Black Ops One',cursive;font-size:20px;text-transform:uppercase;text-decoration:none;
  color:var(--ink);background:var(--flame);
  clip-path:polygon(4% 10%,98% 0,100% 82%,94% 100%,0 92%,2% 24%);
  transform:rotate(-1.6deg);transition:transform .15s,background .15s;
}
.btn:hover{transform:rotate(1deg) scale(1.04);background:var(--hazard)}
.hero-sticker{
  position:absolute;top:13vh;right:4vw;z-index:6;padding:14px 18px;
  font-family:'Permanent Marker',cursive;font-size:18px;color:var(--ink);
  background:var(--sand);transform:rotate(6deg);
  clip-path:polygon(2% 6%,96% 0,100% 88%,90% 100%,0 94%);
  box-shadow:0 8px 24px rgba(0,0,0,.4);
}

/* ===== hazard marquee ===== */
.hazard-strip{
  position:relative;z-index:5;overflow:hidden;
  background:repeating-linear-gradient(45deg,var(--hazard) 0 26px,var(--ink) 26px 52px);
  padding:6px 0;transform:rotate(-1.4deg) scale(1.03);
  border-top:3px solid var(--ink);border-bottom:3px solid var(--ink);
}
.hazard-strip .inner{
  display:flex;width:max-content;animation:scroll 28s linear infinite;
  background:var(--ink);padding:8px 0;
  clip-path:polygon(0 14%,100% 0,100% 86%,0 100%);
}
.hazard-strip span{
  font-family:'Black Ops One',cursive;font-size:20px;color:var(--bone);
  text-transform:uppercase;white-space:nowrap;padding:0 28px;
}
.hazard-strip span:nth-child(even){color:var(--flame)}
@keyframes scroll{to{transform:translateX(-50%)}}

/* ===== sections ===== */
section{position:relative;padding:110px 5vw}
.sec-label{
  display:inline-block;font-family:'Permanent Marker',cursive;font-size:17px;color:var(--ink);
  background:var(--sand);padding:6px 16px;transform:rotate(-3deg);margin-bottom:22px;
  clip-path:polygon(3% 10%,100% 0,97% 90%,0 100%);
}
h2{font-size:clamp(36px,6vw,84px);margin-bottom:36px}
h2 .flame{color:var(--flame)}
h2 .rust{color:var(--rust)}
h2 .hz{color:var(--hazard)}

/* manifesto */
.manifesto{background:var(--rust);color:var(--ink);
  clip-path:polygon(0 3.5%,12% 1%,34% 3%,55% .5%,78% 2.5%,100% 0,100% 97%,86% 99.5%,60% 97.5%,38% 100%,14% 97.5%,0 99.5%)}
.manifesto h2{color:var(--ink);max-width:1000px}
.manifesto h2 em{font-style:normal;background:var(--ink);color:var(--bone);padding:0 .15em;display:inline-block;transform:rotate(-1.6deg)}
.manifesto p{max-width:680px;font-size:19px;line-height:1.6;font-weight:400}
.manifesto .peace{
  margin-top:44px;font-family:'Black Ops One',cursive;font-size:clamp(22px,3vw,38px);
  transform:rotate(-2deg);width:fit-content;max-width:100%;
  background:var(--ink);color:var(--hazard);padding:.2em .5em;
  clip-path:polygon(0 16%,2% 0,99% 8%,100% 84%,97% 100%,1% 92%);
}
.manifesto-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:60px;align-items:center}
.manifesto-grid>*{min-width:0}
.manifesto-photo{transform:rotate(2.4deg)}
.manifesto-photo img{clip-path:polygon(3% 5%,97% 0,100% 92%,94% 100%,0 96%,1% 10%);filter:contrast(1.05)}
.manifesto-photo figcaption{font-family:'Permanent Marker',cursive;margin-top:12px;font-size:15px;transform:rotate(-1deg)}

/* stats */
.stats{display:flex;flex-wrap:wrap;gap:28px;margin-top:60px}
.stat{
  background:var(--ink);color:var(--bone);padding:22px 30px;min-width:180px;
  clip-path:polygon(5% 8%,97% 0,100% 88%,92% 100%,0 94%,2% 18%);
}
.stat:nth-child(2n){transform:rotate(1.6deg)}
.stat:nth-child(2n+1){transform:rotate(-1.8deg)}
.stat b{display:block;font-family:'Black Ops One',cursive;font-size:44px;color:var(--flame)}
.stat i{font-style:normal;text-transform:uppercase;letter-spacing:.14em;font-size:13px;color:var(--sand)}

/* routes */
.routes-wrap{display:grid;grid-template-columns:repeat(6,1fr);gap:34px}
.route{position:relative;transition:transform .25s;text-decoration:none;color:inherit;display:block}
.route:hover{transform:rotate(0) scale(1.03)!important;z-index:5}
.route img{width:100%;height:320px;object-fit:cover;filter:saturate(.95) contrast(1.05)}
.route .frame{position:relative;background:var(--bone);padding:10px 10px 0}
.route .num{
  position:absolute;top:-26px;left:-18px;z-index:3;
  font-family:'Black Ops One',cursive;font-size:58px;color:var(--ink);
  background:var(--hazard);padding:2px 14px;transform:rotate(-6deg);
  clip-path:polygon(6% 8%,96% 0,100% 90%,0 100%);
}
.route .body{background:var(--bone);color:var(--ink);padding:16px 14px 22px}
.route h3{font-size:30px}
.route .yr{font-family:'Permanent Marker',cursive;color:var(--rust);font-size:15px}
.route p{margin-top:8px;font-size:15px;line-height:1.5;font-weight:400}
.route .go{display:inline-block;margin-top:14px;font-family:'Permanent Marker',cursive;font-size:15px;color:var(--flame)}
.route:nth-child(1){grid-column:1/3;transform:rotate(-1.8deg)}
.route:nth-child(2){grid-column:3/5;transform:rotate(1.4deg) translateY(34px)}
.route:nth-child(3){grid-column:5/7;transform:rotate(-1.1deg)}
.route:nth-child(4){grid-column:1/4;transform:rotate(1.2deg) translateY(10px)}
.route:nth-child(5){grid-column:4/7;transform:rotate(-1.6deg) translateY(44px)}
.route:nth-child(1) .frame{clip-path:polygon(2% 3%,98% 0,100% 96%,95% 100%,0 98%,1% 8%)}
.route:nth-child(2) .frame{clip-path:polygon(0 5%,96% 2%,100% 90%,98% 100%,3% 97%,1% 14%)}
.route:nth-child(3) .frame{clip-path:polygon(3% 0,100% 4%,97% 98%,0 100%,2% 10%,1% 6%)}
.route:nth-child(4) .frame{clip-path:polygon(1% 6%,99% 0,100% 94%,96% 100%,2% 98%,0 12%)}
.route:nth-child(5) .frame{clip-path:polygon(0 2%,97% 5%,100% 98%,4% 100%,1% 90%,2% 8%)}
.route:nth-child(6){grid-column:1/4;transform:rotate(-1.3deg) translateY(20px)}
.route:nth-child(7){grid-column:4/7;transform:rotate(1.5deg) translateY(50px)}
.route:nth-child(6) .frame{clip-path:polygon(2% 4%,98% 1%,100% 95%,94% 100%,0 97%,1% 10%)}
.route:nth-child(7) .frame{clip-path:polygon(0 3%,96% 0,100% 92%,97% 100%,2% 98%,1% 12%)}
.routes-note{margin-top:90px;font-family:'Permanent Marker',cursive;font-size:22px;color:var(--sand);transform:rotate(-1.4deg);max-width:560px}

/* cars teaser / section */
.cars{background:var(--coal);
  clip-path:polygon(0 0,22% 2.2%,46% .4%,71% 2%,100% .6%,100% 100%,76% 98%,52% 100%,27% 97.6%,0 99.6%)}
.cars-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.cars-photo{position:relative;transform:rotate(-2deg)}
.cars-photo img{clip-path:polygon(2% 6%,98% 0,100% 90%,95% 100%,0 96%,1% 14%)}
.cars-photo .tape{
  position:absolute;top:-14px;left:34%;width:150px;height:34px;background:rgba(216,196,156,.85);
  transform:rotate(-4deg);clip-path:polygon(3% 20%,97% 0,100% 78%,0 100%);
}
.cars-copy p{font-size:18px;line-height:1.65;color:var(--sand);max-width:560px;margin-bottom:18px}
.cars-copy strong{color:var(--flame);font-weight:600}
.quote{
  margin-top:34px;padding:26px 30px;background:var(--ink);border-left:6px solid var(--flame);
  transform:rotate(-1deg);clip-path:polygon(0 0,99% 4%,100% 92%,97% 100%,1% 97%,0 8%);
}
.quote p{font-family:'Permanent Marker',cursive;font-size:20px;color:var(--bone);margin:0}

/* experience collage */
.exp{overflow:hidden}
.exp-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:26px;align-items:start}
.exp-item{position:relative}
.exp-item img{width:100%;object-fit:cover;filter:contrast(1.05)}
.exp-item .cap{font-family:'Permanent Marker',cursive;font-size:15px;color:var(--sand);margin-top:10px;transform:rotate(-1deg)}
.exp-item:nth-child(1){grid-column:1/6;transform:rotate(-2deg)}
.exp-item:nth-child(1) img{height:420px;clip-path:polygon(2% 4%,97% 0,100% 94%,94% 100%,0 97%,1% 10%)}
.exp-item:nth-child(2){grid-column:6/10;transform:rotate(1.6deg) translateY(56px)}
.exp-item:nth-child(2) img{height:480px;clip-path:polygon(0 3%,98% 0,100% 96%,3% 100%,1% 12%,2% 6%)}
.exp-item:nth-child(3){grid-column:10/13;transform:rotate(-1.2deg) translateY(20px)}
.exp-item:nth-child(3) img{height:520px;clip-path:polygon(4% 0,100% 5%,96% 97%,0 100%,2% 8%,1% 4%)}
.exp-quote{
  margin:110px auto 0;max-width:900px;text-align:center;
  font-family:'Black Ops One',cursive;font-size:clamp(26px,4vw,52px);line-height:1.15;color:var(--bone);
}
.exp-quote .hl{background:var(--rust);color:var(--ink);padding:0 .2em;display:inline-block;transform:rotate(-1.6deg)}

/* founders */
.founders{background:var(--sand);color:var(--ink);
  clip-path:polygon(0 2.4%,18% .4%,42% 2.6%,66% .6%,88% 2.4%,100% .8%,100% 97.6%,80% 99.6%,56% 97.4%,30% 100%,10% 98%,0 99.8%)}
.founders h2{color:var(--ink)}
.founders-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:64px;align-items:center}
.founders-photo{transform:rotate(2deg);position:relative}
.founders-photo img{clip-path:polygon(3% 2%,98% 0,100% 95%,96% 100%,0 97%,1% 8%)}
.founders-photo .pin{
  position:absolute;top:-20px;right:12%;font-family:'Permanent Marker',cursive;
  background:var(--flame);color:var(--ink);padding:8px 16px;font-size:16px;
  transform:rotate(5deg);clip-path:polygon(4% 12%,98% 0,100% 86%,0 100%);z-index:3;
}
.founders p{font-size:18px;line-height:1.65;font-weight:400;max-width:600px;margin-bottom:18px}
.founders .names{
  font-family:'Black Ops One',cursive;font-size:clamp(24px,2.6vw,34px);margin:26px 0 10px;
  display:inline-block;background:var(--ink);color:var(--hazard);padding:.15em .4em;transform:rotate(-1.6deg);
  clip-path:polygon(0 14%,2% 0,99% 6%,100% 86%,97% 100%,1% 92%);
}
.founders .origin{font-family:'Permanent Marker',cursive;font-size:16px;color:var(--rust)}

/* news */
.news-list{display:grid;grid-template-columns:repeat(3,1fr);gap:36px}
.news-item{
  background:var(--coal);padding:28px 26px 34px;position:relative;
  border:1px solid rgba(236,228,210,.14);transition:transform .2s;
}
.news-item:nth-child(1){transform:rotate(-1.4deg);clip-path:polygon(2% 4%,98% 0,100% 94%,95% 100%,0 97%,1% 12%)}
.news-item:nth-child(2){transform:rotate(1.2deg) translateY(20px);clip-path:polygon(0 2%,97% 5%,100% 96%,3% 100%,1% 10%,2% 4%)}
.news-item:nth-child(3){transform:rotate(-.8deg);clip-path:polygon(3% 0,100% 3%,98% 98%,0 100%,1% 8%,2% 5%)}
.news-item:hover{transform:rotate(0) scale(1.02)}
a.news-item{text-decoration:none;color:inherit;display:block}
.news-item .date{font-family:'Permanent Marker',cursive;color:var(--flame);font-size:14px}
.news-item h3{font-size:24px;margin:12px 0 12px;color:var(--bone)}
.news-item p{font-size:15px;line-height:1.55;color:var(--sand)}

/* footer / contact */
.contact{position:relative;min-height:80vh;display:flex;align-items:center;isolation:isolate;padding:140px 5vw}
.contact-bg{position:absolute;inset:0;z-index:-2}
.contact-bg img{width:100%;height:100%;object-fit:cover}
.contact::before{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(0deg,rgba(12,10,7,.95) 8%,rgba(12,10,7,.45))}
.contact h2{font-size:clamp(40px,7vw,100px)}
.contact .btn{font-size:24px;padding:20px 52px}
.contact .mail{display:block;margin-top:26px;font-family:'Permanent Marker',cursive;font-size:20px;color:var(--sand);text-decoration:none}
.contact .mail:hover{color:var(--flame)}
footer{background:var(--ink);padding:30px 5vw;display:flex;justify-content:space-between;flex-wrap:wrap;gap:14px;border-top:2px dashed rgba(236,228,210,.25)}
footer small{color:var(--sand);text-transform:uppercase;letter-spacing:.16em;font-size:12px}

/* ============ SUBPAGES (races, cars, about) ============ */
.page-hero{position:relative;min-height:78vh;display:flex;align-items:flex-end;isolation:isolate}
.page-hero .bg{position:absolute;inset:0;z-index:-2}
.page-hero .bg img{width:100%;height:100%;object-fit:cover;filter:saturate(.94) contrast(1.06)}
.page-hero::before{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(200deg,rgba(12,10,7,.05) 40%,rgba(12,10,7,.85) 90%)}
.page-hero .inner{padding:0 5vw 9vh;width:100%;position:relative}
.page-hero .bignum{
  position:absolute;bottom:calc(9vh + 10px);right:5vw;
  font-family:'Black Ops One',cursive;font-size:clamp(80px,16vw,220px);line-height:1;
  color:transparent;-webkit-text-stroke:3px var(--hazard);opacity:.9;transform:rotate(3deg);
}
.page-hero h1{font-size:clamp(48px,8.5vw,124px);color:var(--bone)}
.page-hero h1 .plate{
  display:inline-block;padding:.04em .2em;background:var(--ink);transform:rotate(-2deg);
  clip-path:polygon(0 12%,2% 0,98% 6%,100% 20%,99% 86%,95% 100%,3% 94%,0 78%);
}
.page-hero .sub{
  display:inline-block;margin-top:16px;font-family:'Permanent Marker',cursive;font-size:clamp(16px,2vw,24px);
  color:var(--ink);background:var(--hazard);padding:8px 18px;transform:rotate(1.4deg);
  clip-path:polygon(1% 8%,97% 0,100% 74%,98% 100%,4% 96%,0 66%);
}
.crumbs{position:absolute;top:84px;left:5vw;z-index:5;font-family:'Permanent Marker',cursive;font-size:14px}
.crumbs a{color:var(--sand);text-decoration:none}
.crumbs a:hover{color:var(--flame)}
.crumbs span{color:var(--flame);padding:0 6px}

/* facts strip */
.facts{
  display:flex;flex-wrap:wrap;gap:26px;justify-content:center;
  background:var(--rust);padding:54px 5vw;
  clip-path:polygon(0 12%,10% 2%,32% 10%,54% 0,76% 8%,100% 2%,100% 90%,88% 100%,62% 92%,40% 100%,16% 92%,0 100%);
}
.facts .stat{background:var(--ink)}

/* story blocks */
.story{padding:110px 5vw}
.story-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center;margin-bottom:120px}
.story-grid:last-child{margin-bottom:0}
.story-grid.flip .story-photo{order:2}
.story-copy h2{font-size:clamp(32px,4.6vw,64px)}
.story-copy p{font-size:18px;line-height:1.65;color:var(--sand);max-width:560px;margin-bottom:18px;font-weight:400}
.story-copy strong{color:var(--flame);font-weight:600}
.story-photo{position:relative}
.story-photo img{filter:contrast(1.05)}
.story-grid:nth-child(odd) .story-photo{transform:rotate(-2deg)}
.story-grid:nth-child(even) .story-photo{transform:rotate(1.8deg)}
.story-grid:nth-child(odd) .story-photo img{clip-path:polygon(2% 5%,97% 0,100% 93%,94% 100%,0 96%,1% 12%)}
.story-grid:nth-child(even) .story-photo img{clip-path:polygon(0 3%,98% 1%,100% 95%,96% 100%,2% 98%,1% 10%)}
.story-photo .cap{font-family:'Permanent Marker',cursive;font-size:15px;color:var(--sand);margin-top:12px;transform:rotate(-1deg)}
.story-photo .tape{
  position:absolute;top:-14px;left:38%;width:140px;height:32px;background:rgba(216,196,156,.85);
  transform:rotate(-4deg);clip-path:polygon(3% 20%,97% 0,100% 78%,0 100%);z-index:2;
}

/* gallery collage on subpages */
.gallery{padding:40px 5vw 130px}
.gallery-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:26px;align-items:start}
.g-item{position:relative}
.g-item img{width:100%;object-fit:cover;filter:contrast(1.05)}
.g-item .cap{font-family:'Permanent Marker',cursive;font-size:14px;color:var(--sand);margin-top:10px;transform:rotate(-1deg)}
.g-item:nth-child(1){grid-column:1/6;transform:rotate(-1.8deg)}
.g-item:nth-child(1) img{height:400px;clip-path:polygon(2% 4%,97% 0,100% 94%,94% 100%,0 97%,1% 10%)}
.g-item:nth-child(2){grid-column:6/10;transform:rotate(1.4deg) translateY(46px)}
.g-item:nth-child(2) img{height:460px;clip-path:polygon(0 3%,98% 0,100% 96%,3% 100%,1% 12%,2% 6%)}
.g-item:nth-child(3){grid-column:10/13;transform:rotate(-1.2deg) translateY(14px)}
.g-item:nth-child(3) img{height:500px;clip-path:polygon(4% 0,100% 5%,96% 97%,0 100%,2% 8%,1% 4%)}

/* big quote strip on subpages */
.strip-quote{
  background:var(--sand);color:var(--ink);padding:100px 5vw;text-align:center;
  clip-path:polygon(0 8%,14% 0,38% 6%,60% 0,82% 5%,100% 0,100% 92%,84% 100%,58% 94%,36% 100%,12% 95%,0 100%);
}
.strip-quote .q{
  max-width:960px;margin:0 auto;font-family:'Black Ops One',cursive;
  font-size:clamp(26px,3.8vw,50px);line-height:1.12;text-transform:uppercase;
}
.strip-quote .q .hl{background:var(--ink);color:var(--hazard);padding:0 .2em;display:inline-block;transform:rotate(-1.4deg)}
.strip-quote .who{margin-top:26px;font-family:'Permanent Marker',cursive;font-size:17px;color:var(--rust)}

/* next race banner */
.next-race{display:block;position:relative;isolation:isolate;text-decoration:none;min-height:44vh;display:flex;align-items:center;justify-content:center}
.next-race .bg{position:absolute;inset:0;z-index:-2}
.next-race .bg img{width:100%;height:100%;object-fit:cover;filter:saturate(.85)}
.next-race::before{content:"";position:absolute;inset:0;z-index:-1;background:rgba(12,10,7,.62);transition:background .25s}
.next-race:hover::before{background:rgba(182,67,26,.55)}
.next-race .lbl{
  position:absolute;top:40px;left:5vw;font-family:'Permanent Marker',cursive;font-size:18px;color:var(--ink);
  background:var(--hazard);padding:6px 16px;transform:rotate(-3deg);
  clip-path:polygon(3% 10%,100% 0,97% 90%,0 100%);
}
.next-race .name{
  font-family:'Black Ops One',cursive;font-size:clamp(44px,8vw,110px);color:var(--bone);text-transform:uppercase;
  background:var(--ink);padding:.05em .3em;transform:rotate(-1.8deg);
  clip-path:polygon(0 14%,2% 0,99% 8%,100% 84%,96% 100%,1% 90%);
}
.next-race:hover .name{color:var(--hazard)}

/* ===== placeholders (photos coming soon) ===== */
.ph-img{
  position:relative;display:flex;align-items:center;justify-content:center;
  background:
    repeating-linear-gradient(45deg,rgba(223,164,31,.16) 0 22px,transparent 22px 44px),
    var(--coal);
  border:2px dashed rgba(236,228,210,.3);
  min-height:340px;width:100%;
}
.ph-img span{
  font-family:'Permanent Marker',cursive;font-size:clamp(16px,1.8vw,22px);color:var(--sand);
  background:var(--ink);padding:10px 22px;transform:rotate(-3deg);
  clip-path:polygon(2% 6%,96% 0,100% 88%,90% 100%,0 94%);
}
.story-photo .ph-img{clip-path:polygon(2% 5%,97% 0,100% 93%,94% 100%,0 96%,1% 12%)}
.route .frame .ph-img{min-height:320px}
.page-hero.ph-hero::before{background:linear-gradient(200deg,rgba(12,10,7,.35) 30%,rgba(12,10,7,.92) 90%)}
.page-hero.ph-hero .bg{
  background:
    repeating-linear-gradient(45deg,rgba(223,164,31,.09) 0 34px,transparent 34px 68px),
    radial-gradient(ellipse at 50% 100%,#2a1e10 0%,var(--ink) 70%);
}
.soon-tag{
  display:inline-block;margin-left:14px;font-family:'Permanent Marker',cursive;font-size:15px;
  color:var(--ink);background:var(--flame);padding:4px 12px;transform:rotate(3deg);vertical-align:middle;
  clip-path:polygon(3% 10%,100% 0,97% 90%,0 100%);
}

/* ===== video blocks ===== */
.video-sec{padding:40px 5vw 120px}
.video-sec.on-dark{background:var(--coal)}
.video-wrap{max-width:1100px;margin:0 auto;position:relative}
.video-frame{
  position:relative;cursor:pointer;transform:rotate(-1.2deg);background:var(--bone);padding:12px;
  clip-path:polygon(1% 4%,98% 0,100% 93%,95% 100%,0 97%,2% 10%);
}
.video-frame .thumb{position:relative;overflow:hidden;aspect-ratio:16/9;background:var(--ink)}
.video-frame .thumb img{width:100%;height:100%;object-fit:cover;filter:saturate(.9) contrast(1.08)}
.video-frame .thumb iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.video-frame .play{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) rotate(-4deg);
  font-family:'Black Ops One',cursive;font-size:clamp(18px,2.4vw,28px);text-transform:uppercase;
  color:var(--ink);background:var(--flame);padding:16px 34px;
  clip-path:polygon(4% 10%,98% 0,100% 82%,94% 100%,0 92%,2% 24%);
  transition:transform .15s,background .15s;z-index:2;pointer-events:none;
}
.video-frame:hover .play{transform:translate(-50%,-50%) rotate(2deg) scale(1.06);background:var(--hazard)}
.video-frame.playing .play{display:none}
.video-cap{font-family:'Permanent Marker',cursive;font-size:16px;color:var(--sand);margin-top:14px;transform:rotate(-.8deg)}
.video-sticker{
  position:absolute;top:-22px;right:-10px;z-index:3;
  font-family:'Permanent Marker',cursive;font-size:15px;color:var(--ink);
  background:var(--hazard);padding:8px 16px;transform:rotate(5deg);
  clip-path:polygon(2% 6%,96% 0,100% 88%,90% 100%,0 94%);
}
.videos-2{display:grid;grid-template-columns:1fr 1fr;gap:44px;max-width:1200px;margin:0 auto}
.videos-2 .video-frame:nth-child(even),.videos-2 > div:nth-child(2) .video-frame{transform:rotate(1.4deg)}
.yt-link{color:var(--flame);text-decoration:none;font-family:'Permanent Marker',cursive}
.yt-link:hover{color:var(--hazard)}
@media (max-width:960px){.videos-2{grid-template-columns:1fr}}

/* reveal animation */
.reveal{opacity:0;transform:translateY(40px) rotate(0deg)}
.reveal.on{opacity:1;transform:none;transition:opacity .7s ease,transform .7s ease}

@media (max-width:960px){
  .routes-wrap{grid-template-columns:1fr 1fr}
  .route{grid-column:auto!important;transform:rotate(-1deg)!important}
  .manifesto-grid,.cars-grid,.founders-grid,.story-grid{grid-template-columns:1fr;gap:44px}
  .story-grid.flip .story-photo{order:0}
  .exp-grid,.gallery-grid{grid-template-columns:1fr}
  .exp-item,.g-item{grid-column:auto!important;transform:rotate(-1deg)!important}
  .news-list{grid-template-columns:1fr}
  nav{display:none}
}
@media (max-width:620px){
  .routes-wrap{grid-template-columns:1fr}
  .hero-sticker{display:none}
  .page-hero .bignum{display:none}
}
