/* -------------------------------------- */
/*             CSS RESET                  */
/* -------------------------------------- */
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, menu, 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  background: #F7F9F9;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* -------------------------------------- */
/*        CORE VARIABLES: NATURE ORGANIC  */
/* -------------------------------------- */
:root {
  --color-primary: #29587A;
  --color-secondary: #7C9A92;
  --color-accent: #F7F9F9;
  --color-green: #2e6542;
  --color-brown: #A47551;
  --color-earth-bg: #F5F3EE;
  --color-offwhite: #F9F7F4;
  --color-dark: #21323C;
  --color-body: #42524E;
  --color-shadow: rgba(60, 64, 67, 0.08);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 10px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* Fallbacks */
html {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--color-earth-bg);
  color: var(--color-body);
  font-size: 16px;
}

/* -------------------------------------- */
/*         LAYOUT CONTAINERS              */
/* -------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-offwhite);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 12px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  flex-direction: column;
  transition: box-shadow .24s;
}
.testimonial-card blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}
.testimonial-card cite {
  font-size: 15px;
  color: var(--color-green);
  font-weight: 500;
  font-family: var(--font-display);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------------------------- */
/*               HEADER                   */
/* -------------------------------------- */
header {
  width: 100%;
  background: var(--color-accent);
  box-shadow: 0 2px 8px var(--color-shadow);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 0;
}
header a img {
  height: 46px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-primary);
  padding: 7px 0;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-green);
}
.cta-button {
  background: var(--color-green);
  color: #fff;
  font-family: var(--font-display);
  padding: 11px 30px;
  border-radius: var(--radius-sm);
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 4px 14px var(--color-shadow);
  transition: background .18s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #387d59;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 9px 24px var(--color-shadow);
}

/* Mobile nav toggle (hamburger) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 28px;
  background: var(--color-green);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 1010;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #387d59;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--color-offwhite);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 270px;
  max-width: 90vw;
  transform: translateX(-110%);
  transition: transform .37s cubic-bezier(.77,0,.18,1);
  box-shadow: 4px 0 34px 0 #7C9A9222;
  z-index: 2001;
  padding: 24px 18px 20px 18px;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 28px;
  background: none;
  border: none;
  margin-bottom: 12px;
  color: var(--color-green);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.16s;
  cursor: pointer;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #dbeddfdd;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 14px;
}
.mobile-nav a {
  font-size: 18px;
  font-family: var(--font-display);
  color: var(--color-primary);
  padding: 10px 0 6px 3px;
  border-radius: 7px;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #e8f1ec;
  color: var(--color-green);
}

/* Hide mobile nav on desktop */
@media (min-width: 990px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* Show mobile nav/hamburger on mobile only */
@media (max-width: 989px) {
  .main-nav {
    display: none !important;
  }
  .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* -------------------------------------- */
/*                HERO                    */
/* -------------------------------------- */
.hero {
  min-height: 240px;
  background: linear-gradient(125deg, #dbeddf 65%, #e5ebeb 100%);
  border-bottom-left-radius: 90px 48px;
  border-bottom-right-radius: 56px 120px;
  box-shadow: 0 5px 32px -8px var(--color-shadow);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  max-width: 600px;
}
.hero h1 {
  font-size: 2.3rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1.5px;
  line-height: 1.20;
}
.hero p {
  font-size: 1.11rem;
  color: var(--color-green);
  font-family: var(--font-body);
  margin-bottom: 18px;
  line-height: 1.6;
}
.hero .cta-button {
  margin-top: 8px;
}

/* -------------------------------------- */
/*              FEATURE GRID              */
/* -------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > li {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px var(--color-shadow);
  min-width: 215px;
  max-width: 285px;
  flex: 1 1 215px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px 26px 22px;
  gap: 18px;
  margin-bottom: 20px;
  border-left: 10px solid var(--color-green);
  transition: border-color .15s, box-shadow .19s;
}
.feature-grid > li:hover,
.feature-grid > li:focus-within {
  border-left: 10px solid var(--color-brown);
  box-shadow: 0 8px 40px 0 #7c9a923a;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.feature-grid h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-green);
  margin-bottom: 6px;
}
.feature-grid p {
  color: var(--color-dark);
  font-size: 16px;
}

/* -------------------------------------- */
/*          SERVICE HIGHLIGHT BLOCKS      */
/* -------------------------------------- */
.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-block {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 30px 25px 26px 25px;
  flex: 1 1 245px;
  min-width: 220px;
  max-width: 310px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-block h3 {
  font-size: 19px;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 3px;
}
.service-block p {
  color: var(--color-dark);
  font-size: 15px;
  margin-bottom: 6px;
}
.service-block .price,
.service-price {
  color: var(--color-green);
  font-weight: 600;
  font-size: 16px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-list > li {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 28px 20px 20px 20px;
  flex: 1 1 235px;
  min-width: 190px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.service-list h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 19px;
  margin-bottom: 3px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list .service-price {
  color: var(--color-brown);
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
}
.service-list p {
  color: var(--color-dark);
  font-size: 15px;
}

/* -------------------------------------- */
/*           ABOUT/TEXT SECTION           */
/* -------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: var(--color-dark);
  font-size: 16px;
  background: #fffdfa;
  padding: 20px 18px 18px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 10px var(--color-shadow);
  margin-bottom: 16px;
}
.text-section h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--color-green);
  margin-bottom: 4px;
  font-weight: 600;
}
.text-section ul {
  padding-left: 16px;
  list-style: disc outside;
}
.text-section ul li {
  margin-bottom: 5px;
  color: var(--color-body);
}
.cta-link {
  display: inline-block;
  color: var(--color-green);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 15px;
  margin-top: 13px;
  padding: 8px 0;
  border-bottom: 2px solid var(--color-green);
  transition: color 0.17s, border-bottom-color 0.19s;
}
.cta-link:hover, .cta-link:focus {
  color: var(--color-brown);
  border-bottom-color: var(--color-brown);
}

/* -------------------------------------- */
/*        CONTACT DETAILS & CTA-BLOCK     */
/* -------------------------------------- */
.contact-details, .additional-contact-methods {
  background: #f5f5f3;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 16px 18px 10px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details ul, .additional-contact-methods ul {
  padding-left: 13px;
}
.contact-details li, .additional-contact-methods li {
  margin-bottom: 3px;
  color: var(--color-primary);
  font-size: 16px;
}
.additional-contact-methods a.cta-button {
  align-self: flex-start;
  margin-top: 12px;
}

/* -------------------------------------- */
/*                FOOTER                  */
/* -------------------------------------- */
footer {
  background: #eeeeeb;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 18px;
  border-top-left-radius: 64px 28px;
  border-top-right-radius: 120px 48px;
  box-shadow: 0 -2px 32px var(--color-shadow);
}
footer .container {
  gap: 12px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--color-green);
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 500;
  opacity: .82;
  transition: color .14s, opacity .18s;
}
.footer-nav a:hover {
  color: var(--color-brown);
  opacity: 1;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.brand-footer img {
  height: 32px;
}
.brand-footer span {
  font-size: 14px;
  color: var(--color-body);
  opacity: .8;
}

/* -------------------------------------- */
/*              TYPOGRAPHY                */
/* -------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
}
h1 {font-size: 2.3rem; margin-bottom: 8px;}
h2 {font-size: 1.6rem; margin-bottom: 8px;}
h3 {font-size: 1.2rem; margin-bottom: 6px;}
h4 {font-size: 1.1rem;}
h5 {font-size: 1.05rem;}
h6 {font-size: 1rem;}
p, li, blockquote {
  font-family: var(--font-body);
  line-height: 1.55;
}
p, ul, ol, blockquote { margin-bottom: 8px;}
strong {font-weight: bold;}

/* -------------------------------------- */
/*                 BUTTONS                */
/* -------------------------------------- */
button, .cta-button, .cta-link {
  transition: background 0.17s, color 0.17s, box-shadow 0.19s, border-color 0.16s;
}

/* -------------------------------------- */
/*              SPACING (ALL)             */
/* -------------------------------------- */
main section, .section, section.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature-grid > li, .service-list > li, .service-block, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .service-highlights, .service-list, .content-grid {
  gap: 20px;
}
.text-image-section {
  gap: 30px;
}
/* Guarantee min 20px margin/gap between cards */

/* -------------------------------------- */
/*          TRANSITIONS/HOVER EFFECTS     */
/* -------------------------------------- */
a, button, .cta-button, .cta-link {
  transition: color .14s, border-color .16s, background .14s, box-shadow .19s, transform .17s;
}
.card, .feature-grid > li, .service-block, .service-list > li, .testimonial-card {
  transition: box-shadow 0.24s, transform 0.19s;
}
.card:hover, .feature-grid > li:hover, .service-block:hover, .service-list > li:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px 0 #7c9a921a;
  transform: translateY(-4px) scale(1.022);
  border-color: var(--color-brown);
}

/* -------------------------------------- */
/*         MODERN ORGANIC FORMS           */
/* -------------------------------------- */
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #bdd4b7;
  background-color: #f9f7f4;
  margin-bottom: 16px;
  color: var(--color-body);
  font-size: 16px;
  transition: border-color .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-green);
  background-color: #f3faf6;
  outline: none;
}

/* -------------------------------------- */
/*             COOKIE CONSENT BANNER      */
/* -------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--color-dark);
  border-top: 3px solid var(--color-green);
  box-shadow: 0 -2px 24px var(--color-shadow);
  z-index: 3000;
  padding: 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 15px;
  animation: cookieBannerAppear 0.44s ease;
}
@keyframes cookieBannerAppear {
  0% { opacity: 0; transform: translateY(100%); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner button {
  background: var(--color-green);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 15px;
  margin-left: 7px;
  border: none;
  font-family: var(--font-display);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.17s, box-shadow 0.12s;
}
.cookie-banner button:not(:last-child) {
  margin-right: 12px;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #387d59;
  box-shadow: 0 4px 14px var(--color-shadow);
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-brown);
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #b08965;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41, 88, 122, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s;
}
.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px 30px 28px;
  min-width: 300px;
  max-width: 95vw;
  box-shadow: 0 8px 40px 0 #7c9a922a;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 20px;
  color: var(--color-green);
}
.cookie-modal-content .close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 21px;
  background: none;
  border: none;
  color: var(--color-brown);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background .13s;
}
.cookie-modal-content .close-modal:hover,
.cookie-modal-content .close-modal:focus {
  background: #eee5da;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-option label {
  font-size: 15px;
}

/* -------------------------------------- */
/*         RESPONSIVE MEDIA QUERIES       */
/* -------------------------------------- */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
}
@media (max-width: 840px) {
  .feature-grid, .service-highlights, .service-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .main-nav { gap: 17px; }
}
@media (max-width: 768px) {
  .hero {
    min-height: 170px;
    border-bottom-left-radius: 34px 24px;
    border-bottom-right-radius: 23px 38px;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }
  .hero h1 {font-size: 1.5rem;}
  .hero p {font-size: 1rem; margin-bottom: 10px;}
  .section, main section {padding: 24px 8px; margin-bottom: 40px;}
  .feature-grid > li,
  .service-list > li, .service-block {
    min-width: 0;
    max-width: 100%;
    padding: 18px 14px;
  }
  .testimonial-card, .card {
    padding: 15px 11px;
    min-width: 0;
    max-width: 100%;
  }
  .content-wrapper {
    gap: 13px;
  }
  .container { padding-left: 6px; padding-right: 6px; }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {gap: 13px;}
  footer {border-top-right-radius: 44px 20px; border-top-left-radius: 29px 10px;}
}
@media (max-width: 600px) {
  .hero .content-wrapper {max-width: unset;}
  .footer-nav {flex-wrap: wrap;gap: 13px;}
  .brand-footer {flex-direction: column;gap: 6px;}
}
@media (max-width: 440px) {
  .cookie-banner {flex-direction: column; gap: 14px; font-size: 14px;}
  .container {padding-left: 2px; padding-right: 2px;}
}

/* -------------------------------------- */
/*        MICROINTERACTIONS & EFFECTS     */
/* -------------------------------------- */
.cta-button:active {
  transform: scale(0.97);
  box-shadow: 0 3px 10px #29587a15;
}
.card:active, .feature-grid > li:active, .service-block:active, .testimonial-card:active {
  transform: scale(0.98);
  box-shadow: 0 1px 8px #29587a14;
}

/* -------------------------------------- */
/*         UTILITY CLASSES                */
/* -------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }

/* -------------------------------------- */
/*   ENSURE NO OVERLAPS / Z-INDEX STACK   */
/* -------------------------------------- */
header { z-index: 1000; position: relative; }
.mobile-menu { z-index: 2001; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 4000; }

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