/* =============================
   Orifialese Warm Friendly CSS
   Author: Senior CSS & UI Designer
   =============================*/

/* CSS Reset and 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #F5F4EA;
  color: #3A3728;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #27613D;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 3px solid #6A8A49;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

/* ================================
   Typography -- Warm, Friendly
   ================================ */
h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  color: #27613D;
  margin-bottom: 16px;
  font-weight: bold;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
h4 {
  font-size: 1.05rem;
}
.subheadline {
  font-size: 1.15rem;
  color: #6A8A49;
  font-weight: 500;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
}
.text-section {
  font-size: 1.07rem;
  color: #3a3728;
  margin-bottom: 20px;
}
.value-list strong, .benefits-grid strong {
  font-family: 'Merriweather', Georgia, serif;
  color: #27613D;
  font-weight: 700;
}

/* ===============================
   Containers and Sections
   =============================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  background: white;
  border-radius: 22px;
  padding: 40px 24px;
  margin-bottom: 40px;
  box-shadow: 0 2px 18px 0 rgba(106,138,73,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 600px) {
  .content-wrapper {
    padding: 24px 10px;
    margin-bottom: 24px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===============================
   Flex Layout Utility Classes
   =============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(106,138,73,.08);
  margin-bottom: 20px;
  padding: 28px 22px;
  flex: 1 1 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(39,97,61,0.14);
}
.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;
    gap: 20px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 22px;
  padding: 20px 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px rgba(39,97,61,0.09);
  min-width: 240px;
  max-width: 560px;
  border: 1.5px solid #F5F4EA;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #453e2e;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #27613D;
  font-weight: bold;
  font-size: 1rem;
}
.testimonial-card span {
  color: #FFB300;
  font-size: 1.2rem;
  margin-left: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------------------------
   Feature/Benefits Grids
--------------------------------- */
.features-grid,
.benefits-grid,
.services-list,
.value-list,
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.features-grid > li,
.features-grid > div,
.benefits-grid > li,
.services-list > li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(106,138,73,0.05);
  padding: 26px 18px 20px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.19s;
  margin-bottom: 0; /* gap handles spacing */
  border: 1.5px solid #F7E9CB;
}
.features-grid > li:hover, .features-grid > div:hover, .benefits-grid > li:hover {
  box-shadow: 0 6px 24px 0 rgba(39,97,61,0.13);
}
.features-grid img,
.benefits-grid img,
.services-list img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 7px;
  border-radius: 50%;
  background: #F9F7EE;
  box-shadow: 0 1px 3px rgba(106,138,73,0.11);
}
.benefits-grid > li strong {
  margin-bottom: 5px;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #FCFBF3;
  border-radius: 13px;
  padding: 14px 13px 13px 12px;
  margin-bottom: 0;
  font-size: 1.0rem;
}
.value-list img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-top: 2px;
}
.team-list li {
  padding: 10px 0;
  border-bottom: 1px solid #EBE6D7;
  font-size: 1.03rem;
}
.team-list li:last-child {
  border-bottom: none;
}

/* ================================
   Buttons
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 12px 34px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  line-height: 1.1;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, color .18s, box-shadow .22s;
  outline: none;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 10px 0 rgba(106,138,73,0.08);
}
.btn.primary {
  background: #27613D;
  color: #fff;
}
.btn.primary:hover, .btn.primary:focus-visible {
  background: #357e4f;
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(39,97,61,0.12);
}
.btn.secondary {
  background: #F5F4EA;
  border: 2px solid #27613D;
  color: #27613D;
}
.btn.secondary:hover, .btn.secondary:focus-visible {
  background: #f1e3cc;
  color: #225437;
}
.btn.outline {
  background: #fff;
  border: 2px solid #6A8A49;
  color: #6A8A49;
}
.btn.outline:hover, .btn.outline:focus-visible {
  background: #f0fae9;
  border-color: #357e4f;
  color: #225437;
}

/* ============================
    Header & Navigation
============================= */
header {
  width: 100%;
  background: #F5F4EA;
  border-bottom: 1.5px solid #ecdcbf;
  position: sticky;
  top: 0;
  z-index: 15;
  box-shadow: 0 1px 5px rgba(106,138,73,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 18px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 24px;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
header nav a {
  color: #27613D;
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: 8px;
  padding: 8px 12px;
  transition: background 0.18s;
}
header nav a:hover, header nav a.active {
  background: #EEF4D6;
  text-decoration: none;
}
header .btn.primary {
  margin-left: 26px;
  padding: 9px 28px;
  font-size: 1rem;
}

/* =================================
   Mobile Navigation
================================= */
.mobile-menu-toggle {
  display: none;
  background: #F5F4EA;
  border: none;
  border-radius: 10px;
  font-size: 2.2rem;
  color: #27613D;
  position: relative;
  z-index: 20;
  padding: 6px 16px;
  transition: background 0.13s;
  cursor: pointer;
  margin-left: 10px;
}
.mobile-menu-toggle:focus-visible {
  outline: 2px solid #6A8A49;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 222;
  background: rgba(245, 244, 234, 0.95);
  box-shadow: 0 12px 38px rgba(106,138,73,0.10);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 32px;
  transform: translateX(100vw);
  transition: transform .34s cubic-bezier(0.9,0.1,0.1,1.0);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: #27613D;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(106,138,73,0.10);
  z-index: 6;
  transition: background 0.13s;
}
.mobile-menu-close:hover {
  background: #F5F4EA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 64px 32px 32px 32px;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.14rem;
  font-weight: 600;
  color: #27613D;
  padding: 14px 10px 14px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.16s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #EEF4D6;
}
@media (max-width: 980px) {
  header nav, header .btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* =========================
    Hero Section
========================== */
.hero {
  background: linear-gradient(111deg, #FCFBF3 70%, #EEF4D6 100%);
  padding: 70px 0 30px 0;
  margin-bottom: 50px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 6px 20px rgba(106,138,73,0.09);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero .content-wrapper {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
  align-items: center;
  text-align: center;
  gap: 16px;
}
@media (max-width: 700px) {
  .hero {
    padding: 44px 0 16px 0;
    margin-bottom: 28px;
    border-radius: 0 0 12px 12px;
  }
}

/* =============================
   Utilities & Miscellaneous
   ============================= */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-16 { gap: 16px; }

/* ================================
    Contact Info Ul
================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
  margin-bottom: 0;
  color: #3A3728;
}
.contact-info img {
  width: 28px;
  height: 28px;
}

/* ============================
    Footer
============================= */
footer {
  background: #27613D;
  padding: 32px 0 12px 0;
  color: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: 38px;
}
footer .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-size: 0.99rem;
  opacity: 0.82;
  transition: opacity 0.14s;
  font-weight: 400;
}
footer nav a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.99rem;
  font-weight: 500;
}
.footer-brand img {
  height: 28px;
  width: auto;
  border-radius: 50%;
  filter: brightness(105%);
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 0 8px;
  }
}

/* ===============
   Responsive
================ */
@media (max-width: 980px) {
  .container {
    padding: 0 8px;
  }
  .content-grid, .features-grid, .benefits-grid, .card-container, .services-list, .value-list, .team-list {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > li,
  .features-grid > div,
  .benefits-grid > li, .services-list > li {
    flex: 1 1 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1.02rem; }
  .section {
    margin-bottom: 32px;
    padding: 28px 6px;
  }
  .card {
    padding: 18px 7px;
    font-size: 1rem;
  }
}

/* ==========================
    Lists (services, values)
=========================== */
ul, ol {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}
ul li::before {
  display: none !important;
}
ul li, ol li {
  margin-bottom: 0;
}

/* ==========================
    Misc A11y & Interactions
=========================== */
*:focus-visible {
  outline: 2px solid #FFA947;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #FFF7E6;
}
::selection {
  background: #FCF2D8;
}

/* =============================
   Cookie Consent Banner
============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffdec;
  border-top: 1.5px solid #ecdcbf;
  box-shadow: 0 -3px 24px rgba(106,138,73,0.12);
  z-index: 400;
  padding: 20px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-size: 1.05rem;
  transition: transform .25s cubic-bezier(.7,0,.3,1);
  transform: translateY(0);
  border-radius: 14px 14px 0 0;
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-consent-text {
  color: #4d4a35;
  max-width: 550px;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-right: 8px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  padding: 11px 25px;
  border-radius: 22px;
  border: none;
  background: #6A8A49;
  color: #fff;
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(106,138,73,0.09);
}
.cookie-btn.accept {
  background: #27613D;
}
.cookie-btn.accept:hover {
  background: #357e4f;
}
.cookie-btn.reject {
  background: #F7E2CF;
  color: #27613D;
  border: 1.3px solid #FFCFA4;
}
.cookie-btn.reject:hover {
  background: #faedd4;
}
.cookie-btn.settings {
  background: #fff;
  color: #6A8A49;
  border: 1.5px solid #6A8A49;
}
.cookie-btn.settings:hover {
  background: #f4faec;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 13px 8px;
    font-size: 0.99rem;
  }
  .cookie-banner-buttons {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
  }
}

/* =============================
   Cookie Consent Modal
============================== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(39,97,61,0.15);
  z-index: 401;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 40px rgba(39,97,61,0.21);
  padding: 32px 24px 24px 24px;
  width: 92vw;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalShow .30s cubic-bezier(0.58,0.07,0.17,1.1);
}
@keyframes cookieModalShow {
  from { transform: translateY(80px) scale(0.93); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.24rem;
  font-weight: bold;
  color: #27613D;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #F5F4EA;
  font-size: 1rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-label {
  color: #3A3728;
}
.cookie-toggle {
  cursor: pointer;
  width: 40px;
  height: 24px;
  border-radius: 12px;
  background: #ece9d4;
  border: none;
  outline: none;
  position: relative;
  transition: background .17s;
  appearance: none;
}
.cookie-toggle:checked {
  background: #6A8A49;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1.8px solid #c0ba99;
  transition: transform .17s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
  border-color: #357e4f;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 2px;
}
.cookie-modal .btn {
  font-size: 1.01rem;
  padding: 11px 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 13px;
  background: #fbeed7;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
  color: #6A8A49;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-modal-close:hover {
  background: #FFE6B9;
}

/* =============================
   Animations & Transitions
   ============================= */
html {
  scroll-behavior: smooth;
}
body, .container, .content-wrapper, .card, .features-grid > li, .features-grid > div, .btn {
  transition: box-shadow 0.22s, background 0.22s, color 0.18s;
}

/* =============================
   Micro-interactions
   ============================= */
.card, .features-grid > li, .features-grid > div, .testimonial-card {
  will-change: box-shadow, transform;
}
.card:active, .features-grid > li:active, .features-grid > div:active, .btn:active {
  transform: translateY(2px) scale(0.99);
}

/* =============================
   Hide visually for JS
   ============================= */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  border: 0 !important;
}

/* =============================
   Special fixes for testimonials
   ============================= */
.testimonial-card {
  background: #FCFBF3;
  color: #3A3728;
  border: 1.5px solid #F5F4EA;
  box-shadow: 0 2px 12px 0 rgba(106,138,73,0.08);
}
/* Ensure contrast */
.testimonial-card strong, .testimonial-card p {
  color: #234f30;
}

/* =============================
   Form fields (Kontakt page, future)
   ============================= */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  background: #fff;
  border: 1.5px solid #DED7C2;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  color: #27613D;
  font-family: 'Open Sans', Arial, sans-serif;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  margin-bottom: 16px;
  outline: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #6A8A49;
  box-shadow: 0 2px 10px rgba(106,138,73,0.11);
}
label {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #27613D;
  font-size: 1rem;
  margin-bottom: 5px;
  display: block;
}

/* =============================
   Misc. Accessibility Helper
   ============================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =============================
   Print Friendly
   ============================= */
@media print {
  header, footer, .btn, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    background: #fff;
    color: #111;
  }
}