/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F8F5EF;
  --fg: #1E2D1A;
  --accent: #C4803A;
  --sage: #7D9B76;
  --forest: #1E2D1A;
  --cream: #F8F5EF;
  --warm-white: #FAF7F2;
  --border: rgba(124, 155, 118, 0.2);
  --text-muted: #6B7A63;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

::selection {
  background: var(--sage);
  color: white;
}

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.nav__tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--forest);
  border-bottom: 1px solid rgba(125, 155, 118, 0.2);
}

.cta-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-banner__icon {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cta-banner__text {
  flex: 1;
  min-width: 0;
}

.cta-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.cta-banner__sub {
  font-size: 0.85rem;
  color: rgba(248, 245, 239, 0.55);
  font-weight: 300;
}

.cta-banner__phone {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}

.cta-banner__phone:hover,
.cta-banner__phone:focus {
  color: #d4922e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cta-banner__btn:hover { background: #b3732e; }

.cta-banner__note {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(248, 245, 239, 0.4);
  line-height: 1.5;
  border-top: 1px solid rgba(125, 155, 118, 0.1);
  padding-top: 1rem;
  margin-top: 0.25rem;
}

.cta-banner__note svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: rgba(248, 245, 239, 0.3);
}

@media (max-width: 700px) {
  .cta-banner__inner {
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }

  .cta-banner__headline {
    font-size: 1.05rem;
  }

  .cta-banner__phone {
    font-size: 1.2rem;
  }

  .cta-banner__note {
    font-size: 0.75rem;
  }
}

/* === HERO === */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 320px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.hero__bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
}

.hero__circle--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: 200px;
  background: radial-gradient(circle, rgba(125, 155, 118, 0.12) 0%, transparent 70%);
}

.hero__circle--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 100px;
  background: radial-gradient(circle, rgba(196, 128, 58, 0.08) 0%, transparent 70%);
}

.hero__botanical {
  position: absolute;
  top: 40px;
  right: 30px;
  width: 80px;
  opacity: 0.5;
}

.hero__content {
  display: flex;
  align-items: flex-start;
  padding: 5rem 4rem 5rem clamp(3rem, 6vw, 6rem);
  position: relative;
  z-index: 2;
  align-self: center;
}

.hero__accent-bar {
  width: 4px;
  height: 100px;
  background: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
  margin-right: 2rem;
  margin-top: 0.5rem;
  align-self: flex-start;
}

.hero__text {
  max-width: 560px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero__headline em {
  font-style: italic;
  color: var(--sage);
}

.hero__lede {
  font-size: 1.1rem;
  color: rgba(248, 245, 239, 0.65);
  line-height: 1.7;
  max-width: 420px;
  font-weight: 300;
}

.hero__image-aside {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-right: 3rem;
  align-self: center;
}

.hero__image-frame {
  width: 240px;
  height: 340px;
  border-radius: 200px 200px 60px 60px;
  overflow: hidden;
  border: 1px solid rgba(125, 155, 118, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 155, 118, 0.04);
}

.hero__botanical-sketch {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero__botanical-sketch svg {
  width: 100%;
  height: 100%;
}

/* === PHILOSOPHY === */
.philosophy {
  background: var(--warm-white);
  padding: 7rem 0;
}

.philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.philosophy__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--forest);
  max-width: 740px;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.philosophy__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin-bottom: 4rem;
}

.philosophy__body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

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

.pillar__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.pillar__icon svg {
  width: 100%;
  height: 100%;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.pillar__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === HOW IT WORKS === */
.howitworks {
  background: var(--cream);
  padding: 7rem 0;
}

.howitworks__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.howitworks__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.howitworks__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 4rem;
  letter-spacing: -0.015em;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:first-child {
  border-top: 1px solid var(--border);
}

.step__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  padding-top: 0.2rem;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.step__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.howitworks__divider {
  width: 60px;
  height: 2px;
  background: var(--sage);
  opacity: 0.4;
  margin: 4rem 0;
}

.outcomes__heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.outcomes__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.outcome {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.outcome__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.outcome p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === COMMUNITY === */
.community {
  background: var(--forest);
  padding: 7rem 0;
}

.community__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.community__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.community__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.community__body {
  font-size: 1rem;
  color: rgba(248, 245, 239, 0.6);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.community__art-block {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community__art-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(125, 155, 118, 0.15);
}

.community__art-circle--1 {
  width: 280px;
  height: 280px;
}

.community__art-circle--2 {
  width: 200px;
  height: 200px;
}

.community__art-circle--3 {
  width: 130px;
  height: 130px;
  border-color: rgba(196, 128, 58, 0.2);
}

.community__art-center {
  position: relative;
  z-index: 1;
}

.community__art-center svg {
  width: 120px;
  height: 120px;
}

/* === CLOSING === */
.closing {
  background: var(--warm-white);
  padding: 7rem 0;
}

.closing__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.closing__art svg {
  width: 100%;
  height: auto;
}

.closing__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--forest);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

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

.closing__note {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.closing__note p {
  font-size: 0.85rem;
  color: var(--sage);
  font-style: italic;
}

/* === FOOTER === */
.footer {
  background: var(--forest);
  padding: 3rem 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__brand {
  margin-bottom: 1.5rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
  margin-bottom: 0.4rem;
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(248, 245, 239, 0.4);
}

.footer__links {
  margin-bottom: 2rem;
}

.footer__link {
  font-size: 0.8rem;
  color: rgba(248, 245, 239, 0.5);
  letter-spacing: 0.03em;
}

.footer__social {
  margin-bottom: 2rem;
}

.footer__tiktok {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(248, 245, 239, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__tiktok:hover {
  color: var(--sage);
}

.footer__tiktok svg {
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(125, 155, 118, 0.12);
  padding-top: 1.5rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(248, 245, 239, 0.3);
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__image-aside {
    display: none;
  }

  .hero__content {
    padding: 4rem 2rem;
  }

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

  .philosophy__pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .community__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .community__art-block {
    height: 200px;
  }

  .closing__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .closing__art {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .step__number {
    font-size: 1.8rem;
  }

  .hero__headline {
    font-size: 3rem;
  }
}