/* ==============================================================
   RHEA REIGNS · about page
   Hero · Origin · The Work · Three Cities · The Code · Witness · Closing
   ============================================================== */

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 140px 24px 120px;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--ink-soft);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.5) saturate(0.92);
  z-index: 0;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,9,8,0.55) 0%,
    rgba(10,9,8,0.35) 35%,
    rgba(10,9,8,0.85) 88%,
    rgba(10,9,8,1)    100%);
  z-index: 1;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  animation: rise 1.1s .3s both cubic-bezier(.2,.7,.2,1);
}
.about-hero__kicker { display: inline-block; margin-bottom: 44px; }
.about-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(64px, 10.5vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 44px;
}
.about-hero__title em { font-style: italic; font-weight: 300; color: var(--gold); }
.about-hero__lede {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.6;
  color: var(--bone);
  max-width: 620px;
  margin: 0 auto;
  letter-spacing: 0.005em;
}
.about-hero__lede em { font-style: italic; color: var(--gold); font-weight: 400; }

.about-hero__cities {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.about-hero__cities .dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

.about-hero .ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding-top: 60px;
}
.about-hero .ornament .rule { width: 96px; height: 1px; background: var(--rule); }
.about-hero .ornament .dot {
  width: 5px; height: 5px;
  background: var(--gold); transform: rotate(45deg);
  border-radius: 0; opacity: 1;
}

/* SHARED PAGE NUMERAL */
.about-numeral {
  font-family: 'Italiana', serif;
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 44px;
}

/* SHARED SECTION HEAD (used by III + IV) */
.section-head {
  text-align: center;
  margin-bottom: 110px;
}
.section-head h2 {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--bone);
  letter-spacing: 0.02em;
  margin: 0;
}
.section-head h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* SHARED ORNAMENT (between cards) — small, refined, restrained */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 0;
}
.section-ornament .rule {
  width: 80px;
  height: 1px;
  background: var(--rule);
}
.section-ornament .diamond {
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ──────────────────────────────────────────────
   EDITORIAL  ·  asymmetric image+text (sections I, II)
────────────────────────────────────────────── */
.editorial { padding: 160px 40px 140px; position: relative; }
.editorial__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 110px; align-items: center;
}
.editorial__image-wrap { position: relative; }
.editorial__image {
  aspect-ratio: 4/5;
  background-color: var(--ink-soft);
  background-size: cover; background-position: center;
  filter: brightness(0.88) saturate(0.95);
  position: relative;
}
.editorial__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,9,8,0.35) 100%);
}
.editorial__image-mark {
  position: absolute; bottom: 24px; left: 24px;
  font-family: 'Manrope', sans-serif; font-size: 10px;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--bone-dim); z-index: 2;
}
.editorial__content { max-width: 580px; }
.editorial__title {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.05; color: var(--bone);
  letter-spacing: 0.02em; margin-bottom: 56px;
}
.editorial__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  color: var(--gold);
}
.editorial__body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.7; color: var(--bone);
  letter-spacing: 0.005em;
}
.editorial__body p { margin-bottom: 22px; }
.editorial__body p:last-of-type { margin-bottom: 0; }
.editorial__body em { font-style: italic; color: var(--gold); font-weight: 400; }

.editorial--reverse .editorial__inner { grid-template-columns: 7fr 5fr; }
.editorial--reverse .editorial__content { margin-left: auto; max-width: 600px; }
.editorial--reverse { padding: 80px 40px 140px; }

/* ============================================================
   ─── III ─── THREE CITIES  ·  two-column editorial cards
============================================================ */
.locations {
  position: relative;
  padding: 180px 40px 160px;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--rule-soft);
  background:
    radial-gradient(ellipse 800px 600px at center top,
      rgba(176, 141, 87, 0.05) 0%,
      transparent 65%);
}

/* CITY CARD — two-column horizontal */
.city {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 70px 20px;
  position: relative;
}

.city__left {
  text-align: right;
  padding-right: 44px;
  border-right: 1px solid rgba(176, 141, 87, 0.20);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.city__numeral {
  font-family: 'Italiana', serif;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: lowercase;
  line-height: 1;
  margin: 0 0 24px;
  display: block;
}

.city__name {
  font-family: 'Italiana', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  letter-spacing: 0.04em;
  color: var(--bone);
  line-height: 1;
  margin: 0;
}
.city__name--abbrev {
  letter-spacing: 0.18em;
}

.city__right {
  text-align: left;
  max-width: 420px;
}

.city__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin: 0 0 22px;
  line-height: 1.4;
}

.city__copy {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: var(--bone);
  letter-spacing: 0.005em;
  margin: 0;
}
.city__copy em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.locations__close {
  margin: 80px auto 0;
  padding-top: 56px;
  border-top: 1px solid rgba(176, 141, 87, 0.22);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--bone-fade);
  letter-spacing: 0.02em;
  max-width: 520px;
}

/* ============================================================
   ─── IV ─── THE CODE  ·  two-column editorial cards
============================================================ */
.limits {
  position: relative;
  padding: 180px 40px 160px;
  max-width: 960px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 800px 600px at center top,
      rgba(176, 141, 87, 0.05) 0%,
      transparent 65%);
}

/* CODE CARD — two-column horizontal */
.code {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: stretch;
  padding: 70px 20px;
  position: relative;
}

.code__numeral {
  font-family: 'Italiana', serif;
  font-size: clamp(72px, 8.5vw, 124px);
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
  text-align: right;
  padding-right: 44px;
  border-right: 1px solid rgba(176, 141, 87, 0.20);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.code__body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(20px, 1.95vw, 26px);
  line-height: 1.5;
  color: var(--bone);
  letter-spacing: 0.005em;
  margin: 0;
  text-align: left;
  align-self: center;
  max-width: 540px;
}
.code__body p { margin: 0 0 16px; }
.code__body p:last-child { margin-bottom: 0; }
.code__body em { font-style: italic; color: var(--gold); font-weight: 400; }

.code__body .absolute {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-top: 26px;
  font-size: 0.82em;
  letter-spacing: 0.08em;
}

.limits__close {
  margin: 80px auto 0;
  padding-top: 56px;
  border-top: 1px solid rgba(176, 141, 87, 0.22);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.55vw, 21px);
  color: var(--bone);
  letter-spacing: 0.02em;
  max-width: 580px;
}
.limits__close em { color: var(--gold); font-style: italic; }

/* ──────────────────────────────────────────────
   TESTIMONIAL
────────────────────────────────────────────── */
.testimonial {
  padding: 100px 40px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.5;
  color: var(--bone);
  max-width: 760px;
  margin: 0 auto;
  letter-spacing: 0.005em;
  position: relative;
  padding: 60px 0;
}
.testimonial__quote::before,
.testimonial__quote::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background: var(--rule);
  margin: 0 auto;
}
.testimonial__quote::before { margin-bottom: 60px; }
.testimonial__quote::after { margin-top: 36px; }
.testimonial__quote p { margin-bottom: 32px; }
.testimonial__attribution {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* ──────────────────────────────────────────────
   CLOSING
────────────────────────────────────────────── */
.closing {
  padding: 100px 40px 200px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing__line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: var(--bone-dim);
  margin-bottom: 24px;
  letter-spacing: 0.005em;
}
.closing__title {
  font-family: 'Italiana', serif;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.05;
  color: var(--bone);
  letter-spacing: 0.02em;
  margin-bottom: 64px;
}
.closing__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.closing__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 24px 56px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--bone);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color .35s ease;
}
.closing__cta::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 100%;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .55s cubic-bezier(.6, 0, 0.4, 1);
  z-index: -1;
}
.closing__cta:hover { color: var(--ink); }
.closing__cta:hover::before { transform: translateX(0); }
.closing__cta-arrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  transition: transform .4s ease;
}
.closing__cta:hover .closing__cta-arrow { transform: translateX(5px); }

/* ──────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 980px) {
  .editorial { padding: 100px 28px; }
  .editorial--reverse { padding: 60px 28px 100px; }
  .editorial__inner,
  .editorial--reverse .editorial__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .editorial__image-wrap { order: -1; }
  .editorial__image { aspect-ratio: 4/3; }
  .editorial__title { margin-bottom: 36px; }
  .editorial--reverse .editorial__content { margin-left: 0; }

  .locations,
  .limits {
    padding: 130px 28px 110px;
  }
  .section-head { margin-bottom: 80px; }

  .city { padding: 50px 12px; gap: 50px; }
  .city__left { padding-right: 30px; }
  .city__numeral { margin-bottom: 18px; }

  .code {
    grid-template-columns: 180px 1fr;
    padding: 50px 12px;
    gap: 50px;
  }
  .code__numeral { padding-right: 30px; }
}

@media (max-width: 720px) {
  .about-hero { min-height: 78vh; padding: 110px 20px 90px; }
  .about-hero__title { font-size: clamp(52px, 13vw, 88px); }
  .about-hero__lede { font-size: 17px; }
  .about-hero__cities {
    font-size: 10px;
    letter-spacing: 0.42em;
    gap: 10px;
    margin-top: 28px;
  }
  .about-hero .ornament { padding-top: 44px; }
  .about-hero .ornament .rule { width: 56px; }

  .editorial { padding: 80px 22px; }
  .editorial--reverse { padding: 50px 22px 80px; }
  .about-numeral { margin-bottom: 28px; }
  .editorial__title { font-size: clamp(30px, 7.5vw, 40px); margin-bottom: 28px; }
  .editorial__body { font-size: 17px; }

  .locations,
  .limits {
    padding: 90px 22px 80px;
  }
  .section-head { margin-bottom: 64px; }
  .section-head h2 { font-size: clamp(30px, 8vw, 42px); }

  /* Mobile: stack city to single column */
  .city {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 14px;
    text-align: center;
  }
  .city__left {
    text-align: center;
    padding-right: 0;
    padding-bottom: 28px;
    border-right: none;
    border-bottom: 1px solid rgba(176, 141, 87, 0.20);
    align-items: center;
  }
  .city__numeral { margin-bottom: 16px; font-size: 24px; }
  .city__name { font-size: clamp(36px, 9vw, 48px); }
  .city__right {
    text-align: center;
    max-width: 100%;
  }
  .city__copy { font-size: 17px; max-width: 480px; margin: 0 auto; }

  /* Mobile: stack code to single column */
  .code {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 14px;
    text-align: center;
  }
  .code__numeral {
    text-align: center;
    padding-right: 0;
    padding-bottom: 28px;
    border-right: none;
    border-bottom: 1px solid rgba(176, 141, 87, 0.20);
    justify-content: center;
    font-size: clamp(56px, 14vw, 88px);
  }
  .code__body {
    text-align: center;
    font-size: 18px;
    max-width: 440px;
    margin: 0 auto;
  }
  .code__body p { margin-bottom: 12px; }
  .code__body .absolute { margin-top: 22px; }

  .section-ornament { padding: 18px 0; gap: 14px; }
  .section-ornament .rule { width: 56px; }

  .locations__close,
  .limits__close {
    margin-top: 56px;
    padding-top: 40px;
    font-size: 16px;
  }

  .testimonial { padding: 60px 22px 80px; }
  .testimonial__quote { font-size: 19px; padding: 40px 0; }
  .testimonial__quote::before { margin-bottom: 40px; }
  .testimonial__quote::after { margin-top: 24px; }

  .closing { padding: 70px 22px 130px; }
  .closing__title { font-size: clamp(40px, 11vw, 64px); margin-bottom: 48px; }
  .closing__line { font-size: 17px; margin-bottom: 18px; }
  .closing__cta { padding: 20px 36px; font-size: 10px; letter-spacing: 0.42em; }
}
