/* --- 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, 
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 {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #232b21;
  background: #FAF8F3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
a {
  color: #426B37;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3c482e;
}
ul, ol {
  margin-left: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 8px;
  line-height: 1.5;
}
b, strong {
  font-weight: 600;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
  color: #426B37;
}
h1 {font-size: 2.5rem; font-weight: 800;}
h2 {font-size: 2rem; font-weight: 700;}
h3 {font-size: 1.5rem; font-weight: 600;}
h4 {font-size: 1.25rem; font-weight: 500;}
p, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232b21;
  margin-bottom: 16px;
}
address {font-style: normal;}

::selection {
  background: #A3C593;
  color: #1A1B17;
}

/* --- CONTAINERS & FLEX PATTERNS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F8EDDB;
  border-radius: 20px;
  box-shadow: 0 4px 24px #e6d3bb40;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 14px #EDDCC740;
  padding: 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #426B37;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: #A3C59333;
  color: #2c4a1e;
}
.cta.primary, .cta.secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 28px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
  box-shadow: 0 2px 8px #D6E3C7A0;
  display: inline-block;
}
.cta.primary {
  background: #426B37;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #305027;
  color: #FFFBE7;
}
.cta.secondary {
  background: #fff6e8;
  color: #426B37;
  border: 2px solid #A3C593;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #A3C593;
  color: #214314;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 120;
  background: #A3C593;
  color: #426B37;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  cursor: pointer;
  box-shadow: 0 2px 14px #A3C59333;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #426B37;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  box-shadow: 0 0 128px #A3C59366;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-110vw);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.4,1,.55,.97), opacity 0.22s;
  z-index: 210;
  padding: 32px 24px 24px 28px;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: #F8EDDB;
  color: #426B37;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 26px;
  box-shadow: 0 2px 14px #EDDCC760;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #A3C593;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #426B37;
  font-weight: 600;
  padding: 12px 0 12px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A3C59355;
  color: #22400D;
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .cta.primary {
    display: none; 
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 0;
  }
}

/* --- MAIN LAYOUTS & SPACING --- */
main {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-top: 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px #A3C59333;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px #A3C59344;
  transform: translateY(-3px) scale(1.012);
}
.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #A3C59325;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 520px;
  transition: box-shadow 0.20s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #A3C59355;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.usp-banner {
  background: #A3C593;
  color: #fff;
  border-radius: 14px;
  padding: 18px 24px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 20px;
  font-size: 1.15rem;
  box-shadow: 0 1px 6px #A3C59340;
}
.star-rating {
  font-size: 1.3rem;
  color: #FFD700;
  letter-spacing: 2px;
  margin-top: 4px;
}
.testimonial-card p {
  font-size: 1.15rem;
  color: #232b21;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #426B37;
  font-style: italic;
}

/* --- FOOTER --- */
footer {
  background: #F8EDDB;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -2px 24px #EDDCC740;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 160px;
}
.footer-menu a {
  color: #426B37;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #305027;
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-social span {
  font-weight: 600;
  color: #426B37;
}
.footer-social a {
  margin-right: 10px;
  transition: opacity 0.2s;
}
.footer-social a:hover, .footer-social a:focus {
  opacity: 0.7;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- ADDRESS/CTA BOXES --- */
.cta-box {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}

/* --- FORM ELEMENTS (future-ready) --- */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 9px;
  border: 1px solid #A3C59377;
  padding: 11px 15px;
  background: #FFFBE7;
  transition: border 0.15s, box-shadow 0.15s;
  margin-bottom: 12px;
  outline: none;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #426B37;
  box-shadow: 0 0 4px #A3C59377;
}

/* --- RESPONSIVENESS & FLEX ADJUSTMENTS --- */
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.45rem;}
  h3 {font-size: 1.15rem;}
  main {
    gap: 32px; 
  }
  .container { padding-left: 12px; padding-right: 12px; }
  .section { padding: 26px 8px; margin-bottom: 36px; }
  .content-wrapper { gap: 16px; }
  .card-container, .content-grid { gap: 12px; }
  .card { padding: 14px 10px; }
  .testimonial-card { padding: 14px; }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .cta-box {
    flex-direction: column;
    gap: 14px;
  }
  footer .content-wrapper {
    gap: 24px;
  }
}
@media (max-width: 540px) {
  h1 {font-size: 1.45rem;}
  h2 {font-size: 1.1rem;}
}

/* --- UTILITIES --- */
.sr-only {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px; 
  margin: -1px; 
  overflow: hidden; 
  padding: 0; 
  position: absolute; 
  width: 1px; 
}

/* --- TRANSITIONS & MICRO-INTERACTIONS --- */
button, .cta, .card, .testimonial-card, .footer-menu a, .mobile-nav a, nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: #fff;
  box-shadow: 0 -2px 24px #A3C59335;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 22px 18px 18px 22px;
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(.4,1,.55,.99), opacity 0.25s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  color: #232b21;
  font-size: 1rem;
  flex: 1;
  margin: 0;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  background: #A3C593;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 1px 6px #A3C59366;
  transition: background 0.2s, color 0.18s;
}
.cookie-btn.accept {
  background: #426B37;
  color: #fff;
}
.cookie-btn.reject {
  background: #fae1c8;
  color: #426B37;
}
.cookie-btn.settings {
  background: #A3C593;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(0.96) saturate(1.2);
}
.cookie-modal-overlay {
  background: #232b213e;
  position: fixed;
  inset: 0;
  z-index: 350;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-50%) scale(0.95);
  z-index: 360;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px #A3C59355;
  width: 96%;
  max-width: 440px;
  padding: 34px 30px 26px 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.36s cubic-bezier(.4,1,.55,.97);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cookie-modal-header h2 {
  font-size: 1.18rem;
  color: #426B37;
  margin-bottom: 0;
}
.cookie-modal-close {
  background: #FAE1C8;
  color: #426B37;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #A3C593;
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  padding: 10px 0;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: #426B37;
  width: 20px;
  height: 20px;
}
.cookie-category .always-enabled {
  font-size: 0.98rem;
  color: #A3C593;
  font-weight: 600;
  margin-left: 6px;
}
.cookie-modal .cookie-btn-group {
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 14px 8px 12px 10px;
    max-width: 99vw;
  }
  .cookie-modal {
    padding: 20px 6vw 20px 6vw;
    min-width: 0;
    max-width: 97vw;
  }
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* --- VISUAL ELEMENTS --- */
section, .card, .testimonial-card, .usp-banner, .cookie-banner, .cookie-modal {
  border-radius: 18px;
}

/* --- Z-INDEX HIERARCHY --- */
header {z-index: 90;}
.mobile-menu {z-index: 210;}
.cookie-banner {z-index: 300;}
.cookie-modal {z-index: 360;}

/* --- MISC --- */
::-webkit-scrollbar {
  width: 8px;
  background: #F8EDDB;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #A3C59355;
  border-radius: 8px;
}

/* --- MAKE SURE NO GRID OR COLUMNS PROPERTIES --- */
/* (Compliance check: NO 'display: grid', grid-*, columns, column-count etc used) */
