/* -------------------------------------------------------
   CSS RESET & BASELINE NORMALIZATION - MOBILE FIRST
------------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #43372B;
  background-color: #F6F3F1;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #436940;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #21381a;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #43372B;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; }
h2 { font-size: 1.6rem; margin-bottom: 20px; }
h3 { font-size: 1.15rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; font-weight: 600; }
p {
  margin-bottom: 16px;
  color: #43372B;
  font-size: 1rem;
}
strong { font-weight: 700; }
.container {
  width: 100%;
  max-width: 1100px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* -------------------------------------------------------
   BRAND COLORS & ORGANIC STYLE
------------------------------------------------------- */
:root {
  --color-primary: #43372B;
  --color-secondary: #D7B499;
  --color-accent: #F6F3F1;
  --color-green: #436940;
  --color-green-dark: #21381a;
  --color-earth: #6C5B3C;
  --color-light: #FFFFFF;
  --color-text: #43372B;
  --color-card-bg: #FDFCF9;
}
body {
  background-color: var(--color-accent);
}

/* -------------------------------------------------------
   TYPOGRAPHY & HEADINGS
------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

::selection {
  background: #D9E6DA;
  color: #43372B;
}

/* -------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------- */
header {
  background-color: var(--color-light);
  border-bottom: 2px solid #ECD8C2;
  padding: 0;
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 20px;
}
header img {
  height: 48px;
  border-radius: 12px 28px 12px 32px;
  box-shadow: 0 2px 12px rgba(67,55,43,0.10);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
}
.main-nav a {
  color: var(--color-primary);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background-color: #F1F6F2;
  color: var(--color-green);
}
.cta-primary {
  background-color: var(--color-green);
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  padding: 11px 30px;
  border: none;
  border-radius: 30px 10px 24px 22px / 20px 30px 10px 29px;
  font-weight: 700;
  box-shadow: 0 2px 18px rgba(80,120,74,0.14);
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.cta-primary:hover, .cta-primary:focus {
  background-color: var(--color-green-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: flex;
  position: absolute;
  right: 30px;
  top: 22px;
  background: var(--color-earth);
  color: #fff;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 2rem;
  border-radius: 12px 40px 20px 19px;
  box-shadow: 0 2px 12px rgba(67,55,43,0.09);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  z-index: 99;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-green-dark);
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg,#F6F3F1 80%,#C2B397 100%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.42,0,.67,1.45);
  box-shadow: -6px 0 28px rgba(67,55,43,0.18);
  padding: 0 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  margin-top: 28px;
  margin-bottom: 10px;
  background: var(--color-earth);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(84,75,54,0.14);
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1003;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-green-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  padding: 12px 10px 12px 8px;
  border-radius: 16px 36px 9px 24px;
  background: #fff;
  min-width: 180px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(100,82,56,0.04);
  margin-left: 0;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e0e8dd;
  color: var(--color-green);
}
@media (min-width:1025px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width:1024px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
}

/* -------------------------------------------------------
   HERO SECTIONS
------------------------------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  background: #eceae4;
  border-radius: 0 0 64px 48px / 0 0 52px 88px;
  box-shadow: 0 6px 32px rgba(113,122,88,0.14);
  padding: 56px 0 36px 0;
  margin-bottom: 36px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-green);
  font-size: 2.2rem;
  font-family: 'Merriweather', serif;
  line-height: 1.14;
}
.hero p {
  color: var(--color-text);
  font-size: 1.22rem;
  max-width: 600px;
}

/* -------------------------------------------------------
   FLEXBOX LAYOUTS - SPACING GUIDELINES
------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 24px 44px 20px 12px;
  box-shadow: 0 3px 18px rgba(68,93,45,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 24px rgba(75,90,41,0.13);
  transform: translateY(-4px);
}
.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: center;
  gap: 20px;
  background: #F7FAF6;
  border: 2px solid #D7B499;
  border-radius: 24px 44px 20px 22px;
  box-shadow: 0 3px 16px rgba(123,95,44,0.08);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 580px;
  transition: border-color 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  border-color: #436940;
  transform: scale(1.03);
  box-shadow: 0 10px 32px rgba(127,110,70,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.feature {
  background: #f9f6f2;
  border-radius: 22px 16px 39px 24px;
  box-shadow: 0 2px 10px rgba(153,125,82,0.07);
  padding: 32px 20px 22px 34px;
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, background 0.15s;
}
.feature:hover {
  background: #F1F6F2;
  box-shadow: 0 6px 22px rgba(96,120,60,0.12);
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature h3 {
  color: var(--color-green);
  font-size: 1.18rem;
}

/* -------------------------------------------------------
   CONTENT STYLING, CARDS, TEXT SECTIONS
------------------------------------------------------- */
.text-section {
  background: none;
  padding: 0;
}
.text-section ul, .text-section ol {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 16px;
  color: #436940;
  font-size: 1rem;
}
.text-section h3 {
  margin-top: 12px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* -------------------------------------------------------
   CTA / SERVICES / ABOUT / LEGAL & CONFIRMATION
------------------------------------------------------- */
.services-teaser, .cta, .contact-teaser, .about-short, .about, .legal, .confirmation, .contact-section {
  background: #fffaf3;
  border-radius: 38px 24px 34px 57px;
  box-shadow: 0 4px 18px rgba(217,180,153,0.06);
}

.services-teaser h2, .about-short h2, .about h2, .confirmation h1, .cta h2, .legal h1, .legal h2, .legal h3, .legal h4 {
  color: #436940;
}
.confirmation .cta-primary {
  margin-top: 24px;
}

/* -------------------------------------------------------
   TESTIMONIALS
------------------------------------------------------- */
.testimonials h2 {
  color: #436940;
  font-size: 1.6rem;
  margin-bottom: 27px;
}
.testimonial-card p {
  color: var(--color-text);
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Merriweather', serif;
  margin-bottom: 8px;
  text-align: center;
}
.testimonial-card div {
  font-size: 1.3rem;
  color: #EFB359;
  letter-spacing: 2.5px;
  margin-bottom: 8px;
}
.testimonial-details {
  font-size: 0.98rem;
  color: #436940;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
footer {
  background: #F6F3F1;
  border-top: 2px solid #ECD8C2;
  padding-top: 32px;
  padding-bottom: 18px;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 34px;
  align-items: flex-start;
}
.footer-logo img {
  height: 48px;
  border-radius: 16px 24px 38px 12px;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #436940;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #EEF3ED;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.96rem;
  color: #43372B;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

/* -------------------------------------------------------
   CONTACT INFO LISTS
------------------------------------------------------- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
  list-style: none;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #436940;
  background: #f9f6f2;
  padding: 8px 12px 8px 6px;
  border-radius: 14px;
}

/* -------------------------------------------------------
   BUTTONS & INTERACTIVE ELEMENTS
------------------------------------------------------- */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: var(--color-green);
  color: #fff;
  border-radius: 24px 11px 30px 28px;
  padding: 10px 28px;
  transition: background 0.18s, box-shadow 0.18s, color 0.13s, transform 0.13s;
  box-shadow: 0 2px 10px rgba(88,115,82,0.09);
}
button:hover, button:focus {
  background: var(--color-green-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* -------------------------------------------------------
   SPACING
------------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container > * {
  flex: 1 1 320px;
}
.card + .card {
  margin-left: 0;
}
.content-wrapper > * + * {
  margin-top: 10px;
}
.feature + .feature {
  margin-left: 0;
}

/* -------------------------------------------------------
   MEDIA QUERIES FOR RESPONSIVE DESIGN
------------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .main-nav { display: none; }
  .footer-contact p { font-size: 0.98rem; }
  .hero {
    padding: 32px 0 22px 0;
    border-radius: 0 0 32px 24px / 0 0 26px 44px;
    margin-bottom: 24px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .section, section {
    margin-bottom: 36px;
    padding: 28px 7px;
  }
  .about-short, .about, .legal, .confirmation, .services-teaser, .contact-section, .cta {
    border-radius: 16px 12px 18px 27px;
    padding: 24px 5px;
  }
  .testimonial-card, .feature {
    max-width: 100%;
    padding: 18px 10px;
  }
  header .container {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 12px;
  }
  .footer-logo img {
    height: 38px;
  }
  .mobile-menu {
    padding: 0 7vw;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .cta-primary, button, input[type="button"], input[type="submit"] {
    font-size: 1rem;
    padding: 9px 14px;
  }
}

/* -------------------------------------------------------
   COOKIE CONSENT BANNER
------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1201;
  background: #ede5db;
  color: var(--color-primary);
  box-shadow: 0 -4px 24px rgba(67,55,43,0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 20px 18px 22px;
  gap: 18px;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.5,0,1,1);
  border-top-left-radius: 22px 33px;
  border-top-right-radius: 38px 17px;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  flex: 1 1 240px;
  font-size: 0.98rem;
  margin-right: 16px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner-button {
  background: var(--color-green);
  color: #fff;
  font-size: 1rem;
  border-radius: 20px 10px 26px 32px;
  padding: 10px 22px;
  border: none;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  transition: background 0.16s, color 0.13s;
  box-shadow: 0 1px 8px rgba(88,115,82,0.07);
}
.cookie-banner-button[aria-selected="true"],
.cookie-banner-button:focus-visible {
  background: var(--color-green-dark);
}
.cookie-settings {
  background: var(--color-secondary);
  color: var(--color-primary);
  margin-left: 10px;
  border-radius: 24px 16px 14px 33px;
  padding: 10px 24px;
}
.cookie-settings:hover {
  background: #e8d6bb;
  color: var(--color-green-dark);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 18px 8px 18px 10px;
    font-size: 0.97rem;
    gap: 10px;
  }
  .cookie-banner-message { margin-right: 0; }
  .cookie-banner-buttons { flex-wrap: wrap; gap: 10px; }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 97vw;
  max-width: 400px;
  padding: 34px 28px 28px 28px;
  background: #f7f3eb;
  color: var(--color-primary);
  border-radius: 26px 44px 38px 22px;
  box-shadow: 0 6px 48px rgba(47, 63, 32, 0.18);
  z-index: 1300;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.23s, transform 0.24s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.95);
}
.cookie-modal-header {
  font-size: 1.25rem;
  font-weight: 700;
  color: #436940;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal-close {
  background: var(--color-earth);
  color: #fff;
  border: none;
  border-radius: 13px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-left: 15px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-green-dark);
}
.cookie-modal-content {
  font-size: 1rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 0;
}
.cookie-category-label {
  font-weight: 600;
}
.cookie-category-toggle {
  min-width: 42px;
  background: none;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  margin-left: 8px;
  transition: box-shadow 0.16s;
}
.cookie-category-toggle[aria-checked="true"] {
  background: #c8e8c3;
  color: #1d5c21;
}
.cookie-category-toggle[aria-checked="false"] {
  background: #ddd5ca;
  color: #ad8a5a;
}
.cookie-category-toggle[disabled],
.cookie-category-toggle[aria-disabled="true"] {
  opacity: 0.67;
  pointer-events: none;
}

.cookie-modal-actions {
  margin-top: 23px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 10px 22px;
  border-radius: 22px 10px 18px 16px;
  background: var(--color-green);
  color: #fff;
  font-family: 'Merriweather',serif;
}
.cookie-modal-actions button.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--color-green-dark);
  color: #fff;
}
.cookie-modal-actions button.secondary:hover, .cookie-modal-actions button.secondary:focus {
  background: #e8d6bb;
  color: var(--color-primary);
}

@media (max-width:600px) {
  .cookie-modal {
    padding: 18px 6vw 18px 6vw;
    min-width: unset;
    max-width: 97vw;
    border-radius: 16px 19px 18px 27px;
  }
}

/* -------------------------------------------------------
   ORGANIC/DECORATIVE SHAPES (FOR EXTRAS)
------------------------------------------------------- */
.organic-deco {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  opacity: 0.07;
}
.organic-bubble {
  border-radius: 32% 68% 56% 44%/60% 40% 60% 40%;
  background: #e0e8dd;
  width: 80px; height: 80px;
  left: -38px;
  top: -22px;
}

/* -------------------------------------------------------
   ACCESSIBILITY
------------------------------------------------------- */
:focus-visible {
  outline: 3px solid #6da86c;
  outline-offset: 2px;
}

/* -------------------------------------------------------
   END OF CSS
------------------------------------------------------- */
