/* ===================== 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;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F6F5F2;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #324028;
  line-height: 1.6;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  border-style: none;
}
a {
  color: #285083;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #227a3c;
  outline: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 700;
}

/* ===================== COLOR VARIABLES, FALLBACKS ===================== */
:root {
  --color-primary: #285083;
  --color-primary-alt: #227a3c;
  --color-secondary: #ddc38e;
  --color-accent: #D4E9D3;
  --color-nature-green: #3C9060;
  --color-earth: #F6F5F2;
  --color-dark-brown: #324028;
  --color-ochre: #FFDD57;
  --color-bg-card: #FEFAF5;
  --color-bg-section: #f4f1ea;
  --color-text-dark: #324028;
  --color-text-light: #F6F5F2;
  --color-error: #974846;
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  h1 { font-size: 2.5rem; }
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  h2 { font-size: 2rem; }
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
.subheadline {
  color: var(--color-nature-green);
  font-size: 1.15rem;
  margin-bottom: 32px;
  font-weight: 500;
}
p, ul, ol, li {
  font-size: 1rem;
  color: var(--color-dark-brown);
}
.section p, .text-section p {
  margin-bottom: 16px;
}

/* ================= LAYOUT CONTAINERS & SPACING =============== */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  background: var(--color-bg-section);
  border-radius: 32px 32px 24px 24px/ 38px 28px 18px 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 6px 32px -8px rgba(60, 144, 96, 0.05), 0 0.5px 2px rgba(44, 73, 54,0.03);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 700px) {
  .content-wrapper {
    gap: 32px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-card);
  border-radius: 30px 22px 18px 22px / 24px 30px 16px 22px;
  padding: 28px 22px 24px 22px;
  box-shadow: 0 6px 32px -8px rgba(67, 100, 54, 0.06);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 330px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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; align-items: flex-start; }
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 6px solid var(--color-nature-green);
  border-radius: 24px;
  box-shadow: 0 4px 16px -6px rgba(44,70,54,0.09);
  flex: 1 1 320px;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-bottom: 20px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  transform: scale(1.03);
  box-shadow: 0 8px 28px -2px rgba(34, 122, 60, 0.11);
}
.testimonial-card p {
  color: #272e17;
  font-size: 1.06rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--color-primary);
  opacity: 0.9;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ======= FEATURE GRIDS & LISTS ======= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  justify-content: flex-start;
}
.feature-grid li {
  background: var(--color-bg-card);
  border-radius: 26px 18px 18px 18px / 16px 18px 18px 16px;
  box-shadow: 0 3px 12px -5px rgba(60, 144, 96, 0.07);
  padding: 22px 14px 16px 14px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 180px;
  max-width: 260px;
}
.feature-grid li img { width: 36px; height: 36px; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
  color: var(--color-dark-brown);
  font-size: 1rem;
  padding-left: 0;
}
.feature-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.6;
}
.feature-list li:before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--color-nature-green);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 3px;
  box-shadow: 0 1px 2px rgba(60,144,96,0.13);
}

/* ======= SERVICES (service-list) ========= */
.service-list, .service-details, .service-list ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.service-list li {
  background: var(--color-bg-card);
  border-radius: 20px 11px 22px 20px / 20px 13px 22px 20px;
  box-shadow: 0 2px 10px -6px rgba(44, 70, 54, 0.08);
  padding: 18px 14px 16px 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}
.price, .pricing, .pricing-overview {
  color: var(--color-nature-green);
  font-weight: bold;
  font-size: 1.09rem;
  margin-top: 4px;
}

/* ================= HEADER/NAV BAR ================== */
header {
  background: #fff;
  box-shadow: 0 2px 10px -8px rgba(44, 73, 54,0.13);
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 18px;
  position: sticky;
  top: 0; left: 0;
  z-index: 200;
}
header > a {
  display: flex;
  align-items: center;
  margin-right: 22px;
  height: 48px;
  transition: transform 0.15s;
}
header > a:hover { transform: scale(1.04); }
header nav {
  display: flex;
  gap: 18px;
  flex: 1 1 0%;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 600;
  padding: 8px 10px;
  font-size: 1.09rem;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-accent);
  color: var(--color-nature-green);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  margin-left: auto;
  background: var(--color-bg-section);
  border-radius: 50%;
  height: 48px; width: 48px;
  align-items: center; justify-content: center; flex-shrink: 0;
  z-index: 210;
  transition: background 0.13s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-accent);
}
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ================================= MOBILE MENU ============================= */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(240,244,234,0.97);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.39, 0.58, 0.57, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--color-ochre);
  color: #324028;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 18px 22px 0 0;
  height: 48px; width: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 8px -2px rgba(255,221,87,0.08);
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--color-primary); color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px 0 32px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  padding: 12px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.11s, color 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-nature-green);
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* =========== BUTTONS =========== */
.btn-primary {
  background: var(--color-nature-green);
  color: var(--color-text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 34px 12px 30px;
  border-radius: 32px 18px 26px 36px / 28px 24px 24px 30px;
  border: none;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 7px -2px rgba(44,73,54,0.11);
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.16s;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 14px -2px rgba(40,80,131,0.13);
}

/* =================== FORMS & FIELDS (if present in future) =================== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.7px solid #B7BAA5;
  border-radius: 13px 7px 13px 7px;
  margin-bottom: 20px;
  background: #F6F5F2;
  color: var(--color-dark-brown);
  outline: none;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.7px solid var(--color-nature-green);
}

/* ================== FOOTER ==================== */
footer {
  background: #274623;
  color: #fff;
  margin-top: 50px;
  padding: 46px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
footer nav a {
  color: #E6F3ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 0 6px;
  transition: color 0.18s;
  border-radius: 4px;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-ochre);
  background: rgba(44, 200, 100, 0.03);
}
footer .brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.20rem;
  letter-spacing: 0.04em;
  color: #E5E3DB;
}
footer .footer-contact {
  color: #e1eddf;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 650px) {
  footer .container { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 10px; }
  footer .footer-contact { text-align: right; }
}

/* ================= ADDITIONAL ORGANIC/NATURE DECOR ================= */
.section {
  background-image: url('../assets/bg-organic-texture.png'), linear-gradient(98deg, #f4f1ea 88%, #e1eddf 95%, #fffae5 100%);
  background-repeat: repeat, no-repeat;
  background-size: 600px, cover;
}
.card, .feature-grid li, .service-list li {
  border: 1.4px solid #e9e5cf;
  background-clip: padding-box;
}

/* ============= SPECIAL SPACING AND MICRO-ANIMATIONS ============= */
.btn-primary, .mobile-menu-toggle, .mobile-menu-close, .card, .feature-grid li, .testimonial-card {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.17s, 0.14s, 0.22s, 0.13s;
  transition-timing-function: ease-in;
}
.card:focus-within, .card:hover {
  box-shadow: 0 10px 20px -3px rgba(34, 122, 60, 0.15);
  border-color: var(--color-nature-green);
}

/* ==================== RESPONSIVE LAYOUT =================== */
@media (max-width: 800px) {
  .feature-grid,
  .testimonials,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .service-list, .feature-list { gap: 16px; }
  .section { padding: 28px 8px; }
  .feature-grid li, .card { min-width: 0; max-width: 100%; }
}
@media (max-width: 599px) {
  .container { padding-left: 7px; padding-right: 7px; }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.09rem; }
  .btn-primary { font-size: 1rem; padding: 11px 18px 11px 18px; }
}

/* ==================== COOKIE CONSENT BANNER ======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3.5px solid var(--color-nature-green);
  box-shadow: 0 -4px 16px -2px rgba(34, 122, 60, 0.13);
  z-index: 11000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 12px 19px 12px;
  animation: cookieBannerIn 0.25s ease-in;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  color: #1F2914;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 19px 13px 18px 15px / 12px 15px 15px 12px;
  border: none;
  margin: 0 0 0 0;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}
.cookie-btn.accept {
  color: #fff;
  background: var(--color-nature-green);
  box-shadow: 0 1px 4px -1px rgba(60,144,96,0.12);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-primary);
}
.cookie-btn.reject {
  background: #efe8e4;
  color: var(--color-error);
  border: 1.2px solid var(--color-error);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f7d2d2;
}
.cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #dcffe6;
}

/* =============== COOKIE PREFERENCES MODAL =============== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(86, 102, 67, 0.16);
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.24s ease-in;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  border-radius: 22px 24px 18px 24px/24px 22px 18px 24px;
  box-shadow: 0 10px 40px -8px rgba(60, 144, 96, 0.10);
  max-width: 97vw;
  width: 420px;
  padding: 30px 30px 22px 30px;
  color: var(--color-text-dark);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalContentIn 0.31s cubic-bezier(0.24,0.9,0.82,1.37);
}
@keyframes cookieModalContentIn {
  0% { transform: translateY(36px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cookie-modal__header h2 {
  color: var(--color-primary);
  font-size: 1.22rem;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal__close {
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.2rem;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus { background: #ffd; color: var(--color-primary); }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 14px 0 0 0;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  width: 17px; height: 17px;
  border-radius: 7px;
  accent-color: var(--color-nature-green);
}
.cookie-category input[type="checkbox"]:disabled {
  filter: grayscale(1);
  cursor: not-allowed;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-dark-brown);
}
.cookie-category span {
  color: #929e92;
  font-size: 0.98rem;
  margin-left: 5px;
}
.cookie-modal__actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 16px;
}

/* ==================== MISC/LAST-TOUCHES ===================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section h2 {
  margin-top: 14px;
  font-size: 1.1rem;
  color: var(--color-nature-green);
}
.text-section ul {
  padding-left: 20px;
}
.text-section li {
  list-style: disc inside;
  margin-left: 5px;
  margin-bottom: 7px;
}

/* Hide scroll when mobile menu/modal open */
body.menu-open, body.cookie-modal-open {
  overflow: hidden !important;
}

/* ===================== PRINT OVERRIDES ====================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .section, .container { box-shadow: none !important; background: #fff !important; }
}
