* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111111;
  background: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  background: #0d0d0d;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: white;
  border-radius: 14px;
  padding: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.brand-sub {
  color: #d6d6d6;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover {
  color: #e10600;
}

.nav-call {
  background: #e10600;
  color: #ffffff;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  color: #111111;
  margin-bottom: 22px;
}

.hero-text {
  font-size: 19px;
  color: #444444;
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.btn {
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  display: inline-block;
}

.primary {
  background: #111111;
  color: white;
}

.secondary {
  background: white;
  color: #111111;
  border: 2px solid #111111;
}

.instagram {
  background: #e10600;
  color: white;
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats div {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  min-width: 130px;
  border: 1px solid #ececec;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.hero-stats strong {
  display: block;
  font-size: 22px;
  color: #111111;
}

.hero-stats span {
  font-size: 14px;
  color: #666666;
}

.hero-photo {
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.16);
  border: 10px solid #111111;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit:fill;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 46px;
}

.section-title p,
.section-label {
  color: #e10600;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
}

.section-title h2,
.about-content h2,
.contact-content h2 {
  color: #111111;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-top: 5px solid #e10600;
  border: 1px solid #eeeeee;
}

.service-card h3 {
  color: #111111;
  margin-bottom: 10px;
  font-size: 20px;
}

.service-card p {
  color: #555555;
  font-size: 15px;
}

.gallery {
  max-width: none;
  background: #fafafa;
}

.gallery .section-title {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #ddd;
  border: 3px solid #111111;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  height: 430px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  border: 10px solid #111111;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content p {
  color: #444444;
  margin-top: 18px;
  font-size: 17px;
}

.check-list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check-list p {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
  margin: 0;
  font-weight: 700;
  color: #111111;
  border-left: 4px solid #e10600;
  border: 1px solid #eeeeee;
}

.why {
  background: #111111;
  color: white;
  max-width: none;
}

.why .section-title h2 {
  color: white;
}

.why-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-grid div {
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 22px;
  border-top: 4px solid #e10600;
}

.why-grid span {
  color: #ff3b30;
  font-weight: 900;
  font-size: 18px;
}

.why-grid h3 {
  font-size: 24px;
  margin: 14px 0 10px;
}

.why-grid p {
  color: #dddddd;
}

.reviews {
  text-align: center;
}

.review-card {
  background: white;
  max-width: 760px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 28px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #e10600;
  border: 1px solid #eeeeee;
}

.stars {
  color: #e10600;
  font-size: 34px;
  letter-spacing: 4px;
}

.review-card h2 {
  color: #111111;
  font-size: 42px;
  margin: 10px 0;
}

.review-card p {
  color: #444444;
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-content p {
  color: #444444;
  margin-top: 18px;
  font-size: 17px;
}

.contact-details {
  margin-top: 24px;
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #e10600;
  border: 1px solid #eeeeee;
}

.contact-details a {
  color: #e10600;
  font-weight: 900;
}

.contact-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #eeeeee;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #d6d9df;
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  border: none;
  background: #e10600;
  color: #ffffff;
  padding: 15px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.contact-form button:hover {
  background: #b50000;
}

.footer {
  background: #0d0d0d;
  color: white;
  text-align: center;
  padding: 28px 20px;
}

.footer p {
  margin: 4px 0;
  color: #d1d1d1;
}

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 950px) {
  .nav-links {
    display: none;
  }

  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .hero-photo {
    height: 420px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .brand {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 16px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .nav-call {
    padding: 8px 12px;
    font-size: 14px;
  }

  .hero {
    padding: 60px 18px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 60px 18px;
  }

  .services-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.large,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .review-card {
    padding: 30px 20px;
  }
}


.review-summary {
  background: #111111;
  color: white;
  max-width: 820px;
  margin: 0 auto 28px;
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  border-bottom: 6px solid #e10600;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.review-summary .stars {
  color: #ff3b30;
  font-size: 30px;
  letter-spacing: 3px;
}

.review-summary h3 {
  font-size: 34px;
  margin: 8px 0;
}

.review-summary p {
  color: #eeeeee;
  font-size: 17px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.review-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid #eeeeee;
  border-top: 5px solid #e10600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: #111111;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  border: 3px solid #e10600;
}

.review-top h4 {
  color: #111111;
  font-size: 18px;
  line-height: 1.1;
}

.review-top span {
  color: #666666;
  font-size: 13px;
}

.review-box .stars {
  color: #e10600;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-box p {
  color: #444444;
  font-size: 16px;
}

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


.call-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #eeeeee;
  border-top: 6px solid #e10600;
}

.call-box h3 {
  color: #111111;
  font-size: 30px;
  margin-bottom: 12px;
}

.call-box p {
  color: #444444;
  font-size: 17px;
  margin-bottom: 22px;
}

.call-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0;
}

.big-call-button,
.big-text-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 900;
}

.big-call-button {
  background: #e10600;
  color: #ffffff;
}

.big-call-button:hover {
  background: #b50000;
}

.big-text-button {
  background: #111111;
  color: #ffffff;
}

.big-text-button:hover {
  background: #333333;
}

.call-note {
  background: #fafafa;
  border-left: 5px solid #111111;
  padding: 16px;
  border-radius: 12px;
}

.call-note p {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 600px) {
  .call-actions {
    grid-template-columns: 1fr;
  }
}
