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

#about-main {
  padding-top: 100px;
  background: var(--cream, #F7F2E8);
}

/* ── HERO BANNER ── */
.about-hero {
  position: relative;
  text-align: center;
  padding: 80px 20px 100px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.orb-a {
  width: 400px; height: 400px;
  background: var(--gold, #E5C57F);
  top: -100px; left: -100px;
}
.orb-b {
  width: 300px; height: 300px;
  background: var(--terracotta, #C97F5A);
  bottom: -50px; right: 10%;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.about-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta, #C97F5A);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(201, 127, 90, 0.3);
  border-radius: 30px;
}

.about-hero-title {
  font-size: clamp(40px, 6vw, 70px);
  color: var(--primary, #071B11);
  margin-bottom: 25px;
  line-height: 1.1;
}

.about-hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(7, 27, 17, 0.7);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ── OUR STORY ── */
.about-story {
  padding: 80px 5%;
  background: var(--white, #FFFFFF);
}

.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.story-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(7, 27, 17, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.story-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.story-content {
  flex: 1;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease 0.2s;
}

.story-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta, #C97F5A);
  margin-bottom: 10px;
}

.story-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--primary, #071B11);
  margin-bottom: 25px;
  line-height: 1.2;
}

.story-content p {
  font-size: 16px;
  color: rgba(7, 27, 17, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── OUR VALUES ── */
.about-values {
  padding: 100px 5%;
  background: var(--cream, #F7F2E8);
}

.about-values .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-values h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--primary, #071B11);
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.value-card {
  background: var(--white, #FFFFFF);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(7, 27, 17, 0.05);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation */
.value-card:nth-child(1) { transition-delay: 0.1s; }
.value-card:nth-child(2) { transition-delay: 0.3s; }
.value-card:nth-child(3) { transition-delay: 0.5s; }

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(229, 197, 127, 0.2);
  color: var(--terracotta, #C97F5A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 20px;
  color: var(--primary, #071B11);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 15px;
  color: rgba(7, 27, 17, 0.7);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-story-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .story-content {
    transform: translateY(30px);
  }
  .story-content.visible {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-hero { padding: 100px 20px 60px; }
  .about-hero-title { font-size: 32px; }
  .about-hero-sub { font-size: 15px; }
  
  .about-story { padding: 50px 5%; }
  .story-content h2 { font-size: 28px; }
  
  .about-values { padding: 60px 5%; }
  .about-values h2 { font-size: 28px; }
  .values-grid { grid-template-columns: 1fr; gap: 30px; }
}
