/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ── Tokens ── */
:root {
  --brand-primary: #1a5f2a;
  --brand-secondary: #d97700;
  --brand-light: #e8f5e9;
  --text-main: #1a1a1a;
  --text-muted: #555;
  --bg-white: #fff;
  --bg-light: #f6f6f6;
  --bg-dark: #0f2e18;
  --border-radius: 12px;
  --transition: 0.18s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
}

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Section spacing ── */
.section-pad {
  padding: 4rem 0 3.5rem;
}
.bg-light {
  background: var(--bg-light);
}

/* ── Header / Hero ── */
.hero-section {
  background: linear-gradient(135deg, #0f2e18 0%, #1a5f2a 60%, #2e7d32 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}
.logo-word {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.72rem;
  opacity: 0.8;
  font-weight: 500;
}
.desktop-nav {
  display: none;
  gap: 1.5rem;
  font-weight: 500;
  font-size: 0.92rem;
}
.desktop-nav a {
  opacity: 0.85;
  transition: var(--transition);
}
.desktop-nav a:hover {
  opacity: 1;
  text-decoration: underline 2px var(--brand-secondary);
  text-underline-offset: 4px;
}
.header-cta {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  background: var(--brand-secondary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  transition: var(--transition);
}
.header-cta:hover {
  background: #b85f00;
  transform: translateY(-1px);
}
.cta-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
.cta-number {
  font-size: 1rem;
}
.mobile-menu-btn {
  color: #fff;
  font-size: 1.5rem;
}

/* ── Hero body ── */
.hero-body {
  padding: 2rem 0 3.5rem;
  display: grid;
  gap: 2.5rem;
}
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
}
.city-highlight {
  color: #ffd54f;
}
.hero-sub {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 520px;
  margin: 0 0 1.5rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: #b85f00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: transparent;
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.trust-checks {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
.hero-visual img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── Section headers ── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.section-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

/* ── Services grid ── */
.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.service-card {
  display: block;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 1rem 1.25rem 0.3rem;
  color: var(--text-main);
}
.service-card p {
  margin: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.service-link {
  display: block;
  margin: 0 1.25rem 1.25rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brand-primary);
}
.service-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── Why section ── */
.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.why-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
}
.why-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── Service areas ── */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.area-link {
  background: var(--bg-white);
  border: 1.5px solid #ddd;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.area-link:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-dark), #1a5f2a);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: 1.7rem;
  font-weight: 900;
  margin: 0 0 0.5rem;
}
.cta-banner > .container > p {
  opacity: 0.85;
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.cta-note {
  font-size: 0.85rem;
  opacity: 0.65;
  margin: 0;
}

/* ── Footer ── */
.site-footer {
  background: #0a1f12;
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  max-width: 300px;
  line-height: 1.55;
  margin: 0;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  color: #fff;
  font-weight: 700;
}
.footer-links a {
  display: block;
  margin-bottom: 0.45rem;
  opacity: 0.75;
  transition: var(--transition);
}
.footer-links a:hover {
  opacity: 1;
  color: #fff;
}
.footer-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.footer-bottom p {
  margin: 0;
  opacity: 0.6;
  font-size: 0.8rem;
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
}
.footer-legal a {
  opacity: 0.55;
  font-size: 0.78rem;
  transition: var(--transition);
}
.footer-legal a:hover {
  opacity: 1;
  color: #fff;
}

/* ── Mobile floating CTA bar ── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  height: 56px;
  background: var(--bg-white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.m-cta-call {
  background: var(--brand-primary);
  color: #fff;
}
.m-cta-sms {
  background: var(--brand-secondary);
  color: #fff;
}

/* ── Desktop overrides (>768px) ── */
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .header-cta { display: flex; }
  .mobile-menu-btn { display: none; }
  .mobile-cta-bar { display: none; }

  .hero-body {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    padding: 3rem 0 5rem;
  }
  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: row; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: row; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-title { font-size: 3.4rem; }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* ── Hidden until loaded ── */
[hidden] { display: none !important; }
