/* ══════════════════════════════════════════════════════════════════════════════
   Tough Tyres — Public Microsite CSS
   Heavy vehicle tyres: breakdown response & industrial retreading
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --navy:   #0b1f45;
  --dark:   #070e1f;
  --blue:   #1a4dbf;
  --gold:   #e8b800;
  --gold2:  #f5cc00;
  --white:  #ffffff;
  --off:    #f4f4f0;
  --muted:  #8a9ab8;
  --border: rgba(255,255,255,0.1);
  --tx:     #111111;
  --txm:    #555;

  /* ── Semantic text/surface vars for dark-bg sections (flip in light theme) ── */
  --dim0:        rgba(255,255,255,0.85);   /* near-primary muted */
  --dim1:        rgba(255,255,255,0.75);   /* secondary text */
  --dim2:        rgba(255,255,255,0.5);    /* muted text */
  --dim3:        rgba(255,255,255,0.38);   /* subtle / captions */
  --dim-bg:      rgba(255,255,255,0.05);   /* card / surface bg */
  --dim-border:  rgba(255,255,255,0.1);    /* dividers / borders */

  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --r: 10px;
  --r-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--tx);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────────────────────── */
.site-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.site-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.site-h3 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
}
.gold { color: var(--gold); }
.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--muted);
}
.lead--light { color: rgba(255,255,255,0.75); }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--darker { background: var(--dark); color: var(--white); }
.section--off { background: var(--off); }
.section--gold { background: var(--gold); color: var(--dark); }

/* ── Navigation ────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0 1.5rem;
}
.site-nav.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.site-nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-nav__logo { height: 36px; width: auto; }
.site-nav__name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.site-nav__name span { color: var(--gold); }
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.site-nav__link:hover { color: var(--gold); }
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}
.site-nav__cta:hover { background: var(--gold2); transform: translateY(-1px); }
.site-nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 0.25rem;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-site {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-site--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-site--gold:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,184,0,0.35); }
.btn-site--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-site--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-site--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-site--dark:hover { background: #0f2040; transform: translateY(-2px); }
.btn-site--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
/* Dark overlay + grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 31, 0.6);
  background-image:
    linear-gradient(rgba(26,77,191,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,77,191,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(232,184,0,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  max-width: 780px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  background: rgba(232,184,0,0.1);
  border: 1px solid rgba(232,184,0,0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero__heading { color: var(--white); margin-bottom: 1.25rem; }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__phone {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__phone-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero__phone-number {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ── Emergency Strip ───────────────────────────────────────────────────────── */
.emergency-strip {
  background: var(--gold);
  padding: 0.7rem 0;
  overflow: hidden;
}
.emergency-strip__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.emergency-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  flex-shrink: 0;
}
.emergency-strip__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dark);
  opacity: 0.4;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Stats ─────────────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-item {
  padding: 1.1rem 1rem;
  background: rgba(255,255,255,0.04);
  text-align: center;
}
.stat-item__num {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-item__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

/* ── Section Header ────────────────────────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header .site-h2 { margin-bottom: 1rem; }

/* ── Service Cards ─────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: rgba(232,184,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(232,184,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(232,184,0,0.2);
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.service-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.service-card:hover .service-card__link { gap: 0.6rem; }

/* ── How It Works ──────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 1rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(232,184,0,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.step__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── Industry pills ────────────────────────────────────────────────────────── */
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  transition: all 0.2s;
}
.industry-pill:hover {
  background: rgba(232,184,0,0.1);
  border-color: rgba(232,184,0,0.3);
  color: var(--gold);
}

/* ── CTA Band ──────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 4rem 0;
  text-align: center;
}
.cta-band__heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.cta-band__sub {
  font-size: 1rem;
  color: rgba(7,14,31,0.65);
  margin-bottom: 2rem;
}
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Forms (public) ────────────────────────────────────────────────────────── */
.site-form { display: flex; flex-direction: column; gap: 1rem; }
.site-form__group { display: flex; flex-direction: column; gap: 0.35rem; }
.site-form__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}
.site-form__input,
.site-form__select,
.site-form__textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.site-form__input::placeholder,
.site-form__textarea::placeholder { color: rgba(255,255,255,0.3); }
.site-form__input:focus,
.site-form__select:focus,
.site-form__textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.site-form__select option { background: var(--navy); color: var(--white); }
.site-form__textarea { resize: vertical; min-height: 100px; }
.site-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Tracker ───────────────────────────────────────────────────────────────── */
.tracker-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  max-width: 680px;
  margin: 0 auto;
}
.tracker-result {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,184,0,0.2);
  border-radius: var(--r-lg);
  padding: 2rem;
  max-width: 680px;
  margin: 2rem auto 0;
}
.status-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  position: relative;
}
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 26px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.timeline-step--done::after { background: rgba(232,184,0,0.3) !important; }
.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  flex-shrink: 0;
  margin-top: 2px;
}
.timeline-dot--done {
  background: var(--gold);
  border-color: var(--gold);
}
.timeline-dot--active {
  background: transparent;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232,184,0,0.2);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,184,0,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(232,184,0,0.05); }
}
.timeline-label { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.5); }
.timeline-label--done { color: rgba(255,255,255,0.9); }
.timeline-label--active { color: var(--gold); }
.timeline-time { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.2rem; }

/* Plant progress bar */
.plant-stages { margin-top: 1.5rem; }
.stage-bar { margin-bottom: 0.6rem; }
.stage-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.3rem;
}
.stage-bar__track {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.stage-bar__fill {
  height: 100%;
  border-radius: 100px;
  background: var(--gold);
  transition: width 0.6s ease;
}

/* ── Contact section ───────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-info-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(232,184,0,0.1);
  border: 1px solid rgba(232,184,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-info-item__value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.5rem;
  font-size: 0.875rem;
}
.hours-grid .day { color: rgba(255,255,255,0.5); }
.hours-grid .time { color: rgba(255,255,255,0.9); font-weight: 500; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.site-footer__brand-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.site-footer__brand-name span { color: var(--gold); }
.site-footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  max-width: 280px;
}
.site-footer__social { display: flex; gap: 0.75rem; }
.site-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.site-footer__social-link:hover {
  background: rgba(232,184,0,0.1);
  border-color: rgba(232,184,0,0.3);
  color: var(--gold);
}
.site-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.site-footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.site-footer__link:hover { color: var(--gold); }
.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.site-footer__bottom a { color: rgba(255,255,255,0.4); }
.site-footer__bottom a:hover { color: var(--gold); }

/* ── Alert (public) ────────────────────────────────────────────────────────── */
.site-alert {
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.site-alert--success {
  background: rgba(26,138,74,0.15);
  border: 1px solid rgba(26,138,74,0.3);
  color: #6ee7a8;
}
.site-alert--error {
  background: rgba(214,62,62,0.12);
  border: 1px solid rgba(214,62,62,0.25);
  color: #fca5a5;
}
.site-alert__ref {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1em;
  color: var(--gold);
}

/* ── Page hero (inner pages) ───────────────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,77,191,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,77,191,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero__heading { color: var(--white); margin-bottom: 1rem; }
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.65;
}

/* ── Process steps ─────────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}
.process-step__num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.process-step__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── Confirmation page ─────────────────────────────────────────────────────── */
.confirm-card {
  max-width: 560px;
  margin: 4rem auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,184,0,0.25);
  border-radius: var(--r-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}
.confirm-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232,184,0,0.12);
  border: 2px solid rgba(232,184,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}
.confirm-card__ref {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin: 0.75rem 0;
}

/* ── Mobile ────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav__links { display: none; }
  .site-nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 1rem;
  }
  .site-nav__mobile-toggle { display: block; }
  .site-nav__cta { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-form__row { grid-template-columns: 1fr; }
  .hero__phone { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
}

/* ══ Light Theme ════════════════════════════════════════════════════════════ */

/* ── CSS variable overrides ── */
[data-theme="light"] {
  --navy:   #eeeee9;
  --dark:   #f5f5f1;
  --muted:  #5a6a85;
  --border: rgba(0,0,0,0.1);
  --white:  #0b1f45;   /* inverted: white becomes navy for text/headings */
  /* semantic dim vars flip to navy-opacity in light mode */
  --dim0:        rgba(11,31,69,0.85);
  --dim1:        rgba(11,31,69,0.75);
  --dim2:        rgba(11,31,69,0.52);
  --dim3:        rgba(11,31,69,0.42);
  --dim-bg:      rgba(11,31,69,0.04);
  --dim-border:  rgba(11,31,69,0.12);
}

[data-theme="light"] body {
  background: #f5f5f1;
  color: #0b1f45;
}

/* ── Navigation (always solid in light mode — transparent looks bad over dark page-heroes) ── */
[data-theme="light"] .site-nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
[data-theme="light"] .site-nav.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  border-bottom-color: transparent;
}
[data-theme="light"] .site-nav__name { color: #0b1f45; }
[data-theme="light"] .site-nav__name span { color: var(--gold); }
[data-theme="light"] .site-nav__link { color: rgba(11,31,69,0.65); }
[data-theme="light"] .site-nav__link:hover { color: #0b1f45; }
[data-theme="light"] .site-nav__mobile-toggle { color: #0b1f45; }
[data-theme="light"] .site-nav__links.open {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* ── Hero (homepage) ── */
[data-theme="light"] .hero {
  background-color: #eeeee9;
}
[data-theme="light"] .hero::before {
  background: rgba(238,238,233,0.3);
  background-image:
    linear-gradient(rgba(11,31,69,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,69,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
[data-theme="light"] .hero::after {
  background: radial-gradient(circle, rgba(232,184,0,0.12) 0%, transparent 65%);
}
[data-theme="light"] .hero__heading { color: #0b1f45; }
[data-theme="light"] .hero__sub { color: rgba(11,31,69,0.6); }
[data-theme="light"] .hero__phone { border-top-color: rgba(11,31,69,0.12); }
[data-theme="light"] .hero__phone-label { color: rgba(11,31,69,0.4); }

/* ── Buttons ── */
[data-theme="light"] .btn-site--outline {
  color: #0b1f45;
  border-color: rgba(11,31,69,0.35);
}
[data-theme="light"] .btn-site--outline:hover {
  border-color: #0b1f45;
  background: rgba(11,31,69,0.06);
}
[data-theme="light"] .btn-site--dark {
  background: #0b1f45;
  color: #fff;
  border-color: #0b1f45;
}
[data-theme="light"] .btn-site--dark:hover { background: #0f2a6b; }

/* ── Sections ── */
[data-theme="light"] .section--dark    { background: #fff;     color: #0b1f45; }
[data-theme="light"] .section--darker  { background: #eeeee9;  color: #0b1f45; }
[data-theme="light"] .lead--light      { color: rgba(11,31,69,0.6); }

/* ── Page hero (inner pages — stays dark navy in light mode, so force white text) ── */
[data-theme="light"] .page-hero             { background: #0b1f45; }
[data-theme="light"] .page-hero__heading    { color: #ffffff; }
[data-theme="light"] .page-hero__sub        { color: rgba(255,255,255,0.65); }
[data-theme="light"] .page-hero::before     {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}

/* ── Stats ── */
[data-theme="light"] .stats-grid     { background: rgba(0,0,0,0.06); }
[data-theme="light"] .stat-item      { background: rgba(255,255,255,0.5); }
[data-theme="light"] .stat-item__label { color: rgba(11,31,69,0.5); }

/* ── Service cards ── */
[data-theme="light"] .service-card {
  background: #fff;
  border-color: rgba(0,0,0,0.09);
}
[data-theme="light"] .service-card:hover { border-color: rgba(232,184,0,0.5); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
[data-theme="light"] .service-card__title { color: #0b1f45; }
[data-theme="light"] .service-card__desc  { color: rgba(11,31,69,0.6); }

/* ── Steps ── */
[data-theme="light"] .step__title { color: #0b1f45; }
[data-theme="light"] .step__desc  { color: rgba(11,31,69,0.55); }
[data-theme="light"] .step::before { color: rgba(11,31,69,0.08); }

/* ── Process steps (retreading / breakdown process section) ── */
[data-theme="light"] .process-step { background: rgba(11,31,69,0.04); border-color: rgba(11,31,69,0.1); }
[data-theme="light"] .process-step__title { color: #0b1f45; }
[data-theme="light"] .process-step__desc  { color: rgba(11,31,69,0.55); }

/* ── Industry pills ── */
[data-theme="light"] .industry-pill {
  background: rgba(11,31,69,0.05);
  border-color: rgba(11,31,69,0.12);
  color: rgba(11,31,69,0.75);
}
[data-theme="light"] .industry-pill:hover { background: rgba(232,184,0,0.12); border-color: rgba(232,184,0,0.4); color: #0b1f45; }

/* ── Tracker card + result ── */
[data-theme="light"] .tracker-card {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .tracker-result {
  background: #fff;
  border-color: rgba(232,184,0,0.3);
}

/* ── Timeline (job status) ── */
[data-theme="light"] .timeline-step:not(:last-child)::after { background: rgba(11,31,69,0.12); }
[data-theme="light"] .timeline-step--done::after            { background: rgba(232,184,0,0.4) !important; }
[data-theme="light"] .timeline-dot  { border-color: rgba(11,31,69,0.2); }
[data-theme="light"] .timeline-label      { color: rgba(11,31,69,0.45); }
[data-theme="light"] .timeline-label--done { color: #0b1f45; }
[data-theme="light"] .timeline-label--active { color: var(--gold); }
[data-theme="light"] .timeline-time { color: rgba(11,31,69,0.4); }

/* ── Stage bars (plant) ── */
[data-theme="light"] .stage-bar__label { color: rgba(11,31,69,0.55); }
[data-theme="light"] .stage-bar__track { background: rgba(11,31,69,0.08); }

/* ── Site forms ── */
[data-theme="light"] .site-form__label { color: rgba(11,31,69,0.7); }
[data-theme="light"] .site-form__input,
[data-theme="light"] .site-form__select,
[data-theme="light"] .site-form__textarea {
  background: #fff;
  border-color: rgba(11,31,69,0.18);
  color: #0b1f45;
}
[data-theme="light"] .site-form__input::placeholder,
[data-theme="light"] .site-form__textarea::placeholder { color: rgba(11,31,69,0.3); }
[data-theme="light"] .site-form__input:focus,
[data-theme="light"] .site-form__select:focus,
[data-theme="light"] .site-form__textarea:focus { border-color: var(--gold); background: #fff; }
[data-theme="light"] .site-form__select option { background: #fff; color: #0b1f45; }

/* ── Footer (stays dark in both themes) ── */
[data-theme="light"] .site-footer { background: #0b1f45; border-top-color: rgba(255,255,255,0.08); }
[data-theme="light"] .site-footer__brand-name { color: #ffffff; }

/* ── CTA band & emergency strip (gold bg — text must be dark navy, not var(--dark) which is near-white in light mode) ── */
[data-theme="light"] .cta-band__heading  { color: #0b1f45; }
[data-theme="light"] .cta-band__sub      { color: rgba(11,31,69,0.65); }
[data-theme="light"] .emergency-strip__item { color: #0b1f45; }
[data-theme="light"] .emergency-strip__dot  { background: #0b1f45; }

/* ── Gold buttons — force dark text so it's readable ── */
[data-theme="light"] .btn-site--gold { color: #0b1f45; }
[data-theme="light"] .site-nav__cta  { color: #0b1f45 !important; }

/* ── Contact section — text was hardcoded white, section--dark becomes white in light mode ── */
[data-theme="light"] .contact-info-item__value { color: rgba(11,31,69,0.8); }
[data-theme="light"] .hours-grid .day  { color: rgba(11,31,69,0.5); }
[data-theme="light"] .hours-grid .time { color: #0b1f45; }

/* ── Alert colours stay the same but tweak for light bg ── */
[data-theme="light"] .site-alert--success { background: rgba(26,138,74,0.1); color: #166534; border-color: rgba(26,138,74,0.25); }
[data-theme="light"] .site-alert--error   { background: rgba(214,62,62,0.08); color: #991b1b; border-color: rgba(214,62,62,0.2); }

/* ── Portal job row cards ── */
.portal-job-row {
  background: var(--dim-bg);
  border: 1px solid var(--dim-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.15s, background 0.15s;
}
.portal-job-row:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,184,0,0.3);
}
[data-theme="light"] .portal-job-row:hover {
  background: rgba(11,31,69,0.07);
  border-color: rgba(232,184,0,0.4);
}
