:root {
  --green-900: #14361f;
  --green-800: #1c4a2a;
  --green-700: #25623a;
  --green-600: #2f7a48;
  --green-500: #3d9a5b;
  --green-100: #e7f3ea;
  --earth: #8a6d4b;
  --sand: #f5f1e8;
  --cream: #faf8f3;
  --ink: #1f2a22;
  --muted: #5c6b60;
  --line: #e3e0d6;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(20, 54, 31, 0.10);
  --radius: 16px;
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; line-height: 1.12; font-weight: 600; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-600);
  margin-bottom: 12px;
}
.eyebrow.light { color: #bfe6c8; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 8px 20px rgba(47,122,72,.3); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark { color: var(--green-600); display: flex; }
.brand-logo { height: 60px; width: auto; display: block; }
.brand-text strong { font-family: "Fraunces", serif; font-size: 1.18rem; display: block; line-height: 1; }
.brand-text small { color: var(--muted); font-size: 0.74rem; letter-spacing: .03em; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-weight: 500; font-size: 0.96rem; color: var(--ink); transition: color .15s; }
.main-nav a:hover { color: var(--green-600); }
.main-nav .nav-cta {
  background: var(--green-600); color: #fff; padding: 10px 18px; border-radius: 999px;
}
.main-nav .nav-cta:hover { background: var(--green-700); color: #fff; }

.header-phone {
  display: flex; align-items: center; gap: 7px;
  font-weight: 700; color: var(--green-700); font-size: 0.98rem; white-space: nowrap;
}
.header-phone:hover { color: var(--green-600); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .25s; }

.mobile-nav { display: none; flex-direction: column; padding: 8px 24px 20px; gap: 4px; border-bottom: 1px solid var(--line); background: var(--cream); }
.mobile-nav a { padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav .nav-cta { background: var(--green-600); color: #fff; border: none; border-radius: 999px; text-align: center; margin-top: 10px; }
.mobile-nav .mobile-phone { color: var(--green-700); font-weight: 700; border: none; }
.mobile-nav.open { display: flex; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(20,54,31,.92) 0%, rgba(20,54,31,.70) 45%, rgba(20,54,31,.35) 100%),
    url("assets/hero.jpg") center 65% / cover no-repeat,
    #14361f;
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 80%, rgba(255,255,255,.05) 0, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,.04) 0, transparent 35%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 86px 24px; max-width: 780px; margin: 0 auto; text-align: center; }
.hero-logo { display: block; line-height: 0; margin-bottom: 18px; }
.hero-logo img { height: clamp(95px, 12.3vw, 129px); width: auto; display: inline-block; filter: drop-shadow(0 6px 22px rgba(0,0,0,.38)); }
.hero .eyebrow { color: #fff; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; letter-spacing: -0.01em; }
.hero-sub { font-size: 1.15rem; margin: 22px auto 32px; color: #eaf3ec; max-width: 580px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-badges { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin-top: 34px; font-weight: 500; color: #d9ecdd; font-size: 0.95rem; }

/* ===== Trust strip ===== */
.trust-strip { background: var(--green-900); color: #cfe6d5; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; padding: 14px 24px; font-size: 0.92rem; }
.trust-inner span { color: #8fb89a; }
.trust-inner strong { color: #fff; font-weight: 600; }
.trust-inner i { color: var(--green-600); font-style: normal; }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--sand); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head .section-lead { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-500); }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--green-100); display: flex; align-items: center; justify-content: center;
  color: var(--green-700); margin-bottom: 16px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--green-600); color: #fff; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }

.services-cta { text-align: center; margin-top: 48px; }
.services-cta p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }

/* ===== Why ===== */
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.why-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.why-text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 22px; }
.check-list { list-style: none; margin-bottom: 28px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; font-weight: 500; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-600); color: #fff; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 20px; text-align: center; box-shadow: var(--shadow); }
.stat strong { font-family: "Fraunces", serif; font-size: 2.4rem; color: var(--green-600); display: block; line-height: 1; }
.stat span { color: var(--muted); font-size: 0.92rem; }

/* ===== Areas ===== */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.area-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 18px; text-align: center; font-family: "Fraunces", serif; font-size: 1.3rem; font-weight: 600;
  position: relative; transition: .2s;
}
.area-card::before { content: "📍"; display: block; font-size: 1.4rem; margin-bottom: 8px; }
.area-card:hover { background: var(--green-600); color: #fff; transform: translateY(-4px); }
.areas-note { text-align: center; margin-top: 28px; color: var(--muted); }
.areas-note a { color: var(--green-600); font-weight: 600; text-decoration: underline; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-photo {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  background: var(--green-700);
}
.about-photo img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.about-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.about-text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 18px; }

/* ===== CTA band ===== */
.cta-band {
  position: relative;
  background: url("assets/work-home.jpg?v=2") center / cover no-repeat;
  text-align: center;
  color: #fff;
}
.cta-band-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(20,54,31,.78), rgba(20,54,31,.78)); }
.cta-band-content { position: relative; z-index: 2; padding: 96px 24px; }
.cta-band-content h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-band-content p { font-size: 1.12rem; color: #e3f0e6; margin-bottom: 28px; }
.cta-band-content .hero-actions { justify-content: center; }

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); }
.stars { color: #f0a500; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-size: 1.05rem; margin-bottom: 16px; font-style: italic; }
.review-card cite { color: var(--ink); font-style: normal; font-weight: 600; font-size: 0.92rem; }
.review-src { color: var(--muted); font-weight: 500; }

/* ===== Contact ===== */
.section-contact { background: var(--green-900); color: #eaf3ec; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-info h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.contact-info > p { color: #c5dccb; margin-bottom: 30px; font-size: 1.06rem; }
.contact-list { list-style: none; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-list strong { display: block; color: #fff; margin-bottom: 3px; }
.contact-list a { color: #9fd3ac; }
.contact-list a:hover { color: #fff; }

.quote-form { background: var(--white); border-radius: 20px; padding: 34px; box-shadow: var(--shadow); }
.quote-form label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--ink); margin-bottom: 16px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px; font: inherit; font-weight: 400;
  background: var(--cream); color: var(--ink);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(61,154,91,.15); background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; text-align: center; font-weight: 400; }
.form-note a { color: var(--green-600); font-weight: 600; }

/* ===== Footer ===== */
.site-footer { background: var(--green-900); color: #b9d3bf; padding-top: 60px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-logo { background: #fff; border-radius: 12px; padding: 8px 12px; display: inline-flex; }
.footer-logo img { height: 56px; width: auto; display: block; }
.footer-brand strong { font-family: "Fraunces", serif; font-size: 1.2rem; color: #fff; }
.footer-brand p { font-size: 0.95rem; max-width: 280px; }
.footer-col h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 0.95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; font-size: 0.94rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.86rem; color: #8fb89a; }

/* ===== Floating call ===== */
.floating-call {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-600); color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(20,54,31,.4);
  transition: transform .2s;
}
.floating-call:hover { transform: scale(1.08); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .floating-call { display: flex; }
}
@media (max-width: 540px) {
  .section { padding: 60px 0; }
  .hero-content { padding: 64px 24px; }
  .hero-badges { gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
}
