:root {
  --bg: #f8f7f3;
  --surface: #ffffff;
  --surface-soft: #f1efe8;
  --text: #24312d;
  --muted: #62706a;
  --green: #557d3f;
  --green-dark: #355133;
  --sand: #d8c4a6;
  --line: #e8e2d7;
  --shadow: 0 16px 40px rgba(36, 49, 45, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfaf7 0%, #f8f7f3 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); }
.center { text-align: center; }
.section { padding: 5rem 0; }
.alt-bg { background: rgba(216, 196, 166, 0.12); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(248, 247, 243, 0.78);
  border-bottom: 1px solid rgba(232, 226, 215, 0.8);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand-mini {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--green-dark);
}
.brand-mini span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 0.3rem;
}
.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}
.nav a:hover { color: var(--green-dark); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.lang-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
}
.lang-btn.active {
  background: var(--green-dark);
  color: white;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}
.hero-centered h1 {
  margin: 0.5rem 0 0.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--green-dark);
}
.hero-logo-top {
  width: min(420px, 78vw);
  margin: 0 auto 1.4rem;
  mix-blend-mode: multiply;
}
.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.tagline {
  margin: 0 0 1.2rem;
  font-style: italic;
  color: var(--muted);
  font-size: 1.1rem;
}
.lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}
.hero-highlight {
  margin: 1.6rem auto 0;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  background: rgba(85, 125, 63, 0.08);
  border: 1px solid rgba(85, 125, 63, 0.15);
  border-radius: 999px;
  color: var(--green-dark);
}
.cta-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.cta-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--green-dark);
  color: white;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(53, 81, 51, 0.2);
}

.section-head {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.section-label {
  margin: 0;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.section-head h2,
.intro h2,
.cta-band h2,
.business h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-subtitle,
.intro p,
.cta-band p,
.business p,
.section-head + p {
  color: var(--muted);
  line-height: 1.8;
}
.card-grid {
  display: grid;
  gap: 1rem;
}
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card,
.service-card,
.price-card,
.note-box,
.area-box,
.business-box,
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card,
.service-card,
.price-card,
.note-box {
  padding: 1.5rem;
}
.info-card h3,
.service-card h3,
.price-card h3,
.step h3 {
  margin: 0 0 0.55rem;
  color: var(--green-dark);
}
.info-card p,
.service-card p,
.price-card p,
.note-box p,
.step p,
.area-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.accent-card {
  background: linear-gradient(180deg, rgba(85, 125, 63, 0.08), rgba(85, 125, 63, 0.03));
}

.pricing-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.secondary-grid {
  margin-top: 1rem;
}
.price-card {
  position: relative;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(216, 196, 166, 0.22), rgba(255,255,255,1));
}
.price-kicker {
  color: var(--green);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.price {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--green-dark);
  margin: 0.4rem 0 0.65rem;
}
.small-card .price {
  font-size: 1.8rem;
}
.pricing-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.step {
  padding: 1.5rem;
}
.step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(85, 125, 63, 0.1);
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}
.area-box {
  padding: 2rem;
  color: var(--green-dark);
  font-size: 1.1rem;
}
.business-box {
  padding: 2rem;
}
.business-actions {
  display: flex;
  justify-content: flex-end;
}
.cta-band {
  background: linear-gradient(180deg, rgba(216,196,166,0.15), rgba(85,125,63,0.08));
}
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
}
.site-footer h3, .site-footer h4 { color: var(--green-dark); margin-top: 0; }
.site-footer p { margin: 0.3rem 0; color: var(--muted); }

@media (max-width: 960px) {
  .card-grid.four,
  .card-grid.three,
  .pricing-grid,
  .steps,
  .split,
  .footer-grid,
  .pricing-notes {
    grid-template-columns: 1fr 1fr;
  }
  .business-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .site-header { position: static; }
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    gap: 0.8rem 1rem;
  }
  .hero {
    padding-top: 3rem;
  }
  .card-grid.four,
  .card-grid.three,
  .pricing-grid,
  .steps,
  .split,
  .footer-grid,
  .pricing-notes {
    grid-template-columns: 1fr;
  }
  .hero-highlight {
    border-radius: 20px;
  }
}


.hero-centered .container.narrow.center {
  max-width: 920px;
}

.hero-logo-top {
  display: block;
  width: min(100%, 430px);
  margin: 0 auto 1rem;
  height: auto;
}

@media (max-width: 768px) {
  .hero-logo-top {
    width: min(100%, 320px);
    margin-bottom: 0.9rem;
  }
}
