:root {
  --ink: #07111f;
  --ink-2: #122033;
  --muted: #667184;
  --line: #dce3ec;
  --surface: #f6f8fb;
  --surface-strong: #eef3f8;
  --white: #ffffff;
  --blue: #0066b3;
  --blue-bright: #2f9bff;
  --blue-deep: #003f73;
  --accent: #c1121f;
  --shadow: 0 22px 60px rgba(7, 17, 31, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

main [id] {
  scroll-margin-top: 96px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 17, 31, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: clamp(198px, 23vw, 272px);
  height: auto;
}

.brand-tagline {
  max-width: 132px;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  font-size: clamp(0.76rem, 0.85vw, 0.84rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--blue-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/workshop-exterior-hero.jpg") center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.97) 0%, rgba(7, 17, 31, 0.8) 39%, rgba(7, 17, 31, 0.18) 74%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.9) 0%, rgba(7, 17, 31, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(34px, 8vh, 76px) clamp(20px, 7vw, 96px);
  padding-top: 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue-bright);
}

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

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-stats div {
  padding: 18px;
  background: rgba(7, 17, 31, 0.58);
}

.hero-stats dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  font-weight: 800;
}

.section,
.intro-section,
.process-section,
.faq-section {
  padding: clamp(62px, 9vw, 112px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0.97) 0%, rgba(246, 248, 251, 0.92) 54%, rgba(246, 248, 251, 0.76) 100%),
    url("assets/workshop-interior-wide.jpg") center / cover no-repeat,
    var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.service-card {
  overflow: hidden;
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 17, 31, 0.05);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:has(.service-card-image) {
  padding-top: 0;
}

.service-card-image {
  width: calc(100% + 52px);
  max-width: none;
  height: 172px;
  margin: 0 -26px 24px;
  object-fit: cover;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 102, 179, 0.34);
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.1);
}

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

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.service-link::after {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 251, 0.9)),
    url("assets/diagnostics-oil-filter.jpg") center / cover no-repeat,
    var(--surface);
}

.process-step {
  position: relative;
  min-height: 218px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--blue);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-band,
.contact-band {
  padding: clamp(66px, 9vw, 118px) 0;
  color: var(--white);
}

.feature-band {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.74)),
    linear-gradient(135deg, rgba(0, 102, 179, 0.26), rgba(193, 18, 31, 0.16)),
    url("assets/workshop-bmw-lift.jpg") center / cover no-repeat,
    var(--ink);
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.72)),
    linear-gradient(135deg, rgba(0, 102, 179, 0.2), rgba(193, 18, 31, 0.14)),
    url("assets/bg-contact-exterior.png") center / cover no-repeat,
    var(--ink);
}

.feature-grid,
.contact-grid,
.workshop-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.feature-copy p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.74);
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  margin-bottom: 6px;
  font-size: 1.06rem;
}

.proof-list span {
  color: rgba(255, 255, 255, 0.68);
}

.reviews-section {
  padding: clamp(56px, 8vw, 96px) 0;
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
  color: var(--white);
  text-align: center;
}

.reviews-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
}

.reviews-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: #f5b400;
}

.reviews-section h2 {
  max-width: 520px;
}

.reviews-copy {
  color: rgba(255, 255, 255, 0.74);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.reviews-actions .button {
  gap: 10px;
}

.reviews-actions .button.primary {
  background: var(--white);
  color: var(--ink);
}

.reviews-actions .button.primary:hover,
.reviews-actions .button.primary:focus-visible {
  background: rgba(255, 255, 255, 0.86);
}

.workshop-section {
  background: var(--surface);
}

.workshop-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.workshop-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.contact-map {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 460px);
  border: 0;
}

.workshop-copy p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.gallery-grid img {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(7, 17, 31, 0.08);
}

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

.areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.area-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink-2);
  font-weight: 800;
}

.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 17, 31, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

address {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 1.12rem;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 24px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--blue-bright);
}

.hours-list {
  display: grid;
  gap: 8px;
  margin: 0;
  max-width: 360px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hours-list dt {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.whatsapp-form {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin-top: clamp(28px, 6vw, 56px);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.whatsapp-form h3 {
  margin: 0 0 4px;
  color: var(--white);
}

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

.whatsapp-form label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 0.92rem;
}

.whatsapp-form input,
.whatsapp-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.4);
  color: var(--white);
  font: inherit;
}

.whatsapp-form input:focus-visible,
.whatsapp-form textarea:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

.whatsapp-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.hours-list dd {
  margin: 0;
  font-weight: 800;
}

.site-footer {
  padding: 28px 0;
  background: #030812;
  color: rgba(255, 255, 255, 0.62);
}

.service-hero {
  padding: 150px 0 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.95), rgba(7, 17, 31, 0.78)),
    url("assets/workshop-exterior-hero.jpg") center / cover no-repeat,
    var(--ink);
}

.service-hero .section-inner {
  max-width: 980px;
}

.service-hero h1 {
  max-width: 920px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.service-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.service-content {
  padding: clamp(58px, 8vw, 104px) 0;
  background: var(--surface);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.service-layout article {
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.08);
}

.service-page-image {
  width: calc(100% + clamp(56px, 8vw, 92px));
  max-width: none;
  height: clamp(220px, 32vw, 360px);
  margin: calc(-1 * clamp(28px, 4vw, 46px)) calc(-1 * clamp(28px, 4vw, 46px)) 34px;
  object-fit: cover;
}

.service-layout article h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.service-layout article p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  transform: translateY(-50%);
}

.service-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 102, 179, 0.22), rgba(193, 18, 31, 0.08)),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-aside strong {
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-aside span {
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-decoration: none;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--blue-bright);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 360px;
  text-align: right;
}

.footer-inner p.footer-credit {
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--blue-bright);
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(7, 17, 31, 0.98);
  }

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

  .site-nav a {
    padding: 14px 16px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    min-height: 880px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0.68) 58%, rgba(7, 17, 31, 0.16) 100%),
      linear-gradient(0deg, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0.16) 58%);
  }

  .intro-grid,
  .areas-grid,
  .faq-grid,
  .feature-grid,
  .contact-grid,
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-form-grid {
    grid-template-columns: 1fr;
  }

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

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

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

  .brand-tagline {
    display: none;
  }

  .site-nav {
    top: 68px;
    left: 16px;
    right: 16px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto 28px;
  }

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

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

  .section-inner {
    width: calc(100% - 32px);
  }

  .service-grid,
  .process-grid,
  .gallery-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step {
    min-height: auto;
  }

  .footer-inner {
    width: calc(100% - 32px);
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-meta {
    align-items: center;
  }

  .footer-legal {
    width: 100%;
    max-width: none;
    text-align: center;
  }
}
