/* ===================================================================
   About us page (Figma 1081:23954)
   Three new sections, au-hero, au-story, au-cta, sit between the
   navbar and the existing .about-stur + .mobile-cta-wrap sections
   that are reused from the home page.
   =================================================================== */

/* ---------- Hero ---------- */
.au-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
  padding: clamp(60px, 11vw, 200px) clamp(20px, 4vw, 48px) clamp(60px, 6vw, 100px);
  /* Same rounded-card treatment as the home hero (Figma 1221:29410):
     25px side gutter + 30px corner radius, dropped on mobile below. */
  margin: 0 clamp(8px, 1.5vw, 25px);
  border-radius: clamp(20px, 2vw, 30px);
  /* Hero gradient — soft lavender → cream — Figma 1221:26891. */
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 65.03%, rgb(255,255,255) 100%),
    linear-gradient(86.14deg, rgb(229, 224, 255) 6.37%, rgb(241, 225, 225) 85.75%);
  overflow: hidden;
}
.au-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 822px;
  width: 100%;
  text-align: center;
}
.au-hero-title {
  font-family: var(--font-display, var(--font-body));
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink, #0e0f12);
  margin: 0;
}
.au-hero-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.18px;
  color: var(--ink, #0e0f12);
  max-width: 606px;
  margin: 0;
}
.au-hero-media {
  position: relative;
  width: 100%;
  max-width: 1168px;
  aspect-ratio: 1168 / 709;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(20, 22, 33, 0.08);
}
.au-hero-media img.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.au-hero-chat {
  /* Decorative chat overlay placeholder, kept empty so the existing
     .hero-chat decoration can be wired in later without a markup change. */
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ---------- Story (text → image → text) ---------- */
.au-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: clamp(60px, 6vw, 100px) clamp(20px, 4vw, 48px);
  background: #ffffff;
}
.au-prose {
  width: 100%;
  max-width: 828px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.au-prose-h {
  font-family: var(--font-display, var(--font-body));
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink, #0e0f12);
  margin: 0 0 8px;
}
.au-prose p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.05px;
  color: rgba(20, 22, 33, 0.78);
  margin: 0;
}
.au-story-figure {
  position: relative;
  width: 100%;
  max-width: 828px;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 828 / 560;
  box-shadow: 0 16px 40px rgba(20, 22, 33, 0.08);
}
.au-story-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.au-story-figure figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.13px;
  color: var(--ink, #0e0f12);
}

/* ---------- Mobile breakpoint ---------- */
@media (max-width: 700px) {
  /* Drop the rounded-card treatment on mobile so the hero gradient
     spans edge-to-edge, matching the home hero. */
  .au-hero {
    padding-top: 150px;
    gap: 40px;
    margin: 0;
    border-radius: 0;
  }
  .au-hero-title { font-size: 40px; line-height: 1.1; }
  .au-hero-sub { font-size: 15px; line-height: 22px; max-width: 90%; }
  .au-hero-media { border-radius: 16px; }

  .au-story { gap: 48px; padding: 60px 20px; }
  .au-prose-h { font-size: 22px; }
  .au-prose p { font-size: 15px; line-height: 24px; }
  .au-story-figure { border-radius: 16px; }
  .au-story-figure figcaption {
    left: 14px;
    bottom: 14px;
    padding: 5px 10px;
    font-size: 12px;
  }
}
