/* =============================
   CSS RESET & 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  color: #274127;
  background: #FCF7EF;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: #27613A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #A57C44;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1.4em;
}
li + li { margin-top: 8px; }

:root {
  --color-primary: #27613A;
  --color-primary-dark: #234F2E;
  --color-secondary: #FCF7EF;
  --color-accent: #A57C44;
  --color-accent-2: #78613A;
  --color-text: #274127;
  --color-text-heading: #1C3521;
  --color-card-bg: #FFFFFF;
  --color-muted: #F6EFE4;
  --color-highlight: #EBE4D0;
  --shadow-soft: 0 2px 12px 0 rgba(39, 97, 58,0.10);
  --radius-base: 18px;
  --radius-card: 22px;
  --radius-pill: 50px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --container-max: 1050px;
  --transition: 0.22s cubic-bezier(.58,.07,.96,.62);
}

/* ========================================= */
/*                TYPOGRAPHY                */
/* ========================================= */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-heading);
  line-height: 1.18;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1      { font-size: 2.6rem; margin-bottom: 16px; }
h2      { font-size: 2rem; margin-bottom: 14px; }
h3      { font-size: 1.35rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.15rem; margin-bottom: 10px; }
p { margin-bottom: 1em; line-height: 1.7; }
.content-wrapper ul, .content-wrapper ol {
  margin-bottom: 1em;
}
strong { font-weight: 700; }
em { font-style: italic; }
blockquote {
  background: var(--color-highlight);
  border-left: 4px solid var(--color-primary);
  margin: 20px 0;
  padding: 16px 24px;
  border-radius: 0 var(--radius-base) var(--radius-base) 0;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

/* ========================================= */
/*               LAYOUT WRAPPERS             */
/* ========================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 821px) {
  .content-wrapper { gap: 24px; }
}

.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: flex-start;
    gap: 18px;
  }
}

/* ======================================== */
/*               NAVIGATION BAR             */
/* ======================================== */
header {
  background: var(--color-card-bg);
  box-shadow: 0 3px 18px 0 rgba(66,83,53,0.08);
  position: sticky;
  top: 0;
  z-index: 90;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  min-height: 76px;
  padding: 0 20px;
  font-family: var(--font-body);
}
.main-nav img {
  height: 56px;
  margin-right: 10px;
}
.main-nav a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}
.main-nav a.cta-primary {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-soft);
  padding: 10px 26px;
  margin-left: 12px;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: var(--color-accent-2);
  color: #fff;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-muted);
  color: var(--color-accent-2);
}

/* Hide main nav for mobile */
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
}

/* ============================================= */
/*             MOBILE MENU NAVIGATION            */
/* ============================================= */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--color-primary);
  margin: 8px 20px 8px 8px;
  cursor: pointer;
  z-index: 1002;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-menu-toggle:hover {
  background: var(--color-muted);
}
@media (min-width: 1051px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,49,30,0.98);
  z-index: 1001;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.59,.13,.44,1.04);
  box-shadow: 1px 0 16px 2px rgba(39,65,58,0.10);
  border-radius: 0 0 24px 0;
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  margin-right: 16px;
  margin-top: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1011;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  transition: background .2s;
}
.mobile-menu-close:hover {
  background: var(--color-accent-2);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 28px;
  padding: 0 24px;
  gap: 16px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  padding: 14px 0 10px 10px;
  border-radius: var(--radius-base);
  transition: background var(--transition), color var(--transition);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,255,255,0.15);
  color: var(--color-accent);
}
.mobile-nav a.cta-primary {
  background: var(--color-accent-2);
  color: #fff;
  font-weight: 700;
  text-align: center;
}
/* cover full screen and scrollable */
@media (max-width: 768px) {
  .mobile-menu {
    border-radius: 0;
    font-size: 1.1rem;
  }
  .mobile-nav {
    gap: 10px;
    padding: 0 8px;
  }
}

/* ================================== */
/*            HERO SECTION            */
/* ================================== */
.hero {
  min-height: 310px;
  background: linear-gradient(115deg, rgba(39,97,58,.085) 0%, rgba(167,124,68,0.07) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  margin: 48px 0 36px 0;
}
@media (max-width: 780px) {
  .hero {
    min-height: 170px;
    padding-top: 24px;
    margin-bottom: 20px;
  }
}

/* ================================== */
/*           CARD AND FLEXBOX         */
/* ================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow .23s;
}
.card:hover {
  box-shadow: 0 8px 32px 2px rgba(39,97,58,0.14);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* Service highlights on home */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.service {
  background: var(--color-muted);
  border-radius: var(--radius-card);
  padding: 18px 22px 14px 22px;
  min-width: 240px;
  max-width: 340px;
  box-shadow: 0 4px 16px rgba(167,124,68,.07);
  margin-bottom: 20px;
  flex: 1 1 270px;
  transition: box-shadow .15s, background .15s;
}
.service:hover {
  box-shadow: 0 8px 28px 2px rgba(117,100,42,0.13);
  background: #f4ecd8;
}
@media (max-width: 800px) {
  .service-list { flex-direction: column; gap: 14px; }
  .service { max-width: 98vw; min-width:unset; }
}

/* ================
    TESTIMONIALS
================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 14px 0 rgba(44, 88, 53, 0.18);
  padding: 20px 28px 16px 28px;
  min-width: 220px;
  margin-bottom: 20px;
  margin-right: 20px;
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.5;
  transition: box-shadow .18s, border-color .2s;
  border: 1px solid #ebebeb;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px 2px rgba(167,124,68,0.17);
  border-color: var(--color-accent);
}
@media (max-width: 800px) {
  .testimonial-card {
    margin-right: 0;
    padding: 16px 14px 12px 16px;
  }
}

/* Feature items (for future features sections) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FAQ Accordion (on Preise, Kontakt, etc.) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-muted);
  border-radius: var(--radius-base);
  padding: 16px 18px;
  box-shadow: 0 1px 7px 0 rgba(167,124,68,0.05);
  transition: background .15s;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.13rem;
  color: var(--color-primary);
}
.faq-item p {
  margin-bottom: 0;
  color: #444;
}
.faq-item:hover {
  background: #EAE2CD;
}

/* Table Styling (Preise page) */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 28px;
  background: var(--color-card-bg);
  border-radius: var(--radius-base);
  box-shadow: 0 1px 6px 0 rgba(39, 97, 58, 0.06);
  overflow: hidden;
  font-size: 1.05rem;
}
th, td {
  padding: 14px 12px;
  border-bottom: 1px solid #ece5d9;
  text-align: left;
}
th {
  background: #ECEAD4;
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-display);
}
tr:last-child td {
  border-bottom: none;
}

/* ============================================= */
/*                BUTTON & CTAS                  */
/* ============================================= */
.cta-primary {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.11rem;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 2px 16px rgba(39,97,58,0.13);
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--transition), color .16s, box-shadow .18s;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(167,124,68,0.13);
}
.cta-secondary {
  background: #F6EFE4;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 8px;
  cursor: pointer;
  transition: background var(--transition), color .14s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #ECEAD4;
  color: var(--color-accent-2);
}

/* ========================================= */
/*                FOOTER                     */
/* ========================================= */
footer {
  background: var(--color-primary);
  color: #fff;
  margin-top: 60px;
}
.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  padding: 36px 0 22px 0;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: #FBF6F0;
  font-size: 1rem;
  margin-right: 0;
  letter-spacing: 0.01em;
  transition: color .16s;
  font-family: var(--font-body);
}
.footer-nav a:hover, .footer-legal a:hover,
.footer-nav a:focus, .footer-legal a:focus {
  color: var(--color-accent);
}
.footer-top > a img {
  max-height: 67px;
  min-width: 52px;
  margin-bottom: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: left;
  color: #fff;
  font-size: 0.98em;
  padding: 12px 0 18px 0;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-bottom { text-align: left; }
}

/* ========================================= */
/*         COOKIE CONSENT BANNER/MODAL       */
/* ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(252,247,239,0.98);
  box-shadow: 0 -2px 22px 0 rgba(39,97,58,0.12);
  z-index: 1400;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 18px 18px 18px 24px;
}
.cookie-banner p {
  color: var(--color-primary-dark);
  font-size: 1.02rem;
  margin-bottom: 0;
  font-family: var(--font-body);
  flex: 1 1 380px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner .cookie-btns button {
  font-family: var(--font-display);
  font-size: 0.99rem;
  cursor: pointer;
  border-radius: var(--radius-pill);
  border: none;
  padding: 11px 18px;
  margin: 0;
  box-shadow: 0 0 6px rgba(167,124,68,0.08);
  font-weight: 600;
  transition: background .16s, color .16s;
}
.cookie-banner .accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-accent-2);
  color: #fff;
}
.cookie-banner .reject {
  background: #EFEEE7;
  color: var(--color-accent-2);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #E3DDC6;
  color: var(--color-primary);
}
.cookie-banner .settings {
  background: #EDE9DE;
  color: var(--color-accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #E4D6BE;
  color: var(--color-primary-dark);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 8px 10px 10px;
  }
  .cookie-banner p { font-size: 0.96rem; }
  .cookie-banner .cookie-btns{gap:10px;}
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(39,65,58,0.26);
  z-index: 1450;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s cubic-bezier(.52,.14,.76,.94);
}
.cookie-modal-overlay.open { opacity: 1; pointer-events: auto; }
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 42px 35px 30px 35px;
  min-width: 330px; max-width: 90vw;
  box-shadow: 0 6px 44px 10px rgba(39,97,58,.24);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
  color: #222;
  animation: modal-in .46s cubic-bezier(.4,.14,.66,.86);
}
@keyframes modal-in {
  0% { transform: translateY(40px) scale(0.91); opacity:0; }
  70% { opacity:.8; }
  100% { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-family: var(--font-display);
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  background: #ECE9DF;
  border: 2px solid #DDD5C4;
  width: 48px; height: 26px;
  border-radius: 22px;
  position: relative;
  cursor: pointer;
  transition: background .16s, border .17s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-modal .cookie-toggle .dot {
  content: '';
  display: block;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 18px;
  position: absolute;
  left: 3px; top: 1.5px;
  transition: left .18s;
  box-shadow: 0 0 8px 1px rgba(139,112,56,0.10);
}
.cookie-modal .cookie-toggle[aria-checked="true"] .dot{
  left: 25px;
}
.cookie-modal .cookie-cat label {
  font-weight: 500;
  color: var(--color-accent-2);
  font-size: 1.06rem;
}
.cookie-modal .cookie-cat .desc {
  font-size: 0.97rem;
  color: #888;
  margin-left: 8px;
  font-weight: 400;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 16px; right: 16px;
  border: none;
  background: none;
  font-size: 1.45rem;
  cursor: pointer;
  color: #C4A46B;
  transition: color .18s;
}
.cookie-modal .close-cookie-modal:hover {
  color: var(--color-primary);
}
.cookie-modal .save {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background .17s;
}
.cookie-modal .save:hover {
  background: var(--color-accent-2);
}
.cookie-modal .cancel {
  background: #F5F3EB;
  color: var(--color-primary);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal .cancel:hover {
  background: #EDDDC5;
}
@media (max-width: 500px) {
  .cookie-modal { min-width: unset; padding: 22px 12px 20px 14px; }
}

/* ========================================= */
/*          RESPONSIVE / MEDIA QUERIES       */
/* ========================================= */
@media (max-width: 1050px) {
  .container { padding: 0 12px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.11rem; }
  .section { padding: 18px 8px; margin-bottom: 34px; }
}
@media (max-width: 500px) {
  [class^="container"], .container {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* ========================================= */
/*         ORGANIC/NATURE-STYLE DECOR        */
/* ========================================= */
.card, .testimonial-card, .service, .faq-item, .cookie-modal {
  box-shadow: 0 4px 32px 0 rgba(61, 91, 43, 0.09), 0 0px 0px 0 #fff;
  border-radius: 40% 60% 53% 47% / 48% 52% 56% 44%; /* organic corner look */
}
.section, .faq-item {
  background: linear-gradient(101deg, #FFFDF7 0%, #F3EFDA 100%);
  border-radius: 25px 45px 40px 35px / 25px 25px 55px 45px;
}
@media (max-width: 600px) {
  .section, .faq-item {
    border-radius: 18px;
  }
}
/* Subtle paper/fabric feel */
.section, .card, .testimonial-card, .faq-item {
  background-blend-mode: multiply;
  background-size: 160% 110%;
  background-repeat: no-repeat;
  background-position: 0 0;
}

/* SVG ICONS inside .feature-item or .content-wrapper */
.content-wrapper img[alt$='Icon'], .feature-item img {
  height: 38px;
  width: 38px;
  margin-right: 10px;
  filter: drop-shadow(0 1px 4px #D6CBB0);
  vertical-align: middle;
}

/* ============= Miscellaneous ========== */
::-webkit-scrollbar {
  width: 10px;
  background: #EFE9D7;
}
::-webkit-scrollbar-thumb {
  background: #A57C44;
  border-radius: 8px;
}
::-webkit-input-placeholder { color: #aaa; opacity: 1; }
:-ms-input-placeholder      { color: #aaa; opacity: 1; }
::placeholder              { color: #aaa; opacity: 1; }

/* ============= Animations & UX ========== */
.card, .service, .testimonial-card, .faq-item, .cta-primary, .cta-secondary, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, border 0.14s;
}

/* ============= Utility Classes ========== */
.mt-24 { margin-top: 24px; }
.mt-12 { margin-top: 12px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.w-100 { width: 100%; }

/* Hide for accessibility improvements */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* =================================== */
/*         END OF NATURE ORGANIC       */
/* =================================== */
