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

/* ---- Hero ---- */
.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  min-height: 80vh;
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.about-hero__text {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-hero__text:last-child {
  margin-bottom: 0;
}

.about-hero__photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-hero__photo-secondary {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  margin-top: 0.75rem;
}

.about-hero__photos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.about-hero__photos-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

/* ---- What I Do ---- */
.about-services {
  background: #f4f3f0;
  padding: 5rem 2rem;
}

.about-services__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-services__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.about-services__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-services__intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 3rem;
}

.about-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-services__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.5s var(--ease-out-expo),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.about-services__card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.about-services__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.about-services__card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.about-services__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: gap 0.3s var(--ease-out-expo);
}

.about-services__card:hover .about-services__link {
  gap: 0.85rem;
}

/* ---- Who I've Worked With ---- */
.about-clients {
  padding: 5rem 2rem;
}

.about-clients__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-clients__label {
  font-size: 0.75rem;
  color: #aaa;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2rem;
}

.about-clients__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-clients__logos img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.3;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.about-clients__logos img:hover {
  opacity: 0.85;
  filter: grayscale(0);
}

/* ---- Philosophy / Three Laws ---- */
.about-philosophy {
  background: #f4f3f0;
  padding: 5rem 2rem;
}

.about-philosophy__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-philosophy__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.about-philosophy__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-philosophy__intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 3rem;
}

.about-philosophy__laws {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-philosophy__law {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 2rem 2.5rem;
  border: 1px solid var(--color-border);
}

.about-philosophy__law-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-muted);
  opacity: 0.3;
  flex-shrink: 0;
  line-height: 1.3;
}

.about-philosophy__law h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

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

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
    gap: 2rem;
  }

  .about-hero__image {
    order: -1;
  }

  .about-hero__title {
    margin-bottom: 1.25rem;
  }

  .about-services__grid {
    grid-template-columns: 1fr;
  }

  .about-clients__logos {
    gap: 1.5rem 2rem;
  }

  .about-clients__logos img {
    height: 22px;
  }

  .about-philosophy__law {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem;
  }
}
