/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

/* === FOUNDER STORY === */
.founder-section { background: var(--white); }
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.founder-monogram {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 60%, #4A6070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-monogram-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 30% 25%, rgba(232,149,26,0.14) 0%, transparent 50%);
}
.founder-monogram-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.founder-initials {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.founder-divider {
  display: block;
  width: 44px; height: 3px;
  background: var(--gold);
  margin: 22px auto;
  border-radius: 2px;
}
.founder-role {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.founder-text h2 { margin-bottom: 8px; }
.founder-quote {
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.founder-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--slate-dark);
  line-height: 1.7;
}
.founder-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* === VALUES === */
.values-section { background: var(--off-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card { text-align: center; }
.value-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; }

/* === WELCOME / OPEN TO ALL === */
.welcome-section {
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
  padding: 80px 0;
}
.welcome-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.welcome-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.welcome-pillars .pillar {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.welcome-pillars .pillar:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(232,149,26,0.5);
}
.welcome-pillars .pillar-icon { color: var(--gold-light); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.welcome-pillars .pillar strong { color: var(--white); font-size: 0.88rem; font-weight: 600; }

/* === CTA STRIP (shared pattern with homepage) === */
.cta-strip {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-monogram { height: 320px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .welcome-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .values-grid { grid-template-columns: 1fr; }
  .welcome-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .welcome-pillars { grid-template-columns: 1fr; }
}
