/* About Page Styles */

/* Navigation override for light background */
.navbar {
  color: var(--text-dark);
}

/* When scrolled, nav switches back to light text like other pages */
.navbar.scrolled {
  color: var(--text-light);
}

.about-hero {
  padding: 18rem 0 8rem;
  background: #ffffff;
  position: relative;
  z-index: 20;
}

.about-hero-content {
  text-align: center;
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-top: 1.5rem;
  margin-bottom: 10rem;
  background: linear-gradient(to bottom, #1d1d1f 60%, #434345 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Narrative Section */
.about-narrative {
  padding: 8rem 0;
  background: #ffffff;
  position: relative;
  z-index: 20;
}

.about-grid {
  position: relative;
  display: flex;
  justify-content: flex-end;
  max-width: 1100px;
  margin: 0 auto;
}

.about-portrait-col {
  position: absolute;
  top: 2rem;
  left: -2rem;
  width: 110%;
  height: 110%;
  z-index: 1;
  pointer-events: none;
}



.portrait-placeholder:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.portrait-icon {
  color: #a0a0a5;
  opacity: 0.5;
}

.portrait-label {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-narrative-col {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 650px;
  margin-left: auto;
  margin-top: -5rem;
}

.narrative-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.3;
  color: #1d1d1f;
  margin-bottom: 2rem;
}

.narrative-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.narrative-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  font-style: italic;
  border-left: 3px solid #a08c7c;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.narrative-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.narrative-cta {
  display: flex;
  gap: 1rem;
  margin-top: 5rem;
  justify-content: flex-start;
}

/* Stats Section */
.about-stats {
  padding: 16rem 0 6rem 0;
  background: #fbfbfd;
  position: relative;
  z-index: 20;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: #1d1d1f;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number .plus {
  font-size: 0.5em;
  vertical-align: super;
  opacity: 0.6;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #666;
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* Connect Section */
.about-connect {
  padding: 6rem 0 10rem;
  background: #fbfbfd;
  position: relative;
  z-index: 20;
  text-align: center;
}

.connect-content {
  max-width: 600px;
  margin: 0 auto;
}

.connect-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.connect-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.connect-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1d1d1f;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.6;
}

.social-link svg {
  transition: transform 0.2s ease;
}

.social-link:hover svg {
  transform: translate(2px, -2px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    position: relative;
    display: flex;
    justify-content: flex-end;
    max-width: 1100px;
    margin: 0 auto;
  }

  .about-portrait-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .about-narrative-col {
    flex: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .narrative-cta {
    display: flex;
    gap: 1rem;
    margin-top: 5rem;
    justify-content: flex-start;
  }
}

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

/* Portrait Image - Overlay Left (Ultra Enlarged) */
.portrait-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent;
  z-index: 1;
}

.portrait-image:hover {
  transform: none;
}

.portrait-image-inner {
  width: 100%;
  height: 100%;
  position: relative;
  /* Even softer blend for the larger image */
  /*-webkit-mask-image: linear-gradient(to right, black 0%, black 30%, transparent 55%);
  mask-image: linear-gradient(to right, black 0%, black 30%, transparent 55%);*/
}

.portrait-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  opacity: 1.2;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Ensure main content sections push footer down */
.about-hero,
.about-narrative,
.about-stats {
  flex-shrink: 0;
}

