/* ===============================
   ABOUT — INTRO
================================ */

.about-intro {
  padding: 180px 8% 120px;
  background: #f8f7f4;
}

.about-intro-inner {
  max-width: 1100px;
}

/* Label */
.about-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  font-family: 'Inter', sans-serif;
  color: #777;
  margin-bottom: 32px;
}

/* Title */
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 32px;
}

/* Subtext */
.about-subtext {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .about-intro {
    padding: 140px 6% 100px;
  }
}


/* ===============================
   ABOUT — STORY
================================ */

.about-story {
  padding: 140px 8%;
  background: #ffffff;
}

.about-story-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

/* Left */
.about-story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.25;
  color: #1a1a1a;
}

/* Right */
.about-story-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
  max-width: 520px;
}

/* Mobile */
@media (max-width: 900px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


/* ===============================
   ABOUT — APPROACH
================================ */

.about-approach {
  padding: 140px 8%;
  background: #f8f7f4;
}

.about-approach-inner {
  max-width: 1200px;
}

/* Header */
.about-approach-header {
  max-width: 640px;
  margin-bottom: 80px;
}

.about-approach-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.about-approach-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Grid */
.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

/* Item */
.approach-item h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.approach-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 320px;
}

/* Mobile */
@media (max-width: 900px) {
  .about-approach-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===============================
   ABOUT — ETHOS
================================ */

.about-ethos {
  padding: 160px 8%;
  background: #ffffff;
}

.about-ethos-inner {
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: center;
}

/* Text */
.about-ethos-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #777;
  margin-bottom: 24px;
}

.about-ethos-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 32px;
  color: #1a1a1a;
}

.about-ethos-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 480px;
  margin-bottom: 24px;
}

/* Image */
.about-ethos-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 900px) {
  .about-ethos-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about-ethos-image img {
    height: 360px;
  }
}


/* ===============================
   ABOUT — CTA
================================ */

.about-cta {
  padding: 160px 8%;
  background: #f6f4ef;
  text-align: center;
}

.about-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 32px;
  color: #1a1a1a;
}

.about-cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 48px;
}

/* CTA Button */
.about-cta-link {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid #1a1a1a;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.about-cta-link:hover {
  background: #1a1a1a;
  color: #f8f7f4;
}

/* Mobile */
@media (max-width: 768px) {
  .about-cta {
    padding: 120px 6%;
  }
}


/* =================================================
   IMAGE CAROUSEL (EVENTS & ABOUT PAGES)
================================================= */

.image-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* Navigation arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dots span {
  width: 9px;
  height: 9px;
  background: #d0d0d0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots span.active {
  background: #000;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .carousel-btn {
    font-size: 18px;
    padding: 8px 12px;
  }
}
