/* =============================================================
   DASTARKHAN DELIGHTS — About Page Styles
   ============================================================= */

.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,33,20,0.85) 0%, transparent 60%);
}
.about-hero__content {
  position: relative;
  padding: var(--space-3xl) 0;
}
.about-hero__content h1 { color: white; }
.about-hero__content p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-xl);
  max-width: none;
  margin-top: var(--space-sm);
}

/* ---- Story Section ---- */
.about-story { background: var(--warm-white); }
.about-story__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
}
.about-story__text h2 { margin-bottom: var(--space-lg); }
.about-story__text p {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  max-width: none;
}

/* ---- Meet the Maker ---- */
.meet-maker { background: var(--cream); }
.meet-maker__card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-3xl);
  align-items: center;
  background: var(--warm-white);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.meet-maker__img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.meet-maker__content { padding: var(--space-3xl); }
.meet-maker__name {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--forest);
  margin-bottom: var(--space-xs);
}
.meet-maker__role {
  font-size: var(--text-base);
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}
.meet-maker__bio {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  max-width: none;
}
.meet-maker__sig {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--saffron);
  font-style: italic;
}

/* ---- Values Grid ---- */
.values-section { background: var(--forest); position: relative; overflow: hidden; }
.values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../icons/texture-jali.svg');
  opacity: 0.07;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}
.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  text-align: center;
  backdrop-filter: blur(4px);
  transition: var(--transition-base);
}
.value-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 150, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}
.value-card__icon svg { width: 30px; height: 30px; color: var(--saffron-light); }
.value-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: white;
  margin-bottom: var(--space-sm);
}
.value-card__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: none;
}

/* ---- Timeline ---- */
.timeline-section { background: var(--saffron-pale); }
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-3xl);
}
.timeline-item:nth-child(odd) .timeline-item__content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-item__spacer { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-item__empty { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-item__empty { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-item__spacer { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-item__content { grid-column: 3; }

.timeline-item__dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--saffron-pale);
}
.timeline-item__dot svg { width: 22px; height: 22px; color: var(--saffron); }
.timeline-item__year {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}
.timeline-item__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--forest);
  margin-bottom: var(--space-xs);
}
.timeline-item__text {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
  max-width: none;
}

@media (max-width: 768px) {
  .meet-maker__card { grid-template-columns: 1fr; }
  .meet-maker__img { height: 300px; }
  .meet-maker__content { padding: var(--space-xl); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item__empty { display: none; }
  .timeline-item:nth-child(odd) .timeline-item__content,
  .timeline-item:nth-child(even) .timeline-item__content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-item__spacer,
  .timeline-item:nth-child(even) .timeline-item__spacer { grid-column: 1; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}
