/* =========================================================================
   about.css — page-specific styles for the About page
   Reuses palette, fonts, and shared components from styles.css.
   Signature: floating clouds drifting across the hero sky.
   ========================================================================= */


/* ── HERO with floating clouds ──────────────────────────────────── */
.about-hero {
  position: relative;
  max-width: 1280px;
  margin: 1.5rem auto 0;
  height: clamp(440px, 64vh, 680px);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -40px rgba(43, 38, 32, 0.25);
  z-index: 5;
}

.float-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #FBE3D6 0%,
    #FBD5D5 28%,
    #E6E0EE 64%,
    #D4E5D2 100%);
  overflow: hidden;
}

.float-sun {
  position: absolute;
  top: 8%;
  right: 9%;
  width: 200px;
  height: 200px;
  z-index: 1;
}

/* The drifting clouds — each on its own loop */
.float-cloud {
  position: absolute;
  opacity: 0.9;
  filter: blur(0.6px);
  will-change: transform;
  pointer-events: none;
  z-index: 2;
}

.float-cloud--1 { top:  6%;  width: 280px; animation: floatLeft  90s linear infinite; }
.float-cloud--2 { top: 18%;  width: 360px; animation: floatLeft 140s linear -45s infinite; }
.float-cloud--3 { top: 30%;  width: 220px; animation: floatLeft 100s linear -85s infinite; opacity: 0.75; }
.float-cloud--4 { top: 12%;  width: 320px; animation: floatLeft 120s linear -28s infinite; }
.float-cloud--5 { top: 40%;  width: 180px; animation: floatLeft 155s linear -110s infinite; opacity: 0.7; }
.float-cloud--6 { top: 24%;  width: 260px; animation: floatLeft 110s linear -65s infinite; }
.float-cloud--7 { top:  4%;  width: 200px; animation: floatLeft 130s linear -20s infinite; opacity: 0.8; }

@keyframes floatLeft {
  from { transform: translateX(112vw); }
  to   { transform: translateX(-32vw); }
}

/* Distant + middle hills sitting at the base of the hero */
.float-hills {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 32%;
  z-index: 3;
  display: block;
}

/* Hero text overlay */
.about-hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: clamp(2rem, 9vh, 6rem) 6% 0;
}
.about-hero .kicker {
  font-family: var(--hand);
  font-size: 1.5rem;
  color: var(--driftwood);
  margin: 0 0 0.6rem;
  display: inline-block;
  transform: rotate(-1deg);
  letter-spacing: 0.01em;
}
.about-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0.2rem auto 0;
  max-width: 760px;
}
.about-hero__title em {
  font-style: italic;
  color: var(--driftwood);
  display: block;
  margin-top: 0.6rem;
  font-size: 0.55em;
  line-height: 1.4;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* A sprig of leaves in the bottom-left corner of the hero (reuses .hero__leaves) */
.about-hero .hero__leaves {
  position: absolute;
  bottom: -28px;
  left: 24px;
  width: 100px;
  height: 130px;
  z-index: 4;
  transform: rotate(-15deg);
}


/* ── CHAPTERS — each as a tilted journal-page card ──────────────── */
.chapters-band {
  max-width: 920px;
  margin: 6rem auto 4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 5;
}

.chapter {
  position: relative;
  background: var(--cream);
  padding: 3rem 3rem 2.5rem;
  margin: 0 auto 4rem;
  max-width: 720px;
  box-shadow:
    0 30px 60px -30px rgba(43, 38, 32, 0.18),
    0 1px 3px rgba(43, 38, 32, 0.05);
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 31px,
      rgba(107, 98, 86, 0.06) 32px
    );
  border-radius: 2px;
}

.chapter--1 { transform: rotate(-0.4deg); }
.chapter--2 { transform: rotate(0.3deg);  }
.chapter--3 { transform: rotate(-0.5deg); }
.chapter--4 { transform: rotate(0.4deg);  }

/* Washi tape on each chapter — different colour per chapter */
.chapter::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 140px;
  height: 26px;
  opacity: 0.78;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.28) 0 4px,
      transparent 4px 10px);
  box-shadow: 0 2px 6px rgba(43, 38, 32, 0.08);
}
.chapter--1::before { background-color: var(--blush);    }
.chapter--2::before { background-color: var(--mint);     }
.chapter--3::before { background-color: var(--lavender); }
.chapter--4::before { background-color: var(--peach);    }

.chapter__head {
  text-align: center;
  margin-bottom: 2rem;
}
.chapter__num {
  font-family: var(--hand);
  font-size: 1.3rem;
  color: var(--brass);
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}
.chapter__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0;
  color: var(--ink);
}
.chapter__head h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 1.5px;
  background: var(--brass);
  margin: 0.8rem auto 0;
  opacity: 0.7;
}

.chapter__body p {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.95;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.chapter__body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 500;
  float: left;
  line-height: 1;
  padding: 0.4rem 0.6rem 0 0;
  color: var(--brass);
}


/* ── Chapter polaroids ─────────────────────────────────────────── */
.chapter-photo {
  position: relative;
  width: clamp(220px, 60%, 320px);
  margin: 0.5rem auto 2.5rem;
  background: #FDFBF6;
  padding: 14px 14px 18px;
  box-shadow:
    0 24px 48px -20px rgba(43, 38, 32, 0.28),
    0 1px 3px rgba(43, 38, 32, 0.06);
  border: 1px solid rgba(107, 98, 86, 0.08);
}
.chapter-photo img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--peach);
}
.chapter-photo figcaption {
  margin-top: 0.7rem;
  text-align: center;
  font-family: var(--hand);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.4;
  opacity: 0.9;
}

/* Washi tape strip at top of each polaroid */
.chapter-photo::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 84px;
  height: 22px;
  opacity: 0.8;
  background-image: repeating-linear-gradient(45deg,
    rgba(255,255,255,0.3) 0 3px,
    transparent 3px 8px);
  box-shadow: 0 2px 4px rgba(43, 38, 32, 0.08);
}

/* Per-chapter tilt + tape colour (alternates left/right rotation) */
.chapter--1 .chapter-photo { transform: rotate(-2deg);   }
.chapter--2 .chapter-photo { transform: rotate(1.5deg);  }
.chapter--3 .chapter-photo { transform: rotate(-1.5deg); }
.chapter--4 .chapter-photo { transform: rotate(2deg);    }

.chapter--1 .chapter-photo::before { background-color: var(--blush);    }
.chapter--2 .chapter-photo::before { background-color: var(--mint);     }
.chapter--3 .chapter-photo::before { background-color: var(--lavender); }
.chapter--4 .chapter-photo::before { background-color: var(--peach);    }

@media (max-width: 760px) {
  .chapter-photo {
    width: clamp(200px, 70%, 280px);
    margin: 0.3rem auto 2rem;
    padding: 10px 10px 14px;
  }
  .chapter-photo figcaption { font-size: 0.92rem; }
}


/* ── MANIFESTO (Chapter 4) — numbered list with big brass numerals ── */
.manifesto__list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}
.manifesto__list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(107, 98, 86, 0.15);
}
.manifesto__list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.manifesto__list .num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--brass);
  line-height: 1;
  text-align: center;
}
.manifesto__list p {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0.5rem 0 0;
}


/* ── STATS BAND ─────────────────────────────────────────────────── */
.stats-band {
  max-width: 1180px;
  margin: 5rem auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 5;
  text-align: center;
  background: var(--cream);
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(43, 38, 32, 0.15);
}
.stats-band .kicker {
  font-family: var(--hand);
  font-size: 1.5rem;
  color: var(--brass);
  margin: 0 0 2.5rem;
  display: inline-block;
  transform: rotate(-1.2deg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.stat__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  color: var(--brass);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat__num::after {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--brass);
  margin: 0.8rem auto 0;
  opacity: 0.6;
}
.stat__label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--driftwood);
  padding: 0 0.4rem;
}
.stat__label em {
  font-style: normal;
  opacity: 0.7;
  display: block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
}


/* ── CLOSING BAND ───────────────────────────────────────────────── */
.closing-band {
  max-width: 880px;
  margin: 6rem auto 5rem;
  padding: 0 2rem;
  text-align: center;
  z-index: 5;
  position: relative;
}
.closing-band .kicker {
  font-family: var(--hand);
  font-size: 1.6rem;
  color: var(--brass);
  margin: 0 0 1.5rem;
  display: inline-block;
  transform: rotate(-1deg);
}
.closing-band .ex