:root {
  --ink: #172033;
  --muted: #667085;
  --paper: #ffffff;
  --wash: #f4f8ff;
  --blue: #1d9bf0;
  --blue-dark: #0f5ea8;
  --line: #d7e6f7;
  --red: #f0524f;
  --yellow: #f8c846;
  --green: #22c55e;
  --shadow: 0 18px 45px rgba(23, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(29, 155, 240, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(29, 155, 240, 0.06) 1px, transparent 1px),
    #fbfdff;
  background-size: 42px 42px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
}

.skip-link:focus {
  left: 12px;
}

.quote-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 18px;
  background: var(--blue);
  color: var(--paper);
  font-size: 0.95rem;
}

.quote-bar a {
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.8rem;
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--wash);
  color: var(--blue-dark);
}

.nav-toggle,
.menu-button {
  display: none;
}

main {
  overflow: hidden;
}

.hero {
  width: min(980px, calc(100% - 32px));
  margin: 82px auto 46px;
  text-align: center;
}

.hero-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--blue);
  font-size: 3rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #475467;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button.primary {
  background: var(--blue);
  color: var(--paper);
}

.button.secondary {
  background: var(--paper);
  color: var(--ink);
}

.hero-info {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 0;
  overflow: hidden;
  margin: 26px auto 0;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  text-align: left;
}

.hero-info div {
  padding: 14px 18px;
}

.hero-info div + div {
  border-left: 2px solid var(--ink);
  background: var(--wash);
}

.hero-info strong,
.hero-info span {
  display: block;
}

.hero-info strong {
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-info span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 78px;
}

.photo-band figure {
  margin: 0;
  overflow: hidden;
  min-height: 250px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-band figure:nth-child(2) {
  transform: translateY(30px);
}

.section,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 78px;
}

.section.soft,
.final-cta {
  padding: clamp(32px, 5vw, 58px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.section-heading p,
.split-heading p,
.location-section p,
.review-section p,
.final-cta p {
  color: var(--muted);
}

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

.steps article,
.service-card {
  position: relative;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--wash);
}

.step-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  font-size: 1.7rem;
}

.steps p,
.service-card p {
  margin-bottom: 0;
  color: #516173;
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 26px;
}

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

.text-link {
  flex: 0 0 auto;
  color: var(--blue-dark);
  font-weight: 950;
}

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

.service-card {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.service-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--blue-dark);
  font-size: 1.5rem;
  font-weight: 950;
}

.service-card.highlight {
  background: #fff6d7;
}

.review-section,
.location-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.review-score {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  text-align: center;
  box-shadow: 8px 8px 0 var(--ink);
}

.review-score span {
  display: block;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 950;
  line-height: 0.9;
}

.review-score small {
  max-width: 220px;
  color: #4f3a00;
  font-weight: 850;
}

.detail-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.detail-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}

.map-card {
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #e8f5ff;
  box-shadow: 6px 6px 0 var(--ink);
  text-align: center;
}

.map-pin {
  margin-bottom: 8px;
  font-size: 3rem;
}

.faq {
  max-width: 900px;
}

details {
  margin-bottom: 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 950;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background: var(--blue-dark);
  color: var(--paper);
}

.final-cta .eyebrow,
.final-cta p {
  color: #d8efff;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 70px auto 72px;
}

.page-hero h1 {
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.page-hero p {
  color: var(--muted);
}

.page-photo {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

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

@media (min-width: 921px) {
  .page-hero {
    grid-template-columns: 1fr 0.78fr;
    gap: clamp(24px, 4vw, 48px);
    margin: 56px auto 60px;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 3.6vw, 3.6rem);
    line-height: 1.04;
  }

  .page-photo img {
    height: clamp(300px, 32vw, 390px);
    aspect-ratio: auto;
  }
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: -36px auto 72px;
}

.quick-facts div {
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}

.quick-facts strong {
  display: block;
  margin-bottom: 4px;
}

.quick-facts span {
  color: var(--muted);
  font-size: 0.95rem;
}

.repair-list,
.model-list,
.contact-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.repair-item,
.model-item,
.contact-card {
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
}

.repair-item strong,
.model-item strong,
.contact-card strong {
  display: block;
  margin-bottom: 6px;
}

.repair-item p,
.model-item p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.model-item {
  background: var(--wash);
}

.notice {
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff6d7;
  box-shadow: 5px 5px 0 var(--ink);
}

.page-section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

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

.seo-copy {
  max-width: 880px;
  color: var(--muted);
}

.contact-card a {
  color: var(--blue-dark);
  font-weight: 900;
}

.footer {
  padding: 54px 16px 26px;
  border-top: 2px solid var(--ink);
  background: #172033;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer .brand-mark {
  color: var(--ink);
}

.footer p,
.footer small {
  color: #c8d3df;
}

.footer h2 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 1rem;
}

.footer nav a {
  display: block;
  margin: 7px 0;
  color: #d8efff;
  text-decoration: none;
}

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

.footer-phone {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 950;
  text-decoration: none;
}

.copyright {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-button {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--paper);
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    height: 3px;
    background: var(--ink);
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 5px 5px 0 var(--ink);
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .photo-band,
  .page-hero,
  .quick-facts,
  .steps,
  .service-grid,
  .repair-list,
  .model-list,
  .contact-grid,
  .review-section,
  .location-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-band figure:nth-child(2) {
    transform: none;
  }

  .split-heading {
    display: block;
  }

  .page-section-title {
    display: block;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero {
    margin-top: 54px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .photo-band figure {
    min-height: 210px;
  }

  .section.soft,
  .final-cta {
    padding: 26px 18px;
  }

  .button {
    width: 100%;
  }

  .hero-info {
    display: grid;
    width: 100%;
  }

  .hero-info div + div {
    border-left: 0;
    border-top: 2px solid var(--ink);
  }

  .footer-brand {
    align-items: flex-start;
  }
}
