/* ===== Design tokens ===== */
:root {
  --forest-900: #0c2a1e;
  --forest-800: #153a29;
  --sage-600: #4a5c53;
  --sage-400: #83988c;
  --mint-100: #eef6f1;
  --white: #ffffff;
  --emerald: #1f7a4d;
  --emerald-dark: #155c39;
  --mint-text: #a8ddbe;
  --border: #dbe6df;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(12, 42, 30, 0.1);
  --font-head: 'Sora', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--forest-800);
  background: var(--white);
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--forest-900); line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; color: var(--sage-600); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: .8rem;
  color: var(--emerald-dark);
  margin-bottom: .5em;
}
.section-intro { max-width: 640px; margin-bottom: 2.5rem; font-size: 1.05rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--emerald); color: var(--white); }
.btn-primary:hover { background: var(--emerald-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(31,122,77,.35); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  color: var(--forest-900);
  display: inline-block; transform: skewX(-8deg); letter-spacing: -.01em;
}
.logo span { color: var(--emerald); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-weight: 500; font-size: .95rem; color: var(--forest-800); }
.main-nav a:hover { color: var(--emerald-dark); }
.nav-cta {
  background: var(--forest-900); color: var(--white) !important;
  padding: 10px 20px; border-radius: 999px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--emerald-dark); }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--forest-900); }

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: var(--forest-900);
}
.hero-carousel { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,42,30,.90), rgba(21,58,41,.82));
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 120px 24px; }
.hero-tagline { text-transform: uppercase; letter-spacing: .18em; font-weight: 600; font-size: .85rem; color: var(--mint-text); margin: 0 0 1em; }
.hero-logo {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(3rem, 11vw, 6.5rem); line-height: 1;
  letter-spacing: -.01em;
  display: inline-block; transform: skewX(-8deg);
  color: var(--white);
  margin: 0 0 .3em;
}
.hero-logo span { color: var(--mint-text); }
.hero-sub { color: var(--mint-text); max-width: 620px; margin: 0 auto 2rem; font-size: 1.1rem; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { list-style: none; display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; padding: 0; margin: 0; color: var(--mint-text); font-size: .9rem; }
@media (max-width: 680px) {
  .hero { min-height: 560px; }
  .hero-inner { padding: 90px 24px; }
}

/* ===== Services ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--mint-100);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon { font-size: 2rem; margin-bottom: .5em; }
.card p { margin-bottom: 0; }

/* ===== Why us ===== */
.why-us { background: var(--mint-100); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item h3 { font-size: 1.1rem; }
.why-item p { font-size: .95rem; margin-bottom: 0; }

/* ===== Areas ===== */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-county {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.area-county h3 { color: var(--emerald-dark); font-size: 1.05rem; }
.area-county p { margin: 0; font-size: .92rem; }

/* ===== Gallery ===== */
.gallery { background: var(--mint-100); }
.gallery-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--forest-900);
}
.gallery-carousel.gallery-empty {
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--sage-400);
  background: repeating-linear-gradient(45deg, var(--forest-900), var(--forest-900) 10px, #123526 10px, #123526 20px);
}
.gallery-carousel.gallery-empty p { color: var(--mint-text); font-size: .95rem; margin: 0; }
.gallery-carousel-track { position: absolute; inset: 0; }
.gallery-carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.gallery-carousel-slide.active { opacity: 1; }
.gallery-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: rgba(12,42,30,.55); color: var(--white);
  font-size: 1rem; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.carousel-arrow:hover { background: var(--emerald); }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }
.carousel-counter {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(12,42,30,.55); color: var(--white);
  font-size: .8rem; padding: 4px 10px; border-radius: 999px;
}
.carousel-dots {
  position: absolute; bottom: 16px; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center; gap: 8px;
}
.carousel-dots .dot {
  width: 9px; height: 9px; border-radius: 999px; border: none; padding: 0;
  background: rgba(255,255,255,.5); cursor: pointer; transition: all .2s ease;
}
.carousel-dots .dot.active { background: var(--white); width: 22px; }
@media (max-width: 680px) {
  .gallery-carousel { aspect-ratio: 3/4; }
  .carousel-arrow { width: 38px; height: 38px; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
  color: var(--forest-900); display: flex; justify-content: space-between; align-items: center;
}
.faq-icon { color: var(--emerald-dark); font-size: 1.3rem; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding-bottom: 18px; }

/* ===== Contact ===== */
.contact { background: var(--forest-900); color: var(--white); text-align: center; }
.contact h2 { color: var(--white); }
.contact-cta { max-width: 560px; margin: 0 auto; }
.contact-cta > p { color: var(--mint-text); }
.contact-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0; }
.contact-meta { font-size: .9rem; color: var(--mint-text); margin-bottom: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--forest-900); color: var(--mint-text); border-top: 1px solid #20422f; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; padding: 56px 24px 32px; }
.footer-inner h4 { color: var(--white); font-size: .95rem; margin-bottom: .6em; }
.footer-inner p { color: #7fae8f; font-size: .9rem; }
.footer-bottom { border-top: 1px solid #20422f; padding: 20px 24px; font-size: .82rem; color: var(--sage-400); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .card-grid, .why-grid, .areas-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .main-nav {
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; padding: 16px 24px; gap: 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .card-grid, .why-grid, .areas-grid, .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
