.about-section {
  background: #0d1210;
  padding: 80px 80px 0;
  position: relative;
  overflow: hidden;
}

.about-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  margin-bottom: 64px;
  font-style: italic;
  line-height: 1;
}

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

.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 28px;
  background: #1a2420;
}

.about-grid .about-card-img {
  height: clamp(220px, 18vw, 300px);
  aspect-ratio: auto;
}

.about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.about-card:hover .about-card-img img {
  transform: scale(1.04);
}

.about-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.about-card-text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 340px;
}

.about-carousel {
  display: none;
  margin-bottom: 48px;
}

.about-carousel-track-wrap {
  overflow: hidden;
}

.about-carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.about-carousel-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4px;
}

.about-carousel-slide .about-card-img {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
  background: #1a2420;
}

.about-carousel-slide .about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-carousel-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.about-arrow {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.about-arrow:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.about-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.about-arrow svg {
  width: 18px;
  height: 18px;
}

.about-dots {
  display: flex;
  gap: 8px;
}

.about-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.about-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.about-tear {
  display: block;
  line-height: 0;
  position: relative;
  z-index: 2;
  margin-left: -80px;
  width: calc(100% + 160px);
}

.about-tear-svg {
  display: block;
  width: 100%;
  height: clamp(60px, 8vw, 110px);
}

@media (max-width: 860px) {
  .about-section {
    padding: 60px 40px 0;
  }

  .about-tear {
    margin-left: -40px;
    width: calc(100% + 80px);
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 48px 20px 0;
  }

  .about-title {
    margin-bottom: 40px;
  }

  .about-grid {
    display: none;
  }

  .about-carousel {
    display: block;
  }

  .about-tear {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}
