/* -----------------------------------------------------
   CSS RESET & SCANDINAVIAN CLEAN FOUNDATION
--------------------------------------------------------*/
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F4F4F2;
  color: #304226;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
ul, ol {
  list-style: none;
  margin-left: 0;
}
a {
  color: #40713C;
  text-decoration: none;
  transition: color .15s;
}
a:hover, a:focus {
  color: #2c4d28;
}

/* Font-face for Brand: fallback if not included elsewhere */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* -----------------------------------------------------
   CORE TYPOGRAPHY & SCANDINAVIAN HIERARCHY
--------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #213014;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
}
.subheadline {
  color: #40713C;
  font-size: 1.25rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.37;
}
p, ul li, ol li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #304226;
}
strong { font-weight: 700; color: #40713C; }
.text-section h2, .text-section h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}
.text-section ul {
  padding-left: 24px;
  margin-bottom: 18px;
  list-style-type: disc;
}
.text-section li { margin-bottom: 7px; }
.text-section p:last-child, .text-section ul:last-child { margin-bottom: 0; }

/* -----------------------------------------------------
   CONTAINER, SPACING & SECTIONS (SCANDINAVIAN LAYOUT)
--------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(64,113,60,0.07);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(160,184,160,0.10);
  padding: 26px 22px;
  min-width: 250px;
  flex: 1 1 260px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(64,113,60,0.18);
  transform: translateY(-4px) scale(1.01);
}
.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;
  align-items: center;
  gap: 20px;
  background: #F4F4F2;
  color: #213014;
  padding: 20px;
  border-radius: 13px;
  box-shadow: 0 1px 6px 0 rgba(64,113,60,0.06);
  margin-bottom: 20px;
  flex: 1 1 290px;
  min-width: 270px;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card p {
  flex: 1 1 auto;
  font-size: 1.15rem;
  margin-bottom: 0;
  color: #213014;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #40713C;
  flex-shrink: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(64,113,60,0.13);
  transform: translateY(-3px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Enforce min gap between all cards/sections */
section + section {
  margin-top: 12px;
}
.card + .card, .testimonial-card + .testimonial-card {
  margin-left: 0;
}

/* -----------------------------------------------------
   BUTTONS & INTERACTIVES
--------------------------------------------------------*/
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 9px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  cursor: pointer;
  border: none;
  transition: background .14s, color .14s, box-shadow .19s, transform .18s;
  box-shadow: 0 2px 8px 0 rgba(64,113,60,0.10);
  outline: none;
  margin-top: 8px;
  margin-bottom: 8px;
}
.btn-primary {
  background: #40713C;
  color: #fff;
  border: 2px solid #40713C;
}
.btn-primary:hover, .btn-primary:focus {
  background: #2c4d28;
  color: #fff;
  box-shadow: 0 5px 18px 0 rgba(37,77,35,0.18);
  transform: translateY(-1px) scale(1.03);
}
.btn-secondary {
  background: #fff;
  color: #40713C;
  border: 2px solid #A9CDA6;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #A9CDA6;
  color: #213014;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}

/* Simple list marker for feature lists */
ul:not(.footer-nav):not(.mobile-nav) li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 14px;
  border-radius: 100%;
  background: #A9CDA6;
  vertical-align: middle;
}
ul li strong {
  color: #304226;
}

/* -----------------------------------------------------
   NAVIGATION (Desktop & Mobile)
--------------------------------------------------------*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1.5px 8px rgba(160, 184, 160, 0.09);
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0;
}
.desktop-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  padding: 16px 0 12px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: transparent;
}
.desktop-nav img {
  height: 42px;
  margin-right: 20px;
}
.desktop-nav a {
  padding: 5px 7px;
  color: #304226;
  border-radius: 6px;
  font-weight: 500;
  transition: background .13s, color .13s;
}
.desktop-nav a:not(.btn-primary):hover,
.desktop-nav a:not(.btn-primary):focus {
  background: #F4F4F2;
  color: #40713C;
}
.desktop-nav .btn-primary {
  margin-left: 18px;
  margin-top: 0;
  margin-bottom: 0;
}

/* Hamburger mobile button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 26px;
  top: 20px;
  background: #40713C;
  color: #fff;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 102;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #2c4d28;
  color: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F4F4F2;
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.5s cubic-bezier(.5, .03, .34, 1.02);
  box-shadow: 0 2px 32px 0 rgba(160,184,160,0.21);
  padding-top: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 12px; right: 18px;
  background: #40713C;
  color: #fff;
  border: none;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 121;
  transition: background .13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #2c4d28;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 66px;
  padding: 44px 30px 0 30px;
}
.mobile-nav a {
  padding: 13px 6px 13px 2px;
  width: 100%;
  font-size: 1.17rem;
  color: #304226;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  background: none;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A9CDA6;
  color: #213014;
}
/* Hide desktop nav and show mobile burger on mobile */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* -----------------------------------------------------
   FOOTER
--------------------------------------------------------*/
footer {
  background: #fff;
  border-top: 2px solid #F4F4F2;
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 28px;
  font-size: 1rem;
  color: #304226;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #40713C;
  transition: color .12s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #2c4d28;
  text-decoration: underline;
}
.contact-footer {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}
.contact-footer img {
  min-width: 58px;
  max-height: 66px;
  margin-right: 22px;
}
.contact-footer address {
  font-size: 1rem;
  line-height: 1.62;
  font-style: normal;
  color: #304226;
}
.contact-footer a {
  color: #40713C;
  text-decoration: underline;
}
.contact-footer a:hover {
  color: #2c4d28;
}
.copyright {
  margin-top: 10px;
  color: #A0A4A0;
  font-size: 0.95em;
}

/* -----------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 2px solid #A9CDA6;
  color: #304226;
  padding: 18px 22px;
  box-shadow: 0 -2px 14px rgba(64,113,60,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1200;
  gap: 14px;
  transition: transform .4s, opacity .3s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 7px;
  padding: 10px 18px;
  margin: 0 2px;
  cursor: pointer;
  transition: background .13s, box-shadow .13s;
}
.cookie-banner .accept {
  background: #40713C;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #2c4d28;
}
.cookie-banner .reject {
  background: #A9CDA6;
  color: #213014;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #40713C;
  color: #fff;
}
.cookie-banner .settings-btn {
  background: #F4F4F2;
  color: #304226;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #E0EFE4;
  color: #304226;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  min-width: 90vw;
  max-width: 420px;
  min-height: 230px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(64,113,60,0.23);
  padding: 32px 22px 22px 22px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity .24s, transform .21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20%) scale(0.92);
}
.cookie-modal h3 {
  font-size: 1.33rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #213014;
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 13px 0 21px 0;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category-row .desc {
  font-size: 0.97rem;
  color: #304226;
}
.cookie-category-row .toggle {
  accent-color: #40713C;
  width: 18px; height: 18px;
  margin-right: 3px;
}
.cookie-category-row .disabled {
  opacity: 0.4;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal .cookie-close {
  background: #40713C;
  color: #fff;
  border: none;
  border-radius: 6px;
  width: 34px;
  height: 34px;
  font-size: 1.32rem;
  position: absolute;
  top: 11px;
  right: 14px;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover {
  background: #2c4d28;
}

/* -----------------------------------------------------
   RESPONSIVE LAYOUTS
--------------------------------------------------------*/
@media (max-width: 992px) {
  .container {
    max-width: 97vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  .section {
    padding: 32px 7px;
  }
  .contact-footer {
    gap: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    gap: 14px;
    padding-bottom: 4px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.78rem;
  }
  h2 {
    font-size: 1.27rem;
  }
  .section {
    padding: 20px 3px;
    margin-bottom: 38px;
  }
  .content-wrapper, .content-grid {
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    min-width: 0;
    width: 100%;
    padding: 18px 9px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .card {
    min-width: 0;
    padding: 18px 10px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 11px 1px 16px 1px;
    margin-bottom: 26px;
  }
  .btn-primary, .btn-secondary {
    padding: 12px 10px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: 98vw;
    padding: 16px 7px 11px 7px;
  }
}

/* -----------------------------------------------------
   UTILITY & ACCESSIBILITY
--------------------------------------------------------*/
[tabindex]:focus, button:focus, a:focus {
  outline: 2px solid #A9CDA6 !important;
  outline-offset: 2px;
  z-index: 2;
}
::selection {
  background: #A9CDA6;
  color: #fff;
}

/* -----------------------------------------------------
   SPECIAL CASES FOR SIMPLE PAGES
--------------------------------------------------------*/
.address {
  font-style: normal;
  color: #304226;
}
.text-section {
  margin-bottom: 9px;
}
h1 + .text-section, h2 + .text-section {
  margin-top: -14px;
}

/* -----------------------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
--------------------------------------------------------*/
.card, .testimonial-card, .btn-primary, .btn-secondary, .cookie-banner, .cookie-modal {
  transition: box-shadow .18s, background .16s, color .13s, transform .16s, opacity .2s;
}
.mobile-menu, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .13s, color .13s, transform .4s cubic-bezier(.5, .03, .34, 1.02), opacity .25s;
}

/* -----------------------------------------------------
   PRINT SUPPORT (optional)
--------------------------------------------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  .section, .container {
    box-shadow: none !important;
    background: #fff !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* -----------------------------------------------------
   END OF SCANDINAVIAN CLEAN CSS FOR VERDE URBAN BLISS
--------------------------------------------------------*/
