:root {
  --green: #2f6b3c;
  --green-dark: #234f2c;
  --gold: #d99a1f;
  --cream: #faf8f3;
  --ink: #1e2b22;
  --ink-soft: #4a5a4e;
  --line: #dcd6c8;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(30, 43, 34, 0.08), 0 8px 24px rgba(30, 43, 34, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  max-width: 1260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.brand .sun-icon {
  width: 34px;
  height: 34px;
  flex: none;
}

.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green);
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 1.35rem;
  border-left: 1px solid var(--line);
}

.lang-toggle a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.lang-toggle a.active {
  color: var(--green);
  background: rgba(47, 107, 60, 0.1);
}

.lang-toggle a:hover {
  color: var(--green);
}

.lang-toggle .sep {
  color: var(--line);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 43, 34, 0.72), rgba(30, 43, 34, 0.82)), var(--hero-img) center/cover no-repeat;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  text-wrap: balance;
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 55ch;
  margin: 0 0 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-badge svg {
  flex: none;
  color: var(--gold);
}

/* ---------- Section shell ---------- */

section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 620px;
  margin: 0 0 2.5rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin: 0 0 0.6rem;
  text-wrap: balance;
}

.section-head p {
  color: var(--ink-soft);
  margin: 0;
}

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Services ---------- */

.services-primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.services-secondary-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.services-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.service-chip .icon-sm {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* ---------- Gallery ---------- */

.gallery-filters {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(47, 107, 60, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--line);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .tag {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  background: rgba(30, 43, 34, 0.75);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.gallery-item.hidden {
  display: none;
}

.gallery-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Why Us ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-item {
  text-align: left;
}

.why-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft, rgba(217, 154, 31, 0.15));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.why-item h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.why-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- Service area ---------- */

.county-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.county-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.1rem 1rem;
  text-align: center;
}

.county-list .county-name {
  display: block;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.county-list .county-cities {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ---------- Reviews ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.reviews-more {
  margin-top: 1.5rem;
  text-align: center;
}

.reviews-more a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.reviews-more a:hover {
  text-decoration: underline;
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.review-date {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.review-card p.quote {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  color: var(--ink);
}

.review-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  margin: 0 0 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.contact-detail .icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.contact-detail strong {
  display: block;
  font-size: 0.9rem;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.94rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* honeypot field, hidden from real users */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  margin: 1rem 0;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  color: var(--green-dark);
}

.form-status.error {
  display: block;
  color: #b3401f;
}

.form-status.sending {
  display: block;
  color: var(--ink-soft);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.footer-brand .sun-icon {
  width: 28px;
  height: 28px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.9rem;
}

.site-footer p {
  font-size: 0.88rem;
  margin: 0 0 0.5rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
}

.site-footer a {
  text-decoration: none;
  color: inherit;
}

.site-footer a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.4rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-bottom .credit {
  color: rgba(255, 255, 255, 0.55);
  margin-left: auto;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.2s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: block;
  }

  .header-cta .phone-link {
    display: none;
  }

  .services-primary,
  .services-secondary,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .county-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-primary,
  .services-secondary,
  .gallery-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .county-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero .container {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  section {
    padding: 3rem 0;
  }
}
