/* ====== CSS RESET & BASE ====== */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-color: #fcfaf7;
  color: #223346;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #476d50;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #446a44;
  text-decoration: underline;
}
ul, ol {
  margin-bottom: 20px;
  padding-left: 1.3em;
}
li { margin-bottom: 8px; }
strong { font-weight: 700; }
em, i { font-style: italic; }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #223346;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.subheadline {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  color: #476d50;
  margin-bottom: 20px;
}
.text-section, .info-block {
  margin-bottom: 24px;
}

/* ====== LAYOUT CLASSES ====== */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #f6f4ee;
  border-radius: 30px;
  box-shadow: 0 2px 16px 2px rgba(115,133,102,0.07);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 1px rgba(115,133,102,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 20px 24px;
  min-width: 240px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 19px 4px rgba(103,145,85,.09);
  margin-bottom: 24px;
  border: 1.5px solid #A3D9C9;
  min-width: 230px;
  flex: 1 1 292px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(176,196,170,0.09);
  flex: 1 1 260px;
  min-width: 230px;
  margin-bottom: 20px;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.16s, box-shadow .18s;
  border-left: 5px solid #7ad19c;
}
.features-grid > div:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 3px 26px 0 rgba(134,169,127,0.13);
}
.features-grid img {
  width: 46px;
  margin-bottom: 12px;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(142deg, #f6f9f6 55%, #e3f1db 100%);
  border-bottom-left-radius: 50px 52px;
  border-bottom-right-radius: 50px 40px;
  margin-bottom: 44px;
  padding: 54px 0 38px 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero-section h1 {
  color: #223346;
  letter-spacing: -1px;
  font-size: 2.2rem;
}
.hero-section .subheadline {
  color: #2e7355;
}

.cta-section {
  background: #bff3ca;
  border-radius: 39px;
  padding: 40px 16px;
  margin-bottom: 52px;
  box-shadow: 0 1px 23px 2px rgba(71, 109, 80, 0.09);
  text-align: left;
}
.cta-section h2 {
  color: #274b36;
  margin-bottom: 18px;
}
.cta-section .cta-btn {
  background: #223346;
  color: #F9EFD7;
}

/* TEAM BIOS */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.bio {
  background: #fff;
  border-radius: 17px;
  padding: 18px 14px 16px 14px;
  box-shadow: 0 2px 15px 1px rgba(140,166,128,0.08);
  border-left: 4.5px solid #82b985;
  flex: 1 1 225px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-section {
  margin-bottom: 20px;
  padding-bottom: 0;
}
.info-block {
  background: #edf3ee;
  border-radius: 12px;
  padding: 15px 17px;
  margin-bottom: 16px;
}

/* CALENDAR SECTION */
.calendar-section {
  background: #f9efef;
  border-radius: 32px;
  padding: 33px 18px 32px 18px;
  margin-bottom: 55px;
  box-shadow: 0 6px 13px 2px rgba(183, 180, 164, 0.07);
}

/* ====== BUTTONS ====== */
.cta-btn,
button, input[type="submit"] {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  background: #476D50;
  color: #F9EFD7;
  padding: 13px 32px;
  box-shadow: 0 2px 6px 1px rgba(71,109,80,.13);
  cursor: pointer;
  transition: background .19s, color .18s, box-shadow .18s, transform .13s;
  outline: none;
  letter-spacing: 0.02em;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus,
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #274b36;
  color: #F9EFD7;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 15px 0 rgba(71,109,80,.20);
}

/* Cookie Consent Buttons */
.cookie-btn {
  padding: 11px 26px;
  margin: 0 7px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: #A3D9C9;
  color: #223346;
  transition: background .19s, color .18s, box-shadow .18s;
  cursor: pointer;
}

.cookie-btn.accept {
  background: #82b985;
  color: #fff;
}

.cookie-btn.reject {
  background: #d3bab7;
  color: #223346;
}

.cookie-btn:hover, .cookie-btn:focus {
  background: #476D50;
  color: #eefff7;
}

/* ====== NAVIGATION ====== */
header {
  background: #f4f6f3;
  box-shadow: 0 4px 14px 0 rgba(92,122,94,0.07);
  border-bottom-left-radius: 24px 20px;
  border-bottom-right-radius: 20px 12px;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 10px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  display: block;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  color: #2c414d;
  font-size: 1.06rem;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #edf3ee;
  color: #476D50;
}
.main-nav .cta-btn {
  margin: 0 0 0 10px;
  background: #82b985;
  color: #fff !important;
  padding: 10px 24px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: 20px;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #476D50;
}

header img {
  height: 48px;
  width: auto;
}

/* ====== FOOTER ====== */
footer {
  background: #223346;
  color: #F9EFD7;
  padding: 38px 0 20px 0;
  border-top-left-radius: 24px 18px;
  border-top-right-radius: 14px 10px;
  margin-top: 52px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #A3D9C9;
  font-size: 1.03rem;
  font-weight: 600;
  transition: color .14s, text-decoration .09s;
  border-radius: 8px;
  padding: 4px 9px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  background: #476D50;
  text-decoration: underline;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}
.contact-info img {
  height: 28px;
  margin-bottom: 7px;
}
.brand-note {
  font-size: 0.95rem;
  margin-top: 20px;
  color: #b6c9ce;
}

/* ====== TESTIMONIALS SLIDER/Card ====== */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  justify-content: flex-start;
}
.testimonial-card p {
  color: #223346;
  font-size: 1.09rem;
  margin-bottom: 7px;
}
.testimonial-card strong {
  color: #274b36;
  font-family: 'Merriweather', serif;
  font-size: 1.04rem;
}

/* ====== MOBILE MENU ====== */
.mobile-menu-toggle {
  display: none;
  background: #82b985;
  color: #fff;
  border: none;
  border-radius: 15px;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 6px;
  transition: background .18s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #476D50;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #f6f4ee;
  z-index: 999;
  transform: translateX(120%);
  transition: transform .32s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 3px 22px 0 rgba(71,109,80,.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 21px;
  background: #A3D9C9;
  color: #223346;
  border: none;
  border-radius: 14px;
  font-size: 2rem;
  padding: 5px 16px 6px 16px;
  z-index: 1002;
  cursor: pointer;
  transition: background .13s, color .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #476D50;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-top: 86px;
  padding: 15px 32px;
}
.mobile-nav a {
  color: #274b36;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 12px 0 7px 0;
  border-radius: 8px;
  width: 100%;
  transition: background .15s, color .17s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #bff3ca;
  color: #223346;
}
.mobile-nav .cta-btn {
  background: #82b985;
  color: #fff;
  margin-top: 14px;
  width: auto;
  display: inline-block;
  border-radius: 18px;
}
.mobile-nav .cta-btn:hover, .mobile-nav .cta-btn:focus {
  background: #274b36;
}

/* ====== COOKIE CONSENT BANNER & MODAL ====== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #223346;
  color: #F9EFD7;
  box-shadow: 0 -4px 20px rgba(41,74,54,0.12);
  padding: 26px 18px 22px 18px;
  font-size: 1.07rem;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  transition: transform .25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 220px;
  margin-right: 16px;
  color: #F9EFD7;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,51,70,.59);
  z-index: 1202;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #f6f4ee;
  border-radius: 18px;
  padding: 34px 29px 24px 29px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 36px 2px rgba(101,133,112,.22);
  color: #223346;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.3rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  font-size: 1.05rem;
}
.cookie-toggle-switch {
  display: inline-flex;
  align-items: center;
}
.cookie-toggle-switch input[type="checkbox"] {
  display: none;
}
.cookie-toggle-switch label {
  display: inline-block;
  width: 37px;
  height: 20px;
  background: #A3D9C9;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0.5px 3px rgba(30,35,31,.12);
  margin-left: 2px;
  transition: background .18s;
}
.cookie-toggle-switch label:after {
  content: '';
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  position: absolute; top: 1.5px; left: 2px;
  box-shadow: 0 1.5px 1.1px rgba(90,110,84,0.17);
  transition: left .18s;
}
.cookie-toggle-switch input[type="checkbox"]:checked + label {
  background: #82b985;
}
.cookie-toggle-switch input[type="checkbox"]:checked + label:after {
  left: 18px;
}
.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 7px; right: 11px;
  background: none;
  border: none;
  font-size: 1.44rem;
  color: #274b36;
  padding: 2px 6px;
  border-radius: 9px;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #e9ece8;
  color: #476D50;
}

/* ====== FORMS (used in calculator/contact) ====== */
input, select, textarea {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #bdeade;
  padding: 9px 11px;
  background: #fff;
  color: #223346;
  margin-bottom: 16px;
  box-sizing: border-box;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid #A3D9C9;
  border-color: #476D50;
}
label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #274b36;
}

/* ====== MISC ELEMENTS ====== */
section {
  padding: 0 0;
  margin-bottom: 52px;
}

blockquote {
  border-left: 5px solid #A3D9C9;
  background: #eefcf7;
  padding: 14px 22px;
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #274b36;
}

hr {
  border: none;
  border-top: 1px solid #EDE9E0;
  margin: 22px 0;
}

/* ====== ACCESSIBILITY & Z-INDEX ====== */
:focus {
  outline: 2px dashed #A3D9C9;
  outline-offset: 2px;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .features-grid, .team-bios, .testimonials-slider {
    gap: 18px;
  }
  header .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-menu {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .features-grid, .content-grid, .team-bios, .testimonials-slider {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .card-container {
    gap: 16px;
  }
  .card {
    min-width: 94vw;
    padding: 15px 10px;
  }
  .contact-info {
    gap: 3px;
  }
  .hero-section {
    padding: 28px 0 22px 0;
    border-bottom-left-radius: 29px 17px;
    border-bottom-right-radius: 21px 13px;
    margin-bottom: 28px;
  }
  .hero-section h1 {
    font-size: 1.42rem;
    margin-bottom: 13px;
  }
  .cta-section {
    padding: 24px 8px;
    border-radius: 19px;
    margin-bottom: 36px;
  }
  .calendar-section {
    padding: 19px 10px 19px 10px;
    border-radius: 17px;
    margin-bottom: 44px;
  }
  .section {
    padding: 21px 10px;
    margin-bottom: 30px;
    border-radius: 17px;
  }
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  footer .container {
    gap: 13px;
    padding: 0 2px;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 1.27rem;
  }
  h2 {
    font-size: 1.14rem;
  }
  .bio, .card, .features-grid > div {
    min-width: 94vw;
    border-radius: 10px;
    padding-left: 7px;
    padding-right: 7px;
  }
  .testimonial-card {
    padding: 11px;
    border-radius: 12px;
    min-width: 96vw;
  }
  .cta-btn, button, input[type="submit"] {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .mobile-menu {
    padding: 0;
  }
  .mobile-nav {
    padding: 8px 14px;
  }
  .cookie-modal {
    padding: 17px 9px 14px 9px;
    border-radius: 9px;
    max-width: 97vw;
  }
}

/* ====== HIDE & SHOW NAVIGATION ====== */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ====== UTILITY & MICRO-INTERACTIONS ====== */
.card, .features-grid > div, .bio, .testimonial-card, .info-block, .calendar-section, .cta-section, .section {
  transition: box-shadow .17s, transform .14s, border-color .15s;
}
.card:hover, .bio:hover, .testimonial-card:hover {
  box-shadow: 0 5px 24px 4px rgba(71,109,80,.12);
  transform: scale(1.018);
}
input, select, textarea {
  transition: border-color .14s, box-shadow .14s;
}

/* ====== COLOR OVERRIDES FOR nature_organic ====== */
body, .hero-section, .section, .info-block, .calendar-section, .cta-section {
  background-color: #f6f4ee;
}
.card, .testimonial-card, .bio, .features-grid > div {
  background: #fff;
  border-radius: 19px;
}
.features-grid > div {
  border-left: 5px solid #7ad19c;
}
.cta-btn, .main-nav .cta-btn, .mobile-nav .cta-btn {
  background: #82b985;
  color: #fff;
}
.cta-btn:hover, .main-nav .cta-btn:hover, .mobile-nav .cta-btn:hover {
  background: #476D50;
}

/* ====== ORGANIC/NATURE VISUALS ====== */
.section, .calendar-section, .cta-section {
  box-shadow: 0 2px 16px 2px rgba(115,133,102,0.07);
}

/* - Organic accent highlight on h2 - */
h2 {
  position: relative;
  padding-left: 9px;
}
h2:before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 10%;
  height: 80%;
  width: 4px;
  background: #A3D9C9;
  border-radius: 4px;
}

@media (min-width:900px) {
.hero-section {
  position: relative;
}
.hero-section:after {
  display: block;
}
}

/* ==== PREVENT ABSOLUTE POSITIONING OVERLAPS (Allow only for deco) === */
.bio, .card, .testimonial-card, .card-content {
  position: relative;
  z-index: 1;
}

/* ====== END ====== */
