/* =========================================================== */
/* CSS RESET & BASELINE STYLES                                 */
/* =========================================================== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background-color: #F2EADA; /* light accent/natural */
  color: #223c2a;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
}
a {
  color: #336C57;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #183227;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito Sans', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #223c2a;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; }
h2 { font-size: 1.8rem; margin-bottom: 16px;  }
h3 { font-size: 1.3rem; margin-bottom: 12px;  }
h4 { font-size: 1.1rem; margin-bottom: 8px;  }
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #233b2b;
  line-height: 1.6;
}
blockquote {
  font-style: italic;
  color: #336C57;
  padding-left: 20px;
  border-left: 4px solid #A4C3A2;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: #2d543c;
}
subheadline, .subheadline {
  color: #336C57;
  font-size: 1.2rem;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

/* Brand colors */
:root {
  --primary: #336C57;
  --secondary: #A4C3A2;
  --accent: #F2EADA;
  --bg: #F2EADA;
  --text: #233b2b;
  --heading: #223c2a;
  --white: #fff;
  --nature-brown: #7C6354;
  --nature-sand: #E7DBC8;
  --nature-leaf: #6E9D78;
}

/* =========================================================== */
/* LAYOUT CONTAINERS & FLEXBOX                                 */
/* =========================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  background: var(--white);
  border-radius: 24px 40px 32px 16px;
  box-shadow: 0 8px 32px 8px rgba(45, 65, 46, 0.09);
  padding: 36px 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section {
  background: var(--nature-sand);
  border-radius: 24px 40px 28px 18px;
  box-shadow: 0 2px 8px 2px rgba(80,90,76,0.06);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Cards & Features */
.card-container,
.feature-grid,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.card, .testimonial-card, .key-facts-list, .activity-benefits, .stress-facts, .sleep-facts {
  margin-bottom: 20px;
  position: relative;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--nature-sand);
  border-radius: 22px 36px 24px 12px;
  margin-bottom: 20px;
  box-shadow: 0px 2px 12px 2px rgba(102, 129, 96, 0.06);
  padding: 20px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 24px 6px rgba(43, 102, 87, 0.11);
  transform: translateY(-6px) scale(1.03);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.services-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 24px;
}
.services-list li {
  flex: 1 1 240px;
  min-width: 230px;
  background: var(--accent);
  border-radius: 20px 34px 22px 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 1px rgba(102, 129, 96, 0.06);
  padding: 21px 17px 13px 17px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  transition: box-shadow 0.15s, transform 0.15s;
}
.services-list li:hover {
  box-shadow: 0px 6px 24px 6px rgba(51, 108, 87, 0.13);
  transform: translateY(-2px) scale(1.018);
}
.key-facts-list,
.activity-benefits,
.stress-facts,
.sleep-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.key-facts-list li, .activity-benefits li, .stress-facts li, .sleep-facts li {
  background: var(--nature-sand);
  border-radius: 16px 20px 13px 7px;
  padding: 9px 13px 9px 14px;
  color: var(--text);
  margin-right: 6px;
  box-shadow: 0 1px 4px 1px rgba(121, 160, 125, 0.08);
  font-weight: 500;
  font-size: 1rem;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: var(--nature-sand);
  border-radius: 18px 30px 20px 10px;
  box-shadow: 0 2px 12px 2px rgba(153, 182, 150, 0.12);
  transition: box-shadow 0.17s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0px 8px 28px 6px rgba(88, 108, 87, 0.13);
  transform: translateY(-4px) scale(1.012);
}
.testimonial-card blockquote {
  color: #223c2a;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-size: 0.98em;
  font-weight: 600;
  color: #336C57;
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 8px 12px 9px 4px;
  margin-left: 6px;
}

/* Map Placeholder */
.map-placeholder {
  border-radius: 18px 30px 16px 8px;
  background: var(--nature-sand);
  padding: 18px 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  box-shadow: 0 2px 12px 2px rgba(102, 129, 96, 0.06);
}
.map-placeholder img {
  width: 56px;
  height: 56px;
  border-radius: 12px 18px 9px 3px;
}
.map-placeholder small {
  color: #336C57;
  font-size: .99em;
  letter-spacing: 0.012em;
}

/* =========================================================== */
/* HEADER, NAVIGATION, BURGER MENU                             */
/* =========================================================== */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 12px 2px rgba(102,129,96,0.08);
  position: sticky;
  top: 0;
  z-index: 44;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.logo img {
  height: 50px;
  width: auto;
  margin-right: 15px;
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  color: var(--primary);
  padding: 6px 10px;
  font-size: 1em;
  border-radius: 8px 18px 10px 6px;
  transition: background 0.18s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #234534;
}
.cta.primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg,var(--primary), var(--nature-leaf));
  color: var(--white);
  font-size: 1.08em;
  font-weight: 700;
  padding: 11px 27px;
  margin-left: 16px;
  border-radius: 17px 30px 18px 8px;
  box-shadow: 0 2px 14px 2px rgba(51,108,87,0.08);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.11s;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg,#295841,#5d9869);
  color: var(--accent);
  box-shadow: 0 7px 22px 3px rgba(51,108,87,0.16);
  transform: translateY(-2px) scale(1.018);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  color: var(--primary);
  background: var(--nature-sand);
  border-radius: 8px 17px 13px 4px;
  font-size: 2.2rem;
  padding: 6px 13px;
  margin-left: 12px;
  z-index: 101;
  border: none;
  transition: background 0.18s, box-shadow 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  box-shadow: 0 2px 11px 2px rgba(44,84,62,0.14);
}

/* Mobile Navigation Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(51,108,87,0.95);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.67,.03,.13,1.06);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 20px 24px 6px 0;
  font-size: 2.3rem;
  color: var(--accent);
  background: var(--primary);
  border-radius: 14px 30px 12px 4px;
  padding: 6px 16px 4px 16px;
  border: none;
  box-shadow: 0 2px 18px 2px rgba(242,234,218,0.14);
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #295841;
}
.mobile-nav {
  width: 100%;
  flex-direction: column;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 0 36px;
}
.mobile-nav a {
  color: var(--accent);
  background: transparent;
  font-size: 1.3em;
  padding: 14px 0;
  border-radius: 8px 14px 13px 4px;
  width: 100%;
  display: block;
  transition: color 0.15s, background 0.15s;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--nature-sand);
  background: rgba(255,255,255,0.08);
}

@media (max-width: 1160px) {
  .container { max-width: 1000px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
}
@media (max-width: 950px) {
  .main-nav { gap: 12px; }
  .cta.primary { padding: 9px 21px; font-size: 0.98em; }
}

/* Hide .main-nav and CTA on mobile */
@media (max-width: 868px) {
  .main-nav,
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =========================================================== */
/* FOOTER                                                     */
/* =========================================================== */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--accent);
  padding: 55px 0 15px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  width: 56px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 20px 41px 18px 11px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1.05em;
}
.footer-nav a {
  color: var(--accent);
  transition: color 0.13s;
  border-radius: 8px 16px 10px 4px;
  padding: 3px 6px;
}
.footer-nav a:hover {
  color: #E7DBC8;
  background: rgba(255,255,255,0.09);
}
.footer-contact {
  color: var(--accent);
  font-size: 0.99em;
  margin-top: 5px;
}
.footer-contact img {
  width: 18px;
  margin-right: 6px;
  vertical-align: bottom;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a img {
  width: 34px;
  height: 34px;
  border-radius: 9px 13px 8px 2px;
  background: var(--accent);
  padding: 6px;
  transition: box-shadow 0.12s;
}
.footer-social a:hover img {
  box-shadow: 0px 2px 8px 1px rgba(255,255,255,0.16);
}
.footer-copyright {
  margin-top: 25px;
  width: 100%;
  color: #F8F5ED;
  font-size: 0.98em;
  text-align: left;
  letter-spacing: .01em;
}

@media (max-width: 880px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-social { margin-bottom: 12px; }
}

/* =========================================================== */
/* BUTTONS & MICRO-INTERACTIONS                               */
/* =========================================================== */
button,
.cta.primary {
  outline: none;
  transition: background 0.16s, color 0.15s, box-shadow 0.18s, transform 0.1s;
}
button:active, .cta.primary:active {
  transform: scale(0.97) translateY(1px);
}

/* Forms (only as fallback for future forms) */
input, textarea, select {
  border: 1.5px solid var(--secondary);
  border-radius: 8px 14px 9px 4px;
  padding: 12px 15px;
  background: var(--nature-sand);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
  box-shadow: 0 1px 6px 0.5px rgba(80,90,76,0.04);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
  background: var(--accent);
}

/* =========================================================== */
/* FLEXBOX CONTENT GRIDS & ALIGNMENT PATTERNS                  */
/* =========================================================== */
.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;
  margin-bottom: 26px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

/* Spacing/Gap for all cards & wrappers */
.card, .testimonial-card, .feature-item, .content-wrapper, .services-list li {
  margin-bottom: 20px;
}

/* Prevent overlap */
.section, .content-wrapper, .feature-grid, .services-list, .testimonial-card {
  box-sizing: border-box;
}

/* =========================================================== */
/* RESPONSIVE DESIGN: MOBILE-FIRST                            */
/* =========================================================== */
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.06rem; }
  .section {
    padding: 25px 6px;
    margin-bottom: 34px;
    gap: 14px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 22px 8px;
    margin-bottom: 16px;
    border-radius: 14px 28px 18px 8px;
  }
  .feature-grid,
  .card-container,
  .services-list {
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid li,
  .services-list li {
    min-width: 95%;
    width: 100%;
    padding: 13px 9px;
    border-radius: 13px 19px 10px 4px;
    margin-bottom: 15px;
  }
  .testimonial-card {
    padding: 13px 7px;
    border-radius: 10px 17px 9px 3px;
  }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .footer-logo img {
    width: 40px;
    margin-bottom: 11px;
  }
  .footer-social a img {
    width: 27px; height: 27px; padding: 3px;
  }
  .map-placeholder {
    flex-direction: column;
    gap: 10px;
    padding: 10px 7px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* Further tweak cards at small width */
@media (max-width: 512px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; }
}

/* =========================================================== */
/* COOKIE CONSENT BANNER & MODAL                              */
/* =========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 400;
  background: var(--nature-sand);
  color: var(--primary);
  box-shadow: 0 -2px 24px 4px rgba(51,108,87,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 14px 18px 14px;
  font-size: 1em;
  animation: slideUpCookie 0.66s cubic-bezier(.6,0,.26,1.1);
}
@keyframes slideUpCookie {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  font-size: 1em;
  color: #223c2a;
}
.cookie-banner .cookie-btn {
  margin: 0 8px;
  padding: 8px 22px;
  border-radius: 12px 22px 17px 7px;
  font-size: 0.98em;
  border: none;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  margin-bottom: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.11s;
  box-shadow: 0 1px 6px 1px rgba(51,108,87,0.06);
}
.cookie-banner .cookie-btn.accept {
  background: linear-gradient(90deg,var(--primary), var(--nature-leaf));
}
.cookie-banner .cookie-btn.reject {
  background: var(--nature-brown);
}
.cookie-banner .cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--nature-leaf);
  color: var(--accent);
  box-shadow: 0 4px 16px 2px rgba(51,108,87,0.16);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 17px 8px 14px 8px;
  }
  .cookie-banner p {
    text-align: center;
    font-size: 0.97em;
  }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,56,28,0.62);
  z-index: 410;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  border-radius: 18px 34px 23px 11px;
  box-shadow: 0 2px 32px 8px rgba(51,108,87,0.21);
  max-width: 410px;
  width: 93vw;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: slideInCookieModal 0.45s cubic-bezier(.63,.02,.35,1.22);
}
@keyframes slideInCookieModal {
  0% { transform: translateY(62%) scale(0.92); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 { font-size: 1.2em; margin-bottom: 7px; }
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 22px; right: 24px;
  background: var(--primary);
  color: var(--accent);
  font-size: 1.6em;
  border: none;
  border-radius: 9px 17px 8px 2px;
  padding: 4px 13px 2px 13px;
  box-shadow: 0 1px 7px 2px rgba(51,108,87,0.1);
  cursor: pointer;
  transition: background 0.11s;
}
.cookie-modal .modal-close-btn:hover { background: #295841; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nature-sand);
  border-radius: 10px 19px 9px 2px;
  padding: 10px 13px;
  margin-bottom: 6px;
  font-size: 1.01em;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  background: #A4C3A2;
  width: 38px;
  height: 22px;
  border-radius: 12px 22px 10px 6px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--primary);
}
.cookie-modal .cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 4px 1px rgba(33,56,28,0.10);
  transition: transform 0.18s;
}
.cookie-modal .cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal .cookie-actions .cookie-btn {
  padding: 7px 18px;
  border-radius: 11px 18px 9px 3px;
  border: none; font-weight: 700;
  background: var(--primary);
  color: var(--white);
  font-size: 0.98em;
  transition: background 0.14s, color 0.13s, box-shadow 0.11s;
}
.cookie-modal .cookie-actions .cookie-btn:hover,
.cookie-modal .cookie-actions .cookie-btn:focus {
  background: var(--nature-leaf);
  color: var(--accent);
}

@media (max-width: 480px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 18px 5px 14px 5px;
    border-radius: 11px 17px 9px 3px;
  }
  .cookie-modal .modal-close-btn {
    top: 8px; right: 11px;
    font-size: 1.2em;
    padding: 2px 10px 2px 10px;
    border-radius: 8px 12px 7px 2px;
  }
}

/* =========================================================== */
/* ORGANIC/NATURE TEXTURES & SHAPES                            */
/* =========================================================== */
/* Organic shape accents: Example for brand style */
.content-wrapper, .text-section, .feature-grid li, .services-list li, .testimonial-card, .map-placeholder, .cookie-modal {
  border-radius: 24px 40px 32px 16px / 24px 30px 24px 16px;
  /* Squiggly/irregular corners */
}
/* Subtle texture overlays for backgrounds */
body::before {
  content: '';
  display: block;
  position: fixed;
  top: -120px;
  left: -80px;
  right: -90px;
  bottom: -110px;
  pointer-events: none;
  opacity: 0.12;
  background: url("../assets/decor/leaves-texture.svg") repeat;
  z-index: 0;
}

/* Ensure all interactive elements indicate focus/hover */
a:focus, button:focus, .cta.primary:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 3px;
}

/* Micro-animations for organic feel */
.cta.primary, .cookie-btn, .services-list li, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.16s cubic-bezier(.6,0,.21,1.1), background 0.14s, transform 0.19s;
}

/* Misc/Small Tweaks and Fixes */
[hidden] { display: none !important; }

/* Ensure spacing between all main content cards on all screens */
.content-wrapper + .content-wrapper { margin-top: 24px; }
.section + .section { margin-top: 60px; }

/* Hide cookie modal by default */
.cookie-modal-overlay { display: none; }
.cookie-modal-overlay.open { display: flex; }

/* Accessibility: high contrast for testimonials */
.testimonial-card {
  background: var(--nature-sand);
  color: #222;
  box-shadow: 0px 2px 12px 4px rgba(0,0,0,0.08);
}
.testimonial-card blockquote { color: #223c2a; }

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px!important; }
.mt-2 { margin-top: 16px!important; }
.mt-3 { margin-top: 24px!important; }
.mb-1 { margin-bottom: 8px!important; }
.mb-2 { margin-bottom: 16px!important; }
.mb-3 { margin-bottom: 24px!important; }

/* END OF NATURE ORGANIC DESIGN CSS */
