/* RESET & NORMALIZE (Mobile-first) */
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, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, nav, output, ruby, section, summary, time, mark, audio, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #36592B;
  background: linear-gradient(135deg, #F3F6EE 0%, #FFFFFF 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.35,1.4,.8,1);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #36592B;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.24;
  color: #36592B;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #4D763E;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #36592B;
}
p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #36592B;
}
strong {
  font-weight: 600;
  color: #4D763E;
}

/* BRAND COLORS */
:root {
  --primary: #4D763E;
  --primary-dark: #36592B;
  --secondary: #F3F6EE;
  --accent: #C89A4B;
  --accent-dark: #A07626;
  --white: #fff;
  --shadow: rgba(76, 89, 62, 0.07);
  --shadow-soft: rgba(76, 89, 62, 0.04);
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: 1200px;
}

/* HEADER + NAVIGATION */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 6px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px 20px 16px;
  gap: 16px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1rem;
  padding: 8px 0;
  transition: color 0.18s cubic-bezier(.35,1.4,.8,1);
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  color: var(--accent-dark);
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary) 70%, var(--accent));
  color: var(--white);
  font-size: 1.05rem;
  padding: 12px 32px;
  border-radius: 30px;
  transition: background 0.22s cubic-bezier(.35,1.4,.8,1), box-shadow 0.22s cubic-bezier(.35,1.4,.8,1);
  box-shadow: 0 2px 10px var(--shadow);
  margin-left: 16px;
  letter-spacing: 0.5px;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--accent) 70%, var(--primary));
  box-shadow: 0 4px 18px 0 rgba(76, 89, 62, 0.10);
}

/* MOBILE MENU / BURGER NAV */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  top: 18px;
  right: 18px;
  background: var(--white);
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: 8px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--shadow-soft);
  transition: background 0.2s;
}
.mobile-menu-toggle:active {
  background: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  background: var(--secondary);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.31,1.3,.84,1);
  box-shadow: 0 0 20px 0 var(--shadow);
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 24px 10px 0;
  font-size: 2.2rem;
  color: var(--primary);
  background: none;
  border: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 8px 32px 32px 32px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--primary-dark);
  padding: 15px 0;
  border-bottom: 1px solid #e7ecd9;
  transition: color 0.19s cubic-bezier(.65,1.11,.89,1.03);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent-dark);
}

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

/* HERO SECTION */
section.hero {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 54px 0 40px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1, .hero p {
  color: var(--white);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 400;
}
.hero .cta-btn {
  margin-top: 10px;
  box-shadow: 0 4px 20px 0 rgba(160, 118, 38, 0.13);
}

/* GENERIC SECTION SPACING & PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 34px rgba(160, 118, 38, 0.08);
  transform: translateY(-3px) scale(1.015);
}
.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;
  align-items: center;
  gap: 20px;
  background: var(--secondary);
  box-shadow: 0 2px 18px var(--shadow-soft);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  color: #263b1d;
  font-size: 1.08rem;
  min-width: 0;
}
.testimonial-card p {
  color: #191f13;
  font-size: 1.11rem;
  margin-bottom: 0;
}
.testimonial-card span {
  margin-left: auto;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #4D763E;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURES, SERVICES & UL LISTS */
.features .content-wrapper,
.services .content-wrapper,
.features.philosophy .content-wrapper,
.features.product-categories .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.features ul,
.services ul,
.features.inspiration .content-wrapper ul,
.features.advices .content-wrapper ul,
.features.product-categories ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features ul li,
.services ul li,
.features.philosophy ul li,
.features.inspiration ul li,
.features.advices ul li,
.features.product-categories ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.08rem;
  background: var(--white);
  border-radius: 9px;
  padding: 12px 16px;
  box-shadow: 0 1px 6px var(--shadow-soft);
  transition: box-shadow 0.2s;
  font-family: 'Roboto', Arial, sans-serif;
  color: #435a32;
}
.features ul li img,
.services ul li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  display: block;
}
.features ul li strong {
  color: var(--accent);
}
.features ul li:hover, .features ul li:focus {
  box-shadow: 0 3px 12px var(--shadow);
}

/* SERVICES CARDS */
.services ul li {
  background: var(--secondary);
  border-left: 7px solid var(--primary);
  margin-bottom: 8px;
}
.services ul li:last-child {
  margin-bottom: 0;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  padding: 38px 0 38px 0;
  color: var(--white);
  border-radius: 18px;
  margin-top: 40px;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 4px;
}
.cta .cta-btn {
  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));
  margin: 10px 0;
}

/* LEGAL & INFO PAGES */
.legal {
  background: var(--secondary);
  border-radius: 13px;
  box-shadow: 0 1px 8px var(--shadow-soft);
  margin: 32px 0;
  padding: 28px 16px;
}
.legal h1 {
  margin-top: 0;
}
.legal ul {
  gap: 12px;
}

/* FAQ STYLING */
.faq {
  margin: 28px 0 0 0;
}
.faq h2 {
  margin-bottom: 12px;
  color: var(--primary);
}
.faq > div {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 1px 8px var(--shadow-soft);
  margin-bottom: 18px;
  padding: 16px 18px;
}
.faq strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: #4D763E;
}

/* ABOUT, CONTACT & CONFIRMATION */
.about .content-wrapper,
.contact .content-wrapper,
.confirmation .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px 12px 16px 12px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 1px 10px var(--shadow-soft);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact .text-section p, .contact .text-section a {
  font-size: 1.06rem;
  color: #415a2d;
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  margin-top: 60px;
  gap: 18px;
}
.confirmation .cta-btn {
  margin: 10px auto 0 auto;
}

/* FOOTER */
footer {
  background: var(--primary-dark);
  color: var(--secondary);
  padding: 32px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.19s;
  margin-bottom: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.97rem;
  color: var(--secondary);
  gap: 4px;
  margin-bottom: 8px;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 5px;
  width: 19px;
  height: 19px;
  display: inline;
}
.footer-contact span {
  opacity: 0.82;
  font-size: 0.93rem;
}
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-logo img {
  width: 52px;
  height: auto;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 0;
  z-index: 2000;
  background: var(--white);
  color: #36592B;
  box-shadow: 0 -2px 20px 0 var(--shadow-soft);
  border-radius: 13px 13px 0 0;
  padding: 28px 16px 18px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(.31,1.3,.84,1), opacity 0.25s ease;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(200px);
}
.cookie-banner p {
  font-size: 0.99rem;
  margin-bottom: 0;
  color: #36592B;
  max-width: 450px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  border-radius: 21px;
  padding: 10px 22px;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 4px var(--shadow);
}
.cookie-btn.reject {
  background: #bbb8a8;
  color: #263b1d;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--accent-dark);
  color: var(--white);
}
.cookie-settings-btn {
  background: var(--accent);
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42, 54, 38, 0.41);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.22s;
  padding: 22px; 
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: var(--white);
  color: #36592B;
  border-radius: 17px;
  box-shadow: 0 2px 24px var(--shadow);
  padding: 32px 24px 26px 24px;
  min-width: 280px;
  max-width: 98vw;
}
.cookie-modal h2 {
  font-size: 1.36rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 7px 0 7px 0;
  font-size: 1.04rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--accent);
  width: 22px;
  height: 22px;
  margin-right: 5px;
}
.cookie-category .essential {
  opacity: 0.64;
  font-size: 0.95rem;
  font-style: italic;
}
.cookie-modal .modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  color: #36592B;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1080px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 880px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 94%;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .features .content-wrapper, .services .content-wrapper {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .cta {
    padding: 22px 0;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 5px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 7px 14px 10px;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 8px;
  }
}

/* SCROLLBAR for modern style */
::-webkit-scrollbar {
  width: 8px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: #D1DFC3;
  border-radius: 4px;
}

/* MICROINTERACTIONS */
.cta-btn, .cookie-btn, .cookie-settings-btn {
  transition: background 0.22s, color 0.22s, box-shadow 0.16s, transform 0.16s;
}
.cta-btn:active, .cookie-btn:active, .cookie-settings-btn:active {
  box-shadow: 0 1px 3px var(--shadow);
  transform: scale(0.98);
}
.card, .testimonial-card, .features ul li, .faq > div {
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .testimonial-card:hover, .features ul li:hover, .faq > div:hover {
  box-shadow: 0 4px 20px var(--shadow);
  transform: translateY(-2px) scale(1.015);
}
footer .footer-logo img {
  transition: transform 0.22s;
}
footer .footer-logo img:hover {
  transform: scale(1.10) rotate(-3deg);
}

/* SELECTIVE UTILITY CLASSES */
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.mt-12 { margin-top: 12px; }
.gap-16 { gap: 16px; }

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