:root {
  --bg: #f7f3ea;
  --card: #fffdf7;
  --text: #1f2a1f;
  --muted: #5f5a4a;
  --brand: #2f5d3b;
  --brand-dark: #21452b;
  --brand-soft: #6f8f76;
  --accent: #c8ab7f;
  --line: #dfd1bc;
  --fs-body: 1rem;
  --fs-nav: 0.95rem;
  --fs-h1: clamp(2rem, 4vw, 3.2rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.2rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.45rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.site-logo {
  width: auto;
  height: 140px;
  object-fit: contain;
  display: block;
}

nav {
  display: inline-flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: var(--fs-nav);
}

nav a.active,
nav a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(47, 93, 59, 0.45);
  text-underline-offset: 0.3rem;
}

.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(140deg, #efe4d3 0%, #f9f4ea 100%);
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #e1d1b6;
  border: 1px solid var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

.section {
  padding: 4rem 0;
}

section[id] {
  scroll-margin-top: 6.2rem;
}

.section h2 {
  margin-top: 0;
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid rgba(47, 93, 59, 0.35);
}

.section-intro {
  color: var(--muted);
  max-width: 760px;
}

.cards-grid,
.pricing-grid,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card,
.price-card,
.panel,
.price-table-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(47, 93, 59, 0.22);
  border-radius: 14px;
  padding: 1.2rem;
}

.card > *:last-child,
.price-card > *:last-child,
.panel > *:last-child,
.price-table-wrap > *:last-child {
  margin-bottom: 0;
}

.section-accent {
  background: #f2e7d5;
}

.price-card .price {
  font-size: 2rem;
  margin: 0.2rem 0 0.8rem;
  font-weight: 800;
}

.price-card .price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.price-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.featured {
  border-color: var(--brand);
  box-shadow: 0 8px 30px rgba(47, 93, 59, 0.15);
}

.price-table-wrap {
  margin-top: 1rem;
}

.simple-pricing-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.simple-pricing-list li {
  margin-bottom: 0.5rem;
}

.simple-pricing-list li:last-child {
  margin-bottom: 0;
}

.section-dark {
  background: #2a3d2f;
  color: #f4efe4;
}

.section-dark p {
  color: #e7dcc7;
}

.section-dark .panel {
  background: #314c39;
  border-color: #6f8f76;
}

.section-dark a {
  color: #f3e5cc;
  text-decoration: none;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--card);
  color: var(--brand-dark);
  border: 1px solid rgba(47, 93, 59, 0.35);
}

.hero-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.text-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.text-link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
  text-decoration-color: rgba(47, 93, 59, 0.45);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  color: var(--muted);
  background: var(--card);
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  nav {
    flex-wrap: wrap;
  }

  .footer-links {
    gap: 0.6rem 0.9rem;
  }

  .site-logo {
    height: 96px;
  }
}
