/* === CSS RESET & BASE STYLES === */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F1E9D6;
  color: #295545;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #295545;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #548C59;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
  margin-left: 1em;
}

/* === BRAND TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: #295545;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #548C59;
}

p, li, blockquote {
  font-size: 1rem;
}
blockquote {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-style: italic;
  background: #FFF;
  color: #295545;
  border-left: 6px solid #548C59;
  padding: 10px 24px 10px 16px;
  margin-bottom: 10px;
  border-radius: 10px;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,255,255,0.88);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(41,85,69,0.08),0 1px 4px rgba(50,122,89,0.03);
  position: relative;
}

/* === FLEXBOX GRID/ALIGNMENT (MANDATORY) === */
.features-grid,
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(41,85,69,0.07);
  padding: 24px 20px;
  transition: transform 0.22s, box-shadow 0.22s;
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.feature:hover {
  transform: translateY(-8px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 10px 32px 0 rgba(84,140,89,0.12);
  background: #f7fcef;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 250px;
  margin-bottom: 20px;
  position: relative;
}
.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: 20px;
  box-shadow: 0 4px 18px 0 rgba(41,85,69,0.10);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 420px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px 0 rgba(84,140,89,0.18);
  transform: translateY(-6px) scale(1.025);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

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

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: #FFF;
  padding: 22px 22px 16px 22px;
  border-radius: 16px;
  box-shadow: 0 3px 12px 0 rgba(84,140,89,0.08);
}
.faq-item h2 {
  margin-bottom: 10px;
  color: #295545;
}

/* === HEADER & NAV === */
header {
  width: 100%;
  background: #295545;
  color: #FFF;
  box-shadow: 0 2px 8px 0 rgba(41,85,69,0.09);
  z-index: 1000;
  position: sticky;
  top: 0;
  left: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 72px;
}
.logo {
  margin-right: 18px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 34px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-right: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #FFF;
  font-weight: 600;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
  border-radius: 8px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F1E9D6;
  background: rgba(84,140,89,0.12);
}
.cta-primary {
  background: #548C59;
  color: #FFF!important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 28px;
  border-radius: 24px;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px 0 rgba(41,85,69,0.08);
  margin-left: 16px;
  transition: background 0.16s, color 0.16s, transform 0.13s;
  border: none;
  cursor: pointer;
  text-align: center;
  outline: 0;
}
.cta-primary:hover, .cta-primary:focus {
  background: #295545;
  color: #F1E9D6!important;
  transform: scale(1.06) rotate(-2deg);
}
.cta-secondary {
  background: transparent;
  border: 2px solid #548C59;
  color: #295545!important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 26px;
  border-radius: 24px;
  font-size: 1.07rem;
  margin-top: 12px;
  transition: background 0.18s, color 0.18s, border 0.18s, transform 0.13s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #548C59;
  border-color: #295545;
  color: #fff!important;
  transform: scale(1.04) rotate(1deg);
}

.mobile-menu-toggle {
  display: none;
  background: #548C59;
  color: #FFF;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
  margin-left: 16px;
  z-index: 1101;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F1E9D6;
  background: #295545;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(120deg, #F1E9D6 60%, #548C59 100%);
  border-radius: 0 0 54px 54px;
  box-shadow: 0 6px 50px 0 rgba(41,85,69,0.05);
  margin-bottom: 32px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 34px;
  padding-bottom: 32px;
}
.hero h1 {
  color: #295545;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  text-shadow: 2px 2px 0 #F1E9D6, 3px 2px 0 rgba(84,140,89,0.06);
}
.hero p {
  font-size: 1.13rem;
  max-width: 560px;
  color: #295545;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
  text-shadow: 1px 1px 0 #FFF;
}

/* === TESTIMONIALS === */
.testimonial-card blockquote {
  background: transparent;
  color: #295545;
  border-left: 6px solid #548C59;
  padding-left: 12px;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card p {
  color: #295545;
  font-size: 0.97rem;
  font-style: italic;
}

/* === BRAND STORY, TEXT, & LISTS === */
.brand-story {
  background: #eeffe7;
  padding: 20px 24px;
  border-radius: 18px;
  font-size: 1.03rem;
  color: #295545;
  box-shadow: 0 2px 10px 0 rgba(41,85,69,0.05);
  margin-bottom: 10px;
}
.section ul, .section ol {
  padding-left: 26px;
  margin-bottom: 18px;
}
.section ul li, .section ol li {
  font-size: 1rem;
  margin-bottom: 7px;
  position: relative;
  padding-left: 0;
}
.section ul li::marker { color: #548C59; font-size: 1.5em; }

.text-section {
  margin-bottom: 16px;
}
.location-map {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(41,85,69,0.06);
  padding: 18px 20px 15px 20px;
  margin-bottom: 18px;
}
.location-map h2 {
  font-size: 1.1rem;
  color: #548C59;
  margin-bottom: 8px;
}
.location-map p {
  color: #295545;
  font-size: 1rem;
}

/* ==== FOOTER ==== */
footer {
  background: #295545;
  color: #FFF;
  padding: 40px 0 24px 0;
  margin-top: 50px;
  width: 100%;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #FFF;
  gap: 13px;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #FFF;
  font-size: 1rem;
  opacity: 0.8;
  border-bottom: 2px solid transparent;
  padding: 2px 0;
  transition: border 0.18s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F1E9D6;
  border-bottom: 2px solid #eeffe7;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  margin-bottom: 0;
  color: #F1E9D6;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  display: inline-block;
}

/* === MOBILE: RESPONSIVE === */
@media (max-width: 1024px) {
  .footer .container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .features-grid, .card-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 10px;
  }
  header .container {
    gap: 8px;
    min-height: 58px;
  }
  .main-nav {
    display: none;
  }
  .cta-primary {
    margin-left: auto;
    font-size: 1rem;
    padding: 8px 16px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero .container {
    padding-top: 24px;
    padding-bottom: 18px;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 34px;
  }
  .brand-story, .location-map {
    padding: 14px 8px;
    border-radius: 12px;
  }
  .footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
@media (max-width: 430px) {
  html {
    font-size: 14px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* === MOBILE MENU / OVERLAY === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: rgba(41,85,69,0.97);
  color: #FFF;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: -4px 0 20px 0 rgba(84,140,89,0.18);
  transition: transform 0.38s cubic-bezier(.8,.1,.2,1), left 0.38s cubic-bezier(.8,.1,.2,1);
  transform: translateX(0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.34s cubic-bezier(.8,.1,.2,1), left 0.34s cubic-bezier(.8,.1,.2,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 24px 18px 8px 0;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F1E9D6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 22px 34px;
  margin-top: 15px;
  width: 100%;
}
.mobile-nav a {
  color: #F1E9D6;
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0 8px 0;
  border-bottom: 1px solid rgba(241,233,214,0.10);
  border-radius: 7px;
  transition: background 0.10s, color 0.19s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #548C59;
  color: #FFF;
}

@media (min-width:769px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
  .main-nav { display: flex!important; }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF;
  color: #295545;
  box-shadow: 0 -4px 20px rgba(84,140,89,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 24px 20px 24px;
  z-index: 3001;
  font-size: 1rem;
  opacity: 1;
  animation: bannerPopIn 0.5s cubic-bezier(0.22,1,0.36,1);
}
@keyframes bannerPopIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #295545;
  margin: 0;
  max-width: 55vw;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn,
.cookie-settings-btn {
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 9px 26px;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, transform 0.12s;
}
.cookie-btn.accept {
  background: #548C59;
  color: #fff;
}
.cookie-btn.reject {
  background: #df534d;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #295545;
  color: #F1E9D6;
  transform: scale(1.05);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #295545;
  color: #fff;
  transform: scale(1.05);
}
.cookie-settings-btn {
  background: #F1E9D6;
  color: #295545;
  border: 2px solid #548C59;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #548C59;
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 20px 8px 18px 8px;
  }
  .cookie-banner p {
    max-width: 100vw;
    padding-bottom: 9px;
  }
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(41,85,69,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.4s cubic-bezier(0.24,1,0.28,1);
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes modalIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 12px 48px 0 rgba(84,140,89,0.21);
  padding: 38px 24px 28px 24px;
  width: 90vw;
  max-width: 430px;
  color: #295545;
  position: relative;
  animation: popInModal 0.22s cubic-bezier(0.3,1.5,0.2,1.08);
}
@keyframes popInModal {
  0% { opacity: 0; transform: scale(0.7) translateY(22px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  color: #295545;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-modal .toggle-switch {
  width: 38px;
  height: 21px;
  background: #eee;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .toggle-switch.enabled {
  background: #548C59;
}
.cookie-modal .toggle-switch .switch {
  content: '';
  display: block;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 3px;
  transition: left 0.13s;
  box-shadow: 0 1px 2px 0 rgba(60,80,80,0.12);
}
.cookie-modal .toggle-switch.enabled .switch {
  left: 18px;
}
.cookie-modal .category-label {
  font-weight: 600;
  color: #295545;
}
.cookie-modal .category-note {
  font-size: 0.89rem;
  color: #548C59;
}
.cookie-modal .settings-buttons {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px;
  right: 23px;
  background: none;
  border: none;
  color: #295545;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #df534d;
}

/* === MICRO-INTERACTIONS & ARTISTIC DECORATION === */
.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  /* Decorative shape - artistic ellipse brush */
  content: '';
  position: absolute;
  z-index: 0;
  top: -40px; right: -70px;
  width: 180px; height: 80px;
  background: rgba(84,140,89,0.14);
  border-radius: 55% 45% 60% 40%/40% 60% 30% 70%;
  pointer-events: none;
  transform: rotate(-13deg);
}
.section:nth-child(2n)::before {
  right: auto; left: -70px; top: -35px;
  background: rgba(41,85,69,0.12);
  transform: rotate(9deg);
}
.section > * { position: relative; z-index: 2; }

h2, h3 {
  position: relative;
  z-index: 2;
}
h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: #548C59;
  border-radius: 2px;
  margin-top: 8px;
  margin-bottom: 0;
  opacity: 0.38;
}

/* --- Artistic Button Brush underline --- */
.cta-primary, .cta-secondary, .cookie-btn, .cookie-settings-btn {
  position: relative;
  overflow: hidden;
}
.cta-primary::after, .cta-secondary::after, .cookie-btn.accept::after, .cookie-btn.reject::after {
  content: '';
  display: block;
  position: absolute;
  left: 14px;
  bottom: 8px;
  width: 60%;
  height: 7px;
  background: rgba(241,233,214,0.41);
  border-radius: 6px;
  transform: rotate(-3deg);
  pointer-events: none;
  transition: width 0.22s cubic-bezier(.7,.1,.3,1);
  z-index: 1;
}
.cta-primary:hover::after, .cta-secondary:hover::after,
.cookie-btn.accept:hover::after, .cookie-btn.reject:hover::after {
  width: 85%;
}

/* Artistic highlights */
.feature h3 {
  background: linear-gradient(85deg, #548C59 30%, #295545 100%);
  -webkit-background-clip: text;
  color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

/* === FORM FIELDS (for newsletter or search forms if used) === */
input, textarea, select {
  border-radius: 8px;
  border: 2px solid #CCE6CE;
  padding: 9px 13px;
  font-size: 1rem;
  margin-bottom: 12px;
  background: #fff;
  color: #295545;
  transition: border 0.17s;
  max-width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #548C59;
  outline: 0;
}
button:focus {
  outline: 2px solid #548C59;
  outline-offset: 1px;
}

/* === Z-INDEX LAYERING === */
header { z-index: 1200; }
.mobile-menu { z-index: 2001; }
.cookie-banner { z-index: 3001; }
.cookie-modal-overlay { z-index: 4000; }

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none!important; animation: none!important; }
}

/* === END === */
