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

.about-hero {
  padding-top: 12rem;
  padding-bottom: 7rem;
  text-align: center;

  /* Background image */
  background-image:
    linear-gradient(
      rgba(245, 241, 236, 0.75),
      rgba(245, 241, 236, 0.75)
    ),
    url("../assets/images/about-hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
}

.about-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Philosophy */
.philosophy-inner {
  max-width: 600px;
}

.about-philosophy h2 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.about-philosophy p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Founder section */
.about-founder {
  background-color: var(--color-bg-section); /* Warm Sand */
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.founder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.founder-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.95);
}


.founder-text h2 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

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

/* Studio space */
.space-inner {
  max-width: 800px;
}

.space-inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.space-inner p {
  color: var(--color-text-muted);
  text-align: center;
}

/* CTA */
/* Soft CTA */
.about-cta {
  text-align: center;
  background: rgba(196, 106, 74, 0.08); /* soft terracotta wash */
  padding: 6rem 0;
}

.about-cta h2 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.about-cta p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}



/* =========================
   MOBILE OPTIMIZATIONS
   ========================= */

@media (max-width: 768px) {

  /* Hero */
  .about-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }

  .about-hero h1 {
    font-size: 2.4rem;
    line-height: 1.25;
  }

  .about-hero p {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  /* Philosophy */
  .philosophy-inner {
    padding: 0 1rem;
  }

  /* Founder section */
  .about-founder {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .founder-image img {
    height: 300px;
  }

  .founder-text {
    padding: 0 1rem;
    text-align: left;
  }

  /* Studio space */
  .space-inner {
    padding: 0 1rem;
  }

  .space-inner img {
    height: 280px;
  }

  .space-inner p {
    font-size: 0.95rem;
  }

  /* CTA */
  .about-cta {
    padding: 4rem 1rem;
  }

  .about-cta h2 {
    font-size: 2rem;
  }

  .about-cta p {
    font-size: 0.95rem;
  }
}
