/* ==== 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, menu, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FAF3E3;
  color: #264E36;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
}
ul, ol {
  list-style: none;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, textarea, select {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  font-size: 1em;
}

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Playfair+Display:wght@700&display=swap');

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: #264E36;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}
p, li, a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #264E36;
  font-weight: 400;
}
.subheadline {
  color: #517F53;
  font-size: 1.12rem;
  margin-bottom: 20px;
}

/* ==== LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== FLEXBOX PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 19px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(38, 78, 54, 0.06);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(38,78,54,0.09);
  border-radius: 19px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px 0 rgba(38,78,54,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 19px;
  padding: 25px 22px;
  box-shadow: 0 1.5px 10px 0 rgba(38, 78, 54, 0.04);
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 5px 23px 0 rgba(38,78,54,0.09);
  transform: translateY(-2px) scale(1.01);
}

/* ==== HEADER ==== */
header {
  background: #FAF3E3;
  width: 100%;
  box-shadow: 0 1px 12px -6px #9DC88D22;
  z-index: 990;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}
header img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #264E36;
  border-radius: 8px;
  padding: 7px 14px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #9DC88D33;
  color: #264E36;
}
.cta-btn {
  display: inline-block;
  background: #264E36;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 24px;
  padding: 12px 28px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px 0 rgba(38,78,54,0.11);
  transition: background 0.13s, color 0.13s, box-shadow 0.13s, transform 0.14s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #517F53;
  color: #fff;
  box-shadow: 0 5px 24px 0 rgba(38,78,54,0.13);
  transform: translateY(-2px) scale(1.016);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 1099;
  background: #264E36;
  color: #fff;
  font-size: 2rem;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #517F53;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FAF3E3;
  box-shadow: 0 8px 30px 2px #264E3619;
  z-index: 1999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 0 0 0;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.7,1.5,.45,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 0 18px 22px 0;
  background: #264E36;
  color: #fff;
  font-size: 2.1rem;
  padding: 3px 9px;
  border-radius: 50%;
  transition: background 0.17s;
}
.mobile-menu-close:active,
.mobile-menu-close:focus {
  background: #517F53;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding-left: 34px;
}
.mobile-nav a {
  font-size: 1.19rem;
  font-weight: 500;
  color: #264E36;
  border-radius: 12px;
  padding: 9px 0 9px 8px;
  margin-bottom: 2px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #9DC88D33;
  color: #264E36;
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(120deg, #FAF3E3 90%, #9DC88D09 100%);
  min-height: 420px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #264E36;
  font-size: 2.4rem;
  line-height: 1.18;
  margin-bottom: 6px;
}
.hero .cta-btn {
  margin-top: 12px;
}

/* ==== FEATURES ==== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features .feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.features .feature-item h3 {
  margin-bottom: 3px;
  color: #264E36;
  font-size: 1.16rem;
}
.features .feature-item p {
  color: #517F53;
  font-size: 1rem;
}

/* ==== TEXT GRIDS / TEXT SECTIONS ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul {
  margin-left: 18px;
  list-style: disc;
  color: #264E36;
  font-size: 1rem;
  margin-bottom: 3px;
}
.text-section li {
  margin-bottom: 7px;
  line-height: 1.6;
}

/* ==== SERVICES PAGE ==== */
.services-list .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 1.5px 10px 0 rgba(38, 78, 54, 0.03);
  padding: 28px 22px 28px 22px;
  flex: 1 1 290px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.19s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-item:hover {
  box-shadow: 0 4px 22px 0 rgba(38,78,54,0.09);
  transform: translateY(-2px) scale(1.01);
}
.service-item .service-price {
  color: #517F53;
  font-weight: 600;
  margin-bottom: 7px;
}
.service-item ul {
  margin-bottom: 0;
}

/* ==== BLOG PREVIEW ==== */
.blog-post-preview {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 6px rgba(38,78,54,0.06);
  padding: 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.14s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-post-preview:hover {
  box-shadow: 0 6px 22px 0 rgba(38,78,54,0.12);
  transform: translateY(-1.4px) scale(1.007);
}
.blog-post-preview h3 {
  color: #264E36;
  font-size: 1.21rem;
  margin-bottom: 2px;
}
.blog-post-preview p {
  color: #517F53;
  font-size: 1rem;
}
.blog-post-preview a {
  color: #264E36;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
  margin-top: 3px;
  transition: color 0.13s;
}
.blog-post-preview a:hover { color: #517F53; }
.blog-categories {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.blog-categories span {
  background: #9DC88D26;
  color: #264E36;
  border-radius: 11px;
  padding: 3px 13px;
  font-size: 0.96rem;
  font-weight: 500;
}

/* ==== TESTIMONIALS ==== */
.testimonials, .testimonials-preview {
  background: #FAF3E3;
  padding-top: 30px;
  padding-bottom: 36px;
}
.testimonials-preview h2 {
  margin-bottom: 24px;
}
.testimonial-card {
  color: #264E36;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(38,78,54,0.09);
  border-radius: 19px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  min-width: 0;
}
.testimonial-card .star-rating {
  color: #9DC88D;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 4px;
  letter-spacing: 2px;
}
.testimonial-card .client-info {
  color: #517F53;
  font-size: 1rem;
  margin-top: 5px;
  font-style: italic;
}

/* ==== CTA ==== */
.cta {
  background: #264E36;
  color: #fff;
  border-radius: 21px;
  box-shadow: 0 4px 24px 0 rgba(38,78,54,0.12);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta-btn {
  background: #9DC88D;
  color: #264E36 !important;
  margin-top: 16px;
  box-shadow: 0 2px 12px 0 #9DC88D22;
  border: none;
}
.cta .cta-btn:hover {
  background: #fff;
  color: #264E36 !important;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 1.5px solid #9DC88D26;
  padding: 36px 0 26px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 36px;
}
.footer-nav {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #517F53;
  font-size: 1rem;
  border-radius: 7px;
  padding: 3.5px 9px;
  transition: background 0.11s, color 0.11s;
}
.footer-nav a:hover {
  background: #9DC88D33;
}
.footer-contact {
  color: #517F53;
  font-size: 0.96rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* ==== LOCATION MAP PLACEHOLDER ==== */
.location-map-placeholder {
  background: #E2EDD9;
  color: #264E36;
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 10px;
  font-size: 1rem;
  text-align: left;
  font-style: italic;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #264E36;
  color: #fff;
  box-shadow: 0 -3px 18px #264E3633;
  padding: 22px 18px 22px 18px;
  display: flex;
  justify-content: center;
  z-index: 3001;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  transition: transform 0.28s cubic-bezier(0.5,0.9,0.25,1);
}
.cookie-banner.closed {
  transform: translateY(110%);
}
.cookie-banner-message {
  font-size: 1.05rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  flex: 1 1 280px;
}
.cookie-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btns button {
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 19px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: background 0.14s, color 0.12s, box-shadow 0.12s;
}
.cookie-btns .accept-all {
  background: #9DC88D;
  color: #264E36;
}
.cookie-btns .accept-all:hover {
  background: #fff;
}
.cookie-btns .reject-all {
  background: #fff;
  color: #264E36;
}
.cookie-btns .reject-all:hover {
  background: #9DC88D;
  color: #264E36;
}
.cookie-btns .cookie-settings {
  background: #517F5330;
  color: #fff;
  border: 1px solid #9DC88D80;
}
.cookie-btns .cookie-settings:hover {
  background: #9DC88D;
  color: #264E36;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #264E369b;
  z-index: 4002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.closed {
  display: none;
  opacity: 0;
}
.cookie-modal {
  background: #fff;
  color: #264E36;
  border-radius: 20px;
  box-shadow: 0 8px 40px #264E366b;
  min-width: 320px;
  max-width: 94vw;
  padding: 34px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: #264E36;
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.03rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: #517F53;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal .modal-btns button {
  padding: 8px 19px;
  border-radius: 17px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  background: #9DC88D;
  color: #264E36;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .modal-btns button:hover {
  background: #517F53;
  color: #fff;
}

/* ==== PAGE UTILITY ==== */
.thank-you {
  background: #FAF3E3;
  padding-bottom: 60px;
  padding-top: 50px;
}
.privacy-policy,
.gdpr-page,
.cookies-policy,
.terms-of-use {
  background: #fff;
  padding-bottom: 60px;
  padding-top: 40px;
  border-radius: 21px;
}

/* ==== SPACING AND CONSISTENCY ==== */
.about-intro, .about-page, .why-us, .contact-page, .case-studies, .before-after, .review-summary {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== RESPONSIVE STYLES ==== */
@media (max-width: 1010px) {
  .container {
    max-width: 92vw;
  }
  header .container {
    flex-wrap: wrap;
    gap: 14px;
  }
  footer .container {
    gap: 17px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .features .feature-grid,
  .services-list .service-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-item {
    min-width: 0;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .hero { padding-top: 30px; padding-bottom: 36px; min-height: unset; }
  .cta, .section, section, .about-intro, .why-us, .contact-page, .case-studies, .before-after, .review-summary {
    padding: 30px 7px;
    margin-bottom: 40px;
    border-radius: 11px;
  }
  .footer-logo img { height: 30px; }
  .footer-contact { font-size: 0.98rem; }
  .cookie-modal { min-width: 0; padding: 19px 8px 18px 8px; }
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 650px) {
  .container {
    padding: 0 7px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.07rem; }
  .testimonial-card, .feature-item, .service-item {
    padding: 14px 7px;
  }
  .cta {
    padding: 17px 7px;
    border-radius: 10px;
  }
  .blog-post-preview {
    padding: 9px 7px;
    border-radius: 10px;
  }
  .mobile-menu {
    padding-top: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-left: 8px; padding-right: 8px;
  }
  .cookie-modal { min-width: 98vw; }
}

/* ==== UTILITY CLASSES ==== */
.hide {
  display: none !important;
}

/* ==== TRANSITIONS (MICRO-INTERACTIONS) ==== */
a, button, .cta-btn, .feature-item, .service-item, .testimonial-card, .blog-post-preview, .footer-nav a {
  transition: background 0.13s, color 0.12s, box-shadow 0.13s, transform 0.13s;
}

/* ==== Z-INDEX FOR MOBILE MENU & COOKIE BANNER ==== */
.mobile-menu { z-index: 1999; }
.cookie-banner { z-index: 3001; }
.cookie-modal-overlay { z-index: 4002; }

/* ==== COLOR UTILITY ==== */
.text-primary { color: #264E36; }
.text-secondary { color: #517F53; }
.text-accent { color: #9DC88D; }
.bg-accent { background: #9DC88D; }
.bg-primary { background: #264E36; }
.bg-light { background: #FAF3E3; }

/******************************************
* NO CSS GRID, NO CSS COLUMNS EVER USED!  *
*******************************************/
