/* About Page */
.about-story {
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text p.section-tag { margin-bottom: 1rem; }

.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-text p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-visual {
  position: relative;
}

.story-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #F5EFE2 0%, #E8D5B0 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(201,150,58,0.2);
}

.img-inner {
  text-align: center;
}
.img-inner span { font-size: 5rem; }
.img-inner p {
  color: var(--warm-gray);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.year-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--gold);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(201,150,58,0.4);
  z-index: 2;
}

/* VALUES */
.values-section {
  padding: 5rem 5%;
  background: var(--dark);
}
.values-section .section-header h2 { color: white; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,150,58,0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.value-card:hover {
  background: rgba(201,150,58,0.1);
  transform: translateY(-4px);
}
.val-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.value-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* TEAM */
.team-section {
  padding: 5rem 5%;
  background: #F5EFE2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26,18,8,0.07);
  border: 1px solid rgba(201,150,58,0.1);
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-5px); }

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rust) 100%);
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.role {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.bio {
  color: var(--warm-gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* TIMELINE */
.milestones {
  padding: 5rem 5%;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(201,150,58,0.3);
}

.tl-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 73px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}

.tl-year {
  width: 70px;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--gold);
  text-align: right;
  padding-top: 2px;
}

.tl-content {
  flex: 1;
  padding-left: 2rem;
  background: white;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(26,18,8,0.07);
  border: 1px solid rgba(201,150,58,0.1);
}
.tl-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.tl-content p {
  color: var(--warm-gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .timeline::before { left: 60px; }
  .tl-item::before { left: 53px; }
  .tl-year { width: 50px; font-size: 0.85rem; }
}
