/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--black); flex-direction: column; line-height: 1.1; letter-spacing: 1px;
}
.logo-text span { font-size: 0.65rem; letter-spacing: 3px; color: var(--royal); font-family: 'Inter', sans-serif; font-weight: 600; }

/* ===== HERO ===== */
.about-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a3e 100%);
  padding: 100px 8%;
  color: #fff;
}
.about-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  flex-wrap: wrap;
}
.about-hero-text { flex: 1; min-width: 300px; }
.about-hero-text .section-label { color: var(--gold); }
.about-hero-text .section-title { color: #fff; }
.about-hero-text .section-title em { font-style: italic; color: var(--gold); }
.about-hero-text .section-sub { color: rgba(255,255,255,0.75); max-width: 520px; }

.about-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}
.hero-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px 28px;
  min-width: 220px;
  transition: background 0.3s, transform 0.3s;
}
.hero-stat:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.hs-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.hs-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ===== STORY ===== */
.about-story { padding: var(--section-gap) 0; background: #fff; }
.story-block { display: flex; gap: 80px; align-items: center; flex-wrap: wrap; }
.story-text { flex: 1; min-width: 300px; }
.story-text p { font-size: 1.02rem; line-height: 1.85; color: #555; margin-bottom: 18px; }
.story-image { flex: 1; min-width: 280px; }
.story-image img { width: 100%; height: 460px; object-fit: cover; border-radius: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); display: block; }

/* ===== PILLARS ===== */
.about-pillars { padding: var(--section-gap) 0; }
.pillars-header { text-align: center; margin-bottom: 60px; }
.pillars-header .section-sub { margin: 0 auto; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--light-gray);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--royal); }
.pillar-icon { font-size: 2rem; margin-bottom: 18px; }
.pillar-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin: 0 0 12px; color: var(--black); }
.pillar-card p { font-size: 0.95rem; line-height: 1.7; color: #666; margin: 0; }

/* ===== GLOBAL ===== */
.about-global { padding: var(--section-gap) 0; background: #fff; }
.global-inner { display: flex; gap: 80px; align-items: center; flex-wrap: wrap; }
.global-text { flex: 1; min-width: 300px; }
.global-text p { font-size: 1.02rem; line-height: 1.85; color: #555; margin-bottom: 20px; }
.eco-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.eco-tag {
  background: var(--royal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 50px;
  text-transform: uppercase;
}
.global-image { flex: 1; min-width: 280px; }
.global-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); display: block; }

/* ===== CTA ===== */
.about-cta {
  text-align: center;
  padding: 90px 8%;
  background: linear-gradient(135deg, var(--black), #1a1a3e);
}
.about-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.8rem); color: #fff; margin: 0 0 14px; }
.about-cta p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 32px; }
.about-cta .book-btn { background: var(--gold); color: var(--black); font-weight: 700; }
.about-cta .book-btn:hover { background: #b8924a; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-hero-inner { flex-direction: column; gap: 40px; }
  .about-hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 160px; }
  .story-block { flex-direction: column; gap: 40px; }
  .story-image img { height: 300px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .global-inner { flex-direction: column; gap: 40px; }
  .global-image img { height: 280px; }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .about-hero-stats { flex-direction: column; }
}
