/* =============================
   HandwerkGlanz NATURE_ORGANIC STYLE
   ============================= */
/* --- CSS RESET & NORMALIZE --- */
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 { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.55;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  background-color: #F1E9DA;
  color: #2E4230;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
a {
  color: #16425B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #94731D;
}
ul, ol {
  margin: 16px 0 16px 24px;
}
li {
  margin-bottom: 10px;
}
/* --- CONTAINER --- */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #16425B;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 14px; }
h2 { font-size: 2rem; margin-bottom: 10px; color: #385f3d; }
h3 { font-size: 1.45rem; color: #3e5438; }
h4 { font-size: 1.18rem; color: #4B3F2E; }
p, li, a, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2E4230;
}
p { margin-bottom: 10px; }
strong, b { color: #16425B; }
/* --- BUTTONS & CTAS --- */
.cta-button, .mobile-menu button, .cookie-btn, .cookie-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 28px 32px 24px 35px/25px 28px 33px 30px;
  background: #16425B;
  color: #fff;
  box-shadow: 0 4px 16px rgba(39, 77, 43, 0.08);
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.2s;
  letter-spacing: 0.04em;
}
.cta-button:hover, .cta-button:focus {
  background: #94731D;
  color: #fff;
  box-shadow: 0 6px 16px 2px rgba(39, 77, 43, 0.15);
  transform: translateY(-2px) scale(1.02);
}
.cookie-btn, .cookie-modal-btn {
  min-width: 120px;
  font-size: 1rem;
  border-radius: 20px 26px 19px 28px/18px 19px 23px 20px;
  background: #AD974F;
  color: #fff;
  margin: 0 12px 0 0;
  padding: 9px 20px;
  transition: background 0.18s, transform 0.18s;
}
.cookie-btn:last-child, .cookie-modal-btn:last-child { margin-right: 0; }
.cookie-btn:hover, .cookie-btn:focus, .cookie-modal-btn:hover, .cookie-modal-btn:focus {
  background: #16425B;
  color: #fff;
  transform: scale(1.03);
}
.cookie-btn.reject {
  background: #6E5C3F;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #32534b;
}
.cookie-btn.settings {
  background: #385f3d;
}
.cookie-btn.settings:hover {
  background: #94731D;
}
.mobile-menu button, .mobile-menu-close {
  background: none;
  border: none;
  color: #16425B;
  font-size: 2.2rem;
  cursor: pointer;
  outline: none;
  padding: 7px 14px;
  border-radius: 14px;
  transition: background 0.2s;
}
.mobile-menu button:hover, .mobile-menu-close:hover {
  background: #e6e7dd;
}
/* --- SECTIONS, CARDS, FEATURE LISTS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe9;
  border-radius: 28px 48px 22px 38px/29px 53px 21px 31px;
  box-shadow: 0 6px 38px rgba(83, 99, 76, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card-container, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card, .feature-item, .testimonial-card {
  background: #FAF6EF;
  border-radius: 27px 35px 30px 22px/21px 22px 31px 28px;
  box-shadow: 0 3px 20px 2px rgba(44, 72, 32, 0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 20px 24px;
  gap: 10px;
  border: 1.5px solid #E2D4B7;
  overflow: hidden;
}
.card:last-child, .testimonial-card:last-child, .feature-item:last-child {
  margin-bottom: 0;
}
.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;
  width: 100%;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F5ED; /* very light earth tone */
  border-radius: 22px 30px 16px 26px/22px 17px 24px 19px;
  box-shadow: 0 2px 18px 2px rgba(120, 144, 100, 0.09);
  border: 1px solid #E3DDCB;
  margin-bottom: 20px;
  flex-direction: row;
}
.testimonial-card p {
  font-size: 1.06rem;
  font-style: italic;
  color: #274D2B;
  margin-right: 12px;
}
.testimonial-card div { font-weight: 500; color: #16425B; }
.testimonial-card img { width: 1.2em; height: 1.2em; margin-right: 2px; vertical-align: middle; margin-bottom: 0; }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #E5E8D8;
  border-radius: 14px 19px 21px 13px/15px 11px 19px 15px;
  padding: 18px 22px;
}
/* --- HEADER --- */
header {
  background: #fffbe9;
  box-shadow: 0 3px 20px rgba(83, 99, 76, 0.06);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 8px 16px;
}
header nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
header nav a {
  color: #3E5438;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 16px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a.active {
  background: #F1E9DA;
  color: #94731D;
}
header img {
  height: 38px;
  margin-right: 10px;
}
/* --- BURGER MENU MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 20px;
  z-index: 31;
  background: #fdfcee;
  color: #16425B;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(44, 44, 32, 0.08);
  padding: 11px 15px 9px 15px;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #eaf1dc;
  color: #94731D;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(241, 233, 218, 0.98);
  z-index: 2000;
  transform: translateX(-105vw);
  transition: transform 0.35s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 2100;
  background: none;
  font-size: 2.3rem;
  color: #94731D;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  margin-top: 72px;
  padding: 28px 36px 20px 36px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #16425B;
  font-size: 1.28rem;
  font-weight: 600;
  padding: 11px 0 11px 0;
  width: 100%;
  border-radius: 12px;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #94731D;
  background: #E5E8D8;
}
@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
    gap: 8px;
    padding: 9px 8px;
  }
  header nav {
    gap: 11px;
  }
}
@media (max-width: 900px) {
  header nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    justify-content: flex-start;
    gap: 20px;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* --- SECTIONS & SPACING --- */
main {
  padding: 32px 0 12px 0;
  background: #F1E9DA;
  min-height: 65vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe9;
  border-radius: 28px 48px 22px 38px/29px 53px 21px 31px;
  box-shadow: 0 5px 32px rgba(120, 144, 100, 0.08);
}
section:last-child { margin-bottom: 0; }
@media (max-width: 850px) {
  section, .section {
    padding: 24px 7px;
    margin-bottom: 40px;
  }
}
/* --- FLEXBOX RESPONSIVE LAYOUTS --- */
/* .section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item
   are defined as above, repeated below for responsive tuning */
@media (max-width: 1024px) {
  .content-grid,
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .features {
    flex-direction: column;
    gap: 18px;
  }
  .card, .testimonial-card, .feature-item {
    margin-bottom: 18px;
    padding: 14px 12px 12px 12px;
    border-radius: 19px 14px 17px 18px/18px 16px 19px 12px;
    min-width: 0;
    width: 100%;
  }
  .card:last-child,
  .testimonial-card:last-child,
  .feature-item:last-child {
    margin-bottom: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.10rem; }
  header img {
    height: 22px;
  }
  section, .section {
    padding: 14px 2px;
    margin-bottom: 24px;
    border-radius: 9px 18px 8px 12px/8px 11px 9px 10px;
  }
}
/* --- FOOTER --- */
footer {
  background: #2E4230;
  color: #fff;
  padding: 0;
  width: 100%;
  font-size: 1rem;
  box-shadow: 0 -2px 14px 0 rgba(0,0,0,0.07);
}
footer .container {
  padding: 20px 8px 16px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-links {
  font-size: 0.96rem;
  color: #fff;
  margin-bottom: 4px;
  text-align: center;
}
.footer-links a {
  color: #fff;
  margin: 0 6px;
  font-weight: 500;
  font-size: 0.98rem;
  transition: color 0.16s;
}
.footer-links a:hover { color: #AD974F; }
.footer-social {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin: 4px 0;
}
.footer-social a { display: flex; }
.footer-social img { height: 24px; width: 24px; filter: grayscale(25%); opacity: .85; }
.footer-social a:hover img { filter: none; opacity: 1; }
footer div {
  color: #E7EED2;
  font-size: 0.99rem;
  text-align: center;
}
footer img {
  height: 36px;
  margin: 0 auto 12px auto;
  display: block;
}
@media (max-width: 650px) {
  .footer-links { font-size: 0.93rem; }
  footer img { height: 27px; margin-bottom: 7px; }
}
/* --- ORGANIC/NATURE UI ACCENTS --- */
section, .card, .testimonial-card, .feature-item, .section {
  background-image: url('../assets/organic-bg-texture.png'), none;
  background-repeat: no-repeat;
  background-size: 128px auto, cover;
  background-position: right bottom;
  /* Low opacity overlays to simulate nature texture, fallback to flat if not present */
}
@media (max-width: 768px) {
  section, .section, .card, .testimonial-card, .feature-item { background-size: 0, cover; }
}
.card,
.section,
.feature-item,
.testimonial-card {
  border: 1.5px solid #E2D4B7;
}
.feature-item {
  background: #EEF5DB;
  border-left: 5px solid #94731D;
}
.content-wrapper > ul > li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.content-wrapper > ul > li img {
  width: 28px;
  height: 28px;
  margin-right: 6px;
}
/* --- MODALS & BANNERS --- */
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 5000;
  background: #E8E5D2;
  color: #16425B;
  box-shadow: 0 0 18px 0 rgba(44,51,28,0.12);
  padding: 27px 24px 19px 24px;
  min-height: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  gap: 16px;
}
.cookie-banner p {
  max-width: 630px;
  font-size: 1rem;
  color: #2E4230;
  margin-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 19px 10px 14px 11px;
    font-size: 0.98rem;
  }
  .cookie-banner p {
    margin-right: 0;
    margin-bottom: 7px;
  }
}
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right:0; bottom:0;
  background: rgba(44, 66, 48, 0.23);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fffbe9;
  border-radius: 23px 28px 31px 26px/23px 19px 22px 21px;
  box-shadow: 0 17px 38px 0 rgba(39, 77, 43, 0.12);
  padding: 40px 34px 28px 34px;
  max-width: 440px;
  width: 95%;
  color: #274D2B;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 10100;
  position: relative;
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: #16425B;
  font-size: 1.4rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #395034;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 22px;
  background: #d6c194;
  border-radius: 13px;
  position: relative;
  margin-right: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.15s;
}
.cookie-modal .cookie-switch[data-checked="true"] {
  background: #94731D;
}
.cookie-modal .cookie-switch-knob {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 9px rgba(44,51,38,0.13);
  transition: left 0.17s, background 0.14s;
}
.cookie-modal .cookie-switch[data-checked="true"] .cookie-switch-knob {
  left: 19px;
  background: #F1E9DA;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 12px;
  background: none;
  border: none;
  color: #94731D;
  font-size: 1.3rem;
  border-radius: 9px;
  padding: 4px 8px;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #f3edda; }
@media (max-width: 480px) {
  .cookie-modal { padding: 19px 7px 16px 14px; font-size: 0.97rem; }
}
/* --- ANIMATIONS --- */
.mobile-menu { transition: transform 0.35s cubic-bezier(.61,-0.32,.44,1.42); }
.mobile-menu.open { animation: fadeInMenu 0.38s both; }
@keyframes fadeInMenu {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-banner { animation: bannerDropIn 0.6s; }
@keyframes bannerDropIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal { animation: fadeModalIn 0.44s both; }
@keyframes fadeModalIn {
  from { opacity: 0; transform: scale(0.96) translateY(28px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
/* --- MISC/NATURE/ORGANIC DECOR --- */
hr {
  border: 0; height: 2px;
  background: #E2D4B7;
  margin: 30px 0;
  border-radius: 2px 5px 4px 8px/4px 6px 4px 5px;
}
/* --- FORMS (for contact) --- */
input, textarea, select {
  border-radius: 19px 9px 19px 21px/11px 12px 13px 18px;
  border: 1.3px solid #CCD7BC;
  padding: 12px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 18px;
  background: #F9F7F1;
  color: #2E4230;
  width: 100%;
  box-shadow: none;
  outline: none;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #94731D;
  background: #fffbe9;
}
label {
  font-size: 1.08rem;
  color: #274D2B;
  display: block;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 540px) {
  label { font-size: 1rem; }
}
/* --- UTILITIES & MISC CLASSES --- */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
/* ========== END ========== */