:root {
  --bg: #F8F4EE;
  --bg-alt: #F0EBE3;
  --fg: #1C1C1A;
  --fg-muted: #6B6560;
  --accent-green: #2A5C45;
  --accent-green-light: #3D7A5E;
  --accent-gold: #B8935A;
  --border: #D9D3C9;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { 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;
}

/* NAV */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav__tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 72px;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}
.hero__visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
}
.hero__orb--green {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 40% 40%, #3D7A5E, #2A5C45 60%, #1F4A37);
  opacity: 0.18;
  top: 50px;
  left: 20%;
}
.hero__orb--gold {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 40% 40%, #D4AA72, #B8935A 60%, #9A7848);
  opacity: 0.25;
  bottom: 40px;
  right: 20%;
}
.hero__shape {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1.5px solid var(--border);
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-left: -90px;
  margin-top: -90px;
}

/* MANIFESTO */
.manifesto {
  padding: 72px 48px;
  background: var(--bg-alt);
}
.manifesto__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__rule {
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 40px;
  opacity: 0.7;
}
.manifesto__rule:last-child { margin: 40px auto 0; }
.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 27px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.65;
  font-weight: 400;
}

/* SERVICES */
.services {
  padding: 88px 48px;
}
.section__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
}
.section__heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 56px;
  line-height: 1.2;
}
.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.service-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.2s ease;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(42,92,69,0.08);
}
.service-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--accent-green);
  opacity: 0.25;
  margin-bottom: 20px;
  line-height: 1;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card__body {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s ease;
}
.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(42,92,69,0.08);
}
.pricing-card--featured {
  border-color: var(--accent-green);
  box-shadow: 0 4px 20px rgba(42,92,69,0.1);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}
.pricing-card__header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card__tier {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 10px;
}
.pricing-card__tagline {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pricing-card__features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.pricing-card__features li {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-card__features li:last-child {
  border-bottom: none;
}
.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: var(--accent-green);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s ease;
}
.pricing-card__cta:hover {
  background: var(--accent-green-light);
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 40px;
}
.pricing-note a {
  color: var(--accent-green);
  text-decoration: none;
}
.pricing-note a:hover {
  text-decoration: underline;
}

/* PROCESS */
.process {
  padding: 88px 48px;
  background: var(--bg-alt);
}
.process__inner {
  max-width: 760px;
  margin: 0 auto;
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  align-items: flex-start;
}
.step__line {
  width: 1px;
  background: var(--border);
  margin: 0 28px 0 22px;
  min-height: 80px;
  align-self: stretch;
}
.step__content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 0 48px 0;
}
.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent-green);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.step__body {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 540px;
}

/* NICHES */
.niches {
  padding: 88px 48px;
}
.niches__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.niches__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}
.niche {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.niche__type {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.niche__desc {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 80px 48px;
  background: var(--accent-green);
}
.closing__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.closing__rule {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 0 auto 44px;
}
.closing__rule:last-child { margin: 44px auto 0; }
.closing__statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  font-weight: 400;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
}
.footer__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.footer__note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { height: 240px; }
  .hero__orb--green { width: 220px; height: 220px; }
  .manifesto { padding: 56px 24px; }
  .services { padding: 64px 24px; }
  .services__grid { grid-template-columns: 1fr; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process { padding: 64px 24px; }
  .niches { padding: 64px 24px; }
  .niches__list { grid-template-columns: 1fr; gap: 28px; }
  .closing { padding: 56px 24px; }
  .footer { padding: 32px 24px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .section__heading { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .nav__logo { font-size: 22px; }
  .hero__headline { font-size: 38px; }
  .hero__sub { font-size: 15px; }
}