:root{
  --asphalt:#15171B;
  --asphalt-2:#1E2126;
  --ash:#EEEDE8;
  --ash-2:#E2E1DA;
  --orange:#FF5722;
  --orange-dark:#E0430F;
  --yellow:#FFC530;
  --steel:#3D4450;
  --chrome:#D8DBE0;
  --white:#FFFFFF;
  --radius:2px;
  --maxw:1240px;
  --header-offset:112px; /* announce bar + sticky header height, used for anchor scroll */
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; transition-duration:0.01ms !important;}
}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--ash);
  color:var(--steel);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.01em;
  color:var(--asphalt);
  line-height:1.05;
}
.mono{font-family:'JetBrains Mono',monospace;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px;}
button{font-family:inherit;cursor:pointer;border:none;}

/* ===== Anchor-scroll fix ==============================================
   Any section/div that can be a nav or hash-link target needs this so the
   sticky announce bar + header (~112px) doesn't cover its heading when the
   browser jumps to the anchor. Applied broadly via [id] rather than per
   section so new anchors added later inherit the fix automatically. ===== */
[id]{ scroll-margin-top: var(--header-offset); }

/* ===== Tread pattern (signature texture) ===== */
.tread-bg{
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 26px);
}
.tread-divider{
  height:10px;
  background: repeating-linear-gradient(90deg, var(--asphalt) 0 18px, var(--orange) 18px 22px);
  opacity:0.9;
}

/* ===== Part-number tag (signature element) ===== */
.pn-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.02em;
  color:var(--steel);
  background:var(--white);
  border:1px dashed var(--chrome);
  border-radius:var(--radius);
  padding:3px 8px;
}
.pn-tag::before{
  content:"";
  width:5px;height:5px;
  background:var(--orange);
  border-radius:50%;
  flex-shrink:0;
}

/* ===== Announcement bar ===== */
.announce{
  background:var(--asphalt);
  color:var(--ash);
  font-size:13px;
  text-align:center;
  padding:8px 16px;
  letter-spacing:0.02em;
}
.announce b{color:var(--yellow);}

/* ===== Header ===== */
header{
  position:sticky;top:0;z-index:100;
  background:var(--white);
  border-bottom:2px solid var(--asphalt);
}
.headbar{
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;padding:14px 24px;
}
.brand{display:flex;align-items:center;gap:10px;}
.brand-mark{
  width:42px;height:42px;background:var(--asphalt);
  display:flex;align-items:center;justify-content:center;
  border-radius:var(--radius);
  flex-shrink:0;
}
.brand-logo{height:42px;width:auto;max-width:180px;object-fit:contain;flex-shrink:0;}
.brand-name{font-family:'Barlow Condensed';font-weight:800;font-size:22px;color:var(--asphalt);text-transform:uppercase;letter-spacing:0.01em;line-height:1;}
.brand-sub{font-family:'JetBrains Mono';font-size:10px;letter-spacing:0.12em;color:var(--orange);text-transform:uppercase;}
nav.mainnav{display:flex;gap:26px;font-size:14px;font-weight:600;}
nav.mainnav a{padding:6px 0;border-bottom:2px solid transparent;text-transform:uppercase;font-size:13px;letter-spacing:0.02em;}
nav.mainnav a:hover, nav.mainnav a.active{border-bottom-color:var(--orange);}
.head-actions{display:flex;align-items:center;gap:16px;}
.search-box{
  display:flex;align-items:center;background:var(--ash);border:1px solid var(--chrome);border-radius:var(--radius);
  padding:8px 12px;gap:8px;min-width:220px;
}
.search-box input{background:none;border:none;outline:none;font-size:13px;width:100%;color:var(--steel);}
.icon-btn{position:relative;display:flex;align-items:center;justify-content:center;width:38px;height:38px;background:var(--ash);border-radius:var(--radius);}
.cart-count{
  position:absolute;top:-6px;right:-6px;background:var(--orange);color:white;font-size:10px;font-weight:700;
  width:17px;height:17px;border-radius:50%;display:flex;align-items:center;justify-content:center;
}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--orange);color:white;
  padding:12px 22px;font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:0.04em;
  border-radius:var(--radius);
  transition:background .15s ease, transform .15s ease;
}
.btn:hover{background:var(--orange-dark);transform:translateY(-1px);}
.btn-outline{
  background:transparent;border:2px solid var(--asphalt);color:var(--asphalt);
}
.btn-outline:hover{background:var(--asphalt);color:white;}
.btn-light{background:var(--white);color:var(--asphalt);}
.btn-light:hover{background:var(--yellow);}
.mobile-toggle{display:none;background:none;width:38px;height:38px;}

/* ===== Hero (home + inner pages share the dark hero look) ===== */
.hero{
  position:relative;
  background:var(--asphalt);
  color:var(--ash);
  overflow:hidden;
}
.hero-inner{
  display:grid;grid-template-columns:1.1fr 0.9fr;gap:40px;
  align-items:center;
  padding:72px 24px 56px;
  position:relative;z-index:2;
}
.hero-inner.centered{grid-template-columns:1fr;max-width:760px;text-align:left;padding:64px 24px;}
.eyebrow{
  font-family:'JetBrains Mono';font-size:12px;letter-spacing:0.15em;text-transform:uppercase;color:var(--yellow);
  display:flex;align-items:center;gap:10px;margin-bottom:18px;
}
.eyebrow::before{content:"";width:26px;height:2px;background:var(--yellow);}
.hero h1{
  color:white;font-size:clamp(44px,6vw,78px);margin-bottom:18px;
}
.hero h1 span{color:var(--orange);}
.hero p.lead{font-size:17px;color:var(--chrome);max-width:480px;margin-bottom:30px;}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:44px;}
.hero-stats{display:flex;gap:0;border-top:1px solid rgba(255,255,255,0.15);padding-top:24px;}
.stat{padding-right:32px;margin-right:32px;border-right:1px solid rgba(255,255,255,0.15);}
.stat:last-child{border-right:none;margin-right:0;}
.stat-num{font-family:'Barlow Condensed';font-weight:800;font-size:34px;color:white;line-height:1;}
.stat-label{font-family:'JetBrains Mono';font-size:10px;letter-spacing:0.06em;color:var(--chrome);text-transform:uppercase;margin-top:4px;}

.hero-visual{position:relative;height:420px;}
.tyre{
  position:absolute;border-radius:50%;
  border:22px solid var(--asphalt-2);
  box-shadow:inset 0 0 0 4px rgba(255,255,255,0.06), 0 30px 60px rgba(0,0,0,0.5);
}
.tyre::after{
  content:"";position:absolute;inset:34%;
  border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #4a5058, #23262b 70%);
  border:6px solid #0f1114;
}
.tyre-big{width:340px;height:340px;top:20px;right:40px;background:#2a2d32;}
.tyre-small{width:180px;height:180px;bottom:-10px;right:220px;background:#2a2d32;border-width:14px;opacity:0.85;}
.hero-badge{
  position:absolute;top:24px;left:0;
  background:var(--yellow);color:var(--asphalt);
  padding:10px 14px;font-family:'JetBrains Mono';font-weight:700;font-size:12px;
  transform:rotate(-4deg);
  box-shadow:0 8px 18px rgba(0,0,0,0.35);
}

section{padding:80px 24px;}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:40px;gap:24px;flex-wrap:wrap;}
.section-head h2{font-size:clamp(32px,4vw,46px);}
.section-eyebrow{font-family:'JetBrains Mono';font-size:12px;letter-spacing:0.12em;color:var(--orange);text-transform:uppercase;margin-bottom:8px;display:block;}
.section-desc{color:var(--steel);max-width:420px;font-size:14.5px;}

/* ===== Categories ===== */
.cat-subsection{margin-bottom:48px;}
.cat-subsection:last-child{margin-bottom:0;}
.cat-subhead{font-size:24px;padding-bottom:12px;margin-bottom:20px;border-bottom:2px solid var(--asphalt);display:flex;align-items:baseline;gap:10px;}
.cat-subhead .mono{font-size:12px;color:var(--orange);text-transform:none;font-weight:600;}
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.cat-card{
  background:var(--white);border:1px solid var(--ash-2);border-radius:var(--radius);
  padding:26px 22px;transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position:relative;
}
.cat-card:hover{transform:translateY(-4px);box-shadow:0 16px 30px rgba(21,23,27,0.1);border-color:var(--asphalt);}
.cat-icon{width:44px;height:44px;color:var(--asphalt);margin-bottom:18px;}
.cat-card h3{font-size:21px;margin-bottom:6px;}
.cat-count{font-size:12.5px;color:var(--steel);margin-bottom:14px;}
.cat-link{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;color:var(--orange);display:inline-flex;align-items:center;gap:6px;}

/* ===== Products ===== */
.prod-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.prod-card{
  background:var(--white);border:1px solid var(--ash-2);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column;
  transition:box-shadow .18s ease, transform .18s ease;
}
.prod-card:hover{box-shadow:0 18px 34px rgba(21,23,27,0.12);transform:translateY(-3px);}
.prod-media{
  background:var(--asphalt);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;position:relative;
}
.prod-media svg{width:64px;height:64px;color:var(--chrome);}
.prod-tag-corner{position:absolute;top:10px;left:10px;background:var(--yellow);color:var(--asphalt);font-family:'JetBrains Mono';font-size:10px;font-weight:700;padding:3px 8px;letter-spacing:0.03em;}
.prod-body{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1;}
.prod-cat{font-size:11px;text-transform:uppercase;letter-spacing:0.06em;color:var(--orange);font-weight:700;}
.prod-name{font-family:'Barlow Condensed';font-weight:700;font-size:19px;color:var(--asphalt);text-transform:none;line-height:1.15;}
.prod-rating{font-size:12px;color:var(--yellow);letter-spacing:1px;}
.prod-foot{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:10px;border-top:1px solid var(--ash-2);}
.prod-price{font-family:'JetBrains Mono';font-weight:600;font-size:16px;color:var(--asphalt);}
.prod-price small{font-size:11px;color:var(--steel);font-weight:500;}
.add-btn{
  width:34px;height:34px;background:var(--asphalt);color:white;border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;transition:background .15s ease;
}
.add-btn:hover{background:var(--orange);}

/* ===== Tyre finder ===== */
.finder{
  background:var(--asphalt-2);color:var(--ash);border-radius:var(--radius);
  padding:44px 40px;display:grid;grid-template-columns:1fr 1.4fr;gap:40px;align-items:center;
}
.finder h2{color:white;font-size:34px;margin-bottom:10px;}
.finder p{color:var(--chrome);font-size:14px;max-width:340px;}
.finder-form{display:grid;grid-template-columns:repeat(3,1fr) auto;gap:12px;}
.finder-form select{
  background:var(--asphalt);color:var(--ash);border:1px solid #383c44;border-radius:var(--radius);
  padding:12px;font-family:'JetBrains Mono';font-size:13px;
}
.finder-result{grid-column:1/-1;margin-top:14px;font-family:'JetBrains Mono';font-size:13px;color:var(--yellow);min-height:18px;}

/* ===== Brands ===== */
.brand-strip{
  display:flex;flex-wrap:wrap;gap:0;border-top:1px solid var(--ash-2);border-bottom:1px solid var(--ash-2);
}
.brand-strip span{
  flex:1;min-width:140px;text-align:center;padding:26px 12px;
  font-family:'Barlow Condensed';font-weight:700;font-size:19px;letter-spacing:0.03em;text-transform:uppercase;
  color:var(--steel);border-right:1px solid var(--ash-2);
}
.brand-strip span:last-child{border-right:none;}

/* ===== Process ===== */
.process{display:grid;grid-template-columns:repeat(4,1fr);gap:0;}
.step{padding:0 24px 0 0;position:relative;}
.step:not(:last-child)::after{
  content:"→";position:absolute;right:-4px;top:6px;color:var(--chrome);font-size:20px;
}
.step-num{font-family:'JetBrains Mono';font-size:12px;color:var(--orange);font-weight:700;margin-bottom:10px;}
.step h3{font-size:20px;margin-bottom:8px;}
.step p{font-size:13.5px;color:var(--steel);}

/* ===== Trust / value badges (reused on About) ===== */
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.trust-card{background:var(--white);border:1px solid var(--ash-2);padding:26px;border-radius:var(--radius);}
.trust-card svg{width:30px;height:30px;color:var(--orange);margin-bottom:14px;}
.trust-card h4{font-size:17px;margin-bottom:6px;}
.trust-card p{font-size:13px;color:var(--steel);}

/* ===== Testimonials ===== */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.testi-card{background:var(--white);border:1px solid var(--ash-2);border-radius:var(--radius);padding:26px;position:relative;}
.testi-quote{font-size:14.5px;color:var(--steel);margin-bottom:18px;font-style:italic;}
.testi-who{font-family:'Barlow Condensed';font-weight:700;font-size:16px;color:var(--asphalt);text-transform:none;}
.testi-role{font-family:'JetBrains Mono';font-size:11px;color:var(--orange);text-transform:uppercase;}

/* ===== Timeline (About) ===== */
.timeline{border-left:2px solid var(--ash-2);padding-left:28px;display:flex;flex-direction:column;gap:32px;}
.timeline-item{position:relative;}
.timeline-item::before{content:"";position:absolute;left:-33.5px;top:4px;width:11px;height:11px;border-radius:50%;background:var(--orange);border:3px solid var(--ash);}
.timeline-year{font-family:'JetBrains Mono';font-size:12px;color:var(--orange);font-weight:700;letter-spacing:0.05em;}
.timeline-item h4{font-size:19px;margin:4px 0 6px;}
.timeline-item p{font-size:13.5px;color:var(--steel);max-width:520px;}

/* ===== Location / Contact ===== */
.location{background:var(--asphalt);color:var(--ash);}
.loc-inner{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;}
.loc-inner h2{color:white;}
.loc-list{margin-top:22px;display:flex;flex-direction:column;gap:16px;}
.loc-item{display:flex;gap:14px;}
.loc-item svg{width:20px;height:20px;color:var(--orange);flex-shrink:0;margin-top:2px;}
.loc-item b{color:white;display:block;font-size:14px;margin-bottom:2px;}
.loc-item span{font-size:13.5px;color:var(--chrome);}
.map-panel{
  background:var(--asphalt-2);border:1px solid #34383f;border-radius:var(--radius);
  height:340px;position:relative;overflow:hidden;
}
.map-grid{
  position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:32px 32px;
}
.map-road{position:absolute;background:#2f333a;}
.map-pin{
  position:absolute;top:50%;left:56%;transform:translate(-50%,-100%);
  display:flex;flex-direction:column;align-items:center;
}
.map-pin-dot{width:18px;height:18px;background:var(--orange);border-radius:50% 50% 50% 0;transform:rotate(-45deg);box-shadow:0 6px 14px rgba(0,0,0,0.4);}
.map-pin-label{margin-top:8px;background:white;color:var(--asphalt);font-family:'JetBrains Mono';font-size:11px;font-weight:700;padding:4px 8px;border-radius:2px;white-space:nowrap;}

/* Contact form (sits inside the location/contact section) */
.contact-form{margin-top:28px;display:flex;flex-direction:column;gap:12px;max-width:400px;}
.contact-form input, .contact-form textarea{
  background:var(--asphalt-2);border:1px solid #383c44;color:var(--ash);
  padding:12px 14px;border-radius:var(--radius);font-family:'Inter';font-size:13.5px;outline:none;resize:vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder{color:#7c828d;}
.contact-form input:focus, .contact-form textarea:focus{border-color:var(--orange);}
.contact-form button{align-self:flex-start;}

/* ===== Newsletter ===== */
.newsletter{background:var(--orange);color:white;}
.news-inner{display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap;}
.news-inner h2{color:white;font-size:30px;}
.news-inner p{font-size:14px;color:rgba(255,255,255,0.85);margin-top:6px;}
.news-form{display:flex;gap:0;max-width:400px;width:100%;}
.news-form input{flex:1;padding:14px 16px;border:none;font-size:14px;border-radius:var(--radius) 0 0 var(--radius);outline:none;}
.news-form button{background:var(--asphalt);color:white;padding:0 22px;font-weight:700;text-transform:uppercase;font-size:13px;border-radius:0 var(--radius) var(--radius) 0;letter-spacing:0.03em;}

/* ===== Footer ===== */
footer{background:var(--asphalt);color:var(--chrome);padding-top:0;}
.foot-inner{padding:56px 24px 30px;display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;}
.foot-brand-name{font-family:'Barlow Condensed';font-weight:800;font-size:24px;color:white;text-transform:uppercase;margin-bottom:10px;}
.foot-logo{height:34px;width:auto;margin-bottom:12px;}
.foot-inner p{font-size:13px;line-height:1.6;color:var(--chrome);max-width:280px;}
.foot-col h4{font-family:'JetBrains Mono';font-size:12px;letter-spacing:0.08em;color:white;text-transform:uppercase;margin-bottom:16px;}
.foot-col ul{list-style:none;display:flex;flex-direction:column;gap:10px;}
.foot-col a{font-size:13.5px;color:var(--chrome);}
.foot-col a:hover{color:var(--orange);}
.foot-bottom{
  border-top:1px solid #2a2d33;padding:20px 24px;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;
  font-size:12px;color:#767b85;
}

/* ===== Mobile ===== */
@media (max-width: 980px){
  nav.mainnav, .search-box, .hero-stats .stat:nth-child(3){display:none;}
  .hero-inner{grid-template-columns:1fr;padding-top:48px;}
  .hero-visual{height:260px;order:-1;}
  .tyre-big{width:220px;height:220px;right:10px;top:0;}
  .tyre-small{width:130px;height:130px;right:150px;bottom:-20px;}
  .cat-grid, .prod-grid{grid-template-columns:repeat(2,1fr);}
  .trust-grid{grid-template-columns:repeat(2,1fr);}
  .testi-grid{grid-template-columns:1fr;}
  .process{grid-template-columns:1fr 1fr;row-gap:28px;}
  .step:nth-child(2)::after{display:none;}
  .finder{grid-template-columns:1fr;}
  .finder-form{grid-template-columns:1fr 1fr;}
  .loc-inner{grid-template-columns:1fr;}
  .foot-inner{grid-template-columns:1fr 1fr;}
  .mobile-toggle{display:flex;align-items:center;justify-content:center;}
}
@media (max-width: 600px){
  .cat-grid, .prod-grid, .trust-grid{grid-template-columns:1fr;}
  .brand-strip span{min-width:50%;}
  section{padding:56px 18px;}
  .news-inner{flex-direction:column;align-items:flex-start;}
  .foot-inner{grid-template-columns:1fr;}
  .finder{padding:30px 22px;}
}
