/* ============================================================
   SHANKHESHWAR GOLD — About Page Styles
   ============================================================ */

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.story-visual { position: relative; }
.story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.story-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px; height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}
.story-img-badge img { width: 100%; height: 100%; object-fit: contain; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple);
}
.value-icon {
  width: 72px; height: 72px;
  background: var(--purple-pale);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 12px;
}
.value-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* Process */
.process-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 50px;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--purple); }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--purple-pale);
  position: absolute;
  top: 10px; right: 20px;
  line-height: 1;
  z-index: 0;
}
.process-icon {
  width: 72px; height: 72px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative; z-index: 1;
}
.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.process-step p { font-size: 14px; color: var(--text-light); line-height: 1.7; position: relative; z-index: 1; }

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: -11px;
  color: var(--gold);
  font-size: 20px;
}

/* Responsive */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-visual { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .process-grid { flex-direction: column; gap: 20px; }
  .process-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--purple), var(--gold)); }
  .process-connector::after { content: '↓'; right: -8px; top: auto; bottom: -14px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .values-grid { grid-template-columns: 1fr; }
}
