/* Enzo Collision and Customization Center - shared stylesheet (site.css)
   Design system extracted from the Wix source. Fonts, tokens and shared
   chrome (top-bar / header / nav / footer) live here. Page-scoped rules are
   appended under banner comments further down. Do not nest comments. */

:root {
  --black: #000000;
  --near-black: #111111;
  --panel: #161616;
  --panel-2: #1d1d1d;
  --dark-wood: #23201c;
  --white: #ffffff;
  --off-white: #f2f2f2;
  --grey-100: #f4f4f4;
  --grey-200: #e6e6e6;
  --grey-300: #d1d1d1;
  --grey-500: #8a8a8a;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --text-on-dark: #f5f5f5;
  --text-on-dark-muted: #c8c8c8;
  --red: #e01f26;
  --red-dark: #b3161c;
  --line: #e2e2e2;
  --line-dark: #2c2c2c;

  --font-head: "Chakra Petch", "Bank Gothic", "Arial Narrow", sans-serif;
  --font-body: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.12);
  --shadow-md: 0 10px 30px rgba(0,0,0,.18);
  --space: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
  letter-spacing: .02em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  z-index: 2000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: .03em;
  padding: 13px 26px;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .2s ease;
}
.btn:hover { background: var(--white); color: var(--black); }

.btn-dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: #222; color: var(--white); }

.btn-outline-dark {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ---- Top bar ---- */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 14px;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar .tb-left,
.topbar .tb-right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); }
.topbar .tb-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.topbar svg { width: 16px; height: 16px; fill: currentColor; flex: none; }
.topbar .tb-social { display: inline-flex; gap: 14px; align-items: center; }
.topbar .tb-social img { width: 20px; height: 20px; }

/* ---- Header / nav ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}
.brand img { height: 66px; width: auto; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--near-black);
  padding: 8px 2px;
  position: relative;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--red); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--near-black);
  margin: 5px 0;
}

/* ---- Page hero band (inner pages) ---- */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero .page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
}
.page-hero h1 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 64px;
  letter-spacing: .03em;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--black);
  color: var(--text-on-dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 48px;
}
.site-footer .f-logo img { width: 210px; height: auto; margin-bottom: 18px; }
.site-footer p { color: var(--text-on-dark-muted); font-size: 15px; }
.site-footer h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 14px; }
.footer-links a { color: var(--text-on-dark-muted); transition: color .2s ease; }
.footer-links a:hover { color: var(--white); }
.f-social { display: flex; gap: 14px; margin-top: 20px; }
.f-social img { width: 26px; height: 26px; }
.f-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.f-contact-item .f-ico {
  background: var(--white);
  width: 42px; height: 42px;
  flex: none;
  display: flex; align-items: center; justify-content: center;
}
.f-contact-item .f-ico svg { width: 20px; height: 20px; fill: var(--black); }
.f-contact-item strong { color: var(--white); font-family: var(--font-head); font-weight: 600; display: block; }
.f-contact-item a, .f-contact-item span { color: var(--text-on-dark-muted); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 48px;
  padding: 22px 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-on-dark-muted);
}

/* ---- Contact-info band (shared) ---- */
.info-band { background: var(--white); padding: 60px 0; }
.info-band .info-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.info-band .info-head h2 { font-size: 30px; }
.info-band .info-head p { color: var(--text-muted); }
.info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.info-cell {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.info-cell .i-ico {
  background: var(--black);
  width: 46px; height: 46px;
  flex: none;
  display: flex; align-items: center; justify-content: center;
}
.info-cell .i-ico svg { width: 22px; height: 22px; fill: var(--white); }
.info-cell strong { font-family: var(--font-head); display: block; }
.info-cell a, .info-cell span { color: var(--text-muted); }

/* ---- Forms (relay-wired) ---- */
.quick-form .field { margin-bottom: 14px; }
.quick-form label { display: block; font-size: 13px; margin-bottom: 6px; font-family: var(--font-head); }
.quick-form input,
.quick-form textarea {
  width: 100%;
  border: 0;
  background: var(--grey-300);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
}
.quick-form textarea { min-height: 110px; resize: vertical; }
.quick-form input::placeholder,
.quick-form textarea::placeholder { color: #6a6a6a; }
.quick-form .submit {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: 0;
  padding: 14px;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .2s ease;
}
.quick-form .submit:hover { background: #222; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- Motion (shared) ---- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes zoom-in {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(224,31,38,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(224,31,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,31,38,0); }
}

/* on-load entrance animations always end visible (fill-mode both) */
.anim-up   { animation: fade-up .7s ease both; }
.anim-in   { animation: fade-in .8s ease both; }
.anim-zoom { animation: zoom-in .7s ease both; }
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .2s; }
.anim-d3 { animation-delay: .3s; }
.anim-d4 { animation-delay: .4s; }
.anim-d5 { animation-delay: .5s; }

.live-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 1.8s infinite;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---- Responsive (shared) ---- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .info-row { grid-template-columns: 1fr; gap: 22px; }
  .page-hero h1 { font-size: 44px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { padding: 0 24px; }
  .main-nav a { display: block; padding: 12px 0; }
  .nav-toggle { display: block; }
  .site-header .header-cta { display: none; }
  .section-title { font-size: 27px; }
}

/* =====================================================================
   page:home
   ===================================================================== */
.home-hero {
  position: relative;
  min-height: 774px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: #000;
  /* source leaves a white band between the hero photo and the reviews band */
  margin-bottom: 163px;
}
/* source layers the hero photo at 35% over solid black */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(orig/58.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .35;
  z-index: 0;
}
.home-hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-copy h1 {
  color: var(--white);
  font-size: 52px;
  line-height: 1.12;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero-copy .hero-sub {
  font-size: 18px;
  max-width: 460px;
  margin-bottom: 28px;
  color: #ececec;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-form-card {
  background: rgba(255,255,255,.97);
  color: var(--text);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
}
.hero-form-card h4 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 18px;
  color: var(--near-black);
}

/* reviews carousel (dark band) */
.reviews {
  position: relative;
  background-color: #000;
  color: var(--text-on-dark);
  padding: 78px 0;
  min-height: 707px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* source layers a shop photo at 40% over solid black */
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(orig/05.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .4;
  z-index: 0;
}
.reviews .wrap { position: relative; z-index: 1; width: 100%; }
.reviews-embed { max-width: 1100px; margin: 0 auto; }
.reviews-embed iframe { display: block; width: 100%; min-height: 609px; border: 0; }
.reviews .section-title { color: var(--white); }
.reviews-top {
  text-align: center;
  margin-bottom: 34px;
}
.reviews-rating {
  font-family: var(--font-head);
  font-size: 46px;
  color: var(--white);
  line-height: 1;
}
.reviews-stars { color: #ffc107; font-size: 22px; letter-spacing: 3px; margin: 8px 0; }
.reviews-count { color: var(--text-on-dark-muted); font-size: 15px; }
.review-card {
  background: var(--panel);
  border: 1px solid var(--line-dark);
  padding: 26px 24px;
  height: auto;
  box-sizing: border-box;
}
.review-card .r-stars { color: #ffc107; letter-spacing: 2px; margin-bottom: 12px; }
.review-card .r-text {
  color: var(--text-on-dark-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.review-card .r-name { font-family: var(--font-head); color: var(--white); }
.review-card .r-date { font-size: 13px; color: var(--grey-500); }

/* recent projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.projects-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 313 / 370;
  background: var(--grey-200);
}
.projects-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.projects-grid a:hover img { transform: scale(1.06); }

/* services showcase (dark wood) */
.services-show {
  position: relative;
  background-color: #000;
  color: var(--white);
  padding: 80px 0 88px;
  min-height: 908px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* source tiles a dark wood-plank texture at 25% over solid black */
.services-show::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(orig/56.png);
  background-repeat: repeat;
  background-position: center;
  opacity: .25;
  z-index: 0;
}
.services-show .wrap { position: relative; z-index: 1; width: 100%; max-width: 1330px; }
.services-show .section-title { color: var(--white); font-size: 40px; margin-bottom: 10px; }
/* source: two 387px tile columns either side of a 500px car, content 1274px wide */
.services-layout {
  display: grid;
  grid-template-columns: 387px 500px 387px;
  justify-content: center;
  gap: 0;
  align-items: center;
}
.svc-col { display: flex; flex-direction: column; gap: 75px; }
.svc-item {
  display: flex;
  gap: 0;
  align-items: stretch;
  min-height: 102px;
}
/* the middle tile of each column steps outward, as on the source */
.services-layout .svc-col:first-child .svc-item:nth-child(2) { transform: translateX(-72px); }
.services-layout .svc-col:last-child .svc-item:nth-child(2) { transform: translateX(85px); }
/* the number sits on the section background itself - no panel behind it */
.svc-item .svc-num {
  font-family: var(--font-head);
  font-size: 38px;
  letter-spacing: 2px;
  background: transparent;
  color: var(--white);
  width: 97px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-item .svc-body {
  background: var(--white);
  color: var(--text);
  padding: 16px 17px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-item .svc-body h5 { font-size: 20px; line-height: 1.25; margin-bottom: 4px; }
.svc-item .svc-body p { margin: 0; font-size: 16px; line-height: 1.35; color: var(--text-muted); }
.svc-car {
  position: relative;
  width: 500px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.svc-car .svc-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  object-fit: contain;
}
.svc-car .svc-vehicle {
  position: relative;
  z-index: 1;
  width: 375px;
  height: auto;
}
.services-show .svc-cta { text-align: center; margin-top: 44px; }
.services-show .svc-cta .btn:hover { background: transparent; color: var(--white); }
.services-show .svc-cta .btn {
  background: var(--white);
  color: var(--near-black);
  border-color: var(--white);
  min-width: 185px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* special offers */
.offers { padding: 74px 0; background: var(--grey-100); }
.offers .offers-sub { text-align: center; color: var(--text-muted); margin: -26px auto 34px; max-width: 620px; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.offer-card { background: var(--black); color: var(--white); text-align: center; }
.offer-card img { width: 100%; height: 190px; object-fit: cover; }
.offer-card .offer-label { padding: 14px 8px; font-family: var(--font-head); font-size: 20px; }
.offers .offers-cta { text-align: center; margin-top: 36px; }

/* logo strips */
.logos { padding: 66px 0; }
.logos.alt { background: var(--grey-100); }
.logos .section-title { margin-bottom: 34px; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 30px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}
.logo-grid img {
  width: 100%;
  max-width: 150px;
  height: 66px;
  object-fit: contain;
  margin: 0 auto;
  filter: none;
}

/* about band (home) */
.about-band {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.about-band .about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8,10,14,.8);
  z-index: 1;
}
.about-band .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 78px 24px;
}
.about-media {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.about-media img.am-a { width: 46%; height: auto; object-fit: cover; }
.about-media img.am-b { width: 46%; height: auto; object-fit: cover; margin-top: 30px; }
.about-badge {
  position: absolute;
  right: 8%;
  bottom: -26px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 16px 26px;
  border: 1px solid #333;
}
.about-badge .ab-num { font-family: var(--font-head); font-size: 34px; }
.about-badge .ab-label { font-size: 13px; color: var(--text-on-dark-muted); }
.about-text h2 { color: var(--white); font-size: 30px; }
.about-text p { color: var(--text-on-dark-muted); }
.about-text .about-actions { margin: 24px 0; }
.about-contactline {
  display: flex;
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 22px;
  margin-top: 8px;
}
.about-contactline .ac-ico {
  width: 46px; height: 46px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.about-contactline .ac-ico svg { width: 22px; height: 22px; fill: var(--black); }
.about-contactline .ac-label { font-size: 13px; color: var(--text-on-dark-muted); }
.about-contactline .ac-num { font-family: var(--font-head); font-size: 20px; color: var(--white); }

/* service areas + map */
.areas { padding: 72px 0; }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.areas-list h2 { font-size: 30px; }
.areas-list .areas-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 30px;
  margin: 20px 0;
}
.areas-list ul { list-style: none; margin: 0; padding: 0; }
.areas-list li {
  padding: 6px 0 6px 26px;
  position: relative;
}
.areas-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
#home-map { width: 100%; min-height: 340px; height: 100%; background: var(--grey-200); border: 1px solid var(--line); }

/* between the fixed source width and the stacked layout, scale the strip down */
@media (max-width: 1330px) and (min-width: 981px) {
  .services-layout { grid-template-columns: minmax(0, 1fr) 420px minmax(0, 1fr); }
  .services-layout .svc-col .svc-item:nth-child(2) { transform: none; }
  .svc-col { gap: 50px; }
  .svc-car { width: 420px; height: 504px; }
  .svc-car .svc-ring { width: 420px; height: 420px; }
  .svc-car .svc-vehicle { width: 300px; }
  .services-show .svc-cta { margin-top: 70px; }
}
@media (max-width: 980px) {
  .home-hero .wrap { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 460px; }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-show .wrap { max-width: var(--wrap); }
  .svc-col { gap: 30px; }
  .services-show .svc-cta { margin-top: 44px; }
  .services-show { min-height: 0; }
  .services-layout .svc-col .svc-item:nth-child(2) { transform: none; }
  .svc-car { margin: 10px auto; width: 100%; max-width: 380px; height: auto; }
  .svc-car .svc-ring { width: 100%; max-width: 340px; height: auto; }
  .svc-car .svc-vehicle { width: 72%; max-width: 260px; }
  .reviews { min-height: 0; }
  .home-hero { min-height: 0; }
  .about-band .wrap { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hero-copy h1 { font-size: 38px; }
  .home-hero { margin-bottom: 60px; }
  .services-show .section-title { font-size: 30px; }
  .svc-item .svc-num { font-size: 30px; min-width: 62px; }
  .svc-item .svc-body h5 { font-size: 18px; }
  .svc-item .svc-body p { font-size: 15px; }
  .projects-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: 1fr; }
  .about-media img.am-b { margin-top: 0; }
}

/* =====================================================================
   page:about
   ===================================================================== */
.about-page { padding: 84px 0; }
.about-page .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-page-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.about-page-media img { width: 100%; height: auto; object-fit: cover; }
.about-page-media .apm-a { align-self: center; }
.about-page-media .apm-badge {
  grid-column: 2;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 22px;
}
.about-page-media .apm-badge .n { font-family: var(--font-head); font-size: 40px; }
.about-page-media .apm-badge .l { font-size: 13px; color: var(--text-on-dark-muted); }
.about-page-text h2 { font-size: 34px; }
.about-page-text p { color: var(--text-muted); }
.about-page-text .apt-actions { margin: 24px 0; }
.about-page-text hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.about-page-text .about-contactline { border-top: 0; padding-top: 0; margin-top: 0; }
.about-page-text .about-contactline .ac-ico { background: var(--black); }
.about-page-text .about-contactline .ac-ico svg { fill: var(--white); }
.about-page-text .about-contactline .ac-label { color: var(--text-muted); }
.about-page-text .about-contactline .ac-num { color: var(--near-black); }

@media (max-width: 900px) {
  .about-page .wrap { grid-template-columns: 1fr; }
}

/* =====================================================================
   page:services
   ===================================================================== */
.services-page { padding: 84px 0; }
.services-page .svc-page-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
}
.svc-page-car {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-page-car .spc-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.svc-page-car .spc-vehicle {
  position: relative;
  z-index: 1;
  width: 200px;
  height: auto;
}
.svc-page-item {
  display: flex;
  border: 1px solid var(--line);
  margin-bottom: 26px;
}
.svc-page-item .n {
  font-family: var(--font-head);
  font-size: 30px;
  background: var(--near-black);
  color: var(--white);
  min-width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-page-item .b { padding: 14px 18px; }
.svc-page-item .b h5 { font-size: 17px; margin-bottom: 4px; }
.svc-page-item .b p { margin: 0; font-size: 14px; color: var(--text-muted); }

@media (max-width: 900px) {
  .services-page .svc-page-layout { grid-template-columns: 1fr; }
  .svc-page-car { margin: 6px auto; }
}

/* =====================================================================
   page:gallery
   ===================================================================== */
.gallery-page { padding: 80px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 313 / 370;
  background: var(--grey-200);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   page:contact
   ===================================================================== */
.contact-page { padding: 84px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: 30px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 26px; max-width: 380px; }
.contact-info .ci-item {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}
.contact-info .ci-ico {
  width: 46px; height: 46px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.contact-info .ci-ico svg { width: 22px; height: 22px; fill: var(--white); }
.contact-info .ci-item strong { font-family: var(--font-head); display: block; }
.contact-info .ci-item a, .contact-info .ci-item span { color: var(--text-muted); }
.contact-form-wrap h2 { text-align: center; font-size: 30px; margin-bottom: 26px; }

.areas-band {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.areas-band .ab-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.areas-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.82);
  z-index: 1;
}
.areas-band .wrap { position: relative; z-index: 2; padding: 76px 24px; }
.areas-band h2 { color: var(--white); font-size: 32px; }
.areas-band .ab-sub { color: var(--text-on-dark-muted); margin-bottom: 20px; }
.areas-band .ab-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 4px 40px;
  margin: 18px 0;
}
.areas-band ul { list-style: none; margin: 0; padding: 0; }
.areas-band li {
  position: relative;
  padding: 7px 0 7px 28px;
}
.areas-band li::before {
  content: "\2192";
  position: absolute; left: 0;
  color: var(--white);
  font-weight: 700;
}
.areas-band .ab-foot { color: var(--text-on-dark-muted); max-width: 620px; margin-top: 14px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .areas-band .ab-cols { grid-template-columns: 1fr; }
}

/* contact service-areas band: text beside the map, as on the source */
.areas-band .ab-grid {
  display: grid;
  grid-template-columns: minmax(0, 450px) 507px;
  gap: 26px;
  align-items: center;
  justify-content: center;
}
#contact-map {
  width: 507px;
  height: 345px;
  background: var(--grey-200);
  border: 1px solid var(--line);
}
@media (max-width: 1040px) {
  .areas-band .ab-grid { grid-template-columns: 1fr; justify-content: stretch; }
  #contact-map { width: 100%; max-width: 507px; }
}
@media (max-width: 560px) { #contact-map { height: 300px; } }
