/* ================================================================
   CSS Reset & Normalize
================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, embed, figure, figcaption, footer, header, hgroup, main, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #FAFBF7;
  color: #23412B;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
a {
  color: #205C3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A6C48A;
  outline: none;
}
ul, ol {
  margin-bottom: 1em;
  padding-left: 1.2em;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0;
}

/* -----------------------------------------------------------------
   Typography
------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: #194225;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.005em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 11px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  color: #23412B;
  font-size: 1.08rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: #205C3B;
}

/* -----------------------------------------------------------------
   Layout Spacing & Flexbox Patterns
------------------------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 16px 0 rgba(32,92,59,0.10);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.23s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(32,92,59,0.16);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 4px solid #205C3B;
  border-radius: 9px;
  box-shadow: 0 1px 8px 0 rgba(32,92,59,0.07);
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px 18px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature grid in home (/) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(64,98,66,0.10);
  padding: 26px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.20s;
  margin-bottom: 20px;
}
.feature-grid > div img {
  height: 40px;
  margin-bottom: 14px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 24px 0 rgba(32,92,59,0.13);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-list > div {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 12px;
  padding: 26px 22px;
  box-shadow: 0 2px 12px 0 rgba(32,92,59,0.10);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  transition: box-shadow 0.19s;
}
.service-list > div:hover {
  box-shadow: 0 6px 24px 0 rgba(32,92,59,0.12);
}

/* -----------------------------------------------------------------
   Buttons & CTA
------------------------------------------------------------------- */
.cta-primary, .cta-primary:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #fff;
  background: #205C3B;
  border-radius: 26px;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(32,92,59,0.08);
  padding: 12px 38px;
  margin-top: 7px;
  margin-bottom: 7px;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  text-decoration: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #193d27;
  box-shadow: 0 3px 18px 0 rgba(32, 92, 59, 0.15);
  color: #fff;
}
.cta-secondary {
  background: #A6C48A;
  color: #205C3B;
  border-radius: 22px;
  padding: 10px 25px;
  font-size: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  border: none;
  margin-left: 8px;
  transition: background 0.16s, color 0.16s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #205C3B;
  color: #fff;
}
button, .button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
}

/* -----------------------------------------------------------------
   Header & Navigation
------------------------------------------------------------------- */
header {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #e4eadd;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  padding: 12px 20px;
}
.main-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  color: #23412B;
  padding: 6px 10px 7px 10px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.18s, color 0.2s;
  margin-right: 2px;
}
.main-nav a:not(.cta-primary):hover, .main-nav a:not(.cta-primary):focus {
  background: #A6C48A;
  color: #fff;
}
.main-nav img {
  height: 40px;
  margin-right: 14px;
}

/* Hide burger on desktop, show on mobile */
.mobile-menu-toggle {
  display: none;
  background: #205C3B;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 20px;
  cursor: pointer;
  z-index: 1202;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #193d27;
  color: #fff;
}

/* -----------------------------------------------------------------
   Mobile Menu Overlay
------------------------------------------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100vw;
  background: #F5F8F0;
  z-index: 3000;
  padding: 34px 18px 18px 18px;
  transform: translateX(110vw);
  transition: transform 0.36s cubic-bezier(.47,1.48,.39,1);
  box-shadow: 0 0 40px 0 rgba(32,92,59,0.11);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #205C3B;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 24px;
  cursor: pointer;
  z-index: 3300;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #193d27;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 65px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: #205C3B;
  padding: 12px 0 12px 8px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.19s, color 0.19s;
  width: 100%;
  display: block;
  margin-right: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A6C48A;
  color: #fff;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* -----------------------------------------------------------------
   Hero Section
------------------------------------------------------------------- */
.hero {
  background: #E9ECE1;
  width: 100%;
  border-bottom: 1px solid #e4eadd;
  margin-bottom: 45px;
  padding: 56px 0 46px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #205C3B;
  font-size: 2.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero p {
  color: #23412B;
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 14px;
}

/* -----------------------------------------------------------------
   Sections, Text, Lists, and Tables
------------------------------------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 0;
}
ul.contact-icons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: 0;
  padding-left: 0;
}
ul.contact-icons li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.14rem;
}
ul.list-unstyled {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 1px 9px 0 rgba(32,92,59,0.12);
}
table th, table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid #E9ECE1;
  font-size: 1.10rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
table th {
  background: #A6C48A;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
}
table tr:last-child td {
  border-bottom: none;
}
table tr:nth-child(even) td {
  background: #F5F8F0;
}

/* Project overview inside testimonials */
.project-overview {
  margin-top: 10px;
  font-size: 0.98rem;
  font-family: 'Georgia', serif;
  color: #345A35;
  padding-left: 2px;
}

/* -----------------------------------------------------------------
   Footer
------------------------------------------------------------------- */
footer {
  background: #E9ECE1;
  border-top: 1px solid #e4eadd;
  padding: 36px 0 0 0;
  font-size: 0.98rem;
  color: #205C3B;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  padding-bottom: 30px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #205C3B;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.02rem;
  margin-bottom: 2px;
  transition: color 0.17s;
}
.footer-menu a:hover {
  color: #A6C48A;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  max-width: 330px;
}
.footer-brand {
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  flex: 1 1 100px;
  min-width: 64px;
}
.footer-brand img {
  height: 52px;
  filter: grayscale(60%) contrast(1.18);
  opacity: 0.95;
}

/* -----------------------------------------------------------------
   Responsive Design
------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .feature-grid, .service-list, .card-container {
    flex-direction: column!important;
    gap: 22px!important;
  }
  .feature-grid > div, .service-list > div {
    width: 100%;
    min-width: 0;
  }
  .footer-menu, .footer-contact, .footer-brand {
    min-width: unset;
  }
  footer .container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .card-container, .service-list {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .hero {
    padding: 32px 0 30px 0;
    margin-bottom: 30px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .container {
    padding: 0 7px;
  }
  .footer-brand {
    align-self: flex-start;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start !important;
  }
  .section {
    padding: 27px 7px;
    margin-bottom: 36px;
  }
}
@media (max-width: 610px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.11rem; }
  .testimonial-card { padding: 14px 10px 11px 10px; }
  .hero { padding: 20px 0 16px 0; }
  .footer-brand img { height: 40px; }
}

/* -----------------------------------------------------------------
   Micro-interactions & Subtle Animations
------------------------------------------------------------------- */
.card, .feature-grid > div, .testimonial-card, .service-list > div {
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover, .feature-grid > div:hover, .service-list > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 32px 0 rgba(32,92,59,0.17);
}
.cta-primary, .cta-secondary {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.97);
}

/* -----------------------------------------------------------------
   Cookie Consent Banner & Modal
------------------------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -3px 24px 0 rgba(32,92,59,0.14);
  z-index: 5000;
  padding: 20px 32px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: #23412B;
  min-height: 65px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.17s, transform 0.22s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-accept, .cookie-reject {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.04rem;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: #205C3B;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(32,92,59,0.08);
  transition: background 0.14s;
  margin-right: 4px;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #A6C48A;
  color: #205C3B;
}
.cookie-reject {
  background: #A6C48A;
  color: #205C3B;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #205C3B;
  color: #fff;
}
.cookie-settings {
  background: #fff;
  color: #205C3B;
  border: 1px solid #205C3B;
  border-radius: 8px;
  padding: 9px 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.04rem;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #A6C48A;
  color: #205C3B;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px;
    gap: 10px;
    font-size: 0.956rem;
  }
  .cookie-banner-buttons {
    gap: 8px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 7000;
  background: rgba(32,92,59,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 9px 48px 0 rgba(32,92,59,0.19);
  padding: 34px 22px 28px 22px;
  min-width: 320px;
  max-width: 95vw;
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-family: 'Georgia', serif;
  color: #23412B;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1.07rem;
  font-family: 'Georgia', serif;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #A6C48A;
  width: 20px;
  height: 20px;
}
.cookie-modal .category-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .cookie-accept, .cookie-modal .cookie-reject, .cookie-modal .cookie-settings {
  min-width: 120px;
  padding: 8px 20px;
}

/* -----------------------------------------------------------------
   Misc - Spacing / Accessibility
------------------------------------------------------------------- */
:focus {
  outline: 2px solid #A6C48A;
  outline-offset: 2px;
}
.section, .card, .testimonial-card, .feature-grid > div, .service-list > div {
  margin-bottom: 20px;
}
h2 + ul, h3 + ul, .text-section ul {
  margin-top: 4px;
  margin-bottom: 15px;
}

/* -----------------------------------------------------------------
   Hide content overlap (no absolute content aside from menu)
------------------------------------------------------------------- */
main, .container, .content-wrapper {
  min-width: 0;
  z-index: 1;
}

/* -----------------------------------------------------------------
   Hide / Show Cookie or Menu overlays
------------------------------------------------------------------- */
.cookie-consent-banner.hide,
.cookie-modal-overlay.hide {
  display: none !important;
}
