/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.page-hero-about {
  padding: var(--spacing-xxl) 0;
  min-height: 75vh;
  background: linear-gradient(180deg, #2E221B 0%, #160e09 40%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-about h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

.page-hero-about h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--spacing-md) auto 0;
}

.page-hero-about .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(248, 246, 240, 0.8);
  max-width: 900px;
  margin: var(--spacing-md) auto 0;
}

.founder-section {
  background: linear-gradient(180deg, #2E221B 0%, #160e09 40%, #000000 100%);
  padding: var(--spacing-xxl) 0;
  border-top: 1px solid rgba(194, 168, 120, 0.2);
}

.founder-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}


.founder-content {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--spacing-xl);
  align-items: center;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.founder-text p {
  color: rgba(248, 246, 240, 0.85);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.founder-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
  border: 1px solid rgba(194, 168, 120, 0.2);
  max-width: 420px;
  height: 550px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.founder-image .cross {
  position: absolute;
  width: 100px;
  height: 100px;
  z-index: 4;
  pointer-events: none;
  background-image: linear-gradient(#C9A86A, #C9A86A), linear-gradient(#C9A86A, #C9A86A);
  background-repeat: no-repeat, no-repeat;
  background-size: 100px 2px, 2px 100px;
  background-position: center center;
  opacity: 0.24;
  transform-origin: center center;
}

.founder-image .cross-tl {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.founder-image .cross-tr {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.founder-image .cross-bl {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.founder-image .cross-br {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.evolution-section {
  background: var(--bg-soft);
  padding: var(--spacing-xxl) 0;
  /* margin: var(--spacing-xxl) 0; */
  border-top: 1px solid rgba(194, 168, 120, 0.2);
  border-bottom: 1px solid rgba(194, 168, 120, 0.1);
}


.generation-item {
  background: var(--bg);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--gold);
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.generation-item h3 {
  margin-bottom: var(--spacing-sm);
}

.generation-item p {
  color: rgba(248, 246, 240, 0.8);
  line-height: 1.8;
}


/* Leadership Section */
.leadership-section {
  background: var(--bg);
  padding: var(--spacing-xxl) 0;
  border-top: 1px solid rgba(194, 168, 120, 0.2);
}

.leadership-profiles {
  max-width: 900px;
  margin: var(--spacing-xxl) auto 0;
}

.leader-profile {
  margin-bottom: var(--spacing-xxl);
  border-bottom: 1px solid rgba(194, 168, 120, 0.1);
  padding-bottom: var(--spacing-xl);
}

.leader-profile:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.leader-header {
  margin-bottom: var(--spacing-lg);
  border-left: 3px solid var(--gold);
  padding-left: var(--spacing-sm);
}

.leader-header h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.leader-header .leader-role {
  font-family: var(--font-body);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  font-weight: 500;
}

.leader-bio p {
  color: rgba(248, 246, 240, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.leader-quote {
  margin-top: var(--spacing-lg);
  background: linear-gradient(90deg, rgba(194, 168, 120, 0.1), transparent);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.leader-quote .quote-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  opacity: 0.6;
  margin-bottom: var(--spacing-sm);
}

.leader-quote blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.leader-quote cite {
  display: block;
  text-align: right;
  font-style: normal;
  color: var(--ivory);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .leader-header h3 {
    font-size: 1.75rem;
  }

  .leader-quote blockquote {
    font-size: 1.2rem;
  }
}

.philosophy-section {
  background: linear-gradient(180deg, #0D0E10 0%, #1a1513 50%, #0D0E10 100%);
  padding: var(--spacing-xxl) 0;
  border-top: 1px solid rgba(194, 168, 120, 0.2);
}


.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.philosophy-card {
  background: linear-gradient(180deg, rgba(194, 168, 120, 0.08), rgba(0, 0, 0, 0.4));
  padding: var(--spacing-lg);
  border: 1px solid rgba(194, 168, 120, 0.25);
  border-radius: var(--radius-md);
  text-align: left;
  transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-smooth), background var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.philosophy-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, rgba(194, 168, 120, 0.12), rgba(0, 0, 0, 0.5));
}

.philosophy-card h4 {
  color: var(--gold);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.philosophy-card p {
  color: rgba(248, 246, 240, 0.82);
  line-height: 1.8;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--gold);
  font-size: 1.75rem;
  margin: 0 auto var(--spacing-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.vision-section {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(180deg, rgba(17, 15, 18, 0.9), rgba(17, 15, 18, 0.7));
}


.about-vision .lead {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .founder-content {
    grid-template-columns: 1fr;
  }

  .founder-image {
    margin-top: var(--spacing-md);
  }

  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero-about {
    padding: var(--spacing-lg) 0;
    min-height: 60vh;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .founder-image .cross {
    display: none;
  }
}

.final-cta {
  text-align: center;
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, #3d2f24 0%, #2a1f18 50%, #3d2f24 100%);
  border-top: 1px solid rgba(194, 168, 120, 0.2);
}

.final-cta h2 {
  margin-bottom: var(--spacing-md);
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.8;
  color: rgba(248, 246, 240, 0.85);
}

.final-cta .hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  .final-cta .hero-cta {
    flex-direction: row;
    gap: 1.5rem;
  }
}