/* CSS RESET & BASE VARIABLES */
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%;
  height: 100%;
  scroll-behavior: smooth;
  background: #fff;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #4A6741;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #A5A279;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
button {
  font-family: inherit;
  font-size: 16px;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: background .2s, color .2s, box-shadow .2s;
}

/* BRAND FONTS (fallbacks set in base rules above) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #4A6741;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.15rem;
  font-weight: 500;
}

@media (max-width: 599px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
}

strong, b {
  font-weight: 600;
  color: #4A6741;
}

/* CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(74, 103, 65, 0.04);
  transition: box-shadow .25s;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
    border-radius: 12px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(74, 103, 65, 0.05);
  margin-bottom: 20px;
  position: relative; /* only for possible decorative use, not for content layout! */
  padding: 24px 20px;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow .23s, transform .23s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(74,103,65,0.09);
  transform: translateY(-2px) scale(1.014);
}
@media (max-width: 700px) {
  .card {
    min-width: 180px;
    padding: 15px 9px;
  }
}

.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;
    align-items: stretch;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #FAFAF7;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(74, 103, 65, 0.04);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 640px;
}
.testimonial-card p {
  margin: 0 0 6px 0;
  color: #3A4032;
  font-size: 1.1rem;
  font-weight: 400;
}
.testimonial-card span {
  color: #4A6741;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .01em;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 10px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
  margin-bottom: 20px;
}

.text-section {
  margin-bottom: 20px;
}

.thank-you-message {
  font-size: 1.35rem;
  margin-bottom: 32px;
  color: #4A6741;
}

/* NAVIGATION & HEADER */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(74, 103, 65, 0.08);
  padding: 0;
  position: sticky;
  top: 0; z-index: 1000;
  min-height: 62px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  min-height: 62px;
}
.logo {
  display: flex;
  align-items: center;
  height: 40px;
}
.logo img {
  max-height: 38px;
  max-width: 130px;
  width: auto;
  height: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #4A6741;
  background: none;
  padding: 7px 7px;
  border-radius: 6px;
  transition: background .16s, color .19s;
  letter-spacing: 0.01em;
  font-size: 1.01rem;
  text-align: center;
  display: block;
}
.main-nav a.cta-primary {
  background: #4A6741;
  color: #fff;
  padding: 8px 18px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 1.03rem;
  box-shadow: 0 2px 9px rgba(74,103,65,0.09);
  transition: background .16s, color .19s, box-shadow .19s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #A5A279;
  color: #fff;
}
.main-nav a:hover:not(.cta-primary), .main-nav a:focus:not(.cta-primary) {
  background: #F4F2ED;
  color: #A5A279;
}

/* Hamburger menu mobile only */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: #4A6741;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .17s;
  margin-left: 18px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #A5A279;
  color: #fff;
}
@media (max-width: 920px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile menu overlay and nav */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 18px rgba(74, 103, 65, 0.13);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform .32s cubic-bezier(.65,.05,.36,1);
  overflow-y: auto;
  padding: 0 0 0 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #4A6741;
  font-size: 2rem;
  margin: 22px 30px 12px 0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 36px;
  text-align: center;
  transition: background .18s, color .17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #A5A279;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  padding: 22px 0 0 0;
}
.mobile-nav a {
  color: #4A6741;
  background: none;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.17rem;
  letter-spacing: 0.01em;
  border-radius: 7px;
  width: 95vw;
  max-width: 330px;
  padding: 12px 10px;
  margin: 0 auto;
  box-shadow: 0 1px 0 #f5f5f5;
  transition: background .15s, color .14s;
  text-align: left;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F2ED;
  color: #A5A279;
}
@media (min-width: 921px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN LAYOUT SPACING: paddings, sections, etc. */
main {
  min-height: calc(100vh - 85px);
  margin-bottom: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
}
@media (max-width: 750px) {
  section {
    margin-bottom: 34px;
    padding: 18px 4px;
    border-radius: 10px;
  }
}

/* FOOTER */
footer {
  background: #FAFAF7;
  color: #3A4032;
  font-size: 0.97rem;
  line-height: 1.5;
  padding: 36px 0 16px 0;
  border-top: 1.5px solid #f2f3ef;
  z-index: 2;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  margin-bottom: 26px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #4A6741;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  background: none;
  border-radius: 5px;
  padding: 4px 7px;
  transition: background .14s, color .13s;
}
.footer-nav a:hover,.footer-nav a:focus {
  background: #F4F2ED;
  color: #A5A279;
}
.footer-contact {
  margin-bottom: 18px;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  align-items: center;
}
.footer-contact span {
  color: #626255;
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 19px; height: 19px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.footer-socials a {
  display: inline-flex;
  transition: filter .17s, transform .11s;
  filter: grayscale(1) brightness(1.2);
}
.footer-socials a:hover {
  filter: none;
  transform: scale(1.10);
}
.logo-footer img {
  max-height: 34px;
  margin-bottom: 6px;
}
@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 13px;
  }
  .footer-contact { flex-direction: column; gap: 8px; }
  .footer-socials { margin-left: 0; }
}

/* BUTTONS, CTA */
.cta-primary {
  display: inline-block;
  background: #4A6741;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  padding: 12px 36px;
  border-radius: 25px;
  margin-top: 18px;
  box-shadow: 0 2px 8px rgba(74,103,65,0.08);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background .19s, color .19s, box-shadow .19s, transform .15s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #A5A279;
  color: #fff;
  box-shadow: 0 4px 16px rgba(165,162,121,0.14);
  transform: translateY(-1px) scale(1.03);
}

/* FORMS (for potential contact/form fields) */
input[type="text"], input[type="email"], textarea {
  background: #fafaf7;
  color: #212218;
  border: 1.2px solid #E5E5DF;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  min-width: 90px;
  margin-bottom: 18px;
  font-family: 'Lato', Arial, sans-serif;
  transition: border .15s;
  outline: none;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #4A6741;
}

/* TABLES, DL, DT, etc. */
dt {
  color: #4A6741;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
}
dd {
  margin-left: 15px;
  margin-bottom: 10px;
  color: #626255;
}

/* LIST STYLES for icons in li */
ul li img, ol li img {
  vertical-align: middle;
  margin-right: 10px;
  width: 26px; height: 26px;
}

/* MISC HELPERS & UTILITIES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-24 { margin-top: 24px !important; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -3px 16px rgba(74, 103, 65, 0.09);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 20px 20px;
  font-size: 1rem;
  transition: transform .4s cubic-bezier(.59,1.36,.48,1), opacity .29s;
  opacity: 1;
  transform: translateY(0);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner__text {
  max-width: 600px;
  color: #4A6741;
  line-height: 1.55;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn,
.cookie-btn-settings {
  background: #F4F2ED;
  color: #4A6741;
  padding: 10px 22px;
  border-radius: 18px;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cookie-btn.accept {
  background: #4A6741;
  color: #fff;
}
.cookie-btn.reject {
  background: #A5A279;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #626255;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F4F2ED;
  color: #A5A279;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #fff;
  color: #A5A279;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 7px 13px 9px;
    gap: 10px;
  }
  .cookie-banner__text { margin-right: 0; max-width: 100vw; }
  .cookie-banner__actions { gap: 7px; }
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(74,103,65,0.13);
  z-index: 7000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity .3s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 25px rgba(74,103,65,0.13);
  padding: 34px 36px 28px 36px;
  max-width: 440px;
  width: 84vw;
  font-size: 1.01rem;
  color: #4A6741;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-show .36s cubic-bezier(.33,1.36,.29,1);
}
@keyframes cookie-modal-show { from { transform: scale(.93); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #4A6741;
  text-align: left;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #626255;
  font-family: 'Lato', Arial, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #F4F2ED;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .26s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #4A6741;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 2.5px; left: 4px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s, background .25s;
}
.cookie-toggle:checked:before {
  transform: translateX(15px);
  background: #A5A279;
}
.cookie-modal-buttons {
  display: flex;
  gap: 11px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 13px;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 7vw 14px 7vw;
    max-width: 94vw;
  }
  .cookie-modal .cookie-modal-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- FLEXBOX DEMAND ---
   CLASS-BASED LAYOUT WITH GAP/WRAPPING */
.features,
.card-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

/* --- SPECIFIC MISC --- */
hr {
  border: none;
  border-bottom: 1px solid #E5E5DF;
  margin: 24px 0;
}
blockquote {
  border-left: 4px solid #A5A279;
  background: #F4F2ED;
  margin: 18px 0;
  padding: 12px 18px;
  border-radius: 9px;
  color: #616250;
  font-style: italic;
}

/* ACCESSIBILITY: focus styles */
a:focus, button:focus, input:focus, .cta-primary:focus {
  outline: 2px solid #A5A279;
  outline-offset: 2px;
}

/* SCROLLBAR (subtle/minimalist) */
::-webkit-scrollbar {
  width: 7px;
  background: #F4F2ED;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #A5A279;
  border-radius: 7px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 600px) {
  html { font-size: 15px; }
  h1 { font-size: 1.40rem; }
  section, .section { padding: 12px 0; margin-bottom: 22px; border-radius: 7px; }
}
@media (max-width: 440px) {
  h1 { font-size: 1.07rem; }
}

/* TRANSITIONS & MICRO-INTERACTIONS */
.card, .testimonial-card, .cta-primary, .mobile-menu, .mobile-menu-close, .mobile-nav a {
  transition: box-shadow .22s, background .19s, transform .14s, color .19s;
}

/* SHADOWS & MINIMALIST DETAILS */
.card, .testimonial-card, section, .section {
  box-shadow: 0 1.5px 6px rgba(74, 103, 65, 0.04);
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 5px 16px rgba(74, 103, 65, 0.10);
}

/* Z-INDEXING FOR OVERLAYS */
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 6000; }
.cookie-modal-overlay { z-index: 7000; }

/* MINIMALIST COLOR PALETTE */
body, section, .section, .card, .testimonial-card {
  background: #fff;
}
.testimonial-card {
  background: #FAFAF7;
}

/* ICONS */
li img, .footer-contact img, .footer-socials img {
  filter: grayscale(1) brightness(0.95);
  transition: filter .2s;
}
li img:hover, .footer-socials a:hover img { filter: none; }

/* GENERAL MINIMALIST WHITE SPACE */
.container,
.content-wrapper,
.section,
.card,
.card-container,
.content-grid,
.text-image-section,
.testimonial-card,
.feature-item {
  margin-bottom: 20px;
}

/* ENSURE FLEX ONLY, NO GRID/COLUMNS */
/* (No display: grid or column-* present) */
