*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #1e3a2f;
  --green-mid:   #2e5941;
  --green-light: #4a7c5c;
  --cream:       #f8f3ec;
  --cream-dark:  #ede5d8;
  --text-dark:   #1a1a1a;
  --white:       #ffffff;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  background: var(--green-dark);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.nav-logo {
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
}
.nav-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .09em;
  color: var(--cream-dark);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: .875rem;
  letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: .3s;
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: var(--cream-dark);
  padding: 3.5rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand h3 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: .5rem;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  color: var(--cream);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: .875rem;
  line-height: 2;
}
.footer-col address a { color: var(--cream-dark); text-decoration: none; transition: color .2s; }
.footer-col address a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--green-mid); color: var(--white); border-color: var(--green-mid); }
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-dark { background: var(--green-dark); color: var(--cream); border-color: var(--green-dark); }
.btn-dark:hover { background: var(--green-mid); border-color: var(--green-mid); }

/* ── LAYOUT UTILITIES ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
  line-height: 1.75;
}

/* ── HERO (HOME) ── */
.hero {
  background: linear-gradient(140deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--cream);
  padding: 7rem 2rem;
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(248,243,236,.55);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  max-width: 620px;
}
.hero p {
  font-size: 1.05rem;
  max-width: 520px;
  opacity: .85;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SERVICES PREVIEW (HOME) ── */
.services-preview { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.75rem;
  border-left: 4px solid var(--green-mid);
}
.service-card h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1rem;
  margin-bottom: .6rem;
}
.service-card p { font-size: .9rem; color: #555; line-height: 1.7; }

/* ── WHY CHOOSE (HOME) ── */
.why-us { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.why-item { text-align: center; }
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.why-icon svg { width: 26px; height: 26px; stroke: var(--cream); }
.why-item h3 { font-family: var(--font-heading); color: var(--green-dark); font-size: .95rem; margin-bottom: .5rem; }
.why-item p { font-size: .875rem; color: #555; line-height: 1.75; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--green-mid);
  color: var(--cream);
  padding: 4.5rem 2rem;
  text-align: center;
}
.cta-band h2 { font-family: var(--font-heading); font-size: 1.75rem; margin-bottom: 1rem; }
.cta-band p { opacity: .85; margin-bottom: 2rem; font-size: 1.05rem; }

/* ── PAGE HERO (INNER PAGES) ── */
.page-hero {
  background: linear-gradient(140deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--cream);
  padding: 4rem 2rem;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: .75rem;
}
.page-hero p { opacity: .8; font-size: 1.05rem; max-width: 560px; }

/* ── SERVICES DETAIL PAGE ── */
.services-detail { background: var(--white); }
.service-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-block-label {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.15rem;
  line-height: 1.4;
  padding-top: .25rem;
}
.service-block-label span {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: .5rem;
}
.service-block-body h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1rem;
  margin-bottom: .6rem;
  margin-top: 1.5rem;
}
.service-block-body h3:first-child { margin-top: 0; }
.service-block-body p { font-size: .925rem; color: #444; line-height: 1.8; margin-bottom: .5rem; }
.service-block-body ul { list-style: none; margin: .75rem 0; }
.service-block-body ul li {
  font-size: .925rem;
  color: #444;
  padding: .3rem 0 .3rem 1.5rem;
  position: relative;
  line-height: 1.6;
}
.service-block-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .8rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ── ABOUT PAGE ── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.about-body h2 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: .75rem;
  margin-top: 2.25rem;
}
.about-body h2:first-child { margin-top: 0; }
.about-body p { font-size: .95rem; color: #444; line-height: 1.85; margin-bottom: 1rem; }

.credential-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--green-mid);
}
.credential-card h4 { font-family: var(--font-heading); color: var(--green-dark); font-size: .9rem; margin-bottom: .2rem; }
.credential-card p { font-size: .8rem; color: #666; }

.sidebar-box {
  background: var(--green-dark);
  color: var(--cream);
  border-radius: 10px;
  padding: 2rem;
  position: sticky;
  top: 90px;
}
.sidebar-box h3 { font-family: var(--font-heading); font-size: .95rem; margin-bottom: 1.25rem; }
.sidebar-box address { font-style: normal; font-size: .875rem; line-height: 2; }
.sidebar-box address a { color: var(--cream-dark); text-decoration: none; }
.sidebar-box address a:hover { color: var(--white); }
.sidebar-box .btn { margin-top: 1.5rem; width: 100%; text-align: center; display: block; }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.35rem;
  margin-bottom: .75rem;
}
.contact-info > p { font-size: .95rem; color: #555; margin-bottom: 2.5rem; line-height: 1.75; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--cream); }
.contact-item-text h4 {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: .25rem;
}
.contact-item-text p,
.contact-item-text a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: .95rem;
  line-height: 1.65;
}
.contact-item-text a:hover { color: var(--green-mid); }

.hours-block { margin-top: 2.5rem; }
.hours-block h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table td { padding: .6rem 0; color: #444; }
.hours-table td:last-child { text-align: right; color: #222; font-weight: 500; }

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  position: sticky;
  top: 90px;
}
.map-wrapper iframe { width: 100%; height: 440px; border: none; display: block; }
.map-link {
  display: block;
  background: var(--cream);
  text-align: center;
  padding: .75rem;
  font-size: .8rem;
  color: var(--green-mid);
  text-decoration: none;
  font-weight: 500;
}
.map-link:hover { background: var(--cream-dark); }

/* ── 404 PAGE ── */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem;
  min-height: 60vh;
}
.not-found h1 { font-family: var(--font-heading); font-size: 5rem; color: var(--green-dark); line-height: 1; margin-bottom: .5rem; }
.not-found h2 { font-family: var(--font-heading); color: var(--green-dark); font-size: 1.5rem; margin-bottom: 1rem; }
.not-found p { color: #555; max-width: 400px; margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block { grid-template-columns: 1fr; gap: 1rem; }
  .map-wrapper,
  .sidebar-box { position: static; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--green-dark);
    padding: .5rem 2rem 1.5rem;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .hero { padding: 4.5rem 1.5rem; }
  .section { padding: 3.5rem 1.5rem; }
}
