* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #151515;
  color: white;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

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

.topbar {
  background: #1b1b1b;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-image {
  width: 150px;
  height: auto;
}

.brand-title {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 12px;
  color: #d5b38a;
  margin-top: 4px;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
}

.nav a {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover {
  color: #d5b38a;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-btn {
  border: 1px solid #d5b38a;
  background: transparent;
  color: white;
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.active {
  background: #d5b38a;
  color: #111;
}

.hero {
  background: linear-gradient(90deg, #252525, #171717);
  padding: 95px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 14px;
  color: #d5b38a;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.hero p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
  color: #e0e0e0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: #d5b38a;
  color: #111;
  padding: 15px 24px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.btn:hover {
  background: #e0bf97;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-card {
  background: #292929;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 34px;
  display: grid;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.hero-card p {
  margin: 0;
  color: #d5b38a;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card a {
  font-size: 28px;
  font-weight: 900;
}

.section-light {
  background: #f5f1ea;
  color: #111;
  padding: 78px 0;
}

.section-dark {
  background: #1c1c1c;
  color: white;
  padding: 78px 0;
}

h2 {
  font-size: 42px;
  margin: 0 0 32px;
  text-transform: uppercase;
}

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

.services-grid div {
  background: #ffffff;
  min-height: 120px;
  padding: 26px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
  border-left: 6px solid #d5b38a;
  box-shadow: 0 12px 30px rgba(0,0,0,0.09);
  display: flex;
  align-items: center;
}

.services-grid div:hover {
  transform: translateY(-3px);
}

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

.gallery img,
#moreGallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.gallery img.more-photo {
  display: none;
}

#moreGallery {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

#showMoreBtn {
  margin-top: 30px;
}

.contacts-box {
  background: #ffffff;
  color: #111;
  padding: 34px;
  max-width: 620px;
  border-left: 7px solid #d5b38a;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contacts-box p {
  font-size: 20px;
  margin: 14px 0;
}

.contacts-box strong {
  font-size: 26px;
}

.footer {
  background: #111;
  text-align: center;
  padding: 25px;
  color: #ccc;
}

/* МОДАЛКА */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

#closeModal {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 42px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
}

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

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

  .gallery,
  #moreGallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav {
    display: none;
  }
}
.request-form{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin-top: 30px;
}

.request-form input,
.request-form textarea{
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  background: #ffffff;
  color: #111;
  font-family: Arial, sans-serif;
}

.request-form textarea{
  grid-column: 1 / -1;
  min-height: 170px;
  resize: vertical;
}

.request-form button{
  grid-column: 1 / 2;
  width: fit-content;
  margin-top: 5px;
  padding: 16px 34px;
}

@media (max-width: 600px) {
  .topbar-inner {
    flex-wrap: wrap;
  }

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

  .logo-image {
    width: 62px;
  }

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

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

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

  .gallery img,
  #moreGallery img {
    height: 160px;
  }

  .gallery img.more-photo {
  display: none;
}
}
