/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Video slideshow */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: var(--z-below);
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero__slide--active { opacity: 1; }

/* Dot indicators */
.hero__dots {
  position: absolute;
  bottom: var(--space-16);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: var(--z-base);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-base), width var(--transition-base);
}

.hero__dot--active {
  background: var(--color-accent);
  width: 24px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,18,16,.82) 0%, rgba(20,18,16,.55) 100%);
  z-index: var(--z-below);
}

.hero__content {
  position: relative;
  z-index: var(--z-base);
  color: #fff;
  max-width: 680px;
  padding-block: var(--space-16);
}

/* Section label on dark hero background */
.hero__content .section-label {
  color: var(--color-primary-light);
}

.hero__headline {
  color: #fff;
  margin-bottom: var(--space-6);
}

.hero__sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-md));
  color: rgba(255,255,255,.8);
  margin-bottom: var(--space-10);
  max-width: 52ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,.5);
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== SERVICES PREVIEW ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.services-grid .service-card:last-child:nth-child(3n-1) {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .services-grid .service-card:nth-child(4) { grid-column: 1; }
  .services-grid .service-card:nth-child(5) { grid-column: 2; }
}

.section-cta { text-align: center; margin-top: var(--space-10); }

/* ===== WHY CHOOSE US ===== */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) { .why-us__grid { grid-template-columns: 1fr 1fr; } }

.why-us__image { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.why-us__image img { width: 100%; height: 100%; object-fit: cover; }

.why-us__content { display: flex; flex-direction: column; gap: var(--space-6); }
.why-us__content h2 { margin-bottom: var(--space-2); }

.why-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.why-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  margin-top: 2px;
}

.why-item__text h4 { margin-bottom: var(--space-1); }
.why-item__text p  { font-size: var(--text-sm); }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview__grid {
  columns: 2;
  column-gap: var(--space-4);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px)  { .gallery-preview__grid { columns: 3; } }

.gallery-preview__item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-preview__item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-preview__item:hover img { transform: scale(1.05); }

.gallery-preview__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,18,16,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: #fff;
}

.gallery-preview__item:hover .gallery-preview__overlay { opacity: 1; }

.gallery-preview .section-cta { text-align: center; }

