:root {
  --white: #FFFFFF;
  --green: #2FA36B;
  --green-dark: #258558;
  --mint: #EAF7F0;
  --deep: #17493A;
  --deep-2: #103A2E;
  --ink: #1E293B;
  --muted: #55677a;
  --line: #dcebe3;
  --radius: 14px;
  --shadow: 0 14px 34px rgba(47, 163, 107, 0.13);
  --shadow-soft: 0 8px 22px rgba(23, 73, 58, 0.08);
  --font-heading: 'Manrope', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Karla', 'Segoe UI', 'Trebuchet MS', Verdana, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.container.narrow { max-width: 820px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--deep);
  border-color: var(--deep);
}
.btn-ghost:hover { background: var(--deep); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: var(--deep);
  border-color: rgba(23, 73, 58, 0.35);
}
.btn-outline-light:hover { border-color: var(--deep); }

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* Top bar */
.topbar {
  background: var(--mint);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
}

.topbar a { color: var(--deep); font-weight: 700; }
.topbar a:hover { color: var(--green); }

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

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--deep);
  letter-spacing: -0.01em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav > a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav > a:hover,
.site-nav > a.active { color: var(--green); border-bottom-color: var(--green); }

.site-nav .nav-cta { border-bottom: 0; padding: 0.6rem 1.4rem; }
.site-nav .nav-cta:hover { color: #fff; border-bottom: 0; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  width: 44px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 26px;
  border-radius: 3px;
  background: var(--deep);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  background: var(--mint);
  padding: 4.5rem 0 5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 { margin-bottom: 1.2rem; }
.hero-copy p { font-size: 1.1rem; color: var(--muted); max-width: 34rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-media { position: relative; }

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-chip {
  position: absolute;
  left: 1.4rem;
  bottom: -1.1rem;
  background: var(--white);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--deep);
  box-shadow: var(--shadow);
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--mint);
  padding: 3.5rem 0;
  text-align: center;
}

.page-hero p { color: var(--muted); max-width: 40rem; margin: 0.8rem auto 0; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-tint { background: var(--mint); }

.section-lede { color: var(--muted); max-width: 44rem; margin-bottom: 2.2rem; }

.center-actions { text-align: center; margin-top: 2rem; }
.section-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-tint .service-card { background: var(--white); }
.section:not(.section-tint) .service-card { background: #fbfdfc; }

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card h3 { margin-bottom: 0.55rem; color: var(--deep); }
.service-card p { font-size: 0.95rem; color: var(--muted); }

/* Service detail page */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.3rem;
}

.service-detail {
  background: #fbfdfc;
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.service-detail h2 { font-size: 1.25rem; margin-bottom: 0.7rem; color: var(--deep); }
.service-detail p { font-size: 0.98rem; color: var(--muted); }

/* Split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-card img { width: 100%; height: 300px; object-fit: cover; }

.gallery-card figcaption {
  padding: 1rem 1.3rem 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

/* Quote band */
.quote-band {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: url('../img/home1.jpg') center/cover no-repeat;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(23, 73, 58, 0.72), rgba(23, 73, 58, 0.72));
}

.quote-band blockquote {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 4rem 0;
}

.quote-band p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  max-width: 44rem;
  margin: 0 auto 1rem;
  line-height: 1.4;
}

.quote-band cite {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mint);
}

/* Checklist */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2.5rem;
  margin-top: 1.5rem;
}

.checklist li {
  position: relative;
  padding-left: 2.6rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 12px;
  width: 6px;
  height: 11px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(42deg);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-card, .contact-map {
  background: #fbfdfc;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact-list { list-style: none; margin: 1.2rem 0 1.4rem; }

.contact-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.8rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.contact-list li:last-child { border-bottom: 0; }
.contact-label { font-family: var(--font-heading); font-weight: 700; color: var(--deep); font-size: 0.9rem; }

.contact-note { font-size: 0.95rem; color: var(--muted); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.map-note { font-size: 0.92rem; color: var(--muted); margin-top: 0.9rem; }

/* Policy content */
.policy-content h2 { font-size: 1.3rem; margin-top: 2rem; }
.policy-content ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.policy-content li { margin-bottom: 0.4rem; }

/* Footer */
.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.7rem;
}

.footer-blurb { font-size: 0.95rem; color: rgba(255, 255, 255, 0.72); max-width: 22rem; }

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.9rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-links a { color: rgba(255, 255, 255, 0.85); }
.footer-links a:hover { color: var(--mint); }

.footer-small {
  background: var(--deep-2);
  padding: 1.1rem 0;
  font-size: 0.85rem;
}

.footer-small-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-small a { color: rgba(255, 255, 255, 0.75); }
.footer-small a:hover { color: var(--mint); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--white);
  border-top: 3px solid var(--green);
  box-shadow: 0 -10px 30px rgba(23, 73, 58, 0.18);
  padding: 1.1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner.show { display: flex; }

.cookie-banner p { margin: 0; font-size: 0.92rem; color: var(--ink); max-width: 46rem; }

.cookie-actions { display: flex; gap: 0.7rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }

  .hero { padding: 3rem 0 3.5rem; }
  .section { padding: 3rem 0; }

  .checklist { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0 1.8rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card img { height: 240px; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(23, 73, 58, 0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.6rem 4%;
    display: none;
    margin-left: 0;
  }

  .site-nav.open { display: flex; }

  .site-nav > a {
    width: 100%;
    padding: 0.8rem 0.2rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    width: 100%;
    margin: 0.8rem 0 0.6rem;
    border-bottom: 0;
  }

  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-note { display: none; }
}

@media (max-width: 520px) {
  h1 { font-size: 1.9rem; }
  .hero-actions .btn { width: 100%; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.15rem; }
}
