/* ============================================
   About Page Styles
   ============================================ */

/* About Hero */
.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .about-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), color-mix(in oklab, var(--background) 85%, transparent), color-mix(in oklab, var(--background) 55%, transparent));
}

.about-hero-radial-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.18), transparent 55%);
  pointer-events: none;
}

.about-hero-radial-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.10), transparent 45%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-hero-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.about-hero-text {
  max-width: 48rem;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.about-hero-eyebrow-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--gold);
}

.about-hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}

@media (min-width: 768px) {
  .about-hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .about-hero-title { font-size: 3.75rem; }
}

.about-hero-title .text-gold { color: var(--gold); }

.about-hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.625;
}

@media (min-width: 768px) {
  .about-hero-desc { font-size: 1.25rem; }
}

.about-hero-image-wrap {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .about-hero-image-wrap { display: block; }
}

.about-hero-glow {
  position: absolute;
  inset: -1.5rem;
  background: var(--gradient-gold);
  opacity: 0.2;
  filter: blur(3rem);
  border-radius: 1.5rem;
}

.about-hero-image {
  position: relative;
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  width: 100%;
  max-height: 60vh;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, transparent, var(--background));
  pointer-events: none;
}

/* About Story */
.about-story {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

.about-story-text h2 {
  font-size: 1.875rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .about-story-text h2 { font-size: 2.25rem; }
}

.about-story-text p {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.625;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .about-story-text p { font-size: 1.125rem; }
}

.about-image-wrapper {
  position: relative;
}

.about-image-glow {
  position: absolute;
  inset: -1rem;
  background: var(--gradient-gold);
  opacity: 0.15;
  filter: blur(3rem);
  border-radius: 1.5rem;
}

.about-image-wrapper img {
  position: relative;
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  width: 100%;
  object-fit: cover;
}

/* About Values */
.about-values {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about-values { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: all 0.2s;
}

.value-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-card);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: var(--gradient-navy);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.value-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.value-card h3 {
  font-weight: 700;
  color: var(--foreground);
}

.value-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* Mission/Vision */
.mv-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .mv-grid { grid-template-columns: repeat(2, 1fr); }
}

.mv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.mv-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.mv-card p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* Leadership */
.leadership {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: var(--gradient-navy);
  color: #fff;
  overflow: hidden;
}

.leadership::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.14), transparent 55%);
  pointer-events: none;
}

.leadership::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 85%, rgba(212, 175, 55, 0.10), transparent 50%);
  pointer-events: none;
}

.leadership > * {
  position: relative;
}

.founder-card {
  position: relative;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .founder-card { flex-direction: row; }
}

.founder-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.founder-image {
  position: relative;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .founder-image { width: 40%; aspect-ratio: auto; }
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s;
}

.founder-card:hover .founder-image img {
  transform: scale(1.05);
}

.founder-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent, transparent);
}

@media (min-width: 640px) {
  .founder-image::after {
    background: linear-gradient(to right, transparent, rgba(26, 26, 26, 0.4));
  }
}

.founder-info {
  position: relative;
  z-index: 10;
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .founder-info { padding: 1.75rem; }
}

.founder-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 700;
}

.founder-name {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .founder-name { font-size: 1.875rem; }
}

.founder-role {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.625;
}

.founder-creds {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.founder-cred {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

.founder-link {
  position: relative;
  z-index: 10;
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  width: fit-content;
}

.founder-link:hover {
  color: var(--gold);
}

.founder-link svg {
  width: 1rem;
  height: 1rem;
}
