:root {
  color-scheme: light;
  --white: #ffffff;
  --paper: #f4f6f8;
  --graphite: #121821;
  --graphite-2: #1f2937;
  --text: #111827;
  --muted: #667085;
  --red: #e30613;
  --red-dark: #b91c1c;
  --red-soft: #fff1f2;
  --line: rgba(17, 24, 39, 0.12);
  --shadow: 0 28px 70px rgba(17, 24, 39, 0.14);
  --shadow-red: 0 20px 44px rgba(227, 6, 19, 0.28);
  --radius: 22px;
  --radius-lg: 32px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: var(--header-height);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 205px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #344054;
  font-size: 0.94rem;
  font-weight: 760;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red);
  background: var(--red-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: var(--graphite);
  font-size: 0.95rem;
  font-weight: 880;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 52px;
  padding: 0 24px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  box-shadow: var(--shadow-red);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 24px 48px rgba(227, 6, 19, 0.34);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button-outline,
.button-secondary,
.button-light {
  color: var(--graphite);
  background: transparent;
  border-color: rgba(17, 24, 39, 0.18);
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.button-light:hover,
.button-light:focus-visible {
  color: var(--red);
  background: var(--red-soft);
  border-color: rgba(227, 6, 19, 0.28);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--graphite);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 24px 0 0;
  background:
    linear-gradient(180deg, rgba(244, 246, 248, 0), var(--paper) 92%),
    var(--white);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: stretch;
  width: min(1260px, calc(100% - 48px));
  min-height: 650px;
  padding: 54px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 24, 33, 0.98), rgba(31, 41, 55, 0.96)),
    var(--graphite);
  border-radius: var(--radius-lg);
}

.hero-layout::before,
.hero-layout::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-layout::before {
  inset: 28px auto 28px 28px;
  width: 2px;
  background: linear-gradient(var(--red), rgba(255, 255, 255, 0.12));
}

.hero-layout::after {
  right: -160px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding-left: 18px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: #ffd7da;
  background: rgba(227, 6, 19, 0.14);
  border: 1px solid rgba(227, 6, 19, 0.38);
  border-radius: 999px;
}

.hero .eyebrow::before {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(227, 6, 19, 0.16);
  content: "";
}

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

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 4.35rem;
  font-weight: 940;
  text-wrap: balance;
}

.hero h1 span {
  color: #ff3945;
}

h2 {
  margin-bottom: 16px;
  color: var(--graphite);
  font-size: 2.7rem;
  font-weight: 920;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--graphite);
  font-size: 1.16rem;
  font-weight: 880;
}

.hero-copy {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button {
  min-height: 58px;
  padding: 0 30px;
  font-size: 1.04rem;
}

.hero-actions .button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-actions .button-outline:hover,
.hero-actions .button-outline:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding: 8px 12px 8px 28px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 760;
}

.hero-trust li::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.hero-visual {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--graphite-2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 24, 33, 0.36), rgba(18, 24, 33, 0.02)),
    linear-gradient(180deg, rgba(18, 24, 33, 0), rgba(18, 24, 33, 0.72));
}

.hero-visual::after {
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, transparent 88%);
  opacity: 0.36;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 5px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(18, 24, 33, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--red);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

.hero-visual figcaption strong {
  color: var(--white);
  font-size: 1.18rem;
}

.section {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 0 44px;
}

.section-heading p,
.parts-content p,
.parts-cta p,
.feature-card p,
.service-card p {
  color: var(--muted);
}

.section-heading > p:not(.eyebrow) {
  margin: 0;
  font-size: 1.08rem;
}

.trust-section {
  padding: 0 0 42px;
  background: var(--paper);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: -26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-strip article {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip article::before {
  width: 28px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
  content: "";
}

.trust-strip strong {
  color: var(--graphite);
  font-size: 1.08rem;
  font-weight: 920;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.services-section {
  background:
    linear-gradient(90deg, rgba(18, 24, 33, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(18, 24, 33, 0.05) 1px, transparent 1px), var(--paper);
  background-size: 54px 54px;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 3;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(227, 6, 19, 0.18);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  border-color: rgba(227, 6, 19, 0.34);
  transform: translateY(-4px);
}

.service-card-featured {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 558px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 24, 33, 0.98), rgba(31, 41, 55, 0.94)),
    var(--graphite);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card-accent {
  grid-column: span 6;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.96), rgba(185, 28, 28, 0.94)),
    var(--red);
  border-color: rgba(227, 6, 19, 0.4);
}

.service-card-featured h3,
.service-card-accent h3,
.service-card-featured p,
.service-card-accent p,
.service-card-featured .service-link,
.service-card-accent .service-link,
.service-card-featured .service-number,
.service-card-accent .service-number {
  color: var(--white);
}

.service-card-featured p,
.service-card-accent p {
  opacity: 0.78;
}

.service-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 940;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 16px;
}

.service-card-featured .service-icon,
.service-card-accent .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.service-icon svg,
.feature-icon svg,
.parts-graphic svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.28rem;
}

.service-card-featured h3 {
  font-size: 2rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0;
}

.service-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 26px;
  color: var(--red);
  font-weight: 860;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.service-link::after {
  margin-left: 8px;
  content: "→";
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--red-dark);
  transform: translateX(3px);
}

.service-card-featured .service-link:hover,
.service-card-featured .service-link:focus-visible,
.service-card-accent .service-link:hover,
.service-card-accent .service-link:focus-visible {
  color: var(--white);
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 22px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 24, 33, 0.96), rgba(31, 41, 55, 0.94)),
    var(--graphite);
  border-radius: var(--radius);
}

.services-cta p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 760;
}

.services-cta .button {
  flex: 0 0 auto;
}

.parts-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 0%, rgba(227, 6, 19, 0.2), transparent 28rem),
    linear-gradient(135deg, var(--graphite), var(--graphite-2));
}

.parts-section::before {
  position: absolute;
  inset: 32px 32px auto auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.parts-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 42px;
  align-items: stretch;
}

.parts-content {
  padding: 0;
}

.parts-content .eyebrow,
.parts-content h2,
.parts-content p {
  color: var(--white);
}

.parts-content h2 {
  max-width: 760px;
  font-size: 3rem;
}

.parts-content > p {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.parts-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 740px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.parts-list li {
  position: relative;
  padding: 16px 18px 16px 42px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  font-weight: 760;
}

.parts-list li::before {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.parts-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  padding: 32px;
  color: var(--graphite);
  background: var(--white);
  border-radius: var(--radius);
}

.parts-cta h3 {
  color: var(--graphite);
  font-size: 1.7rem;
}

.parts-cta p {
  margin: 0 0 24px;
  color: var(--muted);
}

.parts-graphic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 20px;
}

.parts-graphic svg {
  width: 42px;
  height: 42px;
}

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 16px;
}

.feature-card p {
  margin: 0;
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--graphite);
  border-radius: var(--radius);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18, 24, 33, 0.72));
  content: "";
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-weight: 820;
}

.contacts-section {
  background: var(--white);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 0;
  overflow: hidden;
  background: var(--graphite);
  border-radius: var(--radius-lg);
}

.contact-info {
  padding: 46px;
  color: var(--white);
}

.contact-info .eyebrow,
.contact-info h2 {
  color: var(--white);
}

.contact-info h3 {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.contact-list > div,
.contact-list > a {
  display: grid;
  gap: 3px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.contact-list .contact-primary {
  background: rgba(227, 6, 19, 0.16);
  border-color: rgba(227, 6, 19, 0.42);
}

.contact-list span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--white);
  font-size: 1rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-actions .button {
  min-height: 50px;
  padding: 0 16px;
}

.contact-actions .button-secondary,
.contact-actions .button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-actions .button-secondary:hover,
.contact-actions .button-secondary:focus-visible,
.contact-actions .button-light:hover,
.contact-actions .button-light:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.contact-main-action {
  grid-column: 1 / -1;
}

.map-wrap {
  min-height: 100%;
  padding: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    var(--graphite-2);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 580px;
  border: 0;
  border-radius: 22px;
  filter: saturate(0.9) contrast(0.96);
}

.site-footer {
  padding: 60px 0 82px;
  color: rgba(255, 255, 255, 0.72);
  background: #0b111a;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.6fr) minmax(
      220px,
      0.75fr
    );
  gap: 48px;
  align-items: start;
}

.footer-brand img {
  width: 192px;
  height: auto;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 14px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-about h2 {
  margin-top: 24px;
  font-size: 1.18rem;
}

.footer-about p {
  max-width: 470px;
  margin: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact {
  font-style: normal;
}

.site-footer p,
.footer-contact span {
  margin: 0;
}

.site-footer a:not(.footer-brand),
.footer-contact span {
  color: var(--white);
  font-weight: 650;
}

.site-footer a:not(.footer-brand) {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer a:not(.footer-brand):hover,
.site-footer a:not(.footer-brand):focus-visible {
  color: #ff8a92;
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
}

.mobile-call-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 60;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  box-shadow: var(--shadow-red);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 180px 1fr auto;
    gap: 18px;
  }

  .brand img {
    width: 178px;
  }

  .main-nav {
    gap: 2px;
  }

  .phone-link {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 1fr);
    min-height: 600px;
    padding: 44px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .service-card,
  .service-card-featured,
  .service-card-accent {
    grid-column: span 6;
    min-height: 310px;
  }

  .service-card-featured {
    grid-row: span 1;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 32px, 760px);
  }

  .header-inner {
    grid-template-columns: 170px auto;
    justify-content: space-between;
  }

  .brand img {
    width: 165px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 14px;
    color: var(--graphite);
    border-radius: 12px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-layout,
  .parts-layout,
  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    padding: 34px;
  }

  .hero-layout::before {
    inset: 24px auto auto 24px;
    width: 80px;
    height: 2px;
  }

  .hero-content {
    padding-left: 0;
  }

  h1 {
    font-size: 3rem;
  }

  h2,
  .parts-content h2 {
    font-size: 2.2rem;
  }

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

  .hero-visual img {
    min-height: 360px;
  }

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

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

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

  .service-card,
  .service-card-featured,
  .service-card-accent {
    grid-column: auto;
    min-height: 280px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .map-wrap iframe {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(540px, calc(100% - 24px));
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand img {
    width: 154px;
  }

  .hero-layout {
    width: calc(100% - 32px);
    padding: 22px;
    border-radius: 26px;
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.25;
    white-space: normal;
  }

  h1 {
    font-size: 2.12rem;
  }

  .hero h1 span {
    display: block;
  }

  h2,
  .parts-content h2 {
    font-size: 1.86rem;
  }

  h3 {
    font-size: 1.08rem;
  }

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

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button {
    white-space: normal;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-trust li {
    width: 100%;
  }

  .hero-visual img {
    min-height: 250px;
  }

  .hero-visual figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .hero-visual figcaption span {
    display: none;
  }

  .trust-strip,
  .service-grid,
  .parts-list,
  .why-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .service-card,
  .service-card-featured,
  .service-card-accent,
  .parts-cta,
  .feature-card,
  .contact-info {
    padding: 24px;
  }

  .service-card,
  .service-card-featured,
  .service-card-accent {
    min-height: auto;
  }

  .service-number,
  .service-icon {
    margin-bottom: 16px;
  }

  .service-card h3,
  .service-card-featured h3 {
    font-size: 1.18rem;
  }

  .services-cta .button {
    width: 100%;
  }

  .parts-layout {
    gap: 30px;
  }

  .gallery-grid figure,
  .gallery-grid img {
    min-height: 290px;
  }

  .contacts-layout {
    border-radius: 26px;
  }

  .map-wrap {
    padding: 12px;
  }

  .map-wrap iframe {
    min-height: 340px;
    border-radius: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand img {
    width: 168px;
  }

  .mobile-call-cta {
    display: flex;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(390px, calc(100% - 20px));
  }

  .hero-layout {
    width: calc(100% - 32px);
    padding: 20px;
  }

  h1 {
    font-size: 1.74rem;
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 0 18px;
  }

  .hero-visual figcaption {
    right: auto;
    bottom: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    gap: 2px;
    padding: 10px 12px;
    border-left-width: 3px;
    border-radius: 14px;
  }

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

  .hero-visual figcaption strong {
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .service-card,
  .service-card-featured,
  .service-card-accent,
  .parts-cta,
  .feature-card,
  .contact-info {
    padding: 22px;
  }

  .contact-list strong {
    font-size: 0.94rem;
  }
}
