* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --amber: #f4a915;
  --amber-dark: #d99206;
  --ink: #0e1626;
  --ink-2: #14203a;
  --ink-3: #1a2a4a;
  --paper: #f5f4f1;
  --gray: #5f6470;
  --line: #e6e4df;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, .logo { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.5px; }

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(14,22,38,0.96);
  backdrop-filter: blur(8px);
  color: #fff;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 1.5px; }
.logo span { color: var(--amber); }
.logo.small { font-size: 1.1rem; }
.navbar nav { display: flex; gap: 32px; }
.navbar nav a {
  color: #b9bdc6; font-weight: 500; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 1px;
  transition: color 0.2s;
}
.navbar nav a:hover { color: var(--amber); }

/* Hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
}
.menu-toggle span {
  display: block; height: 2px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 4px;
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary { background: var(--amber); color: var(--ink); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(244,169,21,0.3); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-lg { padding: 15px 34px; font-size: 1.02rem; }
.nav-cta { padding: 9px 18px; font-size: 0.9rem; }

/* ---------- Tread strip (repeating chevron texture) ---------- */
.tread-strip {
  height: 14px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--amber) 0 10px,
    transparent 10px 24px
  );
  opacity: 0.85;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at 75% 20%, rgba(244,169,21,0.10), transparent 55%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 60%, var(--ink-3) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner { display: flex; align-items: center; gap: 70px; padding: 90px 24px 100px; }
.hero-text { flex: 1; min-width: 0; }

.eyebrow {
  display: inline-block;
  color: var(--amber); font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; font-size: 0.78rem;
  margin-bottom: 16px;
}
.eyebrow.center { display: block; text-align: center; }

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero p { font-size: 1.12rem; color: #aeb3bd; max-width: 460px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 44px; list-style: none;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem; font-weight: 700; color: var(--amber); line-height: 1.1;
}
.hero-stats span { font-size: 0.82rem; color: #8d929d; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Animated tyre ---------- */
.hero-visual { flex-shrink: 0; position: relative; }
.tyre { width: 300px; height: 300px; display: block; }
.tyre-rotor { transform-origin: 120px 120px; animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.tyre-shadow {
  width: 220px; height: 26px; margin: 10px auto 0;
  background: radial-gradient(ellipse, rgba(0,0,0,0.55), transparent 70%);
}
@media (prefers-reduced-motion: reduce) {
  .tyre-rotor { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800;
  text-transform: uppercase; text-align: center;
  margin-bottom: 48px;
}
.section-title.left { text-align: left; }
.section-title.light { color: #fff; }

/* Services */
.services { background: var(--paper); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 34px 26px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(18,19,23,0.08); border-color: var(--amber); }
.card-icon {
  width: 54px; height: 54px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: var(--ink); color: var(--amber);
}
.card h3 { font-size: 1.35rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.card p { color: var(--gray); font-size: 0.94rem; }

/* Why */
.why { background: var(--ink); color: #fff; padding-top: 0; }
.why .container { padding-top: 84px; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.why-item { background: var(--ink); padding: 34px 28px; transition: background 0.25s; }
.why-item:hover { background: var(--ink-2); }
.why-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  display: block; font-size: 1.4rem; font-weight: 700;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}
.why-item p { color: #9ea3ad; font-size: 0.93rem; }

/* Reviews */
.reviews { background: #fff; }
.review-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 30px 26px;
}
.review-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.review-card { display: flex; flex-direction: column; }
.review-card .stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 12px; }
.review-card p { color: var(--ink); font-size: 0.97rem; font-style: italic; margin-bottom: 18px; flex: 1; }
.review-card footer { display: flex; align-items: center; gap: 10px; }
.review-card .avatar {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--ink); color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem;
}
.review-card .reviewer { display: flex; flex-direction: column; line-height: 1.3; }
.review-card .reviewer { color: var(--ink); font-size: 0.92rem; font-weight: 600; }
.review-card .reviewer small { color: var(--gray); font-weight: 400; font-size: 0.78rem; }
.reviews-link { text-align: center; margin-top: 34px; }
.reviews-link a { color: var(--amber-dark); font-weight: 600; }
.reviews-link a:hover { text-decoration: underline; }

/* Hours + map */
.hours { background: var(--paper); }
.hours-inner { display: flex; gap: 60px; align-items: flex-start; }
.hours-text { flex: 1; }
.hours-table { border-collapse: collapse; width: 100%; max-width: 380px; font-size: 1rem; }
.hours-table td { padding: 13px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-note { margin-top: 16px; font-size: 0.82rem; color: #a8a59e; }
.map-wrap { flex: 1.2; border-radius: 10px; overflow: hidden; box-shadow: 0 16px 40px rgba(18,19,23,0.12); }
.map-wrap iframe { display: block; border: 0; }

/* Contact */
.contact {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244,169,21,0.12), transparent 60%),
    var(--ink);
  color: #fff; text-align: center;
}
.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  text-transform: uppercase; margin-bottom: 10px;
}
.contact p { color: #aeb3bd; margin-bottom: 28px; }
.contact-actions { justify-content: center; }

/* Footer (page footer only — not review-card footers) */
body > footer { background: #0a101c; color: #6d727d; padding: 26px 0; font-size: 0.85rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
footer .logo { color: #fff; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .menu-toggle { display: flex; order: 3; }
  .navbar nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(14,22,38,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .navbar nav.open { max-height: 320px; }
  .navbar nav a {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }
  .nav-cta { margin-left: auto; margin-right: 6px; padding: 8px 12px; font-size: 0.82rem; }
  .logo { font-size: 1.2rem; }
  .hero-inner { flex-direction: column-reverse; text-align: center; padding: 60px 24px; gap: 40px; }
  .hero p { margin: 0 auto 30px; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-stats { gap: 28px; }
  .tyre { width: 210px; height: 210px; }
  .hours-inner { flex-direction: column; }
  .map-wrap { width: 100%; }
  .footer-inner { flex-direction: column; }
}
