:root {
  --green: #05ad42;
  --green-dark: #087a34;
  --green-soft: #eaf8ee;
  --ink: #101513;
  --ink-2: #202b26;
  --muted: #617068;
  --paper: #f7f8f3;
  --white: #ffffff;
  --line: #dde5dd;
  --amber: #f0b429;
  --steel: #405761;
  --shadow: 0 20px 60px rgba(16, 21, 19, 0.16);
  --soft-shadow: 0 14px 34px rgba(16, 21, 19, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfbf7 0%, var(--paper) 46%, #eef3ed 100%);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 249, 244, 0.94);
  border-bottom: 1px solid rgba(16, 21, 19, 0.1);
  box-shadow: 0 8px 24px rgba(16, 21, 19, 0.06);
  backdrop-filter: blur(16px);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 0.48rem 1rem;
  color: rgba(255, 255, 255, 0.84);
  background: var(--ink);
  font-size: 0.9rem;
}

.top-strip a {
  color: #8dffad;
  font-weight: 900;
}

.nav-shell {
  width: 100%;
  max-width: var(--max);
  min-height: 78px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 205px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(16, 21, 19, 0.12));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 900;
}

.nav-links a {
  padding: 0.7rem 0.82rem;
  border-radius: 6px;
}

.nav-links a:hover {
  background: var(--green-soft);
}

.nav-cta,
.nav-links .nav-cta {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 22px rgba(5, 173, 66, 0.22);
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--green-dark);
}

.menu-button {
  display: none;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 0 1rem;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 21, 19, 0.9) 0%, rgba(16, 21, 19, 0.66) 40%, rgba(16, 21, 19, 0.22) 76%),
    linear-gradient(0deg, rgba(16, 21, 19, 0.82) 0%, rgba(16, 21, 19, 0.18) 58%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 16px 6rem;
  color: var(--white);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.hero-meta span {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.65rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.local-hero .eyebrow,
.cta-band .eyebrow {
  color: #8dffad;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.8vw, 5.65rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 700px;
  margin: 1rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.88rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 30px rgba(5, 173, 66, 0.24);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.trust-row span,
.service-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.quick-panel {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: -3rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 21, 19, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-panel a {
  position: relative;
  min-height: 96px;
  padding: 1.15rem 1.25rem;
  border-right: 1px solid var(--line);
}

.quick-panel a:last-child {
  border-right: 0;
}

.quick-panel a::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.quick-panel strong,
.quick-panel span {
  display: block;
}

.quick-panel strong {
  margin-top: 1.1rem;
  font-size: 1.05rem;
}

.quick-panel span {
  color: var(--muted);
}

.section,
.split-section,
.cta-band {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 16px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.prose {
  max-width: 760px;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading a,
.text-link {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-section {
  padding-top: 2rem;
}

.service-grid,
.review-grid,
.location-grid,
.service-directory,
.contact-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.location-card,
.service-directory article,
.contact-grid article,
blockquote,
.process-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 21, 19, 0.08);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: var(--soft-shadow);
}

.service-card::after,
.service-directory article::after,
.contact-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.service-card p,
.location-card p,
.service-directory p,
.contact-grid p,
.process-card p,
blockquote p {
  color: var(--muted);
}

.service-card h3,
.location-card h3,
.process-card h3 {
  margin-top: 0.1rem;
}

.service-directory h2,
.contact-grid h2 {
  font-size: 1.28rem;
  line-height: 1.15;
}

.service-tag {
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #bfdfc8;
  margin-bottom: 0.85rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 16px;
}

.split-section.compact {
  padding-top: 1rem;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  color: var(--white);
  background: rgba(16, 21, 19, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.check-list li {
  position: relative;
  padding: 0.68rem 0 0.68rem 1.75rem;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

.process-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-card {
  min-height: 230px;
  background: var(--ink);
  color: var(--white);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 1.3rem;
  color: #8dffad;
  font-size: 1.65rem;
  font-weight: 900;
}

.process-card p {
  color: rgba(255, 255, 255, 0.74);
}

.location-section {
  background:
    linear-gradient(135deg, rgba(5, 173, 66, 0.08), rgba(240, 180, 41, 0.1)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.location-grid {
  grid-template-columns: repeat(2, 1fr);
}

.location-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.location-card span {
  color: var(--green-dark);
  font-weight: 900;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

blockquote {
  margin: 0;
  border-top: 4px solid var(--green);
}

blockquote::before {
  content: "\"";
  display: block;
  height: 2.3rem;
  color: var(--green);
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 900;
}

blockquote p {
  margin-top: 0;
  font-size: 1.05rem;
}

cite {
  font-style: normal;
  font-weight: 900;
}

.cta-band {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(16, 21, 19, 0.98), rgba(16, 21, 19, 0.78)),
    url("truck-lift.webp") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 2rem;
  padding: 3rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.site-footer img {
  width: 215px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.32));
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.site-footer a,
.site-footer p {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin: 0.35rem 0;
}

.page-hero,
.local-hero {
  min-height: 56vh;
  display: grid;
  align-items: end;
  padding: clamp(4rem, 9vw, 8rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(16, 21, 19, 0.94), rgba(16, 21, 19, 0.55)),
    url("truck-lift.webp") center / cover;
}

.page-hero p,
.local-hero p {
  max-width: 720px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.86);
}

.contact-hero {
  background:
    linear-gradient(110deg, rgba(16, 21, 19, 0.94), rgba(16, 21, 19, 0.55)),
    url("repair-bay.webp") center / cover;
}

.local-hero.rigby {
  background:
    linear-gradient(110deg, rgba(16, 21, 19, 0.94), rgba(16, 21, 19, 0.55)),
    url("shop-crew.webp") center / cover;
}

.service-directory {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 960px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .nav-shell {
    flex-wrap: wrap;
    min-height: 74px;
    padding: 0.75rem 16px;
  }

  .brand img {
    width: 180px;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 0.25rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .hero {
    min-height: 760px;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(16, 21, 19, 0.92), rgba(16, 21, 19, 0.24) 82%),
      linear-gradient(90deg, rgba(16, 21, 19, 0.72), rgba(16, 21, 19, 0.22));
  }

  .quick-panel,
  .intro-grid,
  .split-section,
  .service-grid,
  .review-grid,
  .location-grid,
  .service-directory,
  .contact-grid,
  .process-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    width: 100%;
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .quick-panel a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 72px;
  }

  .top-strip {
    justify-content: flex-start;
    gap: 0.42rem 0.9rem;
    font-size: 0.84rem;
  }

  .top-strip span:last-child {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    padding: 3.7rem 16px 3.5rem;
  }

  .hero-meta {
    gap: 0.42rem;
  }

  .hero-meta span {
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .trust-row span {
    font-size: 0.78rem;
  }

  .page-hero,
  .local-hero {
    min-height: 58vh;
  }

  .photo-caption {
    position: static;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(16, 21, 19, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 -12px 34px rgba(16, 21, 19, 0.2);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    color: var(--white);
    background: var(--green);
    font-weight: 900;
  }

  .mobile-action-bar a:last-child {
    background: var(--ink);
  }
}
