:root {
  --bg: #faf8f4;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --accent: #2d6a4f;
  --accent-warm: #c9622f;
  --surface: #f0ebe2;
  --border: #ddd8cf;
  --font-serif: 'Bitter', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}
.nav__tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* HERO */
.hero {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero__lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero__types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__types span {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}

/* MANIFESTO */
.manifesto {
  padding: 72px 0;
  background: var(--accent);
  color: #fff;
}
.manifesto__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.manifesto__rule {
  width: 48px;
  height: 3px;
  background: var(--accent-warm);
  margin-bottom: 32px;
}
.manifesto__quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 600;
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 28px;
}
.manifesto__body {
  font-size: 17px;
  opacity: 0.85;
  max-width: 580px;
  line-height: 1.7;
}

/* SERVICES */
.services {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.services__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.services__heading {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.services__item {
  padding: 36px 40px 36px 0;
  border-bottom: 1px solid var(--border);
}
.services__item:nth-child(even) {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid var(--border);
}
.services__item:nth-last-child(-n+2) {
  border-bottom: none;
}
.services__icon {
  color: var(--accent-warm);
  margin-bottom: 14px;
}
.services__item h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.services__item p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 72px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.how__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.how__heading {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 44px;
}
.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how__step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.how__step:last-child {
  border-bottom: none;
}
.how__num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 52px;
  opacity: 0.6;
}
.how__step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.how__step p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.pricing__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing__heading {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing__sub {
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  position: relative;
}
.pricing__card--featured {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-warm);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.pricing__tier {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.pricing__price {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1;
}
.pricing__price span {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-sans);
  opacity: 0.7;
}
.pricing__features {
  list-style: none;
}
.pricing__features li {
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pricing__features li:last-child {
  border-bottom: none;
}
.pricing__card--featured .pricing__features li {
  border-color: rgba(255,255,255,0.15);
}
.pricing__cta {
  display: block;
  margin-top: 20px;
  padding: 11px 20px;
  border: 1.5px solid var(--accent);
  border-radius: 5px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s ease;
}
.pricing__cta:hover {
  background: var(--accent);
  color: #fff;
}
.pricing__cta--primary {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  color: #fff;
}
.pricing__cta--primary:hover {
  background: #b5562a;
  border-color: #b5562a;
  color: #fff;
}

/* CLOSING */
.closing {
  padding: 80px 0;
  background: var(--fg);
  color: #fff;
}
.closing__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.closing__statement {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* FOOTER */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}
.footer__location {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.footer__note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 640px) {
  .hero { padding: 56px 0 52px; }
  .hero__headline { font-size: 34px; }
  .hero__lede { font-size: 17px; }
  .manifesto { padding: 52px 0; }
  .services { padding: 52px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .services__item { padding: 28px 0; }
  .services__item:nth-child(even) { padding-left: 0; border-left: none; }
  .services__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .services__item:last-child { border-bottom: none; }
  .how { padding: 52px 0; }
  .how__step { gap: 20px; padding: 24px 0; }
  .how__num { font-size: 32px; min-width: 40px; }
  .pricing { padding: 52px 0; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__card--featured { order: -1; }
  .closing { padding: 56px 0; }
  .footer__inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .nav__tag { display: none; }
}