/* =========================
   ABOUT
========================= */

.about.section {
  padding-block: 0;
}

.about {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 32rem;
  display: flex;
  align-items: center;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.62);
}

.about-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding-block: 3rem;
}

.about-content {
  width: 100%;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding-left: clamp(1rem, 3vw, 2.5rem);
}
.about-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.45rem;
  color: var(--color-white);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65%;
  height: 0.12rem;
  background: #ab9364;
  border-radius: 999px;
}

.about-subtitle {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: #ab9364;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-text {
  max-width: 38rem;
  font-family: "Farsan", cursive;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.45;
}
/* =========================
   PRICING
========================= */

.pricing-grid {
  width: 100%;
  max-width: 42rem;
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.pricing-service {
  color: var(--color-white);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 500;
  white-space: nowrap;
}

.pricing-dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
}

.pricing-price {
  color: #ab9364;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 48rem) {
  .pricing-grid {
    gap: 0.7rem;
  }

  .pricing-item {
    gap: 0.6rem;
    padding-bottom: 0.4rem;
  }

  .pricing-service,
  .pricing-price {
    font-size: 0.98rem;
  }
}

@media (max-width: 36rem) {
  .pricing-service,
  .pricing-price {
    font-size: 0.92rem;
  }
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 64rem) {
  .about {
    min-height: 28rem;
  }

  .about-container {
    padding-block: 2.5rem;
  }

  .about-content {
    max-width: 36rem;
    padding-left: 1rem;
  }
}

@media (max-width: 48rem) {
  .about {
    min-height: 24rem;
  }

  .about-container {
    padding-block: 2rem;
  }

  .about-content {
    max-width: 100%;
    gap: 0.6rem;
  }

  .about-title {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .about-subtitle {
    font-size: 0.82rem;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media (max-width: 36rem) {
  .about {
    min-height: 22rem;
  }

  .about-container {
    padding-block: 1.5rem;
  }

  .about-overlay {
    background: rgba(0, 0, 0, 0.68);
  }

  .about-title {
    font-size: 1.3rem;
  }

  .about-subtitle {
    font-size: 0.78rem;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.35;
  }
}
