/* CSS RESET & BASE ---------------------------------------------------- */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #155941;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #155941;
  margin-top: 0;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.3rem; line-height: 1.14; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.1rem; }
p, ul, ol, address {
  margin: 0 0 1.3em 0;
  color: #22362d;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1.5em;
}
a {
  color: #155941;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #11704e;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 8px;
}
button, input[type="button"], input[type="submit"] {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
button:focus { outline: 2px solid #155941; }

/* CONTAINER ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER & NAV ---------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ebf3ef;
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 5px 2px;
  color: #155941;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #e6f4ed;
  color: #11704e;
}
.cta.primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  background: #155941;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 32px;
  font-size: 1rem;
  box-shadow: 0 1px 24px 0 rgba(21,89,65,0.05);
  margin-left: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  text-decoration: none;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #11704e;
  color: #FFD166;
  box-shadow: 0 4px 30px 0 rgba(21,89,65,0.10);
}

/* Mobile Menu ---------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #155941;
  border-radius: 6px;
  font-size: 2rem;
  padding: 5px 8px;
  margin-left: 12px;
  border: 1.5px solid #ebf3ef;
  transition: background 0.16s, box-shadow 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e6f4ed;
  box-shadow: 0 2px 16px 0 rgba(21,89,65,0.06);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 200;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.51,.06,.31,.99);
  box-shadow: -4px 0 40px rgba(21,89,65,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 30px 0 0;
  font-size: 2.2rem;
  color: #155941;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 7px;
  transition: background 0.18s;
  z-index: 201;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #e6f4ed;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: start;
  margin: 50px 32px 30px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: #155941;
  text-decoration: none;
  padding: 14px 2px;
  border-radius: 6px;
  width: 100%;
  display: block;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #e6f4ed;
  color: #11704e;
}

/* RESPONSIVE NAVIGATION ---------------------------------------------------- */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION ---------------------------------------------------- */
.hero {
  background: #fff;
  box-shadow: 0 2px 32px 0 rgba(21,89,65,0.03);
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 64px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
}
.hero .subheadline {
  font-size: 1.18rem;
  color: #2e4e3d;
  margin-bottom: 20px;
}

/* SECTION STYLES ---------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 28px 0 rgba(21,89,65,0.035);
}
section:last-child {
  margin-bottom: 0;
}
.features, .services {
  background: #f9fdfb;
  box-shadow: 0 1px 14px 0 rgba(21,89,65,0.04);
}

/* FLEX PATTERNS ---------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(21,89,65,0.05);
  padding: 28px 20px 22px 20px;
  min-width: 260px;
  flex: 1 1 320px;
  transition: box-shadow 0.21s;
}
.card:hover {
  box-shadow: 0 4px 22px 0 rgba(21,89,65,0.11);
}
.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;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(21,89,65,0.10);
  font-size: 1rem;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 420px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* UNIQUE LISTS & COMPONENTS ------------------------------------------ */
.feature-grid, .service-list, .article-list, .animal-portrait-list, .region-list, .habit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 24px 0 0 0;
  padding: 0;
}
.feature-grid li, .service-list li, .article-list li, .animal-portrait-list li, .region-list li, .habit-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(21,89,65,0.04);
  padding: 22px 20px 17px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #ebf3ef;
  transition: box-shadow 0.22s, border 0.17s;
}
.feature-grid li:hover, .service-list li:hover, .article-list li:hover, .animal-portrait-list li:hover, .region-list li:hover, .habit-list li:hover {
  box-shadow: 0 6px 22px 0 rgba(21,89,65,0.09);
  border: 1px solid #ffd1666b;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.tag {
  display: inline-block;
  background: #e6f4ed;
  color: #155941;
  border-radius: 6px;
  font-size: 0.98rem;
  font-family: 'Montserrat', 'Roboto';
  font-weight: 500;
  padding: 3px 12px 3px 10px;
  margin-right: 6px;
  margin-top: 8px;
}
.service-price {
  color: #155941;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  background: #FFD1661c;
  border-radius: 8px;
  font-size: 1rem;
  padding: 3px 9px;
  margin-left: 12px;
}
.usp {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.usp ul {
  list-style: disc inside;
  color: #1e4636;
  padding: 0 14px;
}
.workshop-highlights, .habitat-highlights, .area-tags, .topic-tags {
  background: #fffbea;
  border-radius: 10px;
  margin: 24px 0 0 0;
  padding: 15px 22px;
  font-size: 1rem;
  color: #725c27;
  box-shadow: 0 1px 7px 0 rgba(255,209,102,0.07);
}
.area-tags, .topic-tags {background: #e6f4ed;color: #155941;}

/* TESTIMONIALS ---------------------------------------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 0 0;
}
.testimonial-card p {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #1a2c24;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #155941;
  font-weight: 600;
  font-size: 1rem;
}

/* TEXT SECTION ---------------------------------------------------- */
.text-section {
  margin-bottom: 28px;
  max-width: 740px;
}
.text-section:last-child {margin-bottom: 0;}
.directions {
  margin-bottom: 26px;
  background: #e6f4ed;
  border-radius: 10px;
  padding: 14px 20px;
  color: #155941;
}
.map {
  margin: 20px 0 12px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.map img {height: 52px; width: 52px; border-radius: 12px;}

/* FOOTER ---------------------------------------------------- */
footer {
  background: #f5f9f7;
  border-top: 1px solid #ebf3ef;
  padding-top: 40px;
  padding-bottom: 32px;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 46px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-col img[alt*="logo"] {
  height: 38px;
  margin-bottom: 10px;
}
.footer-col address {
  font-size: 1rem;
  font-style: normal;
  color: #155941;
  margin-bottom: 13px;
}
.footer-col .social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.footer-col .social-links a img {
  width: 26px; height: 26px; border-radius: 6px;
  transition: box-shadow 0.2s;
}
.footer-col .social-links a:hover img {
  box-shadow: 0 2px 12px 0 rgba(255,209,102,0.16);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #155941;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  padding: 4px 1px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #e6f4ed;
  color: #11704e;
}

footer p {
  color: #8b9a91;
  margin: 8px 0 0 0;
  font-size: 0.97rem;
}

/* BUTTONS & CTA ---------------------------------------- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  background: #155941;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 1rem;
  margin-top: 15px;
  box-shadow: 0 1px 12px 0 rgba(21,89,65,0.06);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
}
.cta:hover,
.cta:focus {
  background: #11704e;
  color: #FFD166;
  box-shadow: 0 4px 24px 0 rgba(21,89,65,0.13);
}

/* FORMS ---------------------------------------------------- */
input, select, textarea {
  font: inherit;
  background: #fff;
  border: 1.5px solid #ebf3ef;
  border-radius: 8px;
  padding: 10px 13px;
  margin-bottom: 18px;
  color: #155941;
  width: 100%;
  transition: border 0.16s, box-shadow 0.19s;
}
input:focus, select:focus, textarea:focus {
  border: 1.5px solid #155941;
  outline: none;
  box-shadow: 0 2px 12px 0 rgba(21,89,65,0.11);
}
label {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  color: #155941;
  margin-bottom: 4px;
  display: block;
}

/* COOKIE BANNER -------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1.5px solid #ebf3ef;
  box-shadow: 0 -2px 30px 0 rgba(21,89,65,0.10);
  padding: 30px 24px 18px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  z-index: 888;
  transition: transform 0.38s cubic-bezier(.74,.06,.35,.99);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 auto;
  color: #22362d;
}
.cookie-banner__btn {
  background: #FFD166;
  color: #155941;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 10px 23px;
  margin-left: 10px;
  margin-bottom: 6px;
  transition: background 0.16s, color 0.12s, box-shadow 0.14s;
  box-shadow: 0 1px 10px 0 rgba(255,209,102,0.08);
}
.cookie-banner__btn:hover,
.cookie-banner__btn:focus {
  background: #ffeaaf;
  color: #11704e;
}
.cookie-banner__btn.settings {
  background: #e6f4ed;
  color: #155941;
  border: 1px solid #bfdacb;
}
/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(21,89,65,0.09);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px 0 rgba(21,89,65,0.18);
  padding: 38px 32px 28px 32px;
  min-width: 300px;
  max-width: 95vw;
  color: #155941;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: slideModal 0.41s cubic-bezier(.55,.02,.58,1);
}
@keyframes slideModal {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-modal-category {
  padding: 14px 0 7px 0;
  border-bottom: 1px solid #e6f4ed;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  justify-content: space-between;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-switch {
  position: relative;
  width: 38px; height: 22px;
  background: #e6f4ed;
  border-radius: 22px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-switch input {
  display: none;
}
.cookie-switch-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #FFD166;
  border-radius: 50%;
  transition: left 0.22s cubic-bezier(.42,.06,.34,.99);
}
.cookie-switch input:checked + .cookie-switch-slider {
  left: 18px;
  background: #155941;
}
.cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-btns .cookie-banner__btn {margin: 0;}

.cookie-modal .close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  border: none;
  color: #b7c4b9;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus { color: #155941; }

/* TYPOGRAPHY ---------------------------------------------------- */
@media (max-width: 992px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.09rem; }
  .main-nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding: 0 10px;
  }
}

/* RESPONSIVE LAYOUT FLEX ONLY ----------------------------------- */
@media (max-width: 1024px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .footer-col {
    min-width: 160px;
    max-width: 100%;
  }
  footer .content-wrapper {
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  section { padding: 28px 8px; }
  .content-wrapper {
    gap: 14px;
  }
  .hero { padding: 22px 0 22px 0; margin-bottom: 28px; }
  .feature-grid, .service-list, .article-list, .animal-portrait-list, .region-list, .habit-list {
    gap: 13px;
  }
  .footer-col {
    min-width: 140px;
    max-width: 98vw;
    margin-bottom: 8px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 1.14rem; }
  section { padding: 16px 2vw; margin-bottom: 26px; }
  .testimonial-card, .feature-grid li, .service-list li, .article-list li, .animal-portrait-list li, .region-list li, .habit-list li {
    padding: 12px 5vw 12px 5vw;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .text-image-section { flex-direction: column !important; align-items: flex-start !important; gap: 21px; }
}
@media (max-width: 768px) {
  .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* FLEXBOX CRITICAL: Do not use grid/columns anywhere */
/* No display: grid, no column-* properties, no break-inside */

/* ANIMATIONS & TRANSITIONS ------------------------------------- */
.card, .testimonial-card, .feature-grid li {
  transition: box-shadow 0.19s, border 0.14s;
}
.cta, .cta.primary, .cookie-banner__btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
}
.mobile-menu, .cookie-banner, .cookie-modal-overlay {
  will-change: transform, opacity;
}

/* ACCESSIBILITY/FOCUS STYLES ----------------------------------- */
a:focus, button:focus, .cta.primary:focus, .cta:focus, .cookie-banner__btn:focus {
  outline: 2px dashed #155941;
  outline-offset: 2px;
  background: #ebf3ef;
}

/* Hide elements visually but not from screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* UTILITIES ----------------------------------------- */
.mt-2 { margin-top: 12px; }
.mb-3 { margin-bottom: 18px; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* END ---------------------------------------------------- */