/* =====================================================
   A-PROPOS.CSS — Page-specific styles for À Propos
   Loaded by: a-propos.html
   Relies on: global.css (vars, reset, glass), components.css (nav, footer, pg-banner-lum, lum-*, btn-glow)
   ===================================================== */

/* ========== FEATURE: Brand Story Section ========== */
/* Description: Two-column grid with photo on left, text body on right */
.story-lum {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 52px;
}

/* Placeholder photo block (replace with <img> in production) */
.story-lum-photo {
  min-height: 380px;
  background: linear-gradient(135deg, #EDE3DA, #E0D3C6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(17,17,17,.2);
  position: relative;
  overflow: hidden;
}
.story-lum-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(217,199,184,.4), transparent 60%);
}

/* Text body block */
.story-lum-body { padding: 4px 8px; }
.story-lum-body h2 {
  font-family: var(--heading);
  font-size: 42px;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.story-lum-body h2 em { font-style: italic; color: #111111; }
.story-lum-body p {
  font-size: 14px;
  color: rgba(17,17,17,.8);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Founder signature card at bottom of text block */
.story-lum-sig {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(217,199,184,.15);
  border: 1px solid rgba(217,199,184,.35);
  border-radius: 12px;
}
.story-lum-sig-name {
  font-family: var(--heading);
  font-size: 20px;
  font-style: italic;
}
.story-lum-sig-role {
  font-size: 11px;
  color: rgba(17,17,17,.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 3px;
}

/* ========== FEATURE: Key Stats Bar ========== */
/* Description: Four glass cards with animated count-up numbers */
.stats-lum-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

/* Individual stat tile */
.stat-lum { padding: 28px; text-align: center; }
.stat-lum-num {
  font-family: var(--heading);
  font-size: 48px;
  color: #111111;
  line-height: 1;
  text-shadow: none;
}
.stat-lum-label {
  font-size: 11px;
  color: rgba(17,17,17,.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ========== FEATURE: Brand Values Grid ========== */
/* Description: 2×2 glass cards each with icon, title and description */
.val-lum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

/* Individual value card */
.val-lum-card { padding: 32px; }
.val-lum-card-icon {
  width: 48px;
  height: 48px;
  background: #EDE3DA;
  border: 1px solid #D9C7B8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: none;
}
.val-lum-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}
.val-lum-card h4 { font-family: var(--heading); font-size: 22px; margin-bottom: 8px; }
.val-lum-card p { font-size: 13px; color: rgba(17,17,17,.75); line-height: 1.75; }

/* ========== FEATURE: Team Grid ========== */
/* Description: 3-column team member cards with circular photo, name, role and bio */
.team-lum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Individual team card */
.team-lum-card { padding: 28px; text-align: center; }

/* Fourth card (delivery man) — centered below second card on desktop */
.team-lum-card:nth-child(4) {
  grid-column: 2;
  width: 100%;
}

.team-lum-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EDE3DA, #D9C7B8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(17,17,17,.2);
  margin: 0 auto 16px;
  border: 2px solid #D9C7B8;
  box-shadow: none;
}
.team-lum-card h4 { font-family: var(--heading); font-size: 20px; margin-bottom: 3px; }
.team-lum-role {
  font-size: 10px;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.team-lum-bio { font-size: 13px; color: rgba(17,17,17,.7); line-height: 1.7; }

/* ========== RESPONSIVE ========== */
@media(max-width: 1024px) {
  .story-lum { grid-template-columns: 1fr; }
  .stats-lum-bar { grid-template-columns: 1fr 1fr; }
  .val-lum-grid { grid-template-columns: 1fr; }
  .team-lum-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .team-lum-grid { grid-template-columns: 1fr; }
  .stats-lum-bar { grid-template-columns: 1fr 1fr; }
  .team-lum-card:nth-child(4) { grid-column: auto; }
}
