:root {
  --bg: #f2ede2;
  --bg-soft: #e6ddcc;
  --surface: rgba(255, 250, 241, 0.9);
  --surface-dark: #223126;
  --surface-deep: #182118;
  --text: #1d241f;
  --text-light: #f7f2e8;
  --muted: #596456;
  --line: rgba(44, 58, 45, 0.12);
  --primary: #2f4c34;
  --primary-2: #3e5f39;
  --accent: #ad6532;
  --accent-soft: #d58c4d;
  --shadow: 0 18px 48px rgba(16, 24, 17, 0.16);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Public Sans', 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(78, 101, 69, 0.14), transparent 30%),
    linear-gradient(180deg, #f6f1e8 0%, #eee5d5 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section { padding: 4.75rem 0; }
.section-dark {
  background:
    linear-gradient(180deg, rgba(20, 30, 20, 0.96), rgba(28, 43, 31, 0.96)),
    linear-gradient(135deg, #243426, #182118);
  color: var(--text-light);
}
.section-dark.has-bg {
  background-size: cover;
  background-position: center;
}
#gallery {
  background:
    linear-gradient(180deg, rgba(14, 22, 15, 0.92), rgba(20, 30, 22, 0.88)),
    url('../images/reclaim-your-land.jpg') center/cover no-repeat;
}
#service-area {
  background:
    linear-gradient(180deg, rgba(14, 22, 15, 0.90), rgba(20, 30, 22, 0.86)),
    url('../images/cleared-pines.jpg') center/cover no-repeat;
}
.kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading.narrow { max-width: 640px; }
h1, h2, h3, .brand {
  margin: 0 0 0.75rem;
  font-family: 'Teko', 'Barlow Condensed', sans-serif;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3.5rem, 10vw, 7rem); letter-spacing: 0.04em; }
h2 { font-size: clamp(2.3rem, 5vw, 3.5rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(17, 24, 18, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand {
  color: #f6f1e8;
  font-size: 1.75rem;
  letter-spacing: 0.03em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: rgba(246, 241, 232, 0.92);
  font-weight: 600;
}
.site-nav a:hover { color: #fff; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.25rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #f6f1e8;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(11, 18, 12, 0.82), rgba(24, 37, 26, 0.65)),
    url('../images/hero.jpg') center/cover no-repeat;
}
.section-cream {
  background: linear-gradient(180deg, #f6f1e8 0%, #eee5d5 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 16, 11, 0.18), rgba(10, 16, 11, 0.38)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025), rgba(255,255,255,0.025) 1px, transparent 1px, transparent 80px);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  color: var(--text-light);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
  font-weight: 700;
}
.hero-copy {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(247, 242, 232, 0.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff8f0;
  box-shadow: 0 14px 36px rgba(173, 101, 50, 0.24);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: var(--text-light);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-points li {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(247, 242, 232, 0.92);
  font-weight: 600;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.section-dark .card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}
.services-grid,
.process-grid,
.benefits-grid {
  display: grid;
  gap: 1rem;
}
.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card,
.process-card,
.benefits-grid .card {
  padding: 1.5rem;
}
.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(44, 58, 45, 0.08);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(16, 24, 17, 0.22);
  border-color: var(--accent);
}
.icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47, 76, 52, 0.18), rgba(173, 101, 50, 0.22));
  font-size: 1.6rem;
  border: 1px solid rgba(173, 101, 50, 0.12);
}

/* Full-width photo break */
.photo-break {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 22, 15, 0.3), rgba(14, 22, 15, 0.5));
}
.photo-break-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.photo-break-text h2 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.06em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin: 0;
}
.feature-panel {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #d7a16e;
  font-weight: 800;
}
.step {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.1em;
}
.benefits-section {
  background: linear-gradient(180deg, rgba(225, 216, 198, 0.54), rgba(242, 237, 226, 0));
}
.benefits-layout { align-items: start; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.area-tags span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
}
.map-card {
  min-height: 320px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(49, 74, 45, 0.9), rgba(24, 33, 24, 0.96));
  color: var(--text-light);
}
.map-card h3 {
  font-size: 1.8rem;
  color: var(--accent-soft);
}
.map-card a {
  color: var(--accent-soft);
  font-weight: 700;
}
.map-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 2rem;
  text-align: center;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 45%, rgba(213, 140, 77, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(49, 74, 45, 0.9), rgba(24, 33, 24, 0.96));
}
.map-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 140, 77, 0.55), transparent 70%);
  filter: blur(12px);
}
.map-label {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  color: #fff7eb;
}
.map-placeholder p {
  position: relative;
  z-index: 1;
  max-width: 290px;
  color: rgba(255,247,235,0.88);
}
.contact-layout { align-items: start; }
.contact-details {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.contact-details a {
  font-size: 1.1rem;
  font-weight: 700;
}
.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 49, 38, 0.12);
  background: rgba(255,255,255,0.95);
  color: var(--text);
}
.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.site-footer {
  padding: 2rem 0;
  background: #121914;
  color: rgba(247, 242, 232, 0.9);
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 1rem;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.powered-by {
  color: rgba(247, 242, 232, 0.6);
  font-size: 0.92rem;
}

.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f6f1e8 0%, #eee5d5 100%);
}
.legal-hero {
  padding: 5rem 0 2rem;
  background: linear-gradient(135deg, #1b261d, #314432 65%, #6b4a2e);
  color: var(--text-light);
}
.legal-card {
  padding: 2rem;
  margin: -1rem auto 3rem;
}
.legal-card h2 { margin-top: 2rem; font-size: 2rem; }
.legal-card h3 { margin-top: 1.5rem; }
.legal-card ul { padding-left: 1.25rem; }
.back-link { color: var(--accent); font-weight: 800; }

/* ── GALLERY & FLEET GRIDS ── */
.gallery-grid,
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #111;
}
.photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.photo-card:hover img {
  transform: scale(1.04);
}
.photo-card figcaption {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.6);
}
.photo-card figcaption.tagline {
  font-family: 'Teko', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.section-cream .photo-card {
  box-shadow: var(--shadow);
}
.section-cream .photo-card figcaption {
  background: rgba(30, 42, 32, 0.85);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 1.5rem;
  animation: lbFadeIn 0.2s ease;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 201;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 600;
}
.photo-card {
  cursor: zoom-in;
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── CHAT WIDGET ── */
.chat-widget {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
}
.chat-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 8px 28px rgba(173, 101, 50, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 0;
}
.chat-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(173, 101, 50, 0.5);
}
.chat-fab-icon {
  width: 34px;
  height: 34px;
}
.chat-window {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 380px;
  height: 520px;
  max-height: calc(100vh - 2.5rem);
  border-radius: var(--radius);
  background: #1a231c;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}
.chat-window.open {
  display: flex;
}
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(47, 76, 52, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chat-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #f6f1e8;
  text-transform: none;
  letter-spacing: 0;
}
.chat-close {
  background: none;
  border: none;
  color: #f6f1e8;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.chat-msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  word-wrap: break-word;
}
.chat-msg.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: #e8e2d8;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.typing-indicator {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 0 1rem 0.5rem;
}
.typing-indicator span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: typingDot 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
.chat-form {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.chat-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: none;
  background: rgba(255,255,255,0.05);
  color: #e8e2d8;
  font-size: 0.92rem;
  outline: none;
}
.chat-form input::placeholder {
  color: rgba(255,255,255,0.35);
}
.chat-form button {
  padding: 0.85rem 1.25rem;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.chat-form button:hover {
  background: var(--accent-soft);
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid,
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout,
  .footer-wrap,
  .process-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(17, 24, 18, 0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; }
  .section { padding: 4rem 0; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid,
  .fleet-grid { grid-template-columns: 1fr; }
  .photo-card img { height: 220px; }
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  h1 { line-height: 1; }
  .hero-content { padding: 5rem 0; }
  .btn { width: 100%; }
  .chat-window {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}
