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

/* --- Narrative Split --- */
.about-narrative {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 80vh;
}

.about-narrative-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--sp-16) var(--sp-8);
  overflow: hidden;
}

.about-photo-wrap {
  width: 100%;
  padding-top: 5rem;
}

.about-photo {
  width: 220px;
  height: 280px;
  background: var(--navy-mid);
  border-radius: var(--radius-xl);
  border: 2px solid var(--navy-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.about-photo svg {
  width: 80px;
  height: 80px;
  opacity: 0.6;
}

.photo-label {
  font-family: var(--font-serif);
  color: var(--steel);
  font-size: 0.9rem;
}

.about-globe {
  padding-top: var(--sp-6);
  border-top: 1px solid var(--navy-mid);
}

.globe-dots {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.globe-country {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--steel);
  font-size: 0.9rem;
}

.globe-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--amber);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

.globe-country:nth-child(2) .globe-dot { animation-delay: 0.3s; }
.globe-country:nth-child(3) .globe-dot { animation-delay: 0.6s; }
.globe-country:nth-child(4) .globe-dot { animation-delay: 0.9s; }
.globe-country:nth-child(5) .globe-dot { animation-delay: 1.2s; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.about-narrative-right {
  background: var(--offwhite);
}

.about-narrative-content {
  padding: var(--sp-16) var(--sp-12);
  max-width: 680px;
}

.about-narrative-content h2 {
  margin-bottom: var(--sp-8);
  color: var(--navy);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}

.about-text p {
  color: var(--navy);
  opacity: 0.85;
}

.about-text em {
  font-style: italic;
  color: var(--amber);
  font-family: var(--font-serif);
}

/* Values */
.about-values {
  border-top: 1px solid var(--offwhite-dim);
  padding-top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.value-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.value-icon {
  font-size: 1.1rem;
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--steel-dark);
  line-height: 1.5;
  margin: 0;
}

/* --- Global Exposure --- */
.global-exposure {
  background: var(--offwhite);
  padding: var(--sp-24) 0;
}

.global-sub {
  max-width: 540px;
  margin: var(--sp-4) auto 0;
  font-size: 1rem;
}

.exposure-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}

.exposure-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-top: 3px solid transparent;
}

.exposure-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--amber);
}

.exposure-flag {
  font-size: 2.5rem;
  margin-bottom: var(--sp-3);
  display: block;
}

.exposure-card h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.exposure-card p {
  font-size: 0.8rem;
  color: var(--steel);
  line-height: 1.5;
}

/* --- Interests --- */
.interests {
  padding: var(--sp-24) 0;
  position: relative;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.interest-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(138, 155, 174, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  transition: border-color var(--transition), background var(--transition);
}

.interest-card:hover {
  border-color: var(--sage);
  background: rgba(92, 122, 107, 0.06);
}

.interest-icon {
  width: 44px;
  height: 44px;
  background: rgba(92, 122, 107, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}

.interest-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage);
}

.interest-card h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: var(--sp-2);
}

.interest-card p {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.65;
}

/* --- About CTA --- */
.about-cta {
  background: var(--offwhite);
  padding: var(--sp-24) 0;
}

.about-cta h2 {
  max-width: 500px;
  margin: var(--sp-3) auto 0;
  color: var(--navy);
}

.about-cta-sub {
  max-width: 440px;
  margin: var(--sp-4) auto 0;
  font-size: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-narrative {
    grid-template-columns: 1fr;
  }

  .about-narrative-left {
    position: relative;
    height: auto;
    padding: var(--sp-8) var(--sp-6);
  }

  .about-photo-wrap {
    display: flex;
    gap: var(--sp-8);
    align-items: flex-start;
    padding-top: 0;
    flex-wrap: wrap;
  }

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

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

@media (max-width: 768px) {
  .about-narrative-content {
    padding: var(--sp-10) var(--sp-6);
  }

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

  .interests-grid {
    grid-template-columns: 1fr;
  }
}

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