:root {
  --green-dark: #2f4a2f;
  --green: #3f6b3f;
  --green-light: #7fa85f;
  --accent: #d85a26;
  --brown: #6b4c35;
  --cream: #f7f5ef;
  --icon-bg: #e4ecdf;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --radius: 10px;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--green-dark);
  margin-top: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4.5rem 0; }
.section-title { text-align: center; margin-bottom: 2.5rem; position: relative; }
.section-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}
.narrow { max-width: 760px; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e7e4da;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  flex-wrap: wrap;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-img {
  height: 54px;
  width: auto;
  display: block;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.main-nav a.active, .main-nav a:hover { color: var(--accent); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { font-weight: 600; color: var(--green-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--green-dark); display: block; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); text-decoration: none; transform: translateY(-1px); }
.btn-outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: var(--white); text-decoration: none; }
.btn-outline-light { border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--green-dark); text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--green) 60%, var(--green-light));
  color: var(--white);
  padding: 6.5rem 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 65%);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -5%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  border-radius: 50%;
}
.hero-inner { max-width: 700px; position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: 2.75rem; margin-bottom: 1rem; }
.hero-sub { font-size: 1.15rem; margin-bottom: 2rem; opacity: 0.95; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.page-hero {
  background: var(--cream);
  padding: 3rem 0;
  border-bottom: 1px solid #e7e4da;
}
.page-hero h1 { margin: 0; }

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #e7e4da;
  padding: 1.4rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.trust-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.highlight-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
}
.highlight-box h3, .highlight-box h4 { margin-top: 0; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.6rem;
}
.check-list li::before {
  content: "\2713";
  color: var(--green);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.check-list.two-column { columns: 2; column-gap: 2rem; }

/* Icon circles */
.icon-circle {
  background: var(--icon-bg);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.icon-circle svg { width: 55%; height: 55%; }

/* Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.service-card {
  flex: 1 1 220px;
  max-width: 260px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(47,74,47,0.12);
  text-decoration: none;
}
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.service-card p { color: var(--text-light); font-size: 0.92rem; margin: 0; }

.cta-section { background: var(--green-dark); color: var(--white); text-align: center; }
.cta-inner h2 { color: var(--white); }
.cta-inner p { margin-bottom: 1.5rem; opacity: 0.9; }

/* Process steps */
.process-section { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.process-step { text-align: center; }
.process-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.process-step p { color: var(--text-light); font-size: 0.92rem; }

/* Credential badges */
.badge-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.25rem 0; }
.badge {
  background: var(--cream);
  border: 1px dashed #cdbf8f;
  border-radius: 8px;
  padding: 0.75rem 1.1rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-dark);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.pricing-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.price { font-size: 1.8rem; font-weight: 700; color: var(--green-dark); margin: 0.5rem 0 0; }
.price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.gallery-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #e2e8dc, #e2e8dc 10px, #d5ddc9 10px, #d5ddc9 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}
.gallery-tile small { font-weight: 400; color: var(--text-light); margin-top: 0.25rem; }
.gallery-tile-photo { padding: 0; background: var(--icon-bg); overflow: hidden; }
.gallery-tile-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.detail-photo {
  width: 100%;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  box-shadow: 0 10px 25px rgba(47,74,47,0.12);
}

/* Testimonials */
.testimonial-card {
  background: var(--cream);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
}
.testimonial-name { font-weight: 600; color: var(--green-dark); margin: 0.5rem 0 0; }

/* FAQ */
.faq-item { margin-bottom: 1.75rem; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.faq-item p { color: var(--text-light); margin: 0; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { font-weight: 600; font-size: 0.9rem; display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form input, .contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-weight: 400;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--green);
  outline: none;
}

.draft-note {
  background: #fff8e6;
  border: 1px dashed #e0c56b;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #6b5a1c;
}

/* Footer */
.site-footer { background: var(--green-dark); color: #e6ede6; padding: 3rem 0 1.5rem; margin-top: 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.site-footer h3, .site-footer h4 { color: var(--white); }
.site-footer a { color: #cfe0cf; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.hours-table { border-collapse: collapse; font-size: 0.9rem; }
.hours-table td { padding: 0.15rem 0.5rem 0.15rem 0; }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.85rem; }

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-top: 1px solid #eee; }
  .main-nav a { display: block; padding: 0.85rem 0.25rem; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .logo-img { height: 42px; }
  .hero h1 { font-size: 2rem; }
  .pricing-grid, .card-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { justify-content: flex-start; }
  body { padding-bottom: 66px; }
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid #e0ddd2;
    padding: 0.65rem 1rem;
    gap: 0.75rem;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  }
  .mobile-cta-bar .btn { flex: 1; text-align: center; padding: 0.7rem 0.5rem; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .pricing-grid, .card-grid, .gallery-grid { grid-template-columns: 1fr; }
  .check-list.two-column { columns: 1; }
}
