:root {
  --bg: #faf7f2;
  --bg-warm: #f3ede4;
  --bg-deep: #2c2420;
  --fg: #2c2420;
  --fg-light: #6b5e55;
  --fg-muted: #9a8e85;
  --accent: #c4785a;
  --accent-light: #e8a98a;
  --accent-glow: rgba(196, 120, 90, 0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  --max-w: 1200px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 40%, var(--accent-glow), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

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

.hero-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: var(--space-md);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-light);
  max-width: 560px;
  line-height: 1.8;
}

.hero-accent {
  position: absolute;
  bottom: 15%;
  right: 8%;
  z-index: 0;
}

.accent-circle {
  width: 120px;
  height: 120px;
  border: 2px solid var(--accent-light);
  border-radius: 50%;
  opacity: 0.4;
}

.accent-line {
  width: 2px;
  height: 80px;
  background: var(--accent-light);
  margin-left: 59px;
  margin-top: -10px;
  opacity: 0.3;
}

/* ===== SECTION NUMBERS ===== */
.section-number {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

/* ===== PILLARS ===== */
.pillars {
  padding: var(--space-2xl) var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
}

.pillars-header {
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.pillars-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.pillars-intro {
  font-size: 1.05rem;
  color: var(--fg-light);
  line-height: 1.8;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.pillar-card {
  background: var(--bg-warm);
  border-radius: 16px;
  padding: var(--space-lg) var(--space-md);
  position: relative;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
}

.pillar-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-light);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.pillar-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--fg);
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.8;
}

/* ===== PROGRAMS ===== */
.programs {
  padding: var(--space-2xl) var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
}

.programs-header {
  margin-bottom: var(--space-lg);
}

.programs-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.program-card {
  border-radius: 16px;
  padding: var(--space-lg) var(--space-md);
}

.program-compass {
  background: var(--bg-deep);
  color: var(--bg);
}

.program-compass .program-label,
.program-compass .program-duration {
  color: var(--accent-light);
}

.program-compass p {
  color: rgba(250, 247, 242, 0.8);
}

.program-compass li {
  color: rgba(250, 247, 242, 0.7);
}

.program-clarity {
  background: var(--bg-warm);
  border: 2px solid rgba(196, 120, 90, 0.2);
}

.program-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.program-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.program-duration {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.program-card > p {
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.program-includes {
  list-style: none;
  padding: 0;
}

.program-includes li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.program-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

.program-compass .program-includes li::before {
  background: var(--accent-light);
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-warm);
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: var(--space-md);
  padding: 0;
  border: none;
}

.philosophy p {
  font-size: 1.05rem;
  color: var(--fg-light);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--space-2xl) var(--space-md);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.closing-contact {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--accent) !important;
  font-size: 1.1rem !important;
  margin-top: var(--space-md) !important;
  letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(44, 36, 32, 0.1);
}

.footer-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-bg-shape {
    width: 80vw;
    height: 80vw;
    top: -10%;
    right: -20%;
  }

  .hero-accent {
    display: none;
  }

  .pillars {
    padding: var(--space-xl) var(--space-sm);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .programs {
    padding: var(--space-xl) var(--space-sm);
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .philosophy {
    padding: var(--space-xl) var(--space-sm);
  }

  .closing {
    padding: var(--space-xl) var(--space-sm);
  }

  .footer-content {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .pillar-card {
    padding: var(--space-md) var(--space-sm);
  }

  .program-card {
    padding: var(--space-md) var(--space-sm);
  }
}