/* 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,main,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 {
  background: #F8F9F5;
  color: #224032;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: lining-nums;
}
img,svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: block;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #235A38;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4, h5, h6 { font-size: 1.12rem; font-weight: 600; }
p,ul,ol,li,blockquote { color: #224032; }
strong, b { color: #235A38; font-weight: 700; }
a {
  color: #235A38;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7C26A;
}
ul,ol {
  margin-left: 24px;
}
main {
  flex: 1 1 0%;
}

/* PAGE STRUCTURE & LAYOUT */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(35, 90, 56, 0.04);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 14px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 20px;
  }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(35, 90, 56, 0.06);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.logo img {
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.main-nav a {
  color: #235A38;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F7C26A;
  border-bottom: 2px solid #F7C26A;
}
.cta-button.primary {
  background: #235A38;
  color: #fff !important;
  border-radius: 9999px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(35,90,56,0.10);
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 24px;
  outline: none;
}
.cta-button {
  background: #CCDEB1;
  color: #235A38;
  border-radius: 9999px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(35,90,56,0.08);
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #CCDEB1;
  color: #235A38 !important;
  box-shadow: 0 4px 18px rgba(35,90,56,0.13);
  transform: translateY(-2px) scale(1.03);
}
.cta-button:hover, .cta-button:focus {
  background: #235A38;
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(35,90,56,0.07);
}

/* MOBILE NAVIGATION BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #235A38;
  margin-left: 16px;
  z-index: 1005;
  padding: 8px 12px;
  line-height: 1;
  border-radius: 10px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #CCDEB1;
  outline: 2px solid #F7C26A;
}
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 1004;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f7f9eeee;
  box-shadow: 0 0 42px rgba(35,90,56,0.12);
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(.7,.2,.4,1), opacity 0.22s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #235A38;
  margin: 18px 28px 8px 0;
  cursor: pointer;
  transition: color 0.18s, background 0.12s;
  border-radius: 6px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F7C26A;
  background: #CCDEB1;
  outline: 2px solid #235A38;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 0 36px 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #224032;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.16s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F7C26A;
  background: #E3EED5;
  border-bottom: 2px solid #F7C26A;
  padding-left: 6px;
}
@media (min-width: 990px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* SPACING & FLEXBOX PATTERNS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35, 90, 56, 0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F8F9F5;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,90,56,0.06);
  padding: 20px 32px 18px 32px;
  margin-bottom: 22px;
  color: #224032;
  font-size: 1.05rem;
  font-style: italic;
  min-width: 230px;
  max-width: 530px;
}
.testimonial-card p {
  color: #224032;
}
.testimonial-card footer {
  font-style: normal;
  font-size: 1rem;
  color: #235A38;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* INDEX & SERVICES FLEX LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.feature {
  background: #E3EED5;
  border-radius: 16px;
  padding: 30px 24px;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 1px 7px rgba(35, 90, 56, 0.05);
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature:hover {
  box-shadow: 0 7px 28px rgba(35,90,56,0.09);
  transform: translateY(-4px) scale(1.03);
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
  margin-left: 0;
  font-size: 1.1rem;
}
.services-list li {
  padding-left: 0;
  margin-bottom: 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(35,90,56,0.06);
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.15s;
}
.service-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}
.service-item strong {
  margin-top: 6px;
  color: #F7C26A;
  font-weight: 700;
}
.service-item:hover {
  box-shadow: 0 10px 26px rgba(35,90,56,0.10);
  cursor: pointer;
  transform: translateY(-3px) scale(1.01);
}

.pricing-table {
  background: #E3EED5;
  border-radius: 14px;
  padding: 22px 18px;
  margin-top: 24px;
}
.pricing-table ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 0;
  margin-bottom: 0;
}

/* PROJECTS FLEX */
.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.project {
  flex: 1 1 310px;
  min-width: 250px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(35,90,56,0.05);
  padding: 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.project:hover {
  box-shadow: 0 6px 22px rgba(35,90,56,0.11);
  transform: scale(1.01) translateY(-3px);
}

/* WORKSHOPS & TIPPS FLEX */
.workshop-list,
.tipps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.workshop, .tipp {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(35,90,56,0.04);
  padding: 22px 16px;
  flex: 1 1 230px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.12s;
}
.workshop:hover, .tipp:hover {
  box-shadow: 0 7px 22px rgba(35,90,56,0.10);
  transform: scale(1.02);
}

.benefits-list, .inspiration-highlights, .seasonal-guides {
  background: #CCDEB1;
  border-radius: 12px;
  padding: 16px 14px;
  margin-top: 12px;
  margin-bottom: 14px;
}

/* NEWSLETTER FORM */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: #E3EED5;
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 16px;
}
.newsletter-form label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #235A38;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 8px;
}
.newsletter-form input[type="email"] {
  border: 1px solid #CCDEB1;
  background: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1rem;
  min-width: 180px;
  transition: border 0.15s;
  color: #224032;
}
.newsletter-form input[type="email"]:focus {
  border: 1.5px solid #235A38;
  outline: none;
}

/* FOOTER */
footer {
  width: 100%;
  background: #235A38;
  color: #fff;
  padding: 44px 0 22px 0;
  min-height: 140px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  flex: 0 0 auto;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 34px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.21s;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F7C26A;
  text-decoration: underline;
}
.contact-info {
  font-size: 0.97rem;
  color: #CCDEB1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  max-width: 425px;
}
footer a {
  color: #fff;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 0;
  }
  .footer-nav {
    gap: 10px;
    font-size: 0.95rem;
  }
  .contact-info { font-size: 0.93rem; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #224032;
  color: #fff;
  font-size: 1rem;
  z-index: 12000;
  box-shadow: 0 -2px 14px rgba(35,90,56,0.19);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px 18px 12px;
  min-height: 92px;
  transition: transform 0.45s, opacity 0.38s;
  opacity: 1;
}
.cookie-banner.hidden {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 22px;
  transition: background 0.18s, color 0.16s, box-shadow 0.15s;
  margin-right: 0;
}
.cookie-banner .accept {
  background: #CCDEB1;
  color: #224032;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #F7C26A;
  color: #235A38;
}
.cookie-banner .reject {
  background: #F7C26A;
  color: #224032;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #CCDEB1;
  color: #235A38;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #CCDEB1;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #CCDEB1;
  color: #224032;
}

@media (max-width: 560px) {
  .cookie-banner {
    font-size: 0.98rem;
    padding: 14px 4px 10px 4px;
  }
  .cookie-banner .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
  }
  .cookie-banner button {
    width: 100%;
    min-width: 110px;
    font-size: 0.98rem;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-bg {
  position: fixed;
  z-index: 12050;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(34,64,50,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.18s;
}
.cookie-modal-bg.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #224032;
  border-radius: 18px;
  box-shadow: 0 6px 38px rgba(35,90,56,0.14);
  max-width: 420px;
  width: 90vw;
  padding: 36px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: modal-in 0.35s cubic-bezier(.65,.05,.95,.095);
}
.cookie-modal h2 {
  color: #235A38;
  margin-bottom: 12px;
  font-size: 1.52rem;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
}
.cookie-option label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: #224032;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #E3EED5;
  position: relative;
  margin-right: 5px;
  transition: background 0.19s;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  background: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition: left 0.18s, background 0.15s;
  box-shadow: 0 1px 3px rgba(35,90,56,0.09);
}
input:checked + .cookie-slider {
  left: 19px;
  background: #F7C26A;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
.cookie-modal .modal-close {
  background: transparent;
  color: #235A38;
  position: absolute;
  top: 14px;
  right: 19px;
  font-size: 1.55rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #CCDEB1;
  color: #F7C26A;
}
.cookie-modal .modal-accept {
  background: #235A38;
  color: #fff;
}
.cookie-modal .modal-accept:hover, .cookie-modal .modal-accept:focus {
  background: #CCDEB1;
  color: #235A38;
}
.cookie-modal .modal-cancel {
  background: #CCDEB1;
  color: #224032;
}
.cookie-modal .modal-cancel:hover, .cookie-modal .modal-cancel:focus {
  background: #F7C26A;
  color: #235A38;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.91) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* CONTACT DETAILS */
.contact-details {
  margin-bottom: 16px;
  background: #E3EED5;
  border-radius: 11px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.08rem;
}
.contact-details a {
  color: #235A38;
}

/* UTILITY CLASSES & HELPERS */
.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;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mr-12 { margin-right: 12px; }
.mb-20 { margin-bottom: 20px; }
.rounded-16 { border-radius: 16px; }
.shadow-light { box-shadow: 0 2px 12px rgba(35,90,56,0.07); }

/* RESPONSIVE FLEX ADJUSTMENTS */
@media (max-width: 768px) {
  .card-container, .feature-grid, .project-highlights, .service-list, .workshop-list, .tipps-list, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card, .feature, .service-item, .workshop, .tipp, .project {
    min-width: 0;
    width: 100%;
    flex-basis: auto;
  }
}

/* FOCUS & ACCESSIBILITY */
a, button, input, textarea, select {
  outline: none !important;
}
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid #F7C26A !important;
  outline-offset: 2px;
}
::selection {
  background: #CCDEB1;
  color: #235A38;
}

/* SCROLLBAR & COLORED SCROLL BAR */
::-webkit-scrollbar {
  width: 10px;
  background: #E3EED5;
}
::-webkit-scrollbar-thumb {
  background: #CCDEB1;
  border-radius: 8px;
}

/* ANIMATIONS & HOVER EFFECTS (subtle) */
.card, .feature, .service-item, .workshop, .project, .tipp {
  transition: box-shadow 0.17s, transform 0.15s, border-color 0.13s;
}
.card:hover, .service-item:hover, .workshop:hover, .tipp:hover, .feature:hover, .project:hover {
  box-shadow: 0 4px 18px rgba(35,90,56,0.13);
  transform: translateY(-2px) scale(1.015);
}

/* FINAL MEDIA QUERIES FOR MOBILE */
@media (max-width: 500px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.1rem; }
  .cta-button, .cta-button.primary { font-size: 0.99rem; padding: 11px 18px; }
}

/* NORDIC STYLE COLOUR ACCENTS */
.section, .card, .feature, .service-item, .workshop, .tipp, .project {
  border: 1px solid #E3EED5;
}

/* DARK TEXT FOR TESTIMONIALS - MANDATORY FOR READABILITY */
.testimonial-card, .testimonial-card p, .testimonial-card footer {
  color: #224032 !important;
}

/* Hide outline on mouse interaction */
body:not(.user-is-tabbing) button:focus, 
body:not(.user-is-tabbing) a:focus {
  outline: none !important;
}
