/* SC Services Ltd — Mobile Mechanic — Landing Page
   Palette: graphite / steel / white / safety orange
   Fonts: Barlow Condensed (headings) + Barlow (body) */

/* ---------- Design tokens ---------- */
:root {
  --graphite: #1E2126;
  --graphite-soft: #2A2E35;
  --graphite-softer: #32373F;
  --steel: #99A3AD;
  --white: #F7F8F9;
  --orange: #E8641B;
  --orange-deep: #B84A0E;
  --muted: #5B6470;

  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;

  --radius: 6px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 380ms;

  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.01em;
}
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange);
  color: var(--graphite);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius);
  z-index: 1000;
  transition: top 200ms var(--ease);
}
.skip-link:focus {
  top: 16px;
}

/* ---------- Focus visibility ---------- */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
button:focus-visible, a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 28px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-call {
  background: var(--orange);
  color: var(--graphite);
  box-shadow: 0 6px 0 var(--orange-deep);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--orange-deep); }
.btn-call:active { transform: translateY(1px) scale(0.98); box-shadow: 0 3px 0 var(--orange-deep); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--steel);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--graphite);
  border-color: var(--graphite);
}
.btn-outline-dark:hover { background: var(--graphite); color: var(--white); transform: translateY(-2px); }

.btn-sm { min-height: 44px; font-size: 16px; padding: 10px 22px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--graphite);
  border-bottom: 1px solid var(--graphite-softer);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: none;
  color: var(--steel);
  letter-spacing: 0.03em;
}
.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--graphite);
  min-height: 44px;
  transition: transform 160ms var(--ease);
}
.header-call:hover { transform: translateY(-2px); }
.header-call svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Nav (multi-page) ---------- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--steel);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.site-nav a:hover { color: var(--white); }
.site-nav a.active { color: var(--orange); border-color: var(--orange); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--graphite-softer);
  border-radius: var(--radius);
  color: var(--white);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--graphite);
    border-bottom: 1px solid var(--graphite-softer);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 260ms var(--ease);
  }
  .site-nav.open { max-height: 340px; }
  .site-nav a {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid var(--graphite-softer);
    border-left: 3px solid transparent;
  }
  .site-nav a.active { border-left-color: var(--orange); border-bottom-color: var(--graphite-softer); }
}

/* ---------- Page intro (inner pages) ---------- */
.page-hero {
  background: var(--graphite);
  color: var(--white);
  padding: 56px 0 88px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.page-hero .kicker { color: var(--orange); }
.page-hero h1 { font-size: clamp(34px, 5.5vw, 54px); }
.page-hero p { margin-top: 16px; font-size: 18px; color: var(--steel); max-width: 60ch; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--orange); }

/* ---------- Area / coverage cards ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.area-card {
  background: var(--white);
  border: 1px solid #E4E6E9;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.area-card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.area-card .icon-wrap svg { width: 22px; height: 22px; color: var(--orange); }
.area-card h3 { font-size: 18px; text-transform: none; font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
.area-card p { font-size: 14px; color: var(--muted); }

/* ---------- About / bio ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid img { border-radius: var(--radius); border: 1px solid #E4E6E9; }
.credential-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.credential-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
}
.credential-list svg { width: 22px; height: 22px; color: var(--orange-deep); flex-shrink: 0; }

/* ---------- Process list (coverage/how) ---------- */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: proc;
}
.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--graphite-softer);
}
.process-item:last-child { border-bottom: none; }
.process-item .proc-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  color: var(--orange);
}
.process-item h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.process-item p { color: var(--steel); font-size: 16px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--orange);
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--graphite); font-size: clamp(26px, 4vw, 36px); margin-bottom: 20px; }
.cta-banner .btn-outline-dark { border-color: var(--graphite); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 44px 1fr; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--graphite);
  color: var(--white);
  padding: 64px 0 120px;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(232,100,27,0.14) 0%, transparent 45%),
    repeating-linear-gradient(135deg, rgba(153,163,173,0.05) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--orange);
}
.hero h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  color: var(--white);
}
.hero h1 span { color: var(--orange); }
.hero-lede {
  margin-top: 20px;
  font-size: 19px;
  color: var(--steel);
  max-width: 46ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.hero-phone-huge {
  margin-top: 34px;
  font-family: var(--font-head);
}
.hero-phone-huge .label {
  display: block;
  font-size: 13px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-phone-huge a {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-phone-huge a:hover { color: var(--orange); }
.hero-phone-huge svg { width: 30px; height: 30px; color: var(--orange); flex-shrink: 0; }

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  justify-self: end;
  border: 1px solid var(--graphite-softer);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(30,33,38,0.85);
  color: var(--white);
  font-size: 13px;
  padding: 8px 12px;
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}

/* ---------- Trust band ---------- */
.trust-band {
  background: var(--orange);
  color: var(--graphite);
  padding: 22px 0;
  margin-top: -56px;
  position: relative;
  z-index: 3;
}
.trust-band ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
}
.trust-band li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.trust-band svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ---------- Section basics ---------- */
section { padding: 96px 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--graphite); color: var(--white); }
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .kicker {
  display: block;
  color: var(--orange-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-dark .section-head .kicker { color: var(--orange); }
.section-head h2 { font-size: clamp(30px, 4.4vw, 44px); }
.section-head p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--muted);
}
.section-dark .section-head p { color: var(--steel); }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid #E4E6E9;
  border-radius: var(--radius);
  padding: 36px 28px 30px;
  text-align: left;
}
.step .step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--orange-deep);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: block;
}
.step .icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step .icon-wrap svg { width: 30px; height: 30px; color: var(--orange); }
.step h3 { font-size: 24px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 16px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid #E4E6E9;
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(30,33,38,0.12);
  border-color: var(--orange);
}
.service-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card .icon-wrap svg { width: 28px; height: 28px; color: var(--orange); }
.service-card h3 { font-size: 22px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 15.5px; }
.service-card .add-flag {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange-deep);
  background: #FBEAE0;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--graphite-soft);
  border: 1px solid var(--graphite-softer);
  border-radius: var(--radius);
  padding: 30px;
}
.review-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--orange);
}
.review-card .stars svg { width: 18px; height: 18px; }
.review-card blockquote {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--white);
}
.review-card cite {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--steel);
  font-size: 14px;
  text-transform: uppercase;
}

/* ---------- Coverage ---------- */
.coverage-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.coverage-diagram {
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin: 0 auto;
}
.coverage-copy h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 18px; }
.coverage-copy p { color: var(--muted); font-size: 17px; margin-bottom: 14px; }
.coverage-copy .add-flag-block {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-deep);
  background: #FBEAE0;
  padding: 6px 12px;
  border-radius: 4px;
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid #E4E6E9;
  border-radius: var(--radius);
}
.contact-method .icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method .icon-wrap svg { width: 24px; height: 24px; color: var(--orange); }
.contact-method h3 { font-size: 18px; margin-bottom: 4px; text-transform: none; font-family: var(--font-body); font-weight: 700; }
.contact-method a { color: var(--orange-deep); font-weight: 600; }
.contact-method a:hover { text-decoration: underline; }
.contact-method .muted-text { color: var(--muted); font-size: 14.5px; }

.contact-form {
  background: var(--graphite);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--steel);
}
.form-row input, .form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--graphite-soft);
  border: 1px solid var(--graphite-softer);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--steel); }
.form-row input:focus, .form-row textarea:focus { border-color: var(--orange); outline: none; }
.form-note { font-size: 13px; color: var(--steel); margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--graphite);
  color: var(--steel);
  padding: 48px 0 32px;
  border-top: 1px solid var(--graphite-softer);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
}
.footer-brand .brand-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: 13px; text-transform: none; color: var(--steel); margin-top: 4px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 15px; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--graphite-softer);
  padding-top: 22px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Call FAB ---------- */
.call-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--graphite);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(30,33,38,0.35), 0 6px 0 var(--orange-deep);
  min-height: 52px;
}
.call-fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.call-fab:hover { transform: translateY(-2px); }
.call-fab:active { transform: translateY(1px) scale(0.97); }

/* ---------- Reveal / animation system ---------- */
html:not(.js) .reveal { opacity: 1; transform: none; }
.reveal {
  opacity: 0;
  transform: translateY(14px);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--dur) ease-out, transform var(--dur) ease-out;
}
.hero-eyebrow.reveal.in-view { transition-delay: 0ms; }
.hero h1.reveal.in-view { transition-delay: 60ms; }
.hero-lede.reveal.in-view { transition-delay: 120ms; }
.hero-ctas.reveal.in-view { transition-delay: 180ms; }
.hero-phone-huge.reveal.in-view { transition-delay: 240ms; }
.hero-visual.reveal.in-view { transition-delay: 140ms; }

@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { transition: opacity var(--dur) ease-out, transform var(--dur) ease-out; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .service-card, .header-call, .call-fab { transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-self: start; max-width: 360px; }
  .steps, .services-grid, .reviews-grid, .coverage-wrap, .contact-wrap {
    grid-template-columns: 1fr;
  }
  .coverage-wrap { gap: 40px; }
  section { padding: 72px 0; }
}

@media (max-width: 640px) {
  .header-call span.txt { display: none; }
  .header-call { padding: 10px 14px; }
  .hero { padding: 40px 0 96px; }
  .trust-band ul { gap: 10px 22px; justify-content: flex-start; }
  .trust-band li { font-size: 15px; }
  .call-fab .txt { display: none; }
  .call-fab { padding: 14px; border-radius: 50%; }
  .footer-bottom { flex-direction: column; }
}
