
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050816;
  color: #e5e7eb;
}
.wrap {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}
.top {
  border-bottom: 1px solid rgba(148,163,184,.4);
  background: #050816;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 40px;
}
.brand h1 {
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0;
}
.brand p {
  margin: 2px 0 0;
  font-size: .78rem;
  opacity: .7;
}
.top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact {
  text-align: right;
  font-size: .86rem;
}
.contact span {
  display: block;
  opacity: .7;
}
.hero {
  padding: 32px 0 40px;
  background: radial-gradient(circle at top left,#f97316 0,#050816 45%,#020617 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 24px;
  align-items: center;
}
.hero-text h2 {
  font-size: 2rem;
}
.hero-text h2 span {
  color: #f97316;
}
.hero-text p {
  max-width: 30rem;
}
.hero-img img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(148,163,184,.4);
}
.gallery {
  padding: 40px 0;
}
.gallery h3,
.about h3,
.contact-block h3 {
  margin-bottom: 10px;
}
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
}
.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(31,41,55,.8);
}
.about,
.contact-block {
  padding: 32px 0;
}
footer {
  border-top: 1px solid rgba(31,41,55,.9);
  padding: 16px 0 24px;
  font-size: .8rem;
  color: #9ca3af;
}
@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .gallery .grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 520px) {
  .top .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .gallery .grid {
    grid-template-columns: minmax(0,1fr);
  }
}
