:root {
  --primary: #0d3c00;
  --primary-dark: #082a00;
  --accent: #40bf4f;
  --accent-dark: #2f9a3c;
  --bg: #ffffff;
  --bg-alt: #f4f8f3;
  --text: #2b2b2b;
  --text-muted: #6b6b6b;
  --border: #e2e8dd;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(13, 60, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(13, 60, 0, 0.14);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-dark); text-decoration: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; color: var(--primary); }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text); }
.lead { font-size: 1.15rem; color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; border-color: #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { color: var(--primary); font-size: 1.15rem; }
.brand-text span { color: var(--accent-dark); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); border-bottom-color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.call-btn:hover { background: var(--primary-dark); }
.call-btn .ring-icon { display: inline-flex; animation: ring 2.4s infinite; }
.call-btn .cb-num { font-weight: 700; }
@keyframes ring {
  0%, 100% { transform: rotate(0); }
  4% { transform: rotate(-18deg); }
  8% { transform: rotate(14deg); }
  12% { transform: rotate(-10deg); }
  16% { transform: rotate(6deg); }
  20% { transform: rotate(0); }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 72px 0 84px;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero h1 { color: #fff; }
.hero p.lead { color: rgba(255,255,255,0.88); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-badges { display: flex; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 0.92rem; font-weight: 600; }
.hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* Full-bleed photo hero (home page) */
.hero.hero-full {
  overflow: hidden;
  min-height: 900px;
  display: flex;
  align-items: center;
  padding: 110px 0 130px;
  background: var(--primary);
}
.hero.hero-full .container { display: block; }
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero.hero-full .hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 0.8s ease forwards;
}
.hero.hero-full .hero-copy > *:nth-child(1) { animation-delay: 0.1s; }
.hero.hero-full .hero-copy > *:nth-child(2) { animation-delay: 0.25s; }
.hero.hero-full .hero-copy > *:nth-child(3) { animation-delay: 0.4s; }
.hero.hero-full .hero-copy > *:nth-child(4) { animation-delay: 0.55s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8,32,0,0.90) 0%, rgba(13,60,0,0.78) 40%, rgba(13,60,0,0.42) 75%, rgba(13,60,0,0.28) 100%);
  z-index: 1;
}
.hero.hero-full .container { position: relative; z-index: 2; }
.hero.hero-full .hero-copy { max-width: 640px; }

/* Sections */
section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* Cards / grids */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { color: var(--text-muted); margin-bottom: 0; }

.icon-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.icon-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); }
.icon-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-dark); }

/* Stats */
.stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; text-align: center; }
.stat strong { display: block; font-size: 2.1rem; color: var(--primary); }
.stat span { color: var(--text-muted); font-size: 0.92rem; }

/* Reviews */
.review-summary { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 32px; }
.stars { color: #f5a623; font-size: 1.3rem; letter-spacing: 2px; }
.review-summary .count { color: var(--text-muted); font-weight: 600; }

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  height: 100%;
}
.review-card .stars { font-size: 1rem; margin-bottom: 10px; display: block; }
.review-card p { color: var(--text); font-style: italic; }
.review-author { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.review-author strong { color: var(--primary); font-size: 0.95rem; }
.review-author span { color: var(--text-muted); font-size: 0.85rem; }

.review-strip { display: flex; gap: 20px; overflow-x: auto; padding: 4px 4px 14px; scroll-snap-type: x mandatory; }
.review-strip .review-card { min-width: 280px; scroll-snap-align: start; }

.widget-wrap { max-width: 1200px; margin: 0 auto; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid img { border-radius: 8px; aspect-ratio: 1/1; object-fit: cover; box-shadow: var(--shadow); }

/* CTA band */
.cta-band {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 56px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.92); }

/* Forms */
.form-grid { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.field input, .field textarea {
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 10px; }
.form-error {
  display: none;
  background: #fdecea;
  color: #a12b1f;
  border: 1px solid #f3c1bc;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 14px;
}
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success h3 { color: var(--primary); }
.form-success .btn { margin-top: 10px; }

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  height: 100%;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-wrap-band { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); margin-top: 40px; }
.map-wrap-band iframe { width: 100%; height: 340px; border: 0; display: block; }
.contact-info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-list .ci-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-alt); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-list strong { display: block; color: var(--primary); }
.contact-info-list span, .contact-info-list a { color: var(--text-muted); }

/* Services page */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 48px 0; border-bottom: 1px solid var(--border); }
.service-block:last-of-type { border-bottom: none; }
.service-block.reverse .service-media { order: 2; }
.service-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag { background: var(--bg-alt); color: var(--primary); padding: 8px 14px; border-radius: 999px; font-size: 0.88rem; font-weight: 600; border: 1px solid var(--border); }

/* Footer */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.85); padding: 52px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer p { color: rgba(255,255,255,0.72); }
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 44px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: #fff; }
.footer-credit u { text-decoration: underline; }

/* Chat widget */
.chat-toggle {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(13,60,0,0.3);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.chat-toggle:hover { transform: scale(1.06); }
.chat-avatar-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-toggle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.chat-toggle .chat-close-icon { display: none; font-size: 1.8rem; line-height: 1; }
.chat-toggle.open .chat-avatar-icon { display: none; }
.chat-toggle.open .chat-close-icon { display: block; }
.chat-toggle .chat-live-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #2ecc55;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
  z-index: 2;
}
.chat-toggle.open .chat-live-dot { display: none; }

.chat-popup {
  position: fixed;
  bottom: 96px;
  right: 22px;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 899;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
}
.chat-popup.open { display: flex; }
.chat-popup-head {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
}
.chat-popup-avatar { width: 42px; height: 42px; border-radius: 50%; background: #fff; flex-shrink: 0; object-fit: cover; }
.chat-popup-head strong { display: block; font-size: 1rem; }
.chat-popup-head span { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.chat-popup-body { padding: 16px 18px 18px; max-height: 60vh; overflow-y: auto; }
.chat-popup .field { margin-bottom: 12px; }
.chat-popup .form-error { margin-top: 8px; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; flex-direction: column; }
  .cb-num { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero.hero-full { padding: 80px 0 90px; min-height: 640px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; }
  .service-block.reverse .service-media { order: 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { gap: 28px; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .review-summary { flex-direction: column; gap: 6px; }
  section { padding: 48px 0; }
  .stats { gap: 18px; }
  .brand-text strong { font-size: 1rem; }
  .brand img { height: 42px; }
}

@media (max-width: 380px) {
  .chat-popup { right: 16px; width: calc(100vw - 32px); }
  .chat-toggle { right: 16px; }
}

@media (max-width: 400px) {
  .site-header .container { padding-left: 14px; padding-right: 14px; gap: 8px; }
  .brand { gap: 6px; }
  .brand img { height: 34px; }
  .brand-text strong { font-size: 0.88rem; }
  .brand-text span { font-size: 0.66rem; }
  .header-actions { gap: 8px; }
  .call-btn { padding: 8px 12px; font-size: 0.85rem; gap: 6px; }
  .nav-toggle { padding: 4px; }
  .nav-toggle span { width: 22px; margin: 4px 0; }
}

/* Scroll-reveal (gated behind .js-reveal so content never gets stuck
   hidden if JS fails to run) */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-reveal [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] > [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-group] > [data-reveal]:nth-child(2) { transition-delay: 0.15s; }
[data-reveal-group] > [data-reveal]:nth-child(3) { transition-delay: 0.25s; }
[data-reveal-group] > [data-reveal]:nth-child(4) { transition-delay: 0.35s; }
[data-reveal-group] > [data-reveal]:nth-child(5) { transition-delay: 0.45s; }
[data-reveal-group] > [data-reveal]:nth-child(6) { transition-delay: 0.55s; }
[data-reveal-group] > [data-reveal]:nth-child(7) { transition-delay: 0.65s; }
[data-reveal-group] > [data-reveal]:nth-child(8) { transition-delay: 0.75s; }
[data-reveal-group] > [data-reveal]:nth-child(9) { transition-delay: 0.85s; }
[data-reveal-group] > [data-reveal]:nth-child(10) { transition-delay: 0.95s; }
[data-reveal-group] > [data-reveal]:nth-child(11) { transition-delay: 1.05s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-bg-img { animation: none; }
  .hero.hero-full .hero-copy > * { opacity: 1; transform: none; animation: none; }
  .call-btn .ring-icon { animation: none; }
}
