:root {
  --red: #b40000;
  --red-dark: #8f0000;
  --gray: #4c4c4c;
  --bg: #ffffff;
  --alt: #f6f6f6;
  --text: #111111;
  --muted: #666666;
  --line: rgba(0, 0, 0, 0.1);
  --line-soft: rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --container: 1180px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}

.link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--red);
  transition: opacity 0.25s ease;
}

.link:hover {
  opacity: 0.8;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand__logo {
  width: 150px;
  height: auto;
  object-fit: contain;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #333333;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--red);
}

.navToggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.navToggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: #222222;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--red);
  color: #ffffff;
  border: 1px solid var(--red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn--block {
  width: 100%;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  background: var(--red);
  color: #ffffff;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-hero:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(180, 0, 0, 0.22);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(540px, 86vh, 900px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.42) 35%,
    rgba(0, 0, 0, 0.2) 65%,
    rgba(0, 0, 0, 0.58) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 0 90px;
  color: #ffffff;
}

.hero__title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -1.6px;
}

.hero__sub {
  margin: 16px 0 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.hero__cta {
  margin-top: 26px;
}

/* Reviews */
.reviews {
  background: #ffffff;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.reviews__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.avatars {
  display: flex;
  align-items: center;
}

.av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  margin-left: -8px;
}

.av:first-child {
  margin-left: 0;
}

.reviews__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stars {
  color: var(--red);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 4px;
}

/* Numbers */
.numbers {
  padding: 56px 0;
  background: #ffffff;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.num {
  padding: 22px 18px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.num__big {
  color: var(--red);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

.num__title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.num__text {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

/* About */
.about {
  padding: 72px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.about__text h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.8px;
}

.about__text p {
  margin: 0;
  line-height: 1.75;
}

.bullets {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.b {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #333333;
}

.b__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.about__media {
  min-height: 380px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-soft);
}

/* Section header */
.secHead {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.secHead h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 2.7vw, 42px);
  letter-spacing: -0.8px;
}

.secHead p {
  margin: 0;
  line-height: 1.7;
}

/* Services */
.services {
  padding: 72px 0;
}

.cards {
  display: grid;
  gap: 16px;
}

.cards--img {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.card--img {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card--img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(180, 0, 0, 0.16);
}

.card__media {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.card__body {
  padding: 18px;
}

.card__body h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card__body p {
  margin: 0;
  line-height: 1.7;
}

/* CTA Bar */
.ctaBar {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(180, 0, 0, 0.15);
  background: linear-gradient(90deg, rgba(180, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
}

.ctaBar__left {
  flex: 1;
}

.ctaBar__k {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.ctaBar__t {
  margin-top: 6px;
  font-weight: 800;
}

.ctaBar__chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  color: #333333;
}

.ctaBar__btn {
  flex-shrink: 0;
}

/* Locations */
.locations {
  padding: 80px 0;
  background: var(--alt);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.location-card {
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
}

.location-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.location-card h3 {
  padding: 18px 20px 0;
  margin: 0;
}

.location-card p {
  padding: 8px 20px 14px;
  margin: 0;
  color: var(--muted);
}

.location-card a {
  display: block;
  padding: 0 20px 20px;
  font-weight: 700;
  color: var(--red);
}

/* Contact */
.contact {
  padding: 72px 0;
  background: #ffffff;
}

.form {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #ffffff;
}

label {
  display: block;
  margin-bottom: 14px;
}

label span {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #333333;
}

input,
textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 14px;
  font: inherit;
  outline: none;
  background: #ffffff;
}

input:focus,
textarea:focus {
  border-color: rgba(180, 0, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(180, 0, 0, 0.1);
}

/* Footer */
.footer {
  padding: 20px 0;
  background: #ffffff;
  border-top: 1px solid var(--line-soft);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__brand {
  font-weight: 900;
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__links a {
  color: #444444;
  transition: color 0.25s ease;
}

.footer__links a:hover {
  color: var(--red);
}

/* Floating buttons */
.whatsapp-float,
.instagram-float {
  position: fixed;
  right: 12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover,
.instagram-float:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.whatsapp-float {
  bottom: 16px;
  background: #25d366;
}

.instagram-float {
  bottom: 76px;
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .numbers__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards--img {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .navToggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  }

  .nav--open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.42) 45%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }

  .about__grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .ctaBar {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header__inner {
    min-height: 70px;
    padding: 10px 0;
  }

  .brand__logo {
    width: 110px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero__content {
    padding: 110px 0 70px;
  }

  .hero__title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .hero__sub {
    font-size: 15px;
  }

  .numbers {
    padding: 34px 0;
  }

  .numbers__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .num {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .num__big {
    font-size: 30px;
  }

  .num__title {
    margin-top: 8px;
    font-size: 16px;
  }

  .num__text {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.5;
  }

  .cards--img {
    grid-template-columns: 1fr;
  }

  .location-card img {
    height: 200px;
  }

  .whatsapp-float,
  .instagram-float {
    width: 48px;
    height: 48px;
    right: 10px;
  }

  .instagram-float {
    bottom: 68px;
  }

  .whatsapp-float {
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__media,
  .btn,
  .btn-hero,
  .card--img,
  .location-card,
  .whatsapp-float,
  .instagram-float {
    transition: none;
  }
}