:root {
  --bg: #090909;
  --bg-soft: #111213;
  --panel: #17191b;
  --panel-strong: #202326;
  --text: #f7f7f2;
  --muted: #c6c8c2;
  --muted-dark: #7d837d;
  --line: rgba(255, 255, 255, 0.14);
  --yellow: #ffc400;
  --yellow-dark: #d49a00;
  --green: #2fbf61;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --max: 1360px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.72), #090909 72%),
    url("assets/hero-tow-truck.png") center top / cover no-repeat;
}

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

a {
  color: inherit;
}

.icon-sprite {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 0;
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 138px;
}

.brand img {
  width: 138px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a {
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--yellow);
}

.call-link,
.primary-call,
.secondary-link,
.mobile-call-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.call-link,
.primary-call {
  color: #070707;
  background: var(--yellow);
  box-shadow: 0 14px 34px rgba(255, 196, 0, 0.24);
}

.call-link {
  min-height: 46px;
  padding: 0 18px;
  gap: 9px;
  white-space: nowrap;
}

.button-icon,
.strip-icon,
.why-icon,
.contact-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  width: min(100% - 32px, var(--max));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 92px) 0 54px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20px -24px 28px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 196, 0, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(17, 18, 19, 0.96), rgba(9, 9, 9, 0.74));
  pointer-events: none;
}

.status-line,
.section-label {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 7.4vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.1vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.primary-call {
  min-height: 66px;
  gap: 14px;
  padding: 12px 22px;
  text-align: left;
}

.primary-call span {
  display: grid;
  gap: 1px;
}

.primary-call strong {
  font-size: 0.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.primary-call small {
  font-size: 1.55rem;
  line-height: 1.1;
}

.secondary-link {
  min-height: 66px;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.secondary-link:hover,
.secondary-link:focus-visible {
  border-color: rgba(255, 196, 0, 0.55);
  color: var(--yellow);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 0;
}

.quick-facts div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 2px 0 0;
  color: var(--yellow);
  font-size: clamp(1.2rem, 3.2vw, 1.95rem);
  font-weight: 950;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-main-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 50%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.hero-inset-photo {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: clamp(132px, 36%, 210px);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 196, 0, 0.48);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.48);
  object-fit: cover;
}

.offer-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: min(270px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: var(--radius);
  background: rgba(9, 9, 9, 0.82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.offer-card span,
.offer-card small {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.offer-card strong {
  display: block;
  margin: 3px 0;
  color: var(--yellow);
  font-size: 1.65rem;
  line-height: 1.05;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding-bottom: 18px;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 850;
}

.strip-icon {
  width: 30px;
  height: 30px;
  color: var(--yellow);
  flex: 0 0 auto;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 18px 0 0;
}

.photo-card {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.photo-card-feature {
  grid-column: span 2;
  min-height: 300px;
}

.photo-card-wide {
  grid-column: span 2;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-feature img {
  object-position: 82% 50%;
}

.photo-card-sunset img {
  object-position: 62% 50%;
}

.photo-card-box-truck img {
  object-position: 58% 50%;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.photo-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.15;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 108px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.emergency-cta h2 {
  margin-bottom: 13px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.emergency-cta p {
  color: var(--muted);
  font-size: 1.02rem;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.service-photo {
  position: sticky;
  top: 98px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-detail-list {
  display: grid;
  gap: 14px;
}

.service-detail-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.service-detail-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.24rem, 2.3vw, 1.8rem);
  line-height: 1.12;
}

.service-detail-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.planned-link {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 196, 0, 0.26);
  border-radius: var(--radius);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.inline-call {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #070707;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(255, 196, 0, 0.18);
  font-weight: 950;
  text-decoration: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article,
.why-grid article,
.review-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.service-grid article {
  min-height: 150px;
  padding: 22px;
}

.service-grid h3,
.why-grid h3,
.review-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.service-grid p,
.why-grid p,
.review-card p,
.contact-card small,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.areas-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.97), rgba(9, 9, 9, 0.76)),
    url("assets/night-road.jpg") center / cover no-repeat;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 770px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 196, 0, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 196, 0, 0.1);
  color: var(--text);
  font-weight: 850;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-grid article {
  padding: 24px;
}

.why-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--yellow);
}

.reviews-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 22px;
}

.review-card img {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
}

.stars {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0;
}

.review-embed-placeholder,
.map-placeholder {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 20px;
  border: 1px dashed rgba(255, 196, 0, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 196, 0, 0.07);
}

.review-embed-placeholder span,
.map-placeholder span {
  color: var(--muted);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.google-profile-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.google-profile-section .section-heading {
  margin-bottom: 0;
}

.map-placeholder {
  min-height: 220px;
  align-content: center;
}

.emergency-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(36px, 7vw, 58px);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.58)),
    url("assets/roadside-hook.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.emergency-cta h2 {
  margin-bottom: 8px;
}

.emergency-cta p {
  max-width: 520px;
  margin-bottom: 0;
}

.wide-call {
  min-width: min(100%, 360px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 5px;
  min-height: 184px;
  padding: 24px;
  text-decoration: none;
}

.phone-card:hover,
.phone-card:focus-visible {
  border-color: rgba(255, 196, 0, 0.55);
  background: rgba(255, 196, 0, 0.08);
}

.contact-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  color: var(--yellow);
}

.contact-card span,
.footer-call span {
  color: var(--muted-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.18rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 1fr;
  gap: 28px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 46px 0 98px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  width: 122px;
  margin-bottom: 12px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.95rem;
}

.site-footer ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-call {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 6px;
}

.footer-call a {
  color: var(--yellow);
  font-size: 1.9rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.footer-call strong {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: #070707;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.82rem;
  text-align: center;
}

.mobile-call-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 60;
  display: none;
  min-height: 64px;
  gap: 10px;
  padding: 12px 16px;
  color: #070707;
  background: var(--yellow);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
  font-size: 1rem;
}

.mobile-call-bar strong {
  font-size: 1.1rem;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .services-layout,
  .google-profile-section {
    grid-template-columns: 1fr;
  }

  .emergency-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .wide-call {
    width: 100%;
    min-width: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    inset: 0;
  }

  .hero-media {
    min-height: 420px;
  }

  .photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card-feature {
    grid-column: 1 / -1;
  }

  .photo-card-wide {
    grid-column: span 1;
  }

  .service-photo {
    position: static;
    max-height: 360px;
  }

  .why-grid,
  .review-grid,
  .contact-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 88px;
  }

  .site-header {
    width: min(100% - 24px, var(--max));
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    width: 106px;
  }

  .brand img {
    width: 106px;
  }

  .header-call {
    min-height: 44px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .hero {
    width: min(100% - 24px, var(--max));
    padding-top: 30px;
  }

  .hero::before {
    inset: 0 -12px 24px;
  }

  .hero-actions {
    display: grid;
  }

  .primary-call,
  .secondary-link {
    width: 100%;
  }

  .primary-call {
    justify-content: flex-start;
  }

  .quick-facts,
  .trust-strip,
  .service-grid,
  .why-grid,
  .review-grid,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card-header {
    display: grid;
    gap: 10px;
  }

  .planned-link {
    width: fit-content;
    white-space: normal;
  }

  .inline-call {
    width: 100%;
    min-height: 48px;
  }

  .trust-strip,
  .section,
  .emergency-cta,
  .site-footer,
  .photo-strip {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 58px 0;
  }

  .section-heading,
  .section-heading.align-left {
    text-align: left;
  }

  .hero-media {
    min-height: 390px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card-feature,
  .photo-card-wide {
    grid-column: auto;
    min-height: 220px;
  }

  .review-card {
    grid-template-columns: 58px 1fr;
  }

  .review-card img {
    width: 58px;
    height: 58px;
  }

  .emergency-cta {
    padding: 30px 22px;
  }

  .footer-call a {
    font-size: 1.65rem;
  }

  .quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .quick-facts div {
    padding: 12px 9px;
  }

  .quick-facts dt {
    font-size: 0.62rem;
  }

  .quick-facts dd {
    font-size: 1.12rem;
  }

  .mobile-call-bar {
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.35rem;
  }

  .primary-call small {
    font-size: 1.28rem;
  }

  .header-call .button-icon {
    display: none;
  }

  .offer-card {
    right: 12px;
    bottom: 12px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
