/* ═══════════════════════════════════════════════════════════════════
   CONVERSATIONS IN THE HOUSE OF LIFE
   Giovanni Cenna — Astrologer
   Design: Elegant minimalist, Egyptian-classical
   Palette: Dark near-black + antique gold + warm cream
   Fonts: Cinzel (display) + EB Garamond (body)
════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ── Design Tokens ────────────────────────────────────────────────── */
:root {
  --dark:        #1C1A15;
  --dark-mid:    #2A2820;
  --gold:        #B8965A;
  --gold-light:  #D4B07A;
  --gold-pale:   #EDD89A;
  --cream:       #F5F0E8;
  --stone:       #E8E0D0;
  --stone-mid:   #DDD4C0;
  --text:        #1C1A15;
  --text-mid:    #4A4235;
  --text-muted:  #8A7D6A;
  --white:       #FFFFFF;

  --font-display: 'Cinzel', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;

  --max-w: 1100px;
  --max-prose: 700px;
  --nav-h: 64px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease-out);
}

/* ── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Navigation ───────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  border-bottom: 1px solid rgba(184,150,90,0.25);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold-light);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  padding: 2rem;
  border-top: 1px solid rgba(184,150,90,0.2);
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(184,150,90,0.12);
}

/* ── Layout Helpers ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.prose { max-width: var(--max-prose); }

/* ── Gold Rule ────────────────────────────────────────────────────── */
.gold-rule {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 0;
  opacity: 0.6;
}
.gold-rule--double {
  border-top: 2px solid transparent;
  background: linear-gradient(var(--cream), var(--cream)) padding-box,
              linear-gradient(var(--gold), var(--gold)) border-box;
}

/* ── Section Spacing ──────────────────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--dark {
  background: var(--dark);
  color: var(--cream);
}
.section--stone { background: var(--stone); }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem clamp(1.25rem, 5vw, 3rem);
  overflow: hidden;
}
.hero-border {
  position: absolute;
  inset: clamp(1rem, 3vw, 1.75rem);
  border: 1px solid rgba(184,150,90,0.35);
  pointer-events: none;
}
.hero-border::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184,150,90,0.15);
}
.hero-eye {
  margin-bottom: 1.5rem;
}
.hero-practice {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1.2vw, 0.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.hero-rule {
  width: clamp(120px, 20vw, 200px);
  border: none;
  border-top: 1px solid rgba(184,150,90,0.5);
  margin: 0.5rem auto 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}
.hero-byline {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-top: 2.5rem;
}
/* Star ornament */
.star-ornament {
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  margin: 0 0.5rem;
  vertical-align: middle;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn--filled {
  background: var(--dark);
  color: var(--gold);
}
.btn--filled:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold:hover {
  background: var(--gold-pale);
}

/* ── Section Labels ───────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section--dark .section-title { color: var(--cream); }
.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 650px;
  line-height: 1.75;
}
.section--dark .section-intro { color: rgba(245,240,232,0.75); }

/* ── Pull Quote ───────────────────────────────────────────────────── */
.pull-quote {
  background: var(--stone);
  border-top: 1px solid rgba(184,150,90,0.5);
  border-bottom: 1px solid rgba(184,150,90,0.5);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  text-align: center;
}
.pull-quote blockquote {
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.pull-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Two-column grid ──────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* ── Column Divider ───────────────────────────────────────────────── */
.col-block { padding-top: 0.25rem; }
.col-block-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184,150,90,0.4);
}
.section--dark .col-block-title { color: var(--gold-light); border-color: rgba(184,150,90,0.3); }

/* ── Bullet list ──────────────────────────────────────────────────── */
.star-list { list-style: none; padding: 0; }
.star-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.star-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.star-list strong { color: var(--dark); font-weight: 600; }

/* ── Numbered Step ────────────────────────────────────────────────── */
.step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.step-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Detail Table ─────────────────────────────────────────────────── */
.detail-list { list-style: none; padding: 0; }
.detail-list li {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--stone-mid);
  font-size: 0.95rem;
}
.detail-list li:last-child { border-bottom: none; }
.detail-label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}
.detail-value { color: var(--text-mid); }

/* ── Referral Box ─────────────────────────────────────────────────── */
.referral-box {
  background: var(--stone);
  border-top: 1px solid rgba(184,150,90,0.5);
  border-bottom: 1px solid rgba(184,150,90,0.5);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.referral-box h4 {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.referral-box p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Email CTA ────────────────────────────────────────────────────── */
.email-cta {
  display: block;
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: center;
  margin: 1.25rem 0 0.5rem;
  transition: background var(--transition);
}
.email-cta:hover { background: #2f2c22; }

/* ── Why This Works banner ────────────────────────────────────────── */
.why-banner {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.why-banner .section-label { color: var(--gold); }
.why-banner-divider {
  width: 120px;
  border: none;
  border-top: 1px solid rgba(184,150,90,0.35);
  margin: 0.5rem auto 3rem;
}
.why-banner .three-col { text-align: left; }
.why-banner .col-block-title { color: var(--gold-light); border-color: rgba(184,150,90,0.25); }
.why-banner p { font-size: 0.97rem; color: rgba(245,240,232,0.72); line-height: 1.7; }
.why-col-sep {
  border: none;
  border-left: 1px solid rgba(184,150,90,0.18);
  margin: 0;
}

/* ── Pillar cards (home) ──────────────────────────────────────────── */
.pillar-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-top: 1px solid rgba(184,150,90,0.35);
}
.pillar-icon {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: block;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.pillar-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.65; }

/* ── Offering Cards ───────────────────────────────────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--stone-mid);
}
.offering-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
}
.offering-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1rem 0 0.25rem;
}
.offering-price-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.offering-card h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.offering-card p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.5rem; }
.offering-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,90,0.5);
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
}

/* ── Page Hero (interior pages) ───────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(184,150,90,0.2);
  pointer-events: none;
}
.page-hero .hero-practice { margin-bottom: 1.25rem; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.page-hero-sub {
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--gold-light);
  margin-top: 1rem;
}

/* ── Testimonials ─────────────────────────────────────────────────── */
.testimonial {
  padding: 2rem;
  border-top: 1px solid rgba(184,150,90,0.35);
}
.testimonial blockquote {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Footer ───────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 3rem clamp(1.25rem, 5vw, 3rem) 2rem;
  border-top: 1px solid rgba(184,150,90,0.25);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.5);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.footer-links a {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact {
  text-align: right;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.8;
}
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184,150,90,0.15);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.28);
  letter-spacing: 0.06em;
}

/* ── Scroll fade-in ───────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── SVG Eye of Ra ────────────────────────────────────────────────── */
.eye-svg { display: block; margin: 0 auto; }

/* ── Tutoring specific ────────────────────────────────────────────── */
.price-badge {
  background: var(--stone);
  border-top: 1px solid rgba(184,150,90,0.5);
  border-bottom: 1px solid rgba(184,150,90,0.5);
  padding: 1.5rem 2rem;
  text-align: center;
}
.price-badge .big-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.price-badge .price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── Inline divider ───────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--stone-mid);
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-contact { text-align: left; }
  .footer-links { align-items: flex-start; }

  .page-hero::after { inset: 0.75rem; }
  .hero-border { inset: 0.75rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   MEETUP / ECOSYSTEM UPDATE — NEW COMPONENTS
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero: multi-CTA row ─────────────────────────────────────────── */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}

/* ── Hub thesis line ─────────────────────────────────────────────── */
.hub-thesis {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--dark);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

/* ── Lane grid (three-pathway cards) ────────────────────────────── */
.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 820px) {
  .lane-grid { grid-template-columns: 1fr; }
}

.lane-card {
  background: var(--cream);
  border: 1px solid var(--stone-mid);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.lane-card--primary {
  border-top-color: var(--gold);
  background: var(--dark);
}
.lane-card--primary h3,
.lane-card--primary p,
.lane-card--primary .lane-detail {
  color: var(--cream) !important;
}
.lane-card--primary .lane-tag { background: rgba(184,150,90,0.18); color: var(--gold-light); }

.lane-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.lane-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--stone);
  color: var(--text-muted);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.lane-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  color: var(--dark);
  line-height: 1.3;
}
.lane-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}
.lane-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* ── Meetup panel ────────────────────────────────────────────────── */
.meetup-panel {
  background: var(--dark);
  border: 1px solid rgba(184,150,90,0.3);
  padding: 2rem 1.75rem;
}
.meetup-panel-header {
  margin-bottom: 0.75rem;
}
.meetup-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(184,150,90,0.15);
  color: var(--gold);
  border: 1px solid rgba(184,150,90,0.35);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.meetup-panel-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.35;
  margin-top: 0.75rem;
}

/* ── Meetup button ───────────────────────────────────────────────── */
.btn--meetup {
  background: transparent;
  border: 1px solid rgba(184,150,90,0.5);
  color: var(--gold);
  padding: 0.65rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn--meetup:hover {
  background: rgba(184,150,90,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── Boundary cards (what this is not) ──────────────────────────── */
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .four-col { grid-template-columns: 1fr; }
}

.boundary-card {
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--stone-mid);
  background: var(--cream);
}
.boundary-x {
  display: block;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  opacity: 0.5;
}
.boundary-card h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.boundary-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.boundary-positive {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Final CTA path grid ─────────────────────────────────────────── */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 820px) {
  .cta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cta-grid { grid-template-columns: 1fr; }
}

.cta-path-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,90,0.2);
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s, border-color 0.2s;
}
.cta-path-card:hover {
  background: rgba(184,150,90,0.08);
  border-color: rgba(184,150,90,0.45);
}
.cta-path-icon {
  color: var(--gold);
  font-size: 1rem;
}
.cta-path-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  line-height: 1.3;
}
.cta-path-desc {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.5;
  font-style: italic;
}

/* ── Module badge (Foundations page hero) ────────────────────────── */
.module-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(184,150,90,0.4);
  color: var(--gold-light);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.25rem;
}

/* ── Info panel (Foundations at-a-glance) ────────────────────────── */
.info-panel {
  background: var(--stone);
  border: 1px solid var(--stone-mid);
  padding: 1.75rem 1.5rem;
}
.info-panel-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ── Pathway hint box ────────────────────────────────────────────── */
.pathway-hint {
  background: var(--stone);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.pathway-hint-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
}

/* ── Layer cards (Community ecology) ─────────────────────────────── */
.layer-card {
  background: var(--cream);
  border: 1px solid var(--stone-mid);
  padding: 2rem 1.75rem;
  text-align: center;
}
.layer-card--accent {
  background: var(--dark);
  border-color: rgba(184,150,90,0.3);
}
.layer-card--accent h3,
.layer-card--accent .layer-subtitle,
.layer-card--accent p { color: var(--cream) !important; }
.layer-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.layer-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.layer-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
  display: block;
}
.layer-card p {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ── Comparison table (Community page) ───────────────────────────── */
.comparison-table {
  border: 1px solid var(--stone-mid);
  overflow: hidden;
  margin-top: 2rem;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr;
  border-bottom: 1px solid var(--stone-mid);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row--header {
  background: var(--dark);
}
.comparison-row--header .comparison-cell {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.comparison-cell {
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-right: 1px solid var(--stone-mid);
  line-height: 1.5;
}
.comparison-cell:last-child { border-right: none; }
.comparison-cell--label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--stone);
}
.comparison-cell a {
  color: var(--gold);
  text-decoration: none;
}
.comparison-cell a:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-cell { border-right: none; border-bottom: 1px solid var(--stone-mid); }
  .comparison-row--header .comparison-cell:first-child { display: none; }
}

/* ── Solo track note (Consultations page) ────────────────────────── */
.solo-track-note {
  background: var(--stone);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.solo-track-note a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

/* ── Footer Meetup link ───────────────────────────────────────────── */
.footer-meetup-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.footer-meetup-link:hover { text-decoration: underline; }

/* ── Btn outline variant ─────────────────────────────────────────── */
.btn--outline {
  background: transparent;
  border: 1px solid rgba(245,240,232,0.3);
  color: var(--cream);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s;
}
.btn--outline:hover {
  background: rgba(245,240,232,0.07);
  border-color: rgba(245,240,232,0.5);
}

/* ── Section intro (used on three-ways section) ──────────────────── */
.section-intro {
  color: var(--text-mid);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 0.5rem;
  text-align: center;
  line-height: 1.7;
}
