/* ===================
   ABOUT PAGE STYLES
   All Options (A, B, C)
   =================== */

/* ==============
   OPTION A: Elevated Personal Brand
   ============== */

/* About Hero */
.about-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, #f8f9fd 0%, #ffffff 100%);
}

.about-hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-hero-photo {
  flex-shrink: 0;
}

.founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 32px rgba(31, 35, 82, 0.12);
}

.about-hero-content {
  flex: 1;
}

.about-hero-content .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.about-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-hero-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.about-hero-links {
  display: flex;
  gap: 1.5rem;
}

.btn-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-link-icon:hover {
  color: var(--color-accent);
}

.btn-link-icon svg {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.btn-link-icon:hover svg {
  opacity: 1;
}

/* Credentials Section */
.about-credentials {
  padding: 3rem 0;
  background: #ffffff;
}

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

.credential-block {
  background: #f8f9fd;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(207, 214, 244, 0.5);
}

.credential-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(207, 214, 244, 0.6);
}

.credential-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 10px;
  color: #ffffff;
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

/* Credential list with logos */
.credential-list-logos li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.credential-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  padding: 4px;
  flex-shrink: 0;
}

/* Placeholder logos */
.credential-logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.credential-logo-placeholder::before {
  content: attr(data-initials);
}

.credential-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.credential-degree,
.credential-company {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

.credential-school,
.credential-role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Story Section */
.about-story {
  padding: 4rem 0;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.story-main h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.story-main h2:first-child {
  margin-top: 0;
}

.story-main p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.story-main p:last-child {
  margin-bottom: 0;
}

/* Story Aside Cards */
.story-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.highlight-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(207, 214, 244, 0.6);
  box-shadow: 0 4px 20px rgba(31, 35, 82, 0.06);
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1f2352, #3d4280);
  border-radius: 10px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.highlight-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.highlight-detail {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0.85;
}

.highlight-card .btn-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Stats Card */
.stats-card {
  background: linear-gradient(135deg, #1f2352, #3d4280);
  border-radius: 16px;
  padding: 1.75rem;
  color: #ffffff;
}

.stats-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stats-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 60px;
}

.stats-card .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* Option A Responsive */
@media (max-width: 900px) {
  .about-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-hero-intro {
    max-width: none;
  }

  .about-hero-links {
    justify-content: center;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-aside {
    position: static;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 2.5rem 0 2rem;
  }

  .founder-photo {
    width: 140px;
    height: 140px;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-hero-intro {
    font-size: 1rem;
  }

  .about-hero-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .credential-block {
    padding: 1.5rem;
  }

  .story-main h2 {
    font-size: 1.25rem;
  }

  .highlight-card,
  .stats-card {
    padding: 1.5rem;
  }
}

/* ==============
   OPTION B: Studio + Founder Hybrid
   ============== */

/* Studio Section */
.about-studio-section {
  padding: 4rem 0;
  background: #ffffff;
}

.studio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.studio-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.studio-content .studio-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.studio-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.studio-content p:last-child {
  margin-bottom: 0;
}

.studio-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-visual img {
  max-width: 100%;
  height: auto;
}

.studio-values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(207, 214, 244, 0.6);
}

.studio-values-row .value-block {
  text-align: center;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.studio-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.studio-values {
  background: #f8f9fd;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(207, 214, 244, 0.5);
}

.studio-values h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.value-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}

.value-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Founder Section */
.about-founder-section {
  padding: 4rem 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.founder-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founder-photo-large {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(31, 35, 82, 0.12);
}

.founder-meta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.founder-title {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.founder-links {
  display: flex;
  gap: 1.25rem;
}

.founder-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #1f2352, #3d4280);
  border-radius: 12px;
}

.founder-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Founder Story */
.founder-story h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.founder-story h3:first-child {
  margin-top: 0;
}

.founder-story p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* Credentials Section B */
.about-credentials-b {
  padding: 3rem 0;
  background: #ffffff;
}

.credentials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.credential-col h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(207, 214, 244, 0.6);
}

.credential-list-compact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential-list-compact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.credential-logo-sm {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  background: #f8f9fd;
  padding: 3px;
  flex-shrink: 0;
}

.credential-list-compact div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.cred-degree {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

.cred-school {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Company Logos Grid */
.company-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.company-logos img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  padding: 6px;
  background: #f8f9fd;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.company-logos img:hover {
  transform: scale(1.05);
}

/* Recognition Card */
.recognition-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #1f2352, #3d4280);
  border-radius: 12px;
  color: #ffffff;
}

.recognition-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.recognition-badge svg {
  color: #ffffff;
}

.recognition-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.recognition-title {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  display: block;
}

.recognition-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.recognition-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-top: 0.25rem;
}

.recognition-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.recognition-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Light variant for secondary recognitions */
.recognition-card-light {
  background: #f8f9fd;
  border: 1px solid rgba(207, 214, 244, 0.6);
  color: var(--color-text);
}

.recognition-card-light .recognition-badge {
  background: rgba(31, 35, 82, 0.1);
}

.recognition-card-light .recognition-badge svg {
  color: var(--color-accent);
}

.recognition-card-light .recognition-title {
  color: var(--color-text);
}

.recognition-card-light .recognition-desc {
  color: var(--color-text-muted);
}

.recognition-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
}

.recognition-badge:has(.recognition-logo) {
  background: transparent !important;
}

/* Option B Responsive */
@media (max-width: 900px) {
  .studio-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .studio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .studio-values-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .studio-values-row .value-block {
    text-align: left;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-intro {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .founder-photo-large {
    width: 120px;
    max-width: 120px;
  }

  .founder-meta {
    flex: 1;
    min-width: 200px;
  }

  .founder-stats {
    width: 100%;
    justify-content: space-around;
  }

  .credentials-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .company-logos {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 600px) {
  .founder-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-photo-large {
    width: 160px;
    max-width: 160px;
  }

  .founder-links {
    justify-content: center;
  }

  .founder-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .founder-stats .stat-item {
    align-items: center;
  }

  .company-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==============
   OPTION C: Minimal but Impactful
   ============== */

/* Hero Section */
.about-c-hero {
  padding: 5rem 0 4rem;
  background: #ffffff;
}

.about-c-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-c-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.about-c-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.about-c-stats {
  display: flex;
  gap: 2.5rem;
}

.about-c-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-c-stat .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.about-c-stat .stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-c-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-c-visual img {
  max-width: 100%;
  height: auto;
}

/* Founder Strip */
.about-c-founder {
  padding: 3rem 0;
  background: #f8f9fd;
}

.founder-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.founder-strip-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.founder-strip-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 1;
}

.founder-strip-info h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.founder-strip-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.founder-strip-bio {
  flex: 1;
  min-width: 280px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.founder-strip-links {
  display: flex;
  gap: 1.25rem;
}

.founder-strip-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
}

.founder-strip-links a:hover {
  text-decoration: underline;
}

/* Story Condensed */
.about-c-story {
  padding: 4rem 0;
  background: #ffffff;
}

/* Wide container for 3-column story */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-condensed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.story-condensed-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.story-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.story-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Credentials Bar */
.about-c-credentials {
  padding: 2.5rem 0;
  background: #f8f9fd;
  border-top: 1px solid rgba(207, 214, 244, 0.5);
  border-bottom: 1px solid rgba(207, 214, 244, 0.5);
}

.credentials-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.credentials-bar-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.credentials-bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.credentials-bar-items {
  display: flex;
  gap: 1.5rem;
}

.credentials-bar-items span {
  font-size: 0.9rem;
  color: var(--color-text);
}

.credentials-bar-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.credentials-bar-logos img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.credentials-bar-logos img:hover {
  opacity: 1;
}

/* Companies with names */
.credentials-bar-companies {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.credentials-company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.credentials-company img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.credentials-company span {
  font-size: 0.85rem;
  color: var(--color-text);
  white-space: nowrap;
}

/* Option C Responsive */
@media (max-width: 900px) {
  .about-c-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-c-content h1 {
    font-size: 2.25rem;
  }

  .about-c-visual {
    order: -1;
  }

  .about-c-visual img {
    max-width: 400px;
  }

  .founder-strip {
    flex-direction: column;
    text-align: center;
  }

  .founder-strip-content {
    flex-direction: column;
    gap: 1rem;
  }

  .founder-strip-bio {
    text-align: center;
  }

  .story-condensed {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-condensed-3col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .credentials-bar {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .credentials-bar-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .credentials-bar-items {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }

  .credentials-bar-logos {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .about-c-hero {
    padding: 3rem 0;
  }

  .about-c-content h1 {
    font-size: 1.9rem;
  }

  .about-c-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .about-c-stat .stat-number {
    font-size: 1.5rem;
  }

  .founder-strip-photo {
    width: 80px;
    height: 80px;
  }
}
