:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE6D8;
  --fg: #1C1C1A;
  --muted: #6B6456;
  --accent: #C4703E;
  --accent-hover: #A85C30;
  --forest: #1B3D2F;
  --cream-dark: #D8CEBF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 28, 26, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  gap: 2.5rem;
}

.site-header nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding: 120px 4rem 6rem;
  overflow: hidden;
  background: var(--forest);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.04) 59px, rgba(255,255,255,0.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.04) 59px, rgba(255,255,255,0.04) 60px);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,61,47,0.3) 0%, transparent 60%, rgba(196,112,62,0.15) 100%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #F5F0E8;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.7);
  max-width: 500px;
  line-height: 1.7;
}

.hero-aside {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 0 0 4rem;
  border-left: 1px solid rgba(245,240,232,0.15);
  margin-left: 4rem;
}

.hero-stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-cue {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  padding-top: 4rem;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ── ABOUT ── */
.about {
  background: var(--bg);
  padding: 7rem 4rem;
}

.about-inner { max-width: 1100px; margin: 0 auto; }

.about-label { margin-bottom: 1.5rem; }

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  max-width: 680px;
  margin-bottom: 2rem;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  margin-bottom: 4rem;
}

.about-body p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--cream-dark);
  padding-top: 3rem;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PLANS ── */
.plans {
  background: var(--bg-alt);
  padding: 7rem 4rem;
}

.plans-inner { max-width: 1200px; margin: 0 auto; }

.plans-header {
  text-align: center;
  margin-bottom: 4rem;
}

.plans-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.plans-sub {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.plan-card {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(28,28,26,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(28,28,26,0.12);
}

.plan-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.plan-visual svg { width: 100%; height: 100%; }

.plan-info { padding: 1.5rem; }

.plan-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.plan-meta span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest);
  background: rgba(27,61,47,0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* ── PRINCIPLES ── */
.principles {
  background: var(--forest);
  padding: 7rem 4rem;
}

.principles-inner { max-width: 1100px; margin: 0 auto; }

.principles-header { margin-bottom: 4rem; }

.principles-header .section-label { color: var(--accent); }

.principles-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.2;
}

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

.principle-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.principle h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #F5F0E8;
  margin-bottom: 0.75rem;
}

.principle p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
}

/* ── PRICING ── */
.pricing {
  background: var(--bg);
  padding: 7rem 4rem;
}

.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.pricing-sub {
  color: var(--muted);
  font-size: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
}

.pricing-card--featured {
  background: var(--forest);
  border-color: var(--forest);
  transform: scale(1.04);
}

.pricing-card--featured .pricing-tier,
.pricing-card--featured .pricing-price,
.pricing-card--featured .pricing-features li { color: #F5F0E8; }

.pricing-card--featured .pricing-features li { opacity: 0.7; }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  font-family: var(--font-body);
}

.pricing-card--featured .pricing-price { color: #F5F0E8; }
.pricing-card--featured .pricing-price span { color: rgba(245,240,232,0.5); }

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  padding: 0.9rem;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  letter-spacing: 0.03em;
}

.pricing-cta--featured {
  background: var(--accent);
  color: #fff;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg-alt);
  padding: 8rem 4rem;
}

.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.closing-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 600px;
  margin: 0 auto;
  border-top: 1px solid var(--cream-dark);
  padding-top: 3rem;
}

.closing-stat { text-align: center; }

.closing-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.closing-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--forest);
  padding: 3rem 4rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #F5F0E8;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: #F5F0E8; }

.footer-legal {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 2rem 4rem; }
  .hero-aside { display: none; }
  .about-body { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .principles-grid { grid-template-columns: 1fr; }
  .closing-stats { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .about, .plans, .principles, .pricing, .closing { padding-left: 2rem; padding-right: 2rem; }
  .site-footer { padding: 2rem; }
}

@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; }
  .site-header nav { display: none; }
  .hero-headline { font-size: 2.5rem; }
}