/* =============================================
   CSS RESET & BASE STYLES (Normalize + Reset)
   ============================================= */
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;
  color: #1B2C32;
  background: #FAF8F4;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}
a {
  color: #1B2C32;
  text-decoration: none;
  transition: color 0.3s;
}
a:focus {
  outline: 2px dashed #60936A;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #203022;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  line-height: 1.16;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.22;
}
strong {
  font-weight: 700;
}

/* =============================
   BRAND NATURE ORGANIC PALETTE
   ============================= */
:root {
  --brand-primary: #1B2C32;
  --brand-secondary: #C2A479;
  --brand-accent: #FFFFFF;
  --nature-green: #60936A;
  --nature-olive: #6B7B57;
  --earth-brown: #A2784F;
  --sand-light: #EAE5D9;
  --clay: #DBC7B6;
  --danger: #B65C43;
}

/* ============================
   NATURAL ORGANIC STRUCTURE
   ============================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Organic background shapes (for hero or sections) */
.hero {
  background: linear-gradient(120deg, #EAE5D9 80%, #60936A 100%);
  border-radius: 0 0 72px 0/0 0 72px 0;
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.hero h1 {
  color: #203022;
  font-size: 2.35rem;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: #1B2C32;
}

/* responsive image */
.logo,
.main-nav img {
  height: 48px;
  width: auto;
}

/* =====================================
   FLEXBOX UTILITIES (MANDATORY PATTERNS)
   ===================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 3px 12px 0 #dccdb6a0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px 0 #C2A47922, 0 1.5px 0 0 #60936A11;
  transform: translateY(-3px) scale(1.02);
}
.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;
  padding: 20px;
  background: #F7F5EF;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 #B6C2B385;
  margin-bottom: 20px;
  max-width: 540px;
  border-left: 5px solid #60936A;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #23302B;
  margin-bottom: 12px;
}
.testimonial-card strong {
  color: #6B7B57;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   NAVIGATION & HEADER STYLES
   ============================= */
header {
  background: #FFFFFF;
  box-shadow: 0 1px 0 0 #EAECDE;
  margin-bottom: 0;
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0;
  width: 100%;
}
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  color: #1B2C32;
  padding: 7px 10px;
  border-radius: 9px;
  transition: background 0.3s, color 0.3s;
}
.desktop-menu a:hover, .desktop-menu a:focus {
  background: #EAE5D9;
  color: #60936A;
}
.desktop-menu .cta-btn {
  background: #60936A;
  color: #FFF;
  padding: 11px 22px;
  border-radius: 18px 0 18px 0/18px 0 18px 0;
  box-shadow: 0 2px 8px #C2A47933;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-left: 8px;
  border: none;
  transition: background 0.2s, transform 0.2s;
}
.desktop-menu .cta-btn:hover, .desktop-menu .cta-btn:focus {
  background: #1B2C32;
  color: #C2A479;
  transform: scale(1.04);
}
/* Hide hamburger on desktop */
.mobile-menu-toggle {
  display: none;
}

/* =============================
   MOBILE NAVIGATION STYLES
   ============================= */
@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    background: #60936A;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    margin-right: 10px;
    cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s;
    z-index: 101;
    box-shadow: 0 2px 10px #C2A47933;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #1B2C32;
    color: #C2A479;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 0;
  opacity: 0;
  overflow: hidden;
  background: #FFF;
  box-shadow: -7px 0 32px #C2A47933;
  z-index: 999;
  transition: all 0.3s cubic-bezier(.7,.16,0,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  width: 94vw;
  max-width: 350px;
  opacity: 1;
  transition: all 0.32s cubic-bezier(.65,.27,.09,1);
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #1B2C32;
  font-size: 2.2rem;
  border: none;
  padding: 18px 20px 11px 0;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  color: #60936A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 26px;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #203022;
  font-size: 1.13rem;
  padding: 10px 0;
  border-radius: 6px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAE5D9;
  color: #60936A;
}
@media (max-width: 992px) {
  .mobile-menu {
    display: flex;
  }
}
@media (max-width: 768px) {
  .main-nav {
    padding: 0 8px;
  }
}

/* ===================
   FOOTER STYLES   
   =================== */
footer {
  background: #FAF8F4;
  border-top: 1px solid #EAECDE;
  padding: 36px 0 10px 0;
  font-size: 1rem;
  box-shadow: 0 0.5px 0 0 #EAECDE;
}
.footer-menu {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #60936A;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 2px;
  border-radius: 6px;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #203022;
}
footer p {
  color: #1B2C32;
  margin-bottom: 0;
  font-size: 0.92rem;
}

/* =============================
   BUTTONS, LINKS, CTA
   ============================= */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 36px;
  background: #60936A;
  color: #FFF;
  border: none;
  border-radius: 18px 0 18px 0/18px 0 18px 0;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 12px #C2A47933;
  cursor: pointer;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1B2C32;
  color: #C2A479;
  transform: scale(1.03);
}
a.cta-btn {
  text-decoration: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

/* =============================
   FEATURE GRID & LISTS
   ============================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid li {
  background: #F7F5EF;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 #B6C2B340;
  padding: 26px 22px;
  flex: 1 1 240px;
  max-width: 330px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.16s, transform 0.19s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 25px #C2A47927;
  transform: scale(1.03);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
  filter: brightness(0.92) saturate(0.9);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list li {
  background: #FFF;
  border: 1.5px solid #EAE5D9;
  border-radius: 16px;
  box-shadow: 0 1px 7px #B6C2B315;
  padding: 22px 20px;
  transition: box-shadow 0.17s, border-color 0.18s, transform 0.17s;
  margin-bottom: 10px;
}
.service-list li:hover, .service-list li:focus-within {
  border-color: #60936A;
  box-shadow: 0 9px 22px #C2A47917;
  transform: translateY(-2px) scale(1.015);
}
.service-list h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #23302B;
  margin-bottom: 6px;
}
.service-list span {
  color: #60936A;
  font-weight: 700;
  font-size: 1.1em;
  margin-left: 16px;
  font-family: inherit;
}

.text-section {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section p, .text-section ul, .text-section li {
  font-size: 1.01rem;
  color: #203022;
}
.text-section ul {
  list-style: disc inside;
  margin-top: 7px;
  margin-bottom: 7px;
  padding-left: 17px;
}
.text-section li {
  margin-bottom: 5px;
}

/* =============================
   LINKS INSIDE TEXT
   ============================= */
.text-section a {
  color: #60936A;
  text-decoration: underline;
  transition: color 0.2s;
}
.text-section a:hover, .text-section a:focus {
  color: #A2784F;
}

/* =====================
   TYPOGRAPHY DETAILS
   ===================== */
p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
}

/* ========================
   NATURE ORGANIC EFFECTS
   ======================== */
.card, .feature-grid li, .service-list li, .testimonial-card {
  border-radius: 24px 10px 32px 24px/14px 24px 32px 7px;
}

/* Subtle texture effect (simulated as light overlay) */
.feature-grid li,
.service-list li,
.testimonial-card {
  background-image: repeating-linear-gradient(115deg, #EAE5D923 4px, transparent 14px, transparent 40px), repeating-linear-gradient(83deg, #F8F6ED15 8px, transparent 16px, transparent 44px);
}

/* ========================
   RESPONSIVE QUERIES
   ======================== */
@media (max-width: 992px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .hero {
    border-radius: 0 0 36px 0/0 0 36px 0;
    min-height: 250px;
    padding-bottom: 32px;
  }
  .content-grid, .feature-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 98%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 568px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .section {
    margin-bottom: 30px;
    padding: 24px 2px 18px 2px;
  }
  .feature-grid li, .service-list li {
    padding: 13px 6px;
    border-radius: 16px;
    font-size: 0.98rem;
  }
}

/* ====================
   MICRO-ANIMATIONS
   ==================== */
.card, .feature-grid li, .service-list li, .testimonial-card, .cta-btn, .desktop-menu a, .footer-menu a {
  transition: box-shadow 0.18s, border-color 0.17s, color 0.18s, background 0.18s, transform 0.16s;
}

/* =============================
   COOKIE CONSENT BANNER/MODAL
   ============================= */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #EAE5D9;
  color: #1B2C32;
  box-shadow: 0 -2px 18px #bfa57e46;
  z-index: 10000;
  padding: 22px 10vw 18px 6vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  animation: cookie-slide-up 0.5s cubic-bezier(.93,.1,.19,1);
}
@keyframes cookie-slide-up {
  0% { transform: translateY(100%); opacity: .4; }
  85% { opacity: .95; }
  100% { transform: translateY(0); opacity: 1;}
}
#cookie-banner.hidden {
  display: none !important;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #60936A;
  color: #fff;
  border-radius: 10px;
  padding: 9px 23px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.17s;
}
.cookie-btn.settings {
  background: #C2A479;
  color: #23302B;
}
.cookie-btn.reject {
  background: #B65C43;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1B2C32;
  color: #C2A479;
  transform: scale(1.04);
}

/* Cookie Preferences MODAL (centered, full overlay) */
#cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(31,42,32,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000;
  transition: opacity 0.21s;
  opacity: 1;
}
#cookie-modal.hidden {
  display: none !important;
  opacity: 0;
}
.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 20px 36px 16px 34px/24px 32px 14px 30px;
  max-width: 390px;
  padding: 36px 28px 20px 28px;
  box-shadow: 0 8px 35px #C2A47938;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookie-modal-fadein .31s cubic-bezier(.93,.1,.19,1);
}
@keyframes cookie-modal-fadein {
  0% { opacity: 0; transform: scale(.85) translateY(30px); }
  100% { opacity: 1; transform: none; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #23302B;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: #60936A;
  width: 18px;
  height: 18px;
  border-radius: 7px;
  margin-right: 2px;
}
.cookie-close {
  position: absolute;
  top: 18px;
  right: 26px;
  background: transparent;
  color: #1B2C32;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
.cookie-close:hover, .cookie-close:focus {
  color: #60936A;
}

/* =========================
   UTILITY & MISC STYLES
   ========================= */
::-webkit-scrollbar {
  width: 10px;
  background: #EAE5D9;
}
::-webkit-scrollbar-thumb {
  background: #C2A479;
  border-radius: 8px;
}

hr {
  height: 2px;
  background: #EAE5D9;
  border: none;
  margin: 28px 0;
}

/* Custom focus for a11y */
button:focus, a:focus {
  outline: 2.5px solid #60936A;
  outline-offset: 2px;
}

/* ================================================
   ACCESSIBILITY & PRINT
   ================================================ */
@media print {
  header, .mobile-menu, .cookie-banner, #cookie-banner, #cookie-modal, footer, nav {
    display: none !important;
  }
}

/* ==================
   END CSS STYLES
   ================== */
