/* ── Page wrapper ─────────────────────────────── */

.project {
  padding-bottom: 80px;
}

/* ── Hero card ────────────────────────────────── */

.hero {
  background: #fff;
  border-radius: 20px;
  margin: 32px 50px 0;
  padding: 90px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  line-height: 1.15;
}

.hero__desc {
  font-size: 18px;
  color: #666;
  line-height: 30px;
}

/* ── Gallery ──────────────────────────────────── */

.gallery {
  margin: 20px 50px 0;
}

.gallery__nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.gallery__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.gallery__btn:hover { opacity: 0.8; }

.gallery__btn--prev { background: #222; }
.gallery__btn--next { background: #ff7d01; }

.gallery__btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.gallery__btn--prev img { transform: rotate(90deg); }
.gallery__btn--next img { transform: rotate(-90deg); }

.gallery__grid {
  overflow: auto;
}

.gallery__grid::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.gallery__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item {
  flex-shrink: 0;
  width: 100%;
  height: 650px;
  border-radius: 20px;
  overflow: hidden;
  background: #e7e7e7;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Responsive ───────────────────────────────── */

@media (max-width: 1200px) {
  .gallery__item { height: 480px; }
}

@media (max-width: 960px) {
  .hero {
    margin: 24px 32px 0;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px;
  }

  .hero__title { font-size: 36px; }

  .gallery { margin: 20px 32px 0; }
}

@media (max-width: 640px) {
  .hero {
    margin: 20px 20px 0;
    padding: 32px 24px;
    gap: 24px;
  }

  .hero__title { font-size: 28px; }
  .hero__desc  { font-size: 16px; line-height: 26px; }

  .gallery { margin: 16px 20px 0; }

  .gallery__item { height: 280px; }
}
