/* ============================================================
   Prosperous Barber League — SelfSyncOS Theme
   ============================================================ */

:root {
  --green-deep: #0B2E1E;
  --green-mid: #1B5E42;
  --green-light: #2A7A58;
  --green-pale: #EBF4F0;
  --gold: #C9A84C;
  --gold-light: #E8CC7A;
  --cream: #FAF6ED;
  --cream-dark: #EDE5D4;
  --charcoal: #1A1A1A;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  padding: 22px 48px;
  background: var(--cream);
  border-bottom: 1px solid rgba(11,46,30,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--green-deep);
}
.nav-brand-powered {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.nav-brand-powered strong {
  color: var(--green-mid);
  font-weight: 600;
}
.nav-cta {
  display: inline-block;
  background: var(--green-deep);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-mid); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 70% 60% at 90% 40%, rgba(11,46,30,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(201,168,76,0.08) 0%, transparent 60%);
  padding: 80px 48px 100px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-text { max-width: 680px; }
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 48px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.cta-primary {
  display: inline-block;
  background: var(--green-deep);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.cta-primary:hover { background: var(--green-mid); }
.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 15px 31px;
  text-decoration: none;
  border: 1.5px solid var(--green-deep);
  letter-spacing: 0.03em;
  transition: all 0.2s;
}
.cta-secondary:hover { background: var(--green-deep); color: var(--cream); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 64px;
  border: 1.5px solid var(--green-deep);
  width: fit-content;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(11,46,30,0.15);
}

.hero-testimonial {
  max-width: 540px;
}
.hero-testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 12px;
}
.hero-testimonial cite {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* ============================================================
   SHARED SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  padding: 0 48px;
  margin-bottom: 56px;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.section-label-light {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
  opacity: 0.7;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  line-height: 1.2;
}
.section-title-light {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  line-height: 1.2;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   WHY THIS EXISTS
   ============================================================ */
.why-exists {
  background: var(--cream);
  padding: 100px 48px;
}
.why-exists .section-header {
  margin-bottom: 48px;
}
.why-body {
  max-width: 760px;
  margin: 0 auto;
}
.why-body p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}
.why-body p em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15em;
  color: var(--green-deep);
}

/* ============================================================
   SELF SYNC SYSTEM
   ============================================================ */
.system {
  background: var(--green-deep);
  padding: 100px 48px;
}
.system .section-header {
  margin-bottom: 64px;
}
.system-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}
.pillar {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar-icon {
  color: var(--gold);
  margin-bottom: 28px;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
}
.pillar-desc {
  font-size: 0.88rem;
  color: rgba(250,246,237,0.55);
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   FOUNDER QUOTE
   ============================================================ */
.founder-quote {
  background: var(--cream-dark);
  padding: 100px 48px;
  text-align: center;
}
.fq-blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--green-deep);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 28px;
  font-weight: 400;
}
.fq-cite {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

/* ============================================================
   MEMBERSHIP TIERS
   ============================================================ */
.membership {
  background: var(--cream);
  padding: 100px 48px;
}
.membership .section-header { margin-bottom: 64px; }
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.tier {
  border: 1.5px solid rgba(11,46,30,0.15);
  padding: 48px;
  position: relative;
}
.tier--featured {
  border-color: var(--green-deep);
  background: var(--green-pale);
}
.tier-badge {
  position: absolute;
  top: -1px;
  right: 40px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.tier-header { margin-bottom: 28px; }
.tier-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--green-deep);
  line-height: 1.1;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.price-down {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--green-deep);
}
.price-down-label {
  font-size: 0.85rem;
  color: var(--text-light);
}
.price-sep {
  font-size: 0.85rem;
  color: var(--text-light);
}
.price-month {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--green-deep);
}
.price-month-label {
  font-size: 0.85rem;
  color: var(--text-light);
}
.tier-features {
  list-style: none;
  margin-bottom: 28px;
}
.tier-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(11,46,30,0.07);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
}
.tier-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}
.tier-for {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
}

/* ============================================================
   LAUNCH WINDOW
   ============================================================ */
.launch {
  background: var(--green-deep);
  padding: 100px 48px;
  text-align: center;
}
.launch .section-header { margin-bottom: 48px; }
.launch-body {
  max-width: 680px;
  margin: 0 auto 56px;
}
.launch-body p {
  font-size: 1rem;
  color: rgba(250,246,237,0.65);
  line-height: 1.8;
  font-weight: 300;
}
.launch-tiers {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.2);
}
.launch-tier {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.launch-tier:first-child {
  border-right: 1px solid rgba(201,168,76,0.2);
}
.launch-tier-name {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.launch-tier-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  background: var(--cream);
  padding: 100px 48px;
}
.founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}
.founder-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(11,46,30,0.15);
}
.founder-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.founder-content .section-label {
  text-align: left;
  margin-bottom: 12px;
}
.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.15;
}
.founder-title {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.founder-bio {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.founder-bio--last { margin-bottom: 36px; }
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.credential {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border: 1px solid rgba(11,46,30,0.1);
}

/* ============================================================
   CLOSING
   ============================================================ */
.closing {
  background: var(--green-deep);
  padding: 100px 48px;
  text-align: center;
}
.closing-manifesto {
  max-width: 780px;
  margin: 0 auto 64px;
}
.closing-manifesto .section-label-light {
  display: block;
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 1rem;
  color: rgba(250,246,237,0.65);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}
.closing-body strong {
  color: var(--cream);
  font-weight: 600;
}
.closing-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.closing-ctas .cta-primary {
  max-width: 540px;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #071A12;
  padding: 56px 48px;
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.footer-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-meta {
  font-size: 0.75rem;
  color: rgba(250,246,237,0.35);
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .system-pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .pillar:last-child { border-bottom: none; }
  .tiers { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-avatar { margin: 0 auto; }
  .founder-content .section-label { text-align: center; }
  .founder-name, .founder-title { text-align: center; }
}

@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .nav-cta { font-size: 0.75rem; padding: 10px 18px; }
  .hero { padding: 60px 24px 80px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-item { width: 100%; border-bottom: 1px solid rgba(11,46,30,0.1); padding: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-ctas { flex-direction: column; }
  .cta-primary, .cta-secondary { text-align: center; }
  .why-exists, .system, .founder-quote, .membership, .launch, .closing { padding: 72px 24px; }
  .founder { padding: 72px 24px; }
  .section-header { padding: 0 24px; }
  .tier { padding: 36px 28px; }
  .launch-tiers { flex-direction: column; }
  .launch-tier:first-child { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .footer { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .nav-brand-powered { display: none; }
  .hero-ctas { margin-bottom: 48px; }
}