/*
Theme Name: Sage Stage
Theme URI: https://sagestage.org
Description: A WordPress theme for the Sage Stage leadership platform, combining editorial elegance with interactive elements.
Version: 1.0.0
Author: Sage Stage
Author URI: https://sagestage.org
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sagestage
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color-scheme: light only;
  --primary: #8b6914;
  --bg: #f5f0e8;
  --dark: #1a2332;
  --text: #2c2c2c;
  --text-muted: rgba(44, 44, 44, 0.6);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;

  /* Concept 6 variables */
  --c6-gold: #8b6914;
  --c6-bg: #f5f0e8;
  --c6-dark: #1a2332;
  --c6-text: #2c2c2c;
  --c6-text-muted: rgba(44, 44, 44, 0.6);
  --c6-font-display: 'Playfair Display', Georgia, serif;
  --c6-font-body: 'Cormorant Garamond', Georgia, serif;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.7;
}

#main-content {
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  z-index: 2;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea {
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.3;
}

h1 { font-size: clamp(2.75rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 1.75rem); }

p, li, blockquote {
  font-size: 1.25rem;
  line-height: 1.8;
}

/* ===== LAYOUT UTILITIES ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-narrow {
  max-width: 800px;
}

.section-title {
  font-style: italic;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

.section-intro {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition-delay: var(--delay, 0s);
}

.reveal.revealed,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.no-animate .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--bg);
}

.btn-large {
  padding: 1.125rem 2.75rem;
  font-size: 1rem;
}

/* ===== PAPER TEXTURE ===== */
.c6-paper-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

/* ===== NAVIGATION ===== */
.c6-nav {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(139, 105, 20, 0.13);
  background: var(--c6-bg);
}

.c6-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c6-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.c6-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(40%) sepia(60%) saturate(600%) hue-rotate(25deg) brightness(90%);
}

.c6-logo-text {
  font-size: 0.9375rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c6-gold);
  font-family: var(--c6-font-body);
}

.c6-nav-links {
  display: flex;
  gap: 2.25rem;
  font-size: 0.9375rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--c6-font-body);
  list-style: none;
  margin: 0;
  padding: 0;
}

.c6-nav-links li {
  list-style: none;
}

.c6-nav-links a {
  color: var(--c6-text);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.c6-nav-links a:hover {
  opacity: 1;
}

/* Mobile hamburger menu */
.c6-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--c6-gold);
}

.c6-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.c6-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--c6-bg);
  border-bottom: 1px solid rgba(139, 105, 20, 0.13);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--c6-font-body);
  z-index: 100;
}

.c6-mobile-menu.is-open {
  display: block;
}

.c6-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c6-mobile-menu li {
  list-style: none;
}

.c6-mobile-menu a {
  color: var(--c6-text);
  opacity: 0.7;
  transition: opacity 0.3s;
  padding: 0.5rem 0;
  display: block;
}

.c6-mobile-menu a:hover {
  opacity: 1;
}

/* ===== LABELS ===== */
.c6-label {
  font-size: 0.9375rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c6-gold);
  margin-bottom: 1.25rem;
  font-family: var(--c6-font-body);
}

/* ===== HERO ===== */
.c6-hero {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 3.75rem;
  position: relative;
}

.c6-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  padding: 0;
  text-align: left;
  align-items: stretch;
}

.c6-hero-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 5rem;
}

.c6-hero-split .c6-hero-content {
  max-width: 540px;
}

.c6-hero-split .c6-hero-line {
  margin: 2.5rem 0;
}

.c6-hero-split .c6-hero-btns {
  justify-content: flex-start;
}

.c6-hero-split .c6-hero-circles {
  left: 30%;
  top: 50%;
}

.c6-hero-image {
  position: relative;
  overflow: hidden;
}

.c6-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c6-hero-subpage {
  min-height: 50vh;
  padding: 4rem 3.75rem;
}

.c6-hero-forum {
  min-height: 70vh;
}

.c6-hero-forum .c6-hero-text {
  padding: 3rem 4rem 3rem 5rem;
}

/* Overlay hero for sub-pages */
.c6-hero-overlay {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 3.75rem;
  position: relative;
  background-size: cover;
  background-position: center;
}

.c6-hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.6);
  z-index: 1;
}

.c6-hero-overlay .c6-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.c6-hero-overlay .c6-label {
  color: var(--c6-gold);
}

.c6-hero-overlay .c6-hero-title {
  color: #fff;
}

.c6-hero-overlay .c6-hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Minimal hero for sub-pages */
.c6-hero-minimal {
  min-height: auto;
  padding: 5rem 3.75rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c6-hero-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.c6-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--c6-gold);
}

.c6-circle-1 { width: 340px; height: 340px; opacity: 0.12; }
.c6-circle-2 { width: 460px; height: 460px; opacity: 0.09; }
.c6-circle-3 { width: 580px; height: 580px; opacity: 0.06; }

.c6-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.c6-hero .c6-label {
  margin-bottom: 2.5rem;
}

.c6-hero-title {
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  font-weight: 400;
  line-height: 1.25;
  font-style: italic;
  font-family: var(--c6-font-display);
  margin: 0;
}

.c6-hero-line {
  width: 60px;
  height: 1px;
  background: var(--c6-gold);
  margin: 3rem auto;
}

.c6-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--c6-text-muted);
  font-family: var(--c6-font-body);
  max-width: 560px;
  margin: 0 auto;
}

.c6-hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}

/* ===== BUTTONS (C6) ===== */
.c6-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid rgba(139, 105, 20, 0.27);
  color: var(--c6-gold);
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--c6-font-body);
  cursor: pointer;
  transition: all 0.4s;
}

.c6-btn:hover {
  background: var(--c6-gold);
  color: var(--c6-bg);
}

.c6-btn-filled {
  background: var(--c6-gold);
  color: var(--c6-bg);
  border-color: var(--c6-gold);
}

.c6-btn-filled:hover {
  background: #7a5c12;
}

.c6-btn-light {
  background: var(--c6-gold);
  color: var(--c6-dark);
  border-color: var(--c6-gold);
}

/* ===== BOOK BRIDGE ===== */
.c6-book-bridge {
  background: rgba(26, 35, 50, 0.03);
  border-top: 1px solid rgba(139, 105, 20, 0.13);
  border-bottom: 1px solid rgba(139, 105, 20, 0.13);
}

.c6-book-bridge-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 3.75rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}

.c6-book-visual img {
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.c6-book-content .c6-section-title {
  margin-bottom: 1rem;
}

.c6-book-content .c6-section-text {
  margin-bottom: 1.25rem;
}

.c6-book-bridge-message {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--c6-gold);
  font-family: var(--c6-font-display);
  margin-bottom: 2rem;
}

.c6-book-ctas {
  display: flex;
  gap: 1rem;
}

/* ===== SECTIONS ===== */
.c6-section-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 5.5rem 3.75rem;
}

.c6-section-title {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  font-family: var(--c6-font-display);
  margin-bottom: 1.5rem;
}

.c6-section-text {
  font-size: 1.1875rem;
  line-height: 2;
  color: var(--c6-text-muted);
  font-family: var(--c6-font-body);
  margin-bottom: 2.75rem;
}

/* ===== FRAMEWORK STAGES ===== */
.c6-framework {
  border-top: 1px solid rgba(139, 105, 20, 0.13);
}

.c6-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.c6-stage {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 4px;
  transition: all 0.4s;
}

.c6-stage-faded {
  opacity: 0.4;
}

.c6-stage-active {
  background: rgba(26, 35, 50, 0.05);
  border: 1px solid rgba(139, 105, 20, 0.2);
}

.c6-stage-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid var(--c6-gold);
  margin: 0 auto 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--c6-gold);
  font-family: var(--c6-font-display);
}

.c6-stage-name {
  font-size: 1.3125rem;
  font-weight: 400;
  margin-bottom: 0.3125rem;
  font-family: var(--c6-font-display);
}

.c6-stage-desc {
  font-size: 0.75rem;
  color: var(--c6-text-muted);
  font-family: var(--c6-font-body);
}

.c6-stage-note {
  font-size: 0.625rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.27);
  font-family: var(--c6-font-body);
  margin-top: 0.3125rem;
}

.c6-stage-active .c6-stage-note {
  color: var(--c6-gold);
}

/* ===== INTERACTIVE HIERARCHY ===== */
.c6-hierarchy {
  background: rgba(139, 105, 20, 0.03);
  border-top: 1px solid rgba(139, 105, 20, 0.13);
  border-bottom: 1px solid rgba(139, 105, 20, 0.13);
}

.c6-levels {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c6-level {
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.05), rgba(139, 105, 20, 0.02));
  border: 1px solid rgba(139, 105, 20, 0.1);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s;
  overflow: hidden;
}

.c6-level:hover {
  border-color: rgba(139, 105, 20, 0.3);
}

.c6-level-open {
  border-color: var(--c6-gold);
  background: rgba(139, 105, 20, 0.08);
}

.c6-level-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
}

.c6-level-num {
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  color: var(--c6-gold);
  min-width: 20px;
  font-family: var(--c6-font-display);
}

.c6-level-name {
  font-size: 1.0625rem;
  color: var(--c6-text);
  flex: 1;
  font-family: var(--c6-font-body);
}

.c6-level-toggle {
  font-size: 1rem;
  color: var(--c6-gold);
  transition: transform 0.3s;
}

.c6-level-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s;
  opacity: 0;
}

.c6-level-open .c6-level-content {
  max-height: 150px;
  opacity: 1;
}

.c6-level-content p {
  padding: 0 1.5rem 0.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c6-text-muted);
  font-family: var(--c6-font-body);
}

.c6-level-desc {
  margin-bottom: 0.25rem;
}

.c6-level-mirror {
  color: var(--c6-gold);
  font-size: 0.9375rem;
  padding-bottom: 1rem !important;
}

.c6-hierarchy-cta {
  margin-top: 2.5rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 105, 20, 0.13);
}

.c6-hierarchy-cta p {
  font-size: 1.125rem;
  color: var(--c6-text-muted);
  font-family: var(--c6-font-body);
  margin-bottom: 1.25rem;
}

/* ===== SAGES SECTION ===== */
.c6-sages {
  border-top: 1px solid rgba(139, 105, 20, 0.13);
}

.c6-sage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.c6-sage-card {
  border-top: 1px solid rgba(139, 105, 20, 0.27);
  padding-top: 1.125rem;
  transition: transform 0.3s;
}

.c6-sage-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 2px solid rgba(139, 105, 20, 0.2);
}

.c6-sage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c6-sage-name {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.1875rem;
  font-family: var(--c6-font-display);
}

.c6-sage-title {
  font-size: 0.6875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c6-gold);
  margin-bottom: 0.75rem;
  font-family: var(--c6-font-body);
}

.c6-sage-quote {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--c6-text-muted);
  line-height: 1.8;
  font-family: var(--c6-font-body);
}

/* ===== CTA SECTION ===== */
.c6-cta {
  background: var(--c6-dark);
  padding: 6rem 3.75rem;
  text-align: center;
}

.c6-cta .c6-label {
  margin-bottom: 1.5rem;
}

.c6-cta-title {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c6-bg);
  max-width: 600px;
  margin: 0 auto 1.125rem;
  line-height: 1.3;
  font-family: var(--c6-font-display);
}

.c6-cta-text {
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.6);
  font-family: var(--c6-font-body);
  max-width: 480px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

/* Generic CTA sections */
.cta-section {
  padding: 5rem 2.5rem;
  text-align: center;
}

.cta-section-dark {
  background: var(--dark);
  color: #fff;
}

.cta-title {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.375rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.c6-footer {
  background: var(--c6-bg);
  border-top: 1px solid rgba(139, 105, 20, 0.13);
}

.c6-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 3.75rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--c6-text-muted);
  font-family: var(--c6-font-body);
}

/* ===== FORUM PAGE ===== */
.first-session-banner {
  background: var(--primary);
  color: #fff;
  padding: 1.5rem 2.5rem;
}

.banner-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-icon svg {
  width: 32px;
  height: 32px;
}

.banner-text h3 {
  font-size: 0.6875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.session-location {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

.session-date {
  font-size: 0.875rem;
  opacity: 0.9;
}

.first-session-banner .btn-secondary {
  border-color: #fff;
  color: #fff;
}

.first-session-banner .btn-secondary:hover {
  background: #fff;
  color: var(--primary);
}

.forum-intro {
  padding: 4rem 2.5rem;
  background: var(--bg);
}

.forum-bridge-message {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.intro-text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.intro-text:last-child {
  margin-bottom: 0;
}

/* Program Details */
.program-details {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.program-item {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.program-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.program-icon svg {
  width: 24px;
  height: 24px;
}

.program-item-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.program-item-desc {
  font-size: 1.1875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Venue */
.venue-section {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.venue-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.venue-image {
  flex: 1;
}

.venue-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.venue-text {
  flex: 1;
}

.venue-title {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.venue-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Qualification */
.qualification-section {
  padding: 5rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.qualification-list {
  list-style: none;
  max-width: 600px;
  margin: 2rem auto;
}

.qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.qualification-item:last-child {
  border-bottom: none;
}

.qualification-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.qualification-closing {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 2rem;
}

/* Pricing */
.pricing-section {
  padding: 5rem 2.5rem;
  background: var(--dark);
  color: #fff;
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.pricing-amount {
  margin-bottom: 2rem;
}

.price {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--primary);
}

.price-note {
  display: block;
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.pricing-includes h3 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.pricing-list {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list svg {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-cta {
  margin-top: 2rem;
}

.pricing-note {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* ===== BOOK PAGE ===== */
.key-points-section {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.key-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.key-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.key-point svg {
  color: var(--primary);
  flex-shrink: 0;
}

.five-levels-section {
  padding: 5rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.levels-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 3rem auto 0;
}

.level-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.level-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  flex-shrink: 0;
}

.level-title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.level-description {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.authors-preview-section {
  padding: 5rem 2.5rem;
  background: var(--bg);
  text-align: center;
}

.authors-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem 0;
}

.author-preview {
  text-align: center;
}

.author-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.author-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.author-short-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.reviews-section {
  padding: 5rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  padding: 2rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.review-author strong {
  display: block;
  margin-bottom: 0.25rem;
}

.review-author span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.order-section {
  padding: 5rem 2.5rem;
  background: var(--dark);
  color: #fff;
}

.order-card {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.order-image {
  flex-shrink: 0;
}

.order-image img {
  width: 280px;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.order-content {
  flex: 1;
}

.order-title {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.order-description {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.order-buttons {
  margin-bottom: 2rem;
}

.bulk-order {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bulk-order h3 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.bulk-order p {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.bulk-order-link {
  color: var(--primary);
}

/* Book-Forum Bridge */
.forum-bridge-section {
  padding: 5rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
  text-align: center;
}

.forum-bridge-title {
  font-style: italic;
  color: var(--primary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.forum-bridge-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ===== ABOUT PAGE ===== */
.story-section {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.story-content p {
  font-size: 1.375rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.story-signature {
  text-align: right;
  font-style: italic;
  color: var(--primary);
  margin-top: 2rem;
}

.philosophy-section {
  padding: 5rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.philosophy-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.philosophy-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.philosophy-icon svg {
  width: 40px;
  height: 40px;
}

.philosophy-title {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.philosophy-content {
  font-size: 1.375rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.mission-section {
  padding: 5rem 2.5rem;
  background: var(--bg);
  text-align: center;
}

.mission-statement {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
}

.together-section {
  padding: 5rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.together-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.together-image {
  flex: 1;
}

.together-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.together-text {
  flex: 1;
}

.together-text h2 {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.together-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== TEAM PAGE ===== */
.author-profile {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.author-profile.profile-reverse .profile-content {
  flex-direction: row-reverse;
}

.profile-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.profile-image {
  flex-shrink: 0;
}

.profile-image img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.profile-text {
  flex: 1;
}

.profile-name {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.profile-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.profile-credentials {
  list-style: none;
  margin-bottom: 2rem;
}

.profile-credentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1.1875rem;
  color: var(--text-muted);
}

.profile-credentials svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.profile-bio p {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.profile-impact {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

.impact-headline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: normal;
}

.impact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.impact-point {
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.impact-metric {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.2;
}

.impact-context {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.partnership-section {
  padding: 5rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.partnership-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.partnership-image {
  flex: 1;
}

.partnership-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.partnership-text {
  flex: 1;
}

.partnership-text h2 {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.partnership-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ===== STORIES PAGE ===== */
.stories-intro {
  padding: 3rem 2.5rem;
  background: var(--bg);
  text-align: center;
}

.stories-list {
  padding: 2rem 0;
  background: var(--bg);
}

.sage-story {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  padding: 4rem 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sage-story:last-child {
  border-bottom: none;
}

.sage-story.story-reverse {
  flex-direction: row-reverse;
}

.story-image {
  flex-shrink: 0;
}

.story-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
}

.story-content {
  flex: 1;
}

.story-quote {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.story-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.story-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.story-bio p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.your-story-section {
  padding: 5rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.your-story-card {
  text-align: center;
  padding: 3rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.your-story-card h2 {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.your-story-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== CONTACT PAGE ===== */
.contact-form-section {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro p {
  font-size: 1.375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.required {
  color: var(--primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.125rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-size: 1.25rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
  background: #fff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-note svg {
  color: var(--primary);
  flex-shrink: 0;
}

.form-submit {
  width: 100%;
}

.form-success {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.success-icon svg {
  width: 60px;
  height: 60px;
}

.form-success h3 {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 5rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.faq-list {
  max-width: 600px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  cursor: pointer;
}

.faq-question svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SAGE CARDS ===== */
.sage-grid-section {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.sage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.sage-card {
  padding: 1.5rem;
  border-top: 2px solid var(--primary);
  background: #fff;
}

.sage-image {
  margin-bottom: 1rem;
}

.sage-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.sage-quote {
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sage-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.sage-title {
  font-size: 0.6875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}

/* ===== WORDPRESS ADMIN BAR FIX ===== */
.admin-bar .c6-nav {
  top: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section-container {
    padding: 0 30px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .c6-nav-inner {
    padding: 1.25rem 1.5rem;
  }

  .c6-nav-links {
    display: none;
  }

  .c6-mobile-toggle {
    display: block;
  }

  .c6-logo-text {
    display: none;
  }

  .c6-hero {
    padding: 0 1.5rem;
    min-height: 75vh;
  }

  .c6-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .c6-hero-text {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .c6-hero-split .c6-hero-content {
    max-width: 100%;
  }

  .c6-hero-split .c6-hero-line {
    margin: 2rem auto;
  }

  .c6-hero-split .c6-hero-btns {
    justify-content: center;
    flex-direction: column;
  }

  .c6-hero-split .c6-hero-circles {
    left: 50%;
  }

  .c6-hero-image {
    height: 300px;
    order: -1;
  }

  .c6-hero-overlay {
    padding: 3rem 1.5rem;
  }

  .c6-hero-minimal {
    padding: 3rem 1.5rem;
  }

  .c6-circle-1 { width: 200px; height: 200px; }
  .c6-circle-2 { width: 280px; height: 280px; }
  .c6-circle-3 { width: 360px; height: 360px; }

  .c6-hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .c6-book-bridge-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
    text-align: center;
  }

  .c6-book-visual {
    max-width: 200px;
    margin: 0 auto;
  }

  .c6-book-ctas {
    justify-content: center;
    flex-direction: column;
  }

  .c6-section-inner,
  .c6-cta {
    padding: 2.75rem 1.5rem;
  }

  .c6-stages {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .c6-sage-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .c6-footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 0 20px;
  }

  .venue-content,
  .together-content,
  .order-card,
  .profile-content,
  .partnership-content {
    flex-direction: column;
  }

  .impact-points {
    flex-direction: column;
    gap: 1rem;
  }

  .impact-point {
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
  }

  .impact-metric {
    font-size: 1.5rem;
    min-width: 70px;
  }

  .sage-story,
  .sage-story.story-reverse {
    flex-direction: column;
  }

  .profile-image img {
    width: 150px;
    height: auto;
  }

  .author-profile.profile-reverse .profile-content {
    flex-direction: column;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .sage-grid {
    grid-template-columns: 1fr;
  }

  .authors-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0 16px;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.6875rem;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .story-image img {
    width: 180px;
    height: 180px;
  }
}
