/* ============================================================
   About Page — exact port of about.html inline CSS
   Depends on: tokens.css, shell.css
   ============================================================ */

/* ── About Hero ────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(180deg, #cdecec 0%, #e6f5f5 100%);
  padding: clamp(4rem, 9vw, 7rem) 48px clamp(3rem, 7vw, 5.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: #fce4ec;
  opacity: .6;
  pointer-events: none;
}
.about-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #fbeccc;
  opacity: .7;
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
/* section-eyebrow inside hero reuses global shell class */
.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-style: italic;
  background: linear-gradient(135deg, #0a7f7d 0%, #10b3b0 50%, #5fc7c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 auto 1.5rem;
  max-width: 18ch;
  padding: 0 0.12em 0.1em;
}
.about-lede {
  font-size: 1rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.65;
}
.about-lede strong { color: var(--ink); }

/* ── Story Section ─────────────────────────────────────────── */
.story-section {
  background: var(--warm-white);
  padding: clamp(4rem, 8vw, 7rem) 48px;
}
.story-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.gradient-text {
  background: linear-gradient(135deg, #0a7f7d 0%, #10b3b0 50%, #5fc7c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.2em; /* cover italic glyph overhang */
}
.story-list {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 7vw, 6rem);
  max-width: 1100px;
  margin: 0 auto;
}
.story-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.story-item--reverse {
  direction: rtl;
}
.story-item--reverse > * {
  direction: ltr;
}

/* ── Story image ───────────────────────────────────────────── */
.story-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.story-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-img__tint {
  position: absolute;
  inset: 0;
  opacity: .35;
  mix-blend-mode: multiply;
}
.chapter-num {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
  padding-bottom: 0.05em;
}
.story-item--reverse .chapter-num {
  left: auto;
  right: 1.6rem;
}

/* ── Story copy ────────────────────────────────────────────── */
.story-copy-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.story-copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 1.1rem;
  color: var(--ink);
}
.story-copy p {
  font-size: .97rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 46ch;
  margin: 0;
}

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stats-grid__item {}
.stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--teal-dark);
  display: block;
}
.stat-label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-top: .6rem;
  display: block;
}

/* ── Browse CTA ────────────────────────────────────────────── */
.about-cta {
  background: linear-gradient(180deg, #fbd9ce 0%, #fbeae6 100%);
  padding: clamp(4rem, 8vw, 6.5rem) 48px;
  text-align: center;
}
.section-eyebrow { /* also defined in shell.css, here for specificity */
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.about-cta__heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 2rem;
  padding-bottom: 0.08em;
}
.warm-gradient-text {
  background: linear-gradient(135deg, #f2896e 0%, #ea4a35 55%, #a8281d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-cta-primary {
  background: linear-gradient(90deg, #f2896e 0%, #ea4a35 55%, #a8281d 100%);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-primary:hover { opacity: .88; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-hero { padding: 48px 24px 36px; }
  .story-section { padding: 48px 20px; }
  .story-item,
  .story-item--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 20px;
  }
  .story-item--reverse > * { direction: ltr; }
  .story-img { aspect-ratio: 4/3; }
  .story-copy p { max-width: 100%; }
  .stats-strip { padding: 40px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .about-cta { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .about-hero h1 { font-size: 2.8rem; line-height: 1.05; }
  .chapter-num { font-size: 4rem; }
  .stat-num { font-size: 2.8rem; }
}
