/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --bg: #F7F4EE;
  --fg: #1A1A1A;
  --accent: #E8A838;
  --green: #1B3A2D;
  --green-mid: #2D5240;
  --green-light: #3D6B52;
  --cream: #EDE9DF;
  --muted: #6B6860;
  --border: #D8D3C8;
  --white: #FFFFFF;
  --error: #C0392B;
  --success: #27AE60;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 400;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--green);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.nav-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}
.nav-spacer { flex: 1; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--green-light); }
.nav-phone svg { flex-shrink: 0; }

/* ── Shared section ────────────────────────────────────────── */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green);
  margin-bottom: 40px;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: 64px 24px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--green);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-service-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  cursor: pointer;
  border: none;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: var(--green);
}
.btn-primary:hover { background: #D4962F; }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-mid); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
}
.btn-outline:hover { background: var(--cream); }

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
  border-radius: 6px;
}

.btn-phone {
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.btn-phone:hover { background: var(--green-mid); }
.btn-phone:active { transform: scale(0.98); }
.btn-phone-text { background: var(--accent); color: var(--green); }
.btn-phone-text:hover { background: #D4962F; }

/* ── Hero card (contact form) ──────────────────────────────── */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(27,58,45,0.07);
}
.hero-card-title {
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 4px;
}
.hero-card-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.form-field { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 5px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.15s;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-textarea {
  resize: vertical;
  min-height: 68px;
}
.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 13px;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}
.form-submit:hover { background: #D4962F; }
.form-success {
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
}
.form-success p { margin-top: 8px; font-size: 0.85rem; opacity: 0.85; }

/* ── Sticky bottom CTA bar (mobile) ───────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
  z-index: 200;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.sticky-bar .bar-call { background: var(--green); color: var(--white); }
.sticky-bar .bar-text { background: var(--accent); color: var(--green); }

/* ── Trust strip ──────────────────────────────────────────── */
.trust-strip {
  background: var(--green);
  padding: 20px 24px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
}
.trust-item strong { color: var(--white); }
.trust-check { color: var(--accent); }

/* ── Services section ─────────────────────────────────────── */
.services { padding: 72px 24px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(27,58,45,0.1); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}
.service-card h3 {
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Service area section ──────────────────────────────────── */
.area { padding: 72px 24px; background: var(--cream); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.area-info { }
.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.875rem;
  color: var(--muted);
}
.area-map {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.area-map p { font-size: 0.875rem; color: var(--muted); margin-top: 12px; }
.map-placeholder {
  background: var(--cream);
  border-radius: 8px;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Testimonial / social proof ───────────────────────────── */
.proof { padding: 56px 24px; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.proof-stars { color: var(--accent); margin-bottom: 10px; font-size: 1.1rem; }
.proof-card blockquote {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}
.proof-card cite {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
}

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta {
  padding: 72px 24px;
  background: var(--green);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 32px;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.final-cta .btn-primary { background: var(--accent); color: var(--green); font-size: 1.05rem; padding: 14px 28px; }
.final-cta .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.final-cta .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.5);
  padding: 28px 24px;
  text-align: center;
  font-size: 0.8rem;
}
.footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer a:hover { color: var(--white); }

/* ── Mobile-first responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .nav-phone span { display: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero { padding: 40px 16px 40px; }
  .services { padding: 56px 16px; }
  .area { padding: 56px 16px; }
  .proof { padding: 40px 16px; }
  .final-cta { padding: 56px 16px; }
  .hero-actions { flex-direction: column; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 72px; }
  .section-headline { margin-bottom: 24px; }
}

/* ── Form states ──────────────────────────────────────────── */
.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 4px;
  display: none;
}
.form-group-error .form-input,
.form-group-error .form-textarea { border-color: var(--error); }
.form-group-error .form-error { display: block; }