/* 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,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,section,article,aside,footer,header,nav {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  color: #2A3132;
  background: #F8F6F3;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2A3132;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #9AAE86;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #2A3132;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #2A3132;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.25;
  color: #2A3132;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #2A3132;
}
p, li, dd {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2A3132;
  margin-bottom: 1em;
}
strong, b {
  font-weight: 700;
}

/* CONTAINER */
.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;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #F8F6F3 0%, #E6ECE0 100%);
  box-shadow: 0 2px 12px rgba(42,49,50,0.05);
  position: relative;
  z-index: 10;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 0;
  max-width: 1160px;
  margin: 0 auto;
}
.main-nav > a img {
  height: 42px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2A3132;
  padding: 8px 18px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav ul li a.cta {
  background: linear-gradient(90deg, #9AAE86 0%, #6E8571 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 32px;
  box-shadow: 0 3px 12px rgba(154,174,134,0.12);
  padding: 10px 26px;
  margin-left: 16px;
}
.main-nav ul li a.cta:hover, .main-nav ul li a.cta:focus {
  background: linear-gradient(90deg, #7B9866 0%, #9AAE86 100%);
  color: #fff;
}
.main-nav ul li a:not(.cta):hover, .main-nav ul li a:not(.cta):focus {
  background: #ECF4DF;
  color: #9AAE86;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #2A3132;
  margin-left: auto;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ECF4DF;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(125deg, #F8F6F3 65%, #E6ECE0 100%);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.78,.1,.36,.95);
  box-shadow: 6px 0 18px rgba(42,49,50,0.10);
  padding: 0 0 0 20px;
  opacity: 0.98;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 22px 0 0;
  font-size: 2.2rem;
  background: none;
  color: #2A3132;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #ECF4DF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #2A3132;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 13px 0 13px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ECF4DF;
  color: #9AAE86;
}

@media (max-width: 1024px) {
  .main-nav ul li:not(:last-child) {
    margin-right: 0;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 5px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* LAYOUT UTILITY CLASSES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(42,49,50,0.07),0 1.5px 4px rgba(154,174,134,0.15);
  background: #fff;
  position: relative;
  padding: 28px 22px;
  transition: box-shadow 0.25s, background 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(42,49,50,0.10),0 2.5px 8px rgba(154,174,134,0.18);
  background: #F8F6F3;
}
.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;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(154,174,134,0.13);
  margin-bottom: 24px;
  transition: box-shadow 0.2s, background 0.18s;
  min-width: 200px;
  max-width: 480px;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #2A3132;
  margin-bottom: 0;
}
.testimonial-card span {
  font-weight: 600;
  font-size: 0.97rem;
  color: #9AAE86;
}
.testimonial-card .star-rating {
  color: #9AAE86;
  font-size: 1.25em;
  margin-top: 0.5em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(154,174,134,0.19);
  background: #ECF4DF;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(154,174,134,0.10);
  padding: 30px 22px 20px 22px;
  min-width: 200px;
  max-width: 350px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, background 0.15s, transform 0.18s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 5px 22px rgba(154,174,134,0.14);
  background: #F8F6F3;
  transform: translateY(-2px) scale(1.016);
}

.feature-item img {
  width: 46px;
  height: 46px;
}
.feature-item h2, .feature-item h3 {
  margin-bottom: 0.3em;
}
.feature-item p {
  margin-bottom: 0.25em;
  color: #424949;
}
.feature-item .feature-price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  color: #9AAE86;
  margin-top: 5px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.text-section {
  margin-bottom: 28px;
}

/* HERO SECTION / CTA PRIMARY */
.hero {
  background: linear-gradient(108deg, #DDECCE 0%, #F8F6F3 80%);
  padding: 70px 0 60px 0;
  display: flex;
  align-items: center;
  min-height: 320px;
}
.hero h1 {
  font-size: 2.7rem;
  color: #2A3132;
  margin-bottom: 0.45em;
}
.hero p {
  color: #6E8571;
  font-size: 1.25rem;
  margin-bottom: 36px;
}

.cta-primary {
  background: linear-gradient(90deg, #9AAE86 0%, #F8F6F3 70%);
  border-radius: 20px;
  margin-top: 44px;
}
.cta-primary p {
  color: #2A3132;
  font-size: 1.2rem;
}

/* BUTTONS / CTAS */
.cta, .cta-section .cta {
  display: inline-block;
  background: linear-gradient(90deg, #9AAE86 0%, #6E8571 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: .01em;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(154,174,134,0.08);
  margin-top: 10px;
  transition: background 0.2s, box-shadow 0.18s, color 0.14s, transform 0.17s;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, #7B9866 0%, #9AAE86 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(154,174,134,0.16);
  transform: translateY(-1px) scale(1.023);
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #2A3132 75%, #9AAE86 100%);
  padding: 26px 0 12px 0;
  color: #fff;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.85;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  padding: 5px 0;
  transition: color 0.19s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #9AAE86;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #fff;
  font-size: 0.96rem;
}
.footer-contact img {
  width: 17px;
  vertical-align: middle;
  margin-right: 8px;
}
footer p {
  margin-bottom: 4px;
  color: #fff;
}

/* BLOG HIGHLIGHTS */
.featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.featured-posts li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(154,174,134,0.11);
  padding: 24px 20px 20px 20px;
  min-width: 200px;
  flex: 1 1 270px;
  max-width: 360px;
  transition: box-shadow 0.16s, background 0.15s;
  margin-bottom: 20px;
}
.featured-posts li:hover {
  box-shadow: 0 8px 26px rgba(154,174,134,0.15);
  background: #F8F6F3;
}
.featured-posts h3 {
  margin-bottom: 0.6em;
  font-size: 1.13rem;
}
.featured-posts a {
  font-weight: 600;
  color: #9AAE86;
  margin-top: 4px;
  display: inline-block;
  transition: color 0.18s;
}
.featured-posts a:hover, .featured-posts a:focus {
  color: #2A3132;
}

/* FAQ */
dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #2A3132;
  font-size: 1.07rem;
  margin-bottom: 2px;
}
dd {
  margin-left: 0;
  color: #424949;
  margin-bottom: 6px;
  font-size: .98rem;
}

/* PROCESS, USP, LISTS */
ol, ul {
  margin-left: 0;
}
ol > li, ul > li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 0px;
}
ol {
  counter-reset: procstep;
}
ol > li {
  counter-increment: procstep;
  padding-left: 30px;
}
ol > li:before {
  content: counter(procstep) '. ';
  font-weight: 600;
  color: #9AAE86;
  position: absolute;
  left: 0;
}
ul > li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #9AAE86;
  margin-right: 10px;
}

.text-section ul, ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

div.text-section {
  margin-bottom: 20px;
}

blockquote {
  color: #6E8571;
  border-left: 4px solid #9AAE86;
  padding: 10px 22px 10px 20px;
  background: #f7faef;
  border-radius: 11px;
  margin: 0 0 16px 0;
  font-style: italic;
}

/* MAP */
.map-section img {
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(42,49,50,0.07);
}

/* THANK YOU PAGE */
.thankyou .text-section a.cta {
  margin-top: 26px;
  margin-bottom: 0;
}

/* SPACING OVERRIDES - page-specific sections */
.features,.services-list,.project-overview,.faq,.ideas,.advice,.testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* TESTIMONIALS GRID */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonials-section .testimonial-card {
  width: 100%;
  max-width: 540px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1120px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .main-nav > a img {
    height: 36px;
  }
  .footer-container {
    flex-direction: column;
    gap: 26px;
  }
}
@media (max-width: 830px) {
  .feature-grid, .card-container, .testimonial-grid, .featured-posts {
    justify-content: flex-start;
    gap: 16px;
  }
  .feature-item, .testimonial-card, .card, .featured-posts li {
    min-width: 160px;
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.38rem;
  }
  .hero {
    padding: 42px 0 30px 0;
    min-height: 180px;
    text-align: left;
  }
  .feature-grid, .testimonial-grid, .featured-posts, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .features, .services-list, .project-overview, .faq, .ideas, .advice, .testimonials-section {
    padding: 30px 0px 34px 0px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 0;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .main-nav {
    padding: 10px 10px 10px 0;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  section, .section {
    padding: 22px 0;
  }
  .feature-item, .testimonial-card, .card {
    padding: 17px 9px 16px 10px;
  }
  .footer-nav a {
    padding: 3px 2px;
    font-size: 0.96rem;
  }
}

/* SMOOTH TRANSITIONS & MICRO-INTERACTIONS */
button, .cta, a, .main-nav ul li a, .feature-item,
.card, .testimonial-card, .featured-posts li {
  transition: background 0.18s, color 0.17s, box-shadow 0.18s, transform 0.12s;
}

/* SCROLLBAR STYLING */
body::-webkit-scrollbar {
  width: 9px;
}
body::-webkit-scrollbar-thumb {
  background: #E6ECE0;
  border-radius: 6px;
}
body::-webkit-scrollbar-track {
  background: #F8F6F3;
  border-radius: 6px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2A3132;
  color: #fff;
  z-index: 3000;
  padding: 22px 24px 22px 16px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0 -4px 16px rgba(42,49,50,0.11);
  min-height: 44px;
  font-size: 1rem;
  gap: 16px;
  animation: fadeInUp 0.5s cubic-bezier(.54,.12,.29,1.06);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  margin: 0 12px 0 0;
  font-size: 1.01rem;
}
.cookie-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.99rem;
  border: none;
  border-radius: 26px;
  margin-left: 10px;
  padding: 7px 22px;
  transition: background 0.17s, color 0.16s, box-shadow 0.17s, transform 0.14s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #9AAE86;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #6E8571;
}
.cookie-btn.reject {
  background: #fff;
  color: #2A3132;
  border: 1.5px solid #9AAE86;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ECF4DF;
  color: #2A3132;
}
.cookie-btn.settings {
  background: transparent;
  color: #ECF4DF;
  border: 1.5px solid #ECF4DF;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ECF4DF;
  color: #2A3132;
  border-color: #9AAE86;
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;top: 0;right: 0;bottom: 0;
  z-index: 4000;
  background: rgba(42,49,50,0.34);
  animation: fadeIn 0.37s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #2A3132;
  min-width: 90vw;
  max-width: 420px;
  padding: 36px 28px 24px 28px;
  border-radius: 18px;
  box-shadow: 0 8px 38px rgba(42,49,50,0.12);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn 0.39s cubic-bezier(.53,.12,.34,1.11);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(38px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.31rem;
  font-weight: 700;
  margin-bottom: 0.9em;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cookie-category:last-child {
  margin-bottom: 0;
}
.cookie-category span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.0rem;
  color: #2A3132;
}
.cookie-toggle {
  display: inline-block;
  width: 38px;height:22px;
  position: relative;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-label {
  background: #ECF4DF;
  width: 38px;height:22px;
  border-radius:13px;
  display:block;
  position:relative;
  cursor:pointer;
  transition: background 0.22s;
}
.cookie-toggle-label:before {
  content:''; display:block;
  position:absolute;
  left:3px;top:3px;
  width:16px;height:16px;
  background: #9AAE86;
  border-radius:50%;
  transition: left 0.23s, background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-label:before {
  left:19px;
  background: #6E8571;
}
.cookie-toggle input:checked + .cookie-toggle-label {
  background: #DDECCE;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 7px 16px 7px;
    font-size: 0.93rem;
    gap: 5px;
  }
  .cookie-modal {
    min-width: 94vw;
    padding: 18px 12px 12px 16px;
  }
}

/* VISUAL DECORATIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* GRADIENT DIVIDERS (if used) */
hr {
  border: 0;
  border-top: 2px solid #E6ECE0;
  margin: 44px 0 24px 0;
}

/* VISUAL FOCUS & ACCESSIBILITY */
:focus {
  outline: 2px solid #9AAE86;
  outline-offset: 2px;
}
::selection {
  background: #ECF4DF;
  color: #2A3132;
}

/* Hide scroll on mobile-menu open (add class 'noscroll' to body) */
body.noscroll {
  overflow: hidden;
}
