/* CSS RESET & BASE TYPOGRAPHY --------------------------------------------------------- */
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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { line-height: 1.2; }
body {
  background: #fff;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #205B29;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A7C957;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  color: inherit;
  outline: none;
}
button {
  cursor: pointer;
  background: transparent;
}

/* TYPOGRAPHY SCALE --------------------------------------------------------- */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #205B29;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #205B29;
  margin-bottom: 18px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #205B29;
  margin-bottom: 12px;
}
p, li {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.65;
}
.subheadline {
  color: #205B29;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 24px;
}

/* CONTAINER & LAYOUT --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(32, 91, 41, 0.06);
}
@media (max-width: 900px) {
  .section {
    padding: 32px 8px;
  }
}

/* HEADER & NAVIGATION --------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(32,91,41,.03);
  padding: 0;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.header-wrapper nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header-wrapper nav a {
  color: #205B29;
  font-weight: 500;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 6px 2px;
  position: relative;
  transition: color .15s;
}
.header-wrapper nav a:hover,
.header-wrapper nav a:focus {
  color: #A7C957;
}
.header-wrapper img {
  height: 46px;
}
.cta.primary {
  background: #205B29;
  color: #fff;
  padding: 12px 32px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s;
  box-shadow: 0 1px 6px rgba(32,91,41,0.09);
  border: none;
  letter-spacing: 0.01em;
  margin-left: 24px;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #A7C957;
  color: #205B29;
  box-shadow: 0 3px 15px rgba(32,91,41,0.10);
}

/* MOBILE BURGER MENU --------------------------------------------------------- */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1011;
  width: 46px;
  height: 46px;
  display: none;
  background: #205B29;
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: none;
  box-shadow: 0 2px 10px rgba(32,91,41,.05);
  transition: box-shadow 0.2s, background 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #A7C957;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,91,41,0.97);
  z-index: 1020;
  transition: transform 0.35s cubic-bezier(.59,1.61,.7,.97);
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 22px 9px 0;
  font-size: 2.2rem;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(167,201,87,.10);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 13px 0 13px 0;
  border-radius: 3px;
  transition: background .14s, color .18s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(167,201,87,.09);
  color: #A7C957;
}
@media (max-width: 1050px) {
  .header-wrapper nav,
  .header-wrapper .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1051px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* LAYOUT UTILS & BRAND BACKGROUND ------------------------------------------- */
body {
  background: #F3F7F0;
}
main {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* FLEXBOX PATTERNS ---------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(32,91,41,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 230px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 32px;
  justify-content: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 270px;
  min-width: 200px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 6px rgba(32,91,41,0.08);
  padding: 26px 22px 20px 22px;
  gap: 6px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.feature img {
  width: 40px;
  margin-bottom: 7px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 3px 18px rgba(32,91,41,0.14);
  transform: translateY(-2px) scale(1.015);
}
@media (max-width: 900px) {
  .features-grid {
    gap: 28px 5vw;
  }
}
@media (max-width: 600px) {
  .features-grid {
    flex-direction: column;
    gap: 18px 0;
  }
  .feature {
    width: 100%;
  }
}

/* SERVICE LIST (services page) ---------------------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 36px;
  margin: 24px 0 0 0;
}
.service-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(32,91,41,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 22px 23px 22px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 250px;
  transition: box-shadow .15s, transform .15s;
}
.service-item img {
  width: 36px;
}
.service-item .service-price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #A7C957;
  margin-top: 8px;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 2px 16px rgba(32,91,41,0.10);
  transform: scale(1.02);
}
@media (max-width: 700px) {
  .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .service-item {
    max-width: 99vw;
    width: 100%;
  }
}

/* CASE STUDY & TIPS/FAQ CARDS ----------------------------------------------- */
.case-study {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 5px rgba(32,91,41,0.06);
  padding: 26px 22px;
  margin-bottom: 22px;
  margin-top: 0;
}
.tips-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.tip-article, .faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(32,91,41,0.06);
  padding: 20px 18px 15px 18px;
  min-width: 210px;
  flex: 1 1 240px;
  transition: box-shadow .15s, transform .13s;
}
.tip-article:hover, .faq-item:hover {
  box-shadow: 0 1px 18px rgba(32,91,41,0.10);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .tips-list, .faq-list {
    flex-direction: column;
  }
  .tip-article, .faq-item {
    min-width: 0;
    width: 100%;
  }
}

/* TESTIMONIALS -------------------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(32,91,41,0.10);
  max-width: 550px;
  color: #205B29;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.testimonial-card span {
  color: #A7C957;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  align-self: flex-end;
}
@media (max-width:768px) {
  .testimonial-card {
    max-width: 97vw;
  }
}

/* QUICK GUIDES -------------------------------------------------------------- */
.quick-guides {
  background: #EFF4EE;
  border-radius: 12px;
  padding: 20px 18px;
  margin: 16px 0 0 0;
}
.quick-guides h3 {
  font-size: 1.15rem;
  margin-bottom: 13px;
}
.quick-guides ul {
  margin: 0;
  padding-left: 19px;
  list-style: disc inside;
}

/* CONTACT DETAILS & EMBEDDED MAP --------------------------------------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 16px 0;
}
.embedded-map {
  width: 100%;
  height: 220px;
  background: #d4e9cc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #205B29;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* FOOTER -------------------------------------------------------------------- */
footer {
  background: #205B29;
  color: #fff;
  padding: 38px 0 22px 0;
}
footer p {
  color: white;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
footer img {
  height: 40px;
  margin-bottom: 8px;
}
footer span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.98rem;
}
footer nav a {
  color: #A7C957;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
footer .quick-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
  color: #EFF4EE;
  margin-top: 3px;
}
footer .quick-contact img {
  vertical-align: middle;
  height: 20px;
  margin-right: 7px;
  display: inline-block;
}
@media (max-width:900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
}

/* BUTTONS & INTERACTIVE ELEMENTS -------------------------------------------- */
.cta,
button, .button, input[type=submit], input[type=button] {
  cursor: pointer;
  background: #205B29;
  color: #fff;
  padding: 12px 30px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background .14s, color .16s, box-shadow .16s, transform .16s;
  box-shadow: 0 1px 4px rgba(32,91,41,0.10);
}
.cta.secondary, .button.secondary {
  background: #A7C957;
  color: #205B29;
}
.cta.secondary:hover, .cta.secondary:focus,
.button.secondary:hover, .button.secondary:focus {
  background: #205B29;
  color: #fff;
}
.cta:active, .button:active {
  transform: scale(0.98);
  box-shadow: 0 1px 3px rgba(32,91,41,0.13);
}

/* SECTION SPACING ----------------------------------------------------------- */
main > section + section {
  margin-top: 38px;
}

/* MISC. UI UTILITIES -------------------------------------------------------- */
ul, li {
  list-style: none;
}
ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}
ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #A7C957;
  border-radius: 50%;
  display: inline-block;
}

/* COOKIE BANNER & COOKIE MODAL ---------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1300;
  box-shadow: 0 -2px 14px rgba(32,91,41,.09);
  background: #fff;
  border-top: 2px solid #A7C957;
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 22px 50px;
  justify-content: center;
  font-size: 1.04rem;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
}
.cookie-banner p {
  color: #205B29;
  margin: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  background: #A7C957;
  color: #205B29;
  padding: 10px 19px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 3px;
  border: none;
  transition: background .13s, color .12s;
}
.cookie-banner button.primary {
  background: #205B29;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #205B29;
  color: #fff;
}

/* COOKIE MODAL -------------------------------------------------------------- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1310;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,91,41,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.24s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  padding: 36px 24px 20px 24px;
  border-radius: 16px;
  box-shadow: 0 7px 33px rgba(32,91,41,0.22);
  max-width: 420px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1320;
  animation: cookieModalIn 0.45s cubic-bezier(.6,1.6,.42,.98);
}
@keyframes cookieModalIn {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.38rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #205B29;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #EFF4EE;
  padding: 10px 13px;
  border-radius: 11px;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 7px;
  color: #205B29;
}
.cookie-category input[type="checkbox"] {
  accent-color: #A7C957;
  width: 18px;
  height: 18px;
  margin-right: 3px;
}
.cookie-category.essential label {
  color: #A7C957;
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #205B29;
  border-radius: 50%;
  padding: 1px 9px 1px 8px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #EFF4EE;
}

/* RESPONSIVE: GENERAL ------------------------------------------------------- */
@media (max-width: 900px) {
  .header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 8px;
  }
  main {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 6vw;
  }
  .section {
    padding: 24px 5vw !important;
    margin-bottom: 33px;
  }
}
@media (max-width: 430px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .section {
    padding: 14px 2vw !important;
  }
  .cta.primary {
    padding: 10px 16px;
    font-size: .98rem;
  }
  .cookie-modal {
    padding: 18px 5vw 11px 5vw;
  }
}

/* FOCUS STYLE FOR ACCESSIBILITY --------------------------------------------- */
a:focus, button:focus, .cta:focus {
  outline: 2px solid #A7C957;
  outline-offset: 2px;
}

/* SELECTORS NOT USED ON ALL PAGES ------------------------------------------- */
.quick-contact a {
  color: #A7C957;
}
.quick-contact a:hover, .quick-contact a:focus {
  color: #fff;
}

/* SPECIAL: THANK YOU PAGE ANIMATIONS ---------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .cta.primary, .cta, button, .feature, .service-item, .card, .testimonial-card, .tip-article, .faq-item {
    transition: box-shadow 0.18s, background 0.22s, color 0.19s, transform 0.17s;
  }
}

/* END ----------------------------------------------------------------------- */
