/* ============================================================
   ABOUT.CSS
   ============================================================ */

/* ===== STORY ===== */
.about-story {
  background: var(--bg);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-story__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-story__text .section-tag { display: block; margin-bottom: 0.75rem; }
.about-story__text h2 { font-style: italic; margin-bottom: 1.25rem; }
.about-story__text p { margin-bottom: 1rem; color: var(--text-muted); }
.about-story__text p:last-of-type { margin-bottom: 1.75rem; }

.about-story__image {
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.about-story__image img {
  width: 100%; height: 100%; object-fit: cover;
}

.about-story__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 165, 109, 0.2);
  border-radius: 2px;
  pointer-events: none;
}

/* ===== PILLARS ===== */
.about-pillars {
  background: var(--wine);
}

.about-pillars .section-tag { color: var(--gold); }
.about-pillars h2 { color: var(--bg); font-style: italic; }
.about-pillars .divider { background: rgba(201,165,109,0.4); }
.about-pillars .divider.animate { background: var(--gold); }

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

.pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201, 165, 109, 0.2);
  border-radius: 2px;
}

.pillar__icon {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.pillar h3 {
  font-style: italic;
  color: var(--bg);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.9rem;
  color: rgba(248, 243, 238, 0.6);
  margin-inline: auto;
  line-height: 1.75;
}

/* ===== SERVICES LIST ===== */
.about-services {
  background: var(--surface);
}

.about-services h2 { font-style: italic; }

.services-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

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

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 2px;
  border-left: 2px solid var(--gold);
}

.service-item__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.service-item h4 {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--wine);
  margin-bottom: 0.3rem;
}

.service-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
}

/* ===== DESTINATIONS ===== */
.about-destinations {
  background: var(--bg);
}

.about-destinations h2 { font-style: italic; }

.destinations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.destination-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(201, 165, 109, 0.4);
  border-radius: 2px;
  font-size: 0.85rem;
  color: var(--text);
  transition: all 0.3s;
}

.destination-tag::before {
  content: '◆';
  font-size: 0.4rem;
  color: var(--gold);
}

.destination-tag:hover {
  background: var(--wine);
  color: var(--bg);
  border-color: var(--wine);
}

/* ===== CLIENTS ===== */
.about-clients {
  background: var(--surface);
}

.about-clients h2 { font-style: italic; }

.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.client-name {
  padding: 0.5rem 1rem;
  background: var(--white);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===== CTA ===== */
.about-cta {
  background: #9B5570;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-block: clamp(2rem, 4vw, 3rem);
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 165, 109, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.about-cta .container { position: relative; z-index: 1; }

.about-cta .section-tag { color: var(--gold); }
.about-cta h2 { color: var(--bg); font-style: italic; }
.about-cta p { color: rgba(248, 243, 238, 0.62); margin-inline: auto; margin-bottom: 2.5rem; }
.about-cta .divider { background: rgba(201,165,109,0.4); margin-inline: auto; }
.about-cta .divider.animate { background: var(--gold); }

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
