/* === 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f7f4ef;
  color: #2d2d2d;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #385b43;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1a2e21;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
}
strong { font-weight: 700; }
em { font-style: italic; }

/* === Brand Typography === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #161f17;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.2; }
h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.25; }
h3 { font-size: 1.5rem; margin-bottom: 14px; line-height: 1.3; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; }
p, li {
  font-size: 1rem;
  line-height: 1.7;
}

/* === General Layout & Containers === */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px 0 rgba(56,91,67,0.09);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}

/* === Geometric Structured Style === */
.section, .card, .testimonial-card, .cta-button, .mobile-menu, .cookie-banner, .cookie-modal {
  border-radius: 16px;
}
.card, .testimonial-card {
  background: #f7f4ef;
  border: 2.5px solid #d3beaa;
  box-shadow: 0 2px 12px 0 rgba(56,91,67,0.12);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.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) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border: 2px solid #d3beaa;
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px 0 rgba(56,91,67,0.09);
  min-width: 220px;
}

/* === Call to Action Buttons === */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #385b43;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  box-shadow: 0 4px 18px 0 rgba(56,91,67,0.16);
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #2a4333;
  box-shadow: 0 2px 8px 0 rgba(56,91,67,0.23);
  transform: translateY(-2px) scale(1.025);
}

/* === Header & Navigation === */
header {
  background: #fff;
  border-bottom: 2.5px solid #d3beaa;
  box-shadow: 0 2px 5px 0 rgba(56,91,67,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 12px;
  position: relative;
}
header nav {
  display: flex;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #385b43;
  font-weight: 600;
  padding: 10px 6px;
  border-radius: 10px;
  transition: background 0.15s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #d3beaa21;
  color: #1a2e21;
}
header .cta-button {
  margin-right: 0;
  margin-bottom: 0;
}
.header .mobile-menu-toggle { margin-left: 16px; }

/* === Mobile Burger Menu === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #385b43;
  cursor: pointer;
  margin-left: 16px;
  line-height: 1;
  transition: color 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #d3beaa;
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(56,91,67,0.11);
  transform: translateX(-105%);
  transition: transform 0.45s cubic-bezier(.77,.13,.37,1.07);
  z-index: 2000;
  padding: 32px 26px 32px 26px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #385b43;
  cursor: pointer;
  margin-bottom: 16px;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #d3beaa;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #385b43;
  padding: 12px 6px;
  border-radius: 10px;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #d3beaa33;
  color: #161f17;
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* === Main Content & Section Spacing === */
main {
  margin-top: 28px;
  margin-bottom: 42px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  main {
    margin-top: 12px;
    margin-bottom: 32px;
  }
  section {
    margin-bottom: 36px;
    padding: 18px 4px;
  }
}

/* === Testimonials === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 220px;
  max-width: 520px;
  background: #fff;
  border: 2.5px solid #385b43;
  color: #23472d;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 12px 0 rgba(56,91,67,0.13);
}
.testimonial-card p {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #385b43;
}
.testimonial-card strong {
  color: #161f17;
}

/* === Footer === */
footer {
  background: #385b43;
  color: #fff;
  padding: 40px 0 18px 0;
  margin-top: 40px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #d3beaa;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 4px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: #d3beaa22;
  color: #f7f4ef;
}
footer address {
  font-style: normal;
  color: #fff;
  font-size: 0.97rem;
  line-height: 1.7;
  margin-right: 12px;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  display: block;
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* === Utility & Geometric Decorative Elements === */
.text-section, .map-snippet {
  margin-bottom: 18px;
  padding: 14px 0;
}
.map-snippet {
  background: #e5ded5;
  border-radius: 10px;
  font-size: 0.97rem;
  color: #323232;
}

/* === Misc Lists and Forms (visual spacing) === */
ul, ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* === Card-specific Styling (for future product cards/gallery) === */
.card {
  padding: 24px;
  border: 2px solid #d3beaa;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(56,91,67,0.12);
  min-width: 240px;
  min-height: 120px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === Responsive Typography Scale === */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  .cta-button { font-size: 1rem; padding: 10px 18px; }
  .card, .testimonial-card { padding: 14px; }
}

/* === Microinteractions/Transitions === */
.card, .testimonial-card, .feature-item, .cta-button {
  transition: box-shadow 0.18s, border-color 0.19s, transform 0.14s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 4px 18px 0 rgba(56,91,67,0.24);
  border-color: #385b43;
  transform: translateY(-4px) scale(1.015);
}

/* === Forms & Inputs (minimal example, expandable) === */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 10px;
  border: 1.7px solid #d3beaa;
  padding: 10px 12px;
  margin-bottom: 18px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #385b43;
  background: #f0ede9;
}

/* === Cookie Consent Banner & Modal === */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 3000;
  background: #fff;
  color: #23472d;
  border: 2px solid #d3beaa;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(56,91,67,0.21);
  padding: 18px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  min-width: 320px;
  max-width: 96vw;
  font-size: 1rem;
  animation: fadeInUp 0.5s ease;
}
.cookie-banner p {
  margin: 0;
  flex: 2 1 180px;
  color: #385b43;
}
.cookie-banner .cookie-btn {
  background: #385b43;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 6px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-size: 0.98rem;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #1a2e21;
  color: #d3beaa;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%) scale(1);
  z-index: 4000;
  background: #fff;
  color: #23472d;
  border: 2.5px solid #d3beaa;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(56,91,67,0.24);
  padding: 30px 36px 24px 36px;
  min-width: 320px;
  max-width: 98vw;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.36s cubic-bezier(.57,1.76,.44,.87);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translate(-50%, -95%) scale(.93); }
  to { opacity: 1; transform: translate(-50%, -56%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.32rem; margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.01rem;
}
.cookie-toggle {
  accent-color: #385b43;
  width: 22px;
  height: 22px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #385b43;
  cursor: pointer;
  z-index: 2;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #1a2e21;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 8px 16px 8px;
    min-width: unset;
    max-width: 98vw;
  }
}

/* Hide modal/banner by default, show with JS: */
.cookie-banner, .cookie-modal { display: none; }
.cookie-banner.active, .cookie-modal.active { display: flex; }

/* === Misc Utility === */
.hide { display: none !important; }

/* === Angular/Geometric Font Styling (accent) === */
.section h1, .section h2, .cta-button, header nav a, .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* === Spacing Between Content Sections and Cards === */
.card, .feature-item, .testimonial-card, .section, .content-grid > *, .card-container > * {
  margin-bottom: 20px;
}
.card:last-child, .testimonial-card:last-child, .feature-item:last-child,
.content-grid > *:last-child, .card-container > *:last-child {
  margin-bottom: 0;
}

/* === Accessibility/Focus Styles === */
:focus-visible {
  outline: 2.5px solid #385b43;
  outline-offset: 1px;
}

/* === SCROLLBAR Customization (geometric accent) === */
::-webkit-scrollbar {
  width: 10px;
  background: #e7e1d9;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #385b43;
  border-radius: 10px 0 10px 0;
}

/* === Angular/Geometric Shapes (subtle): to accent structure === */
.section::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background: #d3beaa;
  border-radius: 8px 0 14px 0;
  position: absolute;
  top: 18px;
  left: -18px;
  z-index: 1;
}
@media (max-width: 700px) {
  .section::before { display: none; }
}

/* === Ensure no element overlaps and proper gap management === */
.card-container, .content-grid, .section, .feature-item, .testimonial-card {
  gap: 20px;
}

/* === End of CSS === */
