:root {
  --primary: #ef233c;
  --primary-dark: #d90429;
  --dark: #0f1014;
  --dark-card: #181a20;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.1);
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Exo 2", "Montserrat", system-ui, sans-serif;
  --container: min(1120px, calc(100% - 3rem));
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --btn-radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.no-preloader #preloader { display: none !important; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.container { width: var(--container); margin-inline: auto; }

.icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--fill { fill: currentColor; stroke: none; }
.icon--lg { width: 1.5rem; height: 1.5rem; }
.icon--xl { width: 1.75rem; height: 1.75rem; }

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-box { width: 180px; height: 180px; }
.loader-svg { width: 100%; height: 100%; }
.loader-svg path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 28;
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  animation: draw 2.2s ease-in-out infinite;
}
@keyframes draw {
  0% { stroke-dashoffset: 4000; opacity: 0.2; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -4000; opacity: 0.2; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
html:not(.js) [data-reveal] { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-20px); }
[data-reveal="right"] { transform: translateX(20px); }
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible { transform: none; }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0.75rem 0;
  background: rgba(15, 16, 20, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-nav.is-scrolled { background: rgba(15, 16, 20, 0.98); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { height: 4rem; width: auto; margin-block: -0.75rem; }
.brand-text {
  display: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25;
  color: #fff;
}
.brand-text em { font-style: normal; color: var(--primary); }
.brand-text small {
  display: block;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
}
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--btn-radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--primary-dark); color: #fff !important; }
.menu-toggle {
  background: none;
  border: 0;
  color: #fff;
  padding: 0.35rem;
  cursor: pointer;
}
.menu-toggle:hover { color: var(--primary); }
.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--dark-card);
  border-top: 1px solid #1f2937;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 2rem;
  border-left: 3px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--primary);
  border-left-color: var(--primary);
}
.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid #1f2937;
  color: var(--muted);
}
.mobile-socials a:hover { color: var(--primary); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(165deg, #14161c 0%, #0f1014 45%, #0a0b0e 100%);
}
.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-visual {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 58%;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  top: 50%;
  right: 8%;
  width: min(500px, 45vw);
  height: min(500px, 45vw);
  border-radius: 50%;
  background: rgba(239, 35, 60, 0.28);
  filter: blur(110px);
}
.hero-car {
  position: relative;
  z-index: 2;
  height: 75%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: right bottom;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 7rem 0 4rem;
  max-width: 42rem;
}
.hero-kicker {
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--primary); }
.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 36rem;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.stars { color: #fbbf24; letter-spacing: 2px; }
.rating-row strong { color: #fff; }
.rating-row span { color: var(--muted); font-size: 0.875rem; }
.hero-actions { display: flex; flex-direction: column; gap: 0.85rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--btn-radius);
  font-weight: 700;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-size: 1.1rem;
  padding: 1.1rem 2.25rem;
}
.btn-white:hover { background: #f3f4f6; }

.hero-socials {
  display: none;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero-socials .line {
  width: 1px;
  height: 5rem;
  background: rgba(255, 255, 255, 0.2);
}
.hero-socials a { color: var(--muted); transition: color 0.2s; }
.hero-socials a:hover { color: var(--primary); }

.section { position: relative; padding: 5rem 0; }
.section-lg { padding: 6rem 0; }
.bg-dark { background: var(--dark); }
.bg-card { background: var(--dark-card); }
.section-title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
}
.section-sub { margin-top: 0.75rem; color: var(--muted); line-height: 1.5; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .section-sub { max-width: 36rem; margin-inline: auto; }
.accent { color: var(--primary); }
.text-muted { color: var(--muted); line-height: 1.65; }

.about-grid { display: grid; gap: 3rem; align-items: center; }
.about-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.about-copy h2 { margin-bottom: 1.5rem; }
.about-copy p { margin-bottom: 1.25rem; }
.check-list { display: grid; gap: 1rem; margin-top: 0.5rem; }
.check-list li { display: flex; align-items: center; gap: 0.75rem; color: #d1d5db; }
.check-list .icon { color: var(--primary); flex-shrink: 0; }

.services-grid { display: grid; gap: 1.5rem; }
.service-card {
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #131419;
  transition: border-color 0.25s;
}
.service-card:hover { border-color: rgba(239, 35, 60, 0.55); }
.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  background: var(--dark-card);
  color: var(--primary);
}
.service-card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #fff;
}
.service-card p { color: var(--muted); line-height: 1.65; }
.service-wide { display: flex; flex-direction: column; gap: 1.15rem; }
.service-wide .service-icon { margin-bottom: 0; }

.gallery-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.gallery-link {
  color: var(--muted);
  border-bottom: 1px solid #374151;
  padding-bottom: 0.15rem;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.gallery-link:hover { color: #fff; border-color: var(--primary); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1f2937;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: #fff;
  transition: opacity 0.25s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-mobile { text-align: center; margin-top: 1.5rem; }

.reviews-grid { display: grid; gap: 1rem; }
.review-card {
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #131419;
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 35, 60, 0.15);
  border: 1px solid rgba(239, 35, 60, 0.35);
  color: var(--primary);
  font-weight: 700;
}
.review-author strong { display: block; color: #fff; }
.review-author span { font-size: 0.75rem; color: #6b7280; }
.review-card p { color: var(--muted); font-style: italic; line-height: 1.65; }
.center-link { text-align: center; margin-top: 2.25rem; }
.center-link a {
  display: inline-flex;
  color: var(--muted);
  border-bottom: 1px solid #374151;
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}
.center-link a:hover { color: #fff; border-color: var(--primary); }

.area-intro {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list { max-width: 48rem; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #131419;
  padding: 1.2rem 1.35rem;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-item p { margin-top: 0.9rem; color: var(--muted); line-height: 1.65; }
.faq-item a { color: var(--primary); }
.faq-item a:hover { text-decoration: underline; }

.cta-band {
  position: relative;
  padding: 5rem 0;
  background: var(--primary);
  text-align: center;
}
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 34rem;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.cta-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-style: italic;
}

.contact-grid { display: grid; gap: 3rem; }
.contact-copy h2 { margin-bottom: 1.15rem; }
.contact-copy > p { margin-bottom: 2.25rem; font-size: 1.05rem; }
.contact-list { display: grid; gap: 1.75rem; }
.contact-item { display: flex; gap: 1.15rem; align-items: flex-start; }
.contact-ico {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--primary);
}
.contact-item h3 { color: #fff; margin-bottom: 0.25rem; }
.contact-item p,
.contact-item a {
  color: var(--muted);
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--primary); }
.phone-lg { font-family: var(--display); font-size: 1.25rem; }
.map-box {
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark);
}
.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  background: var(--dark);
}
.map-placeholder .btn { margin-top: 0.5rem; }
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }

.site-footer {
  background: var(--dark);
  border-top: 1px solid #1f2937;
  padding: 3rem 0;
  color: #6b7280;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.footer-brand {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin-bottom: 0.35rem;
}
.footer-brand em { font-style: italic; color: var(--primary); }
.footer-meta { font-size: 0.875rem; color: #4b5563; }
.footer-seo {
  font-size: 0.75rem;
  color: #374151;
  max-width: 28rem;
  margin-top: 0.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-card);
  transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover { background: var(--primary); color: #fff; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-bottom a { color: #9ca3af; }
.footer-bottom a:hover { color: var(--primary); }

@media (min-width: 640px) {
  .brand-text { display: block; }
  .hero-actions { flex-direction: row; }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .hero-visual { display: flex; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
  .gallery-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-mobile { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .hero-socials { display: flex; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-wide { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
