/* ============================================================
   IPPUN PROJECT — About Page Styles
   css/pages/about.css
   ============================================================ */

/* -- ABOUT HERO ----------------------------------------------- */
.about-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 64px 80px;
  animation: fadeUp 0.7s ease forwards;
}

.about-hero .section-eyebrow {
  margin-bottom: var(--space-6);
}

.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: var(--space-5);
}

.about-hero .about-sub {
  font-size: 19px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.6;
  max-width: 520px;
}

/* -- ABOUT BODY CONTENT --------------------------------------- */
.about-content .body-large {
  color: var(--color-slate);
  margin-bottom: var(--space-6);
}

.about-content .body-large:last-child {
  margin-bottom: 0;
}

/* -- THE PROMISE ---------------------------------------------- */
.about-promise {
  text-align: center;
}

.about-promise h2 {
  margin-bottom: var(--space-6);
}

.about-promise .body-large {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-8);
}

/* -- MOBILE RESPONSIVE ---------------------------------------- */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px var(--grid-margin) 64px;
    min-height: 50vh;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-hero .about-sub {
    font-size: 16px;
    max-width: 320px;
  }
}
