/* ── About Page ── */

/* ── Hero ── */
.about-hero {
  background: white;
  padding: 80px 40px 100px;
  border-bottom: 1px solid #f3e8ff;
  overflow: hidden;
}

.about-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.about-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a855f7;
  margin-bottom: 16px;
  display: block;
}

.about-eyebrow.light { color: #c084fc; }

.about-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: #1e0a2e;
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-hero-text h1 em {
  font-style: italic;
  color: #7e22ce;
}

.about-hero-sub {
  font-family: 'Lora', serif;
  font-size: 1.08rem;
  color: #4c1d95;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 540px;
}

.about-hero-cta {
  display: inline-block;
  background: #1e0a2e;
  color: white;
  text-decoration: none;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: background 0.25s ease, transform 0.2s ease;
}

.about-hero-cta:hover {
  background: #3b0764;
  transform: translateY(-2px);
}

/* Photo Frame */
.about-hero-photo {
  display: flex;
  justify-content: center;
}

.photo-frame {
  position: relative;
  display: inline-block;
}

.photo-frame img {
  width: 380px;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 60px rgba(107, 33, 168, 0.2);
}

/* Decorative border offset */
.photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid #d8b4fe;
  border-radius: 30px;
  z-index: -1;
}

.photo-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #a855f7;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
  white-space: nowrap;
}

/* ── Story Section ── */
.story-section {
  background: #fdf4ff;
  padding: 100px 40px;
}

.story-inner {
  max-width: 820px;
  margin: 0 auto;
}

.story-block {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  margin-bottom: 20px;
}

.story-block.reverse {
  /* same layout, label stays left */
}

.story-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a855f7;
  padding-top: 8px;
  text-align: right;
  line-height: 1.4;
  border-right: 2px solid #e9d5ff;
  padding-right: 28px;
}

.story-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: #1e0a2e;
  margin-bottom: 20px;
  line-height: 1.25;
}

.story-content p {
  font-family: 'Lora', serif;
  font-size: 1.02rem;
  color: #3b0764;
  line-height: 1.9;
  margin-bottom: 16px;
}

.story-content p:last-of-type { margin-bottom: 0; }

.story-link {
  display: inline-block;
  margin-top: 20px;
  color: #c026d3;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  letter-spacing: 0.01em;
}

.story-link:hover { color: #a21caf; }

.story-divider {
  text-align: center;
  font-size: 1.6rem;
  padding: 36px 0;
  color: #d8b4fe;
  position: relative;
}

.story-divider::before,
.story-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: #f3e8ff;
}

.story-divider::before { left: 0; }
.story-divider::after  { right: 0; }

/* ── Values ── */
.values-section {
  background: white;
  padding: 100px 40px;
  text-align: center;
}

.values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.values-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #1e0a2e;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-card {
  background: #fdf4ff;
  border: 1px solid #e9d5ff;
  border-radius: 20px;
  padding: 36px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(168, 85, 247, 0.12);
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #1e0a2e;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: #5b21b6;
  line-height: 1.75;
}

/* ── Timeline ── */
.timeline-section {
  background: #1a0a2e;
  padding: 100px 40px;
  text-align: center;
}

.timeline-inner {
  max-width: 760px;
  margin: 0 auto;
}

.timeline-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: white;
  margin-bottom: 70px;
}

.timeline {
  position: relative;
  text-align: left;
}

/* vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(168, 85, 247, 0.25);
}

.timeline-item {
  display: flex;
  gap: 36px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #a855f7;
  border: 3px solid #1a0a2e;
  outline: 2px solid #a855f7;
  z-index: 1;
  align-self: flex-start;
  margin-top: 4px;
}

.timeline-item.future .timeline-dot {
  background: #3b0764;
  outline-color: #6b21a8;
}

.timeline-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  padding: 24px 28px;
  flex: 1;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.timeline-card:hover {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.4);
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c084fc;
  display: block;
  margin-bottom: 8px;
}

.timeline-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 10px;
}

.timeline-card p {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.timeline-item.future .timeline-card p {
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

/* ── CTA Strip ── */
.about-cta-strip {
  background: #f3e8ff;
  padding: 80px 40px;
  text-align: center;
  border-top: 1px solid #e9d5ff;
}

.about-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #1e0a2e;
  margin-bottom: 14px;
}

.about-cta-inner p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #5b21b6;
  line-height: 1.75;
  margin-bottom: 36px;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-btn.primary {
  background: #c026d3;
  color: white;
  box-shadow: 0 6px 20px rgba(192, 38, 211, 0.3);
}

.cta-btn.primary:hover {
  background: #a21caf;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(192, 38, 211, 0.4);
}

.cta-btn.secondary {
  background: white;
  color: #6b21a8;
  border: 2px solid #d8b4fe;
}

.cta-btn.secondary:hover {
  background: #6b21a8;
  color: white;
  border-color: #6b21a8;
  transform: translateY(-2px);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 50px 20px 70px;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .photo-frame img {
    width: 280px;
    height: 360px;
  }

  .photo-badge {
    bottom: -14px;
    left: -10px;
  }

  .story-section { padding: 60px 20px; }

  .story-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-label {
    text-align: left;
    border-right: none;
    border-left: 3px solid #e9d5ff;
    padding-right: 0;
    padding-left: 14px;
  }

  .values-section { padding: 60px 20px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .timeline-section { padding: 60px 20px; }

  .about-cta-strip { padding: 60px 20px; }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn { width: 100%; max-width: 320px; text-align: center; }
}

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