/* about-page.css
   Layout + components specific to the Roots of Reason About page
   Depends on: styles-professional.css + header.css
*/

/* Local fallbacks for variables that may not exist in styles-professional.css */
.about-page {
  --muted: #6b7c6e;
  color: var(--ink);
}

/* ========== HERO ========== */

.page-hero.about-hero {
  position: relative;
  border-bottom: none;
  padding: clamp(60px, 10vh, 100px) var(--container-padding);
  padding-bottom: clamp(80px, 12vh, 120px);
  overflow: hidden;
}

/* Forest sketch background - zoom resistant with vw sizing */
.page-hero.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/images/forest-sketch-bg.png');
  background-size: 100vw auto;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Gradient fade at bottom of hero sketch */
.page-hero.about-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--parchment-light) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.page-hero.about-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero.about-hero .magazine-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-header {
  text-align: center;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 48px;
  font-weight: 400;
  color: var(--sage-green);
  margin-bottom: 15px;
  letter-spacing: -1px;
  font-family: var(--font-palatino);
}

.hero-subtitle {
  font-size: 20px;
  color: #666;
  font-style: italic;
  font-family: var(--font-gentium);
}

.page-hero.about-hero h1 {
  margin-top: 0.5rem;
}

.page-hero.about-hero .lead {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--body);
}

.page-hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(62, 99, 80, 0.35);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  color: var(--body);
  backdrop-filter: blur(4px);
}

.pill-icon {
  font-size: 0.95rem;
}

/* ========== SHARED LAYOUT HELPERS ========== */

.about-section {
  padding: clamp(56px, 10vh, 88px) 0;
}

/* Visual separators between sections */
.about-section + .about-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(38, 92, 47, 0.3),
    transparent
  );
  margin-bottom: clamp(40px, 8vh, 80px);
}

.about-section:nth-of-type(odd) {
  background: transparent;
}

.about-section:nth-of-type(even) {
  background: linear-gradient(
    135deg,
    rgba(250, 247, 239, 0.5) 0%,
    rgba(245, 241, 232, 0.7) 100%
  );
}

/* Full-viewport chapter sections */
.about-section--full {
  min-height: calc(100vh - 170px); /* approximate header + utility bar */
  display: flex;
  align-items: center;
}

/* Inner content still uses the shell grid */
.about-section--full .about-shell {
  width: 100%;
}

/* Banded section look for mid-page content */
.about-section--banded {
  background: linear-gradient(
    to bottom,
    var(--parchment-light, #f7f4ec),
    var(--cream, #f5f1e8),
    var(--parchment-light, #f7f4ec)
  );
  border-top: 1px solid rgba(38, 92, 47, 0.1);
  border-bottom: 1px solid rgba(38, 92, 47, 0.1);
}

.about-section--banded .about-shell {
  background: var(--soft-white, #fdfcf9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(38, 92, 47, 0.06);
  padding-block: clamp(32px, 6vh, 48px);
}

.about-shell {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.about-section-header {
  text-align: center;
  margin-bottom: clamp(24px, 5vh, 40px);
}

.about-section-header .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.about-section-header h2 {
  font-family: var(--font-palatino);
  font-size: clamp(1.9rem, 2.3vw + 1rem, 2.4rem);
  color: var(--sage-green);
  margin-bottom: 0.5rem;
}

.about-section-header p {
  max-width: 650px;
  margin: 0.25rem auto 0;
  color: var(--body);
  line-height: 1.7;
}

/* Simple 2-column grid that collapses on mobile */

.about-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}

@media (max-width: 880px) {
  .about-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========== SECTION: ROOTS & REASON STORY ========== */

.story-block {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--body);
}

.story-block p + p {
  margin-top: 1.1rem;
}

.story-highlight {
  padding: 1.1rem 1.25rem;
  border-radius: 0.9rem;
  background: rgba(250, 247, 239, 0.9);
  border: 1px solid rgba(222, 214, 195, 0.9);
  box-shadow: var(--shadow-soft);
  font-size: 0.98rem;
}

.story-highlight strong {
  color: var(--sage-green);
}

/* Quick “at a glance” stats */

.about-stats-card {
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid rgba(83, 117, 96, 0.15);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.5rem;
  transition: all 0.2s ease;
}

.about-stats-card:hover {
  box-shadow: 0 6px 16px rgb(0 0 0 / 8%);
}

.about-stats-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-palatino);
  color: var(--ink);
}

.about-stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.about-stat-row:last-child {
  border-bottom: none;
}

.about-stat-label {
  font-size: 0.95rem;
  color: var(--muted);
}

.about-stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-green);
}

/* ========== SECTION: FOUNDER ========== */

.about-section.founder-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--parchment-light);
  box-shadow: inset 0 0 120px 40px rgba(0, 0, 0, 0.08);
}

/* Forest sketch background for founder section */
.about-section.founder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/images/forest-sketch-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  filter: blur(1.5px);
  pointer-events: none;
}

/* Decorative top border */
.about-section.founder-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 600px;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--sage-green) 20%,
    var(--sage-green) 80%,
    transparent 100%
  );
  opacity: 0.35;
}

.about-section.founder-section .about-shell {
  position: relative;
  z-index: 1;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: start;
}

@media (max-width: 880px) {
  .founder-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder-bio {
    padding: 1.5rem 1.25rem;
  }

  .founder-avatar {
    width: 220px;
    height: 220px;
  }
}

.founder-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.founder-avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #fdfcf8, #e6e0cf);
  border: 3px solid rgba(83, 117, 96, 0.35);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.16),
    0 0 0 5px rgba(255, 255, 255, 0.7),
    0 0 0 7px rgba(83, 117, 96, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-green);
  font-size: 0.95rem;
  text-align: center;
  padding: 1.2rem;
}

.founder-meta {
  width: 100%;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(83, 117, 96, 0.08);
  border-left: 2.5px solid rgba(38, 92, 47, 0.4);
  padding: 1.1rem 1.25rem;
  font-size: 0.91rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.founder-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.founder-meta li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-block: 0.4rem;
}

.founder-meta li span {
  font-size: 0.95rem;
}

.founder-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2.25rem 2.5rem;
  max-width: 640px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(83, 117, 96, 0.08);
}

.founder-bio .founder-lead {
  font-size: 1.14rem;
  line-height: 1.75;
  font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.founder-bio p + p {
  margin-top: 1.15rem;
}

.founder-pullquote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(38, 92, 47, 0.06) 0%,
    rgba(38, 92, 47, 0.02) 100%
  );
  border-left: 4px solid var(--sage-green);
  border-radius: 0 0.75rem 0.75rem 0;
  font-family: var(--font-palatino);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--sage-green);
  position: relative;
}

.founder-pullquote::before {
  content: '"';
  position: absolute;
  top: -0.25rem;
  left: 0.75rem;
  font-size: 3rem;
  color: rgba(38, 92, 47, 0.15);
  font-family: var(--font-palatino);
  line-height: 1;
}

.founder-quote {
  margin-top: 1.1rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(83, 117, 96, 0.4);
  font-style: italic;
  color: var(--ink);
}

/* ========== SECTION: HOW WE WORK ========== */

.how-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 720px) {
  .how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  /* Horizontal connector line through all cards */
  .how-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--sage-green);
    z-index: 0;
    opacity: 0.3;
  }
}

.how-card {
  border-radius: var(--radius-md, 8px);
  background: var(--card);
  border: 2px solid var(--sage-green);
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
  z-index: 1;
  transition: all 0.25s ease;
}

@media (min-width: 720px) {
  .how-card {
    margin: 0 0.75rem;
  }
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(38, 92, 47, 0.12);
}

.how-step {
  position: absolute;
  top: -18px;
  left: 20px;
  background: var(--warm-white, #f7f4ec);
  color: var(--sage-green);
  padding: 0 0.75rem;
  font-family: var(--font-palatino);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border: none;
  border-radius: 0;
}

.how-card h3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-palatino);
  font-size: 1.15rem;
  color: var(--sage-green);
  line-height: 1.35;
}

.how-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--body);
}


/* ========== SECTION: MOVEMENTS FLOW (How It Works redesign) ========== */

.movements-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 2rem;
}

/* Movement Card */
.movement-card {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.movement-card:last-child {
  padding-bottom: 0;
}

/* Vertical marker system */
.movement-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 0.35rem;
}

.movement-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--sage-green);
  background: var(--warm-white, #f7f4ec);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease;
}

.movement-card:hover .movement-dot {
  background: var(--sage-green);
}

.movement-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(
    to bottom,
    var(--sage-green) 0%,
    rgba(38, 92, 47, 0.15) 100%
  );
  margin-top: 0.5rem;
}

/* Movement Content */
.movement-content {
  padding-bottom: 0.5rem;
}

.movement-title {
  font-family: var(--font-palatino);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--sage-green);
  font-weight: 400;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.movement-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-gentium);
  margin-bottom: 1rem;
}

.movement-summary {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 1rem;
}

/* Expandable depth section */
.movement-depth {
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.depth-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: 0.75rem;
  background: rgba(38, 92, 47, 0.07);
  border: 1px solid rgba(38, 92, 47, 0.18);
  transition: all 0.2s ease;
  list-style: none;
}

.depth-trigger::-webkit-details-marker {
  display: none;
}

.depth-trigger::marker {
  display: none;
  content: '';
}

.depth-trigger:hover {
  background: rgba(38, 92, 47, 0.08);
  border-color: rgba(38, 92, 47, 0.25);
}

.depth-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage-green);
  letter-spacing: 0.02em;
}

.depth-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--sage-green);
  transition: transform 0.25s ease;
  margin-left: auto;
}

.movement-depth[open] .depth-icon {
  transform: rotate(180deg);
}

.depth-content {
  padding: 1.25rem 1.25rem 1rem;
  border-left: 3px solid rgba(38, 92, 47, 0.25);
  margin-left: 0.25rem;
  margin-top: 0.75rem;
  background: rgba(247, 244, 236, 0.5);
  border-radius: 0 0.5rem 0.5rem 0;
}

.depth-content p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--body);
  opacity: 0.92;
}

.depth-content p + p {
  margin-top: 0.9rem;
}

/* Coda line below all movements */
.movements-coda {
  max-width: 820px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 2rem;
  text-align: center;
  font-family: var(--font-gentium);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid rgba(38, 92, 47, 0.15);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .movements-flow {
    padding-left: 0.5rem;
  }

  .movement-card {
    grid-template-columns: 24px 1fr;
    gap: 1rem;
  }

  .movement-dot {
    width: 12px;
    height: 12px;
  }

  .depth-trigger {
    padding: 0.5rem 0.75rem;
  }

  .depth-content {
    padding: 1rem 0.75rem 0.75rem;
  }

  .movements-coda {
    padding: 1rem 1rem;
  }
}

/* ========== SECTION: WHO WE SERVE ========== */

.audience-grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 880px) {
  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.audience-card {
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid rgba(83, 117, 96, 0.15);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.3rem 1.5rem;
  transition: all 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
  border-color: var(--sage-light);
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.audience-tag span {
  display: inline-block;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(83, 117, 96, 0.06);
  border: 1px solid rgba(83, 117, 96, 0.25);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.audience-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.audience-card ul {
  margin: 0.3rem 0 0;
  padding-left: 1rem;
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ========== SECTION: FAQ PREVIEW ========== */

.faq-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.faq-item {
  border-radius: 0.9rem;
  border: 1px solid rgba(83, 117, 96, 0.08);
  background: var(--card);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgb(0 0 0 / 8%);
  border-color: rgba(83, 117, 96, 0.2);
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.faq-item p {
  font-size: 0.93rem;
  line-height: 1.7;
}

.faq-cta {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.faq-cta a {
  color: var(--sage-green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ========== MOBILE RESPONSIVENESS ========== */

@media (max-width: 880px) {
  .about-section {
    padding-block: 40px;
  }

  .about-section--full {
    min-height: auto;
    align-items: stretch;
  }

  .founder-card {
    gap: 1.6rem;
    align-items: flex-start;
  }

  .founder-avatar {
    width: 170px;
    height: 170px;
  }
}

/* ========== BOTTOM SPACING ========== */

.about-bottom-space {
  height: 24px;
}

/* ========== CORNER BRACKET PATTERN ========== */

.header-bracket {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1rem;
}

.header-bracket::before,
.header-bracket::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--sage-green);
}

.header-bracket::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.header-bracket::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.bracket-text {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== BOTTOM CTA SECTION ========== */

.bottom-cta {
  background: linear-gradient(
    135deg,
    var(--sage-green) 0%,
    var(--sage-dark) 100%
  );
  padding: clamp(48px, 8vh, 80px) var(--container-padding);
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-palatino);
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem);
  color: var(--warm-white);
  margin-bottom: 0.75rem;
}

.cta-copy {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md, 8px);
  background: var(--warm-white);
  color: var(--sage-green);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.cta-reassurance {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* ========== PILL ICON STYLING (Font Awesome) ========== */

.pill .pill-icon,
.pill i.pill-icon {
  font-size: 0.9rem;
  color: var(--sage-green);
}

/* ========== FOUNDER META ICONS ========== */

.founder-meta li i {
  width: 1.2rem;
  color: var(--sage-green);
  margin-right: 0.25rem;
}

/* ========== QUADRANT SECTION: ROOTS & REASON BREAKDOWN ========== */

.quadrant-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Column Headers */
.quadrant-headers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  padding: 2rem var(--container-padding) 2.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.quadrant-header {
  font-family: var(--font-palatino);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--sage-green);
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}

/* Tapered underline decoration */
.quadrant-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--sage-green) 25%,
    var(--sage-green) 75%,
    transparent 100%
  );
  opacity: 0.4;
}

/* Main Grid */
.quadrant-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  position: relative;
}

/* Ground line SVG overlay */
.quadrant-ground {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  z-index: 10;
  pointer-events: none;
}

.quadrant-ground svg {
  width: 100%;
  height: 100%;
}

/* Individual quadrant cells */
.quadrant-cell {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Surface cells (top row) */
.quadrant-cell--surface {
  background: var(--paper);
  color: var(--body);
}

.quadrant-cell--surface .quadrant-label {
  color: var(--muted);
}

.quadrant-cell--surface h3 {
  color: var(--sage-green);
}

/* Deep cells (bottom row) - underground */
.quadrant-cell--deep {
  background: #2a3428;
  color: rgba(247, 244, 236, 0.92);
}

.quadrant-cell--deep .quadrant-label {
  color: rgba(247, 244, 236, 0.6);
}

.quadrant-cell--deep h3 {
  color: rgba(168, 195, 156, 0.95);
}

.quadrant-cell--deep p {
  color: rgba(247, 244, 236, 0.85);
}

/* Vertical divider between columns */
.quadrant-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--line) 0%,
    var(--line) 48%,
    rgba(247, 244, 236, 0.2) 52%,
    rgba(247, 244, 236, 0.2) 100%
  );
  z-index: 5;
}

/* Cell content styling */
.quadrant-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
}

.quadrant-cell h3 {
  font-family: var(--font-palatino);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.quadrant-cell p {
  font-family: var(--font-gentium);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.8;
}

.quadrant-cell p + p {
  margin-top: 1rem;
}

/* Synthesis section below grid */
.quadrant-synthesis {
  background: linear-gradient(
    to bottom,
    #2a3428 0%,
    #1e2820 100%
  );
  color: rgba(247, 244, 236, 0.92);
  padding: clamp(2.5rem, 6vw, 4rem) var(--container-padding);
  text-align: center;
  position: relative;
}

/* Paper texture overlay */
.quadrant-synthesis::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.quadrant-synthesis .synthesis-inner {
  max-width: 800px;
  margin: 0 auto;
}

.quadrant-synthesis p {
  font-family: var(--font-gentium);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: rgba(247, 244, 236, 0.85);
}

.quadrant-synthesis p + p {
  margin-top: 1.25rem;
}

.quadrant-synthesis .synthesis-phrase {
  font-family: var(--font-palatino);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: rgba(168, 195, 156, 0.95);
  margin: 2rem 0;
  padding: 1.5rem 0;
  position: relative;
}

/* Tapered line above quote */
.quadrant-synthesis .synthesis-phrase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(168, 195, 156, 0.7) 25%,
    rgba(168, 195, 156, 0.7) 75%,
    transparent 100%
  );
}

/* Tapered line below quote */
.quadrant-synthesis .synthesis-phrase::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(168, 195, 156, 0.7) 25%,
    rgba(168, 195, 156, 0.7) 75%,
    transparent 100%
  );
}

.quadrant-synthesis .synthesis-close {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(247, 244, 236, 0.9);
  margin-top: 1.5rem;
}

/* Mobile: stack vertically */
@media (max-width: 880px) {
  .quadrant-section {
    min-height: auto;
  }

  .quadrant-headers {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .quadrant-header:last-child {
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .quadrant-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .quadrant-grid::before {
    display: none;
  }

  .quadrant-ground {
    display: none;
  }

  /* Reorder for mobile: Roots surface, Roots deep, Reason surface, Reason deep */
  .quadrant-cell--roots-surface { order: 1; }
  .quadrant-cell--roots-deep { order: 2; }
  .quadrant-cell--reason-surface { order: 3; }
  .quadrant-cell--reason-deep { order: 4; }

  /* Add mobile header labels */
  .quadrant-cell--roots-surface::before,
  .quadrant-cell--reason-surface::before {
    content: attr(data-column);
    display: block;
    font-family: var(--font-palatino);
    font-size: 1.5rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
    text-align: center;
  }

  .quadrant-cell--reason-surface::before {
    color: rgba(168, 195, 156, 0.95);
  }
}


/* ========== QUADRANT SECTION: ROOTS & REASON BREAKDOWN ========== */

.quadrant-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.quadrant-headers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  padding: 1.5rem var(--container-padding);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.quadrant-header {
  font-family: var(--font-palatino);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--sage-green);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.quadrant-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  position: relative;
}

.quadrant-ground {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  z-index: 10;
  pointer-events: none;
}

.quadrant-ground svg {
  width: 100%;
  height: 100%;
}

.quadrant-cell {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quadrant-cell--surface {
  background: var(--paper);
  color: var(--body);
}

.quadrant-cell--surface .quadrant-label {
  color: var(--muted);
}

.quadrant-cell--surface h3 {
  color: var(--sage-green);
}

.quadrant-cell--deep {
  background: #2a3428;
  color: rgba(247, 244, 236, 0.92);
}

.quadrant-cell--deep .quadrant-label {
  color: rgba(247, 244, 236, 0.6);
}

.quadrant-cell--deep h3 {
  color: rgba(168, 195, 156, 0.95);
}

.quadrant-cell--deep p {
  color: rgba(247, 244, 236, 0.85);
}

.quadrant-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--line) 0%,
    var(--line) 48%,
    rgba(247, 244, 236, 0.2) 52%,
    rgba(247, 244, 236, 0.2) 100%
  );
  z-index: 5;
}

.quadrant-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
}

.quadrant-cell h3 {
  font-family: var(--font-palatino);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.quadrant-cell p {
  font-family: var(--font-gentium);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.8;
}

.quadrant-cell p + p {
  margin-top: 1rem;
}


/* Synthesis section below quadrant grid */
.quadrant-synthesis {
  background: linear-gradient(to bottom, #2a3428 0%, #1e2820 100%);
  color: rgba(247, 244, 236, 0.92);
  padding: clamp(2rem, 5vw, 3.5rem) var(--container-padding);
  text-align: center;
}

.quadrant-synthesis .synthesis-inner {
  max-width: 800px;
  margin: 0 auto;
}

.quadrant-synthesis p {
  font-family: var(--font-gentium);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: rgba(247, 244, 236, 0.85);
}

.quadrant-synthesis p + p {
  margin-top: 1.25rem;
}

.quadrant-synthesis .synthesis-phrase {
  font-family: var(--font-palatino);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: rgba(168, 195, 156, 0.95);
  margin: 2rem 0;
  padding: 1.5rem 0;
  position: relative;
}

/* Tapered line above quote */
.quadrant-synthesis .synthesis-phrase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(168, 195, 156, 0.7) 25%,
    rgba(168, 195, 156, 0.7) 75%,
    transparent 100%
  );
}

/* Tapered line below quote */
.quadrant-synthesis .synthesis-phrase::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(168, 195, 156, 0.7) 25%,
    rgba(168, 195, 156, 0.7) 75%,
    transparent 100%
  );
}

.quadrant-synthesis .synthesis-close {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(247, 244, 236, 0.9);
  margin-top: 1.5rem;
}

/* Mobile: stack vertically */
@media (max-width: 880px) {
  .quadrant-section {
    min-height: auto;
  }

  .quadrant-headers {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .quadrant-header:last-child {
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .quadrant-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .quadrant-grid::before {
    display: none;
  }

  .quadrant-ground {
    display: none;
  }

  .quadrant-cell--roots-surface { order: 1; }
  .quadrant-cell--roots-deep { order: 2; }
  .quadrant-cell--reason-surface { order: 3; }
  .quadrant-cell--reason-deep { order: 4; }

  .quadrant-cell--roots-surface::before,
  .quadrant-cell--reason-surface::before {
    content: attr(data-column);
    display: block;
    font-family: var(--font-palatino);
    font-size: 1.5rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
    text-align: center;
  }

  .quadrant-cell--reason-surface::before {
    color: var(--sage-green);
  }
}


/* ========== FAQ ACCORDION ========== */

.faq-section {
  background: linear-gradient(
    to bottom,
    rgba(247, 244, 236, 0.3),
    rgba(247, 244, 236, 0.6)
  );
}

.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-accordion .faq-item {
  border: none;
  border-bottom: 1px solid rgba(83, 117, 96, 0.15);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.faq-accordion .faq-item:first-child {
  border-top: 1px solid rgba(83, 117, 96, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-palatino);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  color: var(--sage-green);
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--sage-green);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal line */
.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertical line */
.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

/* When open, rotate the plus to become minus */
.faq-item[open] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 0.5rem 1.5rem 0.5rem;
  animation: faq-expand 0.3s ease;
}

@keyframes faq-expand {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  font-family: var(--font-gentium);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--body);
  margin: 0;
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

/* CTA below accordion */
.faq-section .faq-cta {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--body);
}

.faq-section .faq-cta a {
  color: var(--sage-green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.faq-section .faq-cta a:hover {
  color: var(--sage-dark);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .faq-question {
    font-size: 1rem;
    padding: 1rem 0.25rem;
  }
  
  .faq-answer {
    padding: 0 0.25rem 1.25rem 0.25rem;
  }
  
  .faq-icon {
    width: 16px;
    height: 16px;
  }
}
