/* ======================================
   RELATIONAL ROOTS™ VERSION 3
   ABOUT PAGE STYLES
====================================== */


/* ======================================
   01. ABOUT PAGE FOUNDATION
====================================== */

.about-page {
  background: var(--rr-soft-cream);
}

.about-page strong {
  color: var(--rr-deep-green);
}


/* ======================================
   02. ABOUT HERO
====================================== */

.about-hero {
  padding: 130px 0 105px;
  background:
    radial-gradient(circle at 82% 15%, rgba(168, 184, 154, 0.34), transparent 28%),
    linear-gradient(180deg, var(--rr-soft-cream) 0%, var(--rr-cream) 100%);
}

.about-hero-inner {
  max-width: 960px;
  text-align: center;
}

.about-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
}

.about-hero-lead {
  max-width: 810px;
  margin: 30px auto 0;
  font-size: 1.12rem;
  line-height: 1.85;
}

.about-hero-anchor {
  margin-top: 28px;
  color: var(--rr-root-green);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}


/* ======================================
   03. SHARED ABOUT SECTION LAYOUT
====================================== */

.about-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: start;
}

.about-heading-column h2 {
  max-width: 520px;
}

.about-copy-column {
  max-width: 690px;
}

.about-copy-column p {
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-copy-column p:last-child {
  margin-bottom: 0;
}

.about-emphasis {
  color: var(--rr-earth-brown);
  font-family: var(--font-accent);
  font-size: 1.18rem;
  line-height: 1.75;
}


/* ======================================
   04. ORIGIN SECTION
====================================== */

.about-origin {
  background: var(--rr-warm-white);
}


/* ======================================
   05. PRINCIPLES SECTION
====================================== */

.about-principles {
  background: var(--rr-soft-sage);
}

.about-section-heading {
  max-width: 850px;
  margin: 0 auto 48px;
}

.about-section-heading h2 {
  margin: 0 auto;
}

.about-section-heading > p:last-child {
  max-width: 700px;
  margin: 22px auto 0;
  font-size: 1.05rem;
}

.about-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-principle-card {
  min-height: 100%;
  padding: 34px 30px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(79, 111, 82, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(47, 71, 51, 0.06);
}

.about-card-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--rr-clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.about-principle-card h3 {
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.about-principle-card p {
  line-height: 1.75;
}


/* ======================================
   06. THREE DOMAINS SECTION
====================================== */

.about-domains {
  background: var(--rr-warm-white);
}

.about-domain-list {
  border-top: 1px solid var(--rr-border);
}

.about-domain-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rr-border);
}

.about-domain-row span {
  color: var(--rr-deep-green);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
}

.about-domain-row p {
  margin: 0;
  line-height: 1.75;
}


/* ======================================
   07. FOUNDER SECTION
====================================== */

.about-founder {
  background: var(--rr-cream);
}

.about-founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: center;
}

.about-founder-image-wrap {
  position: relative;
}

.about-founder-image-wrap::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 78%;
  height: 78%;
  border: 1px solid var(--rr-gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-founder-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 470px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(59, 42, 31, 0.13);
}

.about-founder-content {
  max-width: 690px;
}

.about-founder-content h2 {
  margin: 8px 0 8px;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
}

.about-founder-role {
  margin-bottom: 24px;
  color: var(--rr-root-green);
  font-weight: 700;
}

.about-founder-content > p:not(.section-label):not(.about-founder-role) {
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-founder-quote {
  margin: 30px 0;
  padding: 24px 28px;
  background: var(--rr-warm-white);
  border-left: 4px solid var(--rr-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--rr-deep-green);
  font-family: var(--font-accent);
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-founder-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ======================================
   08. FRAMEWORK BOUNDARIES
====================================== */

.about-boundaries {
  background: var(--rr-deep-green);
}

.about-boundary-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: center;
}

.about-boundaries .section-label {
  color: var(--rr-gold);
}

.about-boundaries h2 {
  color: var(--rr-warm-white);
}

.about-boundaries p {
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.04rem;
  line-height: 1.85;
}


/* ======================================
   09. ABOUT CTA
====================================== */

.about-cta {
  background: var(--rr-soft-cream);
}

.about-cta-inner {
  max-width: 760px;
}

.about-cta h2 {
  margin-bottom: 18px;
}

.about-cta p:not(.section-label) {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}
