/* ── Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}
img, svg, video, canvas { max-width: 100%; }
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 0 0 1.25rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin: 0 0 2rem; }
h3 { font-size: 1.15rem; margin: 0 0 .5rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 3rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--color-primary);
  margin: .75rem auto 0;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 0;
  border: 2px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn--primary:hover { background: #951e23; border-color: #951e23; }
.btn--outline { background: transparent; color: #fff; border-color: #fff; }
.btn--outline:hover { background: #fff; color: #111; }
.btn--ghost { background: transparent; color: #111; border-color: #111; }
.btn--ghost:hover { background: #111; color: #fff; }
.btn--whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn--whatsapp:hover { background: #1ea952; border-color: #1ea952; }

/* ── Nav ──────────────────────────────────────────────────────────────── */
.nav {
  background: #111;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--color-primary);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1rem;
  min-width: 0;
}
.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.nav nav a { color: #ccc; transition: color .2s; }
.nav nav a:hover { color: var(--color-primary); }
.nav__phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s;
}
.nav__phone:hover { color: var(--color-primary); }
@media (max-width: 768px) {
  .nav nav { display: none; }
  .nav__phone {
    font-size: .8rem;
    padding: .4rem .7rem;
    background: var(--color-primary);
    border-radius: 4px;
  }
  .nav__phone:hover { color: #fff; background: #951e23; }
  .nav__brand { font-size: 1rem; }
}
@media (max-width: 400px) {
  .nav__brand { font-size: .9rem; }
  .nav__phone { font-size: .75rem; padding: .35rem .55rem; }
  .nav__inner { padding: .85rem 1rem; gap: .5rem; }
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  background: #0d0d0d;
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero--image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 8rem 0 7rem;
}
.hero--image::before,
.hero--image::after {
  display: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  opacity: .08;
  transform: rotate(45deg);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  opacity: .05;
  transform: rotate(45deg);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 1.25rem;
}
.hero__title {
  color: #fff;
  text-transform: uppercase;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: #fff;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Trust bar ────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--color-primary);
  padding: .85rem 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 1rem;
}
.trust-bar__item {
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  text-align: center;
}
.trust-bar__sep {
  color: rgba(255,255,255,.4);
  font-size: .9rem;
}
@media (max-width: 768px) {
  .trust-bar__sep { display: none; }
  .trust-bar__item { font-size: .7rem; white-space: normal; }
  .trust-bar__inner { gap: .5rem 1.25rem; }
}

/* ── Services ─────────────────────────────────────────────────────────── */
.services {
  padding: 5rem 0;
  background: #f9f9f9;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.services__grid > .service-card { grid-column: span 3; }
.services__grid > .service-card:nth-child(-n+3) { grid-column: span 4; }
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(6, 1fr); }
  .services__grid > .service-card,
  .services__grid > .service-card:nth-child(-n+3) { grid-column: span 3; }
}
@media (max-width: 700px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__grid > .service-card,
  .services__grid > .service-card:nth-child(-n+3) { grid-column: span 1; }
}

.service-card {
  background: #1a1a1a;
  padding: 2rem 1.75rem;
  border-top: 3px solid transparent;
  transition: border-color .2s, transform .2s;
}
.service-card:hover {
  border-top-color: var(--color-primary);
  transform: translateY(-4px);
}
.service-card__title {
  position: relative;
  padding-top: 1rem;
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}
.service-card__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--color-primary);
}
.service-card__desc {
  color: #999;
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Stats strip ──────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--color-primary);
  padding: 3rem 0;
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) { .stats-strip__inner { grid-template-columns: repeat(2, 1fr); } }
.stat__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  margin-top: .4rem;
}

/* ── About ────────────────────────────────────────────────────────────── */
.about { padding: 5rem 0; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) { .about__inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.about__copy h2 { margin-bottom: 1rem; }
.about__body { color: #555; line-height: 1.75; font-size: 1rem; margin-bottom: 1.5rem; }
.about__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .75rem;
}
.about__points li {
  padding-left: 1.75rem;
  position: relative;
  font-size: .95rem;
  color: #333;
  font-weight: 500;
}
.about__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 800;
}
.about__side {
  display: grid;
  gap: 1.25rem;
}
.about__image {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #222;
  background: #111;
  aspect-ratio: 4 / 3;
}
.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -80px 120px rgba(0,0,0,.28);
  pointer-events: none;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__contact {
  background: #111;
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  border-left: 4px solid var(--color-primary);
}
.contact-block__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-primary);
  margin: 0 0 .3rem;
}
.contact-block__value {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
a.contact-block__value:hover { color: var(--color-primary); }

/* ── Brands strip ─────────────────────────────────────────────────────── */
.brands-strip {
  background: #111;
  padding: 2.5rem 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.brands-strip__inner { text-align: center; }
.brands-strip__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #555;
  margin: 0 0 1.25rem;
}
.brands-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: center;
  align-items: center;
}
.brands-strip__brand {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #555;
  transition: color .2s;
}
.brands-strip__brand:hover { color: #999; }

/* ── Testimonials / Google Reviews ────────────────────────────────────── */
.testimonials { padding: 5rem 0; background: #fafafa; }

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.reviews-header__badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviews-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.reviews-header__label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #666;
  margin: 0 0 .2rem;
  font-weight: 600;
}
.reviews-header__rating {
  margin: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.reviews-header__rating strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #111;
  line-height: 1;
}
.reviews-header__stars {
  color: #fbbc04;
  font-size: 1.1rem;
  letter-spacing: .05em;
}
.reviews-header__meta { text-align: right; }
.reviews-header__meta p {
  margin: 0 0 .3rem;
  font-size: .9rem;
  color: #555;
}
.reviews-header__link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.reviews-header__link:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .reviews-header { padding: 1.25rem 1.5rem; }
  .reviews-header__meta { text-align: left; width: 100%; }
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials__grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.testimonial-card__stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: .1em;
}
.testimonial-card__body {
  font-size: .95rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-style: normal;
}
.testimonial-card__author {
  font-size: .8rem;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
}

/* ── Map section (mock) ───────────────────────────────────────────────── */
.map-section { padding: 5rem 0; }
.map-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
@media (max-width: 768px) { .map-block { grid-template-columns: 1fr; } }

.map-block__mock {
  position: relative;
  min-height: 380px;
  background: linear-gradient(135deg, #e8edf0 0%, #dde4ea 50%, #e8edf0 100%);
  overflow: hidden;
}
.map-block__embed {
  min-height: 380px;
  background: #111;
}
.map-block__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}
.map-block__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-block__road {
  position: absolute;
  background: #ffffff;
  box-shadow: 0 0 0 1px #c9d1d8;
}
.map-block__road--h {
  top: 52%;
  left: -5%;
  width: 110%;
  height: 14px;
}
.map-block__road--v {
  top: -5%;
  left: 38%;
  width: 12px;
  height: 110%;
}
.map-block__road--d {
  top: 18%;
  left: -10%;
  width: 70%;
  height: 10px;
  transform: rotate(18deg);
  transform-origin: left center;
}
.map-block__pin {
  position: absolute;
  top: 48%;
  left: 42%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  z-index: 2;
}
.map-block__pin-dot {
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  position: relative;
}
.map-block__pin-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.map-block__pin-label {
  background: #fff;
  padding: .3rem .6rem;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  color: #111;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.map-block__attribution {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: .7rem;
  color: #78858f;
  background: rgba(255,255,255,.8);
  padding: .15rem .5rem;
  border-radius: 3px;
}

.map-block__info {
  background: #111;
  color: #ddd;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}
.map-block__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0 0 .25rem;
}
.map-block__label:not(:first-child) { margin-top: .75rem; }
.map-block__address,
.map-block__hours {
  font-family: var(--font-heading);
  font-size: .95rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
.map-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.map-block__actions .btn { font-size: .8rem; padding: .7rem 1.1rem; }
.map-block__actions .btn--ghost {
  color: #fff;
  border-color: #444;
}
.map-block__actions .btn--ghost:hover { background: #fff; color: #111; border-color: #fff; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq { padding: 5rem 0; background: #f9f9f9; }
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: .5rem;
}
.faq__item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-left: 3px solid var(--color-primary);
  padding: 0;
}
.faq__item[open] { border-left-color: var(--color-primary); }
.faq__question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq__item[open] .faq__question::after {
  content: '×';
}
.faq__answer {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  font-size: .95rem;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #f0f0f0;
}

/* ── CTA Banner ───────────────────────────────────────────────────────── */
.cta-banner {
  background: #0d0d0d;
  padding: 5rem 0;
}
.cta-banner__inner { text-align: center; }
.cta-banner__title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-banner__body {
  color: #aaa;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer {
  background: #111;
  border-top: 2px solid var(--color-primary);
  color: #aaa;
  font-size: .9rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 1.5rem;
}
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 .5rem;
}
.footer__address { margin: 0 0 .4rem; color: #ccc; }
.footer__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-primary);
  margin: 0 0 .4rem;
}
.footer__hours { color: #ccc; line-height: 1.7; margin: 0; }
.footer a { color: #ccc; transition: color .2s; }
.footer a:hover { color: var(--color-primary); }
.footer__col--links { display: flex; flex-direction: column; gap: .5rem; }
.footer__copy {
  border-top: 1px solid #222;
  padding: 1.25rem 1.5rem;
}
.footer__copy p { margin: 0; font-size: .8rem; color: #555; }

/* ── Sticky action buttons (mobile only) ──────────────────────────────── */
.sticky-actions {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
  flex-direction: column;
  gap: .5rem;
}
.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  padding: .75rem 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
  transition: transform .2s, filter .2s;
}
.sticky-btn:hover { transform: scale(1.04); filter: brightness(1.1); }
.sticky-btn--call { background: var(--color-primary); }
.sticky-btn--whatsapp { background: #25D366; }
@media (max-width: 768px) { .sticky-actions { display: flex; } }

/* ── CTA Banner actions ─────────────────────────────────────────────── */
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
