
:root {
  --ink: #14201c;
  --muted: #4a5c55;
  --line: #c9d4ce;
  --paper: #f3f7f4;
  --surface: #ffffff;
  --forest: #1b5e45;
  --forest-dark: #134433;
  --palm: #2f8f6b;
  --sand: #e8f0eb;
  --wa: #25d366;
  --wa-dark: #1da851;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(20, 32, 28, 0.08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1040px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(47, 143, 107, 0.16), transparent 60%),
    linear-gradient(180deg, #eef5f1 0%, var(--paper) 40%, #e7efe9 100%);
  line-height: 1.65;
}
a { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(100% - 2rem, var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(243, 247, 244, 0.9);
  border-bottom: 1px solid rgba(201, 212, 206, 0.8);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.25rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.45rem; color: var(--ink);
  letter-spacing: -0.02em; text-decoration: none;
}
.header-nav { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.header-nav a { color: var(--muted); font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.header-nav a:hover { color: var(--forest); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0.7rem 1.15rem; font-weight: 700;
  border: 1px solid transparent; text-decoration: none; cursor: pointer;
}
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.9rem; }
.btn-lg { padding: 0.9rem 1.35rem; font-size: 1.05rem; }
.btn-wa { background: var(--wa); color: #073b1d; }
.btn-wa:hover { background: var(--wa-dark); color: #fff; text-decoration: none; }
.btn-outline {
  background: transparent; border-color: var(--forest); color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: #fff; text-decoration: none; }
.btn-solid { background: var(--forest); color: #fff; }
.btn-solid:hover { background: var(--forest-dark); text-decoration: none; }

.hero {
  position: relative; overflow: hidden;
  min-height: min(88vh, 720px);
  display: grid; align-items: end;
  background:
    linear-gradient(120deg, rgba(19, 68, 51, 0.88), rgba(20, 32, 28, 0.55)),
    radial-gradient(circle at 80% 20%, rgba(47, 143, 107, 0.45), transparent 40%),
    linear-gradient(160deg, #1b5e45, #0f2d24 70%);
  color: #f5fbf7;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 120px;
  background: linear-gradient(180deg, transparent, var(--paper));
}
.hero .container { position: relative; z-index: 1; padding: 5.5rem 0 3.5rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05; margin: 0 0 1rem; max-width: 14ch;
  letter-spacing: -0.03em;
}
.hero-sub { max-width: 36rem; font-size: 1.1rem; color: rgba(245, 251, 247, 0.9); margin: 0 0 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.eyebrow {
  display: inline-block; margin: 0 0 0.85rem;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: #b7e2cf;
}

.section { padding: 4rem 0; }
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.6rem; letter-spacing: -0.02em;
}
.section-intro { color: var(--muted); max-width: 40rem; margin: 0 0 1.75rem; }
.grid-3, .grid-2 {
  display: grid; gap: 1rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow);
}
.tile h3 {
  font-family: var(--font-display);
  margin: 0 0 0.45rem; font-size: 1.25rem;
}
.tile p { margin: 0; color: var(--muted); }
.tile .meta { margin-top: 0.85rem; font-size: 0.9rem; color: var(--forest); font-weight: 700; }
.price { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); margin: 0.4rem 0; }
.band {
  background: linear-gradient(135deg, #184f3b, #216b50);
  color: #f4fbf7; border-radius: 18px; padding: 1.8rem;
}
.band a { color: #fff; }
.prose { max-width: 46rem; }
.prose p { color: var(--muted); }
.prose ul { color: var(--muted); padding-left: 1.2rem; }
.site-footer {
  margin-top: 2rem; padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line); color: var(--muted); font-size: 0.95rem;
}
.footer-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.4rem; box-shadow: var(--shadow);
}
.form label { display: block; font-weight: 600; margin: 0.7rem 0 0.3rem; }
.form input, .form textarea, .form select {
  width: 100%; border: 1px solid var(--line); border-radius: 8px;
  padding: 0.7rem 0.8rem; font: inherit; background: #fff;
}
.form-error { color: #b42318; font-size: 0.85rem; margin: 0.25rem 0 0; }
.form-check { display: flex; gap: 0.55rem; align-items: flex-start; margin-top: 0.9rem; }
.form-check input { width: auto; margin-top: 0.3rem; }
.breadcrumbs { font-size: 0.9rem; color: var(--muted); margin: 1.4rem 0 0.5rem; }
.breadcrumbs a { color: var(--muted); }
.page-hero { padding: 2.5rem 0 1rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.3rem 0 0.7rem; letter-spacing: -0.03em;
}
