/* CSS 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 {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background-color: #FAF6F3;
  color: #32695C;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #25644B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E4572E;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
input, textarea {
  font-family: inherit;
}

/* BASE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #25644B;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

p, li, blockquote, cite, span {
  font-family: 'Roboto', Arial, sans-serif;
  color: #32695C;
  font-size: 1rem;
  line-height: 1.75;
}
strong {
  font-weight: 700;
  color: #25644B;
}

blockquote {
  padding-left: 18px;
  border-left: 3px solid #C6DBD2;
  color: #25644B;
  font-style: italic;
  margin-bottom: 12px;
  background: #F3F5F7;
  border-radius: 10px;
  font-size: 1rem;
}
cite {
  font-size: 0.95rem;
  color: #628073;
}

/* CONTAINERS */
.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff4ef;
  border-radius: 32px;
  box-shadow: 0 6px 24px 0 rgba(48,85,66,0.10);
}

/* FLEX UTILS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(44,55,77,0.08);
  background: #FFFFFF;
  padding: 32px 24px;
  flex: 1 1 280px; /* grow, shrink, basis */
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(44,55,77,0.14);
  transform: translateY(-2px) scale(1.017);
}
.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 18px 28px;
  min-width: 220px;
  background: #F8FAFF;
  box-shadow: 0 2px 12px 0 rgba(44,55,77,0.10);
  border-radius: 18px;
  border: 1.5px solid #e2ebe7;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  color: #205042;
}
.testimonial-rating {
  font-size: 1.3rem;
  color: #E4572E;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 2px;
  margin-bottom: 4px;
}
.testimonial-card blockquote {
  color: #205042;
  border-left-color: #FFE3C4;
  background: #FFF7F2;
}
.testimonial-card cite {
  color: #5C7C6B;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(44,55,77,0.15);
  transform: translateY(-2px) scale(1.01);
}

/* MAIN NAVIGATION */
header {
  background: linear-gradient(90deg, #F8FAFF 0%, #F7E0C7 100%);
  box-shadow: 0 2px 6px rgba(177,195,183,0.09);
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 24px 0 14px 0;
  flex-wrap: wrap;
}
.main-nav img {
  height: 44px;
  margin-right: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 7px 14px;
  border-radius: 14px;
  background: none;
  color: #205042;
  position: relative;
  transition: background 0.2s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background-color: #F7E0C7;
  color: #E4572E;
}
.main-nav .primary-cta {
  background: #25644B;
  color: #FFFFFF !important;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 28px;
  box-shadow: 0 2px 8px 0 rgba(39,100,75,0.11);
  margin-left: 16px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.main-nav .primary-cta:hover,
.main-nav .primary-cta:focus {
  background: #3D7D60;
  color: #FFE3C4 !important;
  box-shadow: 0 6px 20px 0 rgba(39,100,75,0.14);
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  font-size: 2.4rem;
  background: #FFE3C4;
  color: #205042;
  border-radius: 14px;
  padding: 2px 12px 0 12px;
  margin-left: auto;
  box-shadow: 0 1px 10px rgba(204,173,148,0.09);
  border: none;
  z-index: 202;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E4572E;
  color: #FFF;
}
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245, 241, 237, 0.97);
  box-shadow: 0 8px 36px rgba(44,55,77,0.10);
  z-index: 201;
  padding: 35px 32px 24px 24px;
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(.7,.41,.33,1.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  margin-bottom: 18px;
  background: #FFE3C4;
  color: #205042;
  border-radius: 12px;
  padding: 1px 12px 1px 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E4572E;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #25644B;
  background: none;
  padding: 12px 0 12px 8px;
  border-radius: 8px;
  transition: background 0.19s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F3F7F2;
  color: #E4572E;
}

/* GENERAL BUTTONS */
.primary-cta,
button.primary-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #25644B;
  color: #FFF;
  padding: 12px 28px;
  border-radius: 32px;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0px 2px 12px 0 rgba(39,100,75,0.09);
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.18s;
  border: none;
  margin-top: 12px;
  display: inline-block;
  text-align: center;
}
.primary-cta:hover, .primary-cta:focus {
  background: #205042;
  color: #FFE3C4;
}

/* FEATURES & CATEGORY LISTS */
.features-list, .categories-list, .highlights-list,
.seasonal-tips, .tip-list, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.features-list li, .highlights-list li, .seasonal-tips li, .tip-list li, .team-list li {
  background: #F8FAFF;
  border-radius: 15px;
  padding: 15px 22px 15px 18px;
  box-shadow: 0 1px 8px 0 rgba(44,55,77,0.07);
  color: #25644B;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.features-list li img, .seasonal-tips li img, .categories-list li img {
  width: 26px;
  height: 26px;
}
.features-list li:hover, .highlights-list li:hover, .seasonal-tips li:hover {
  background: #fff4ef;
  box-shadow: 0 6px 24px 0 rgba(44,55,77,0.12);
}
.categories-list, .pagination, .filter-tags, .season-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
  align-items: center;
}
.categories-list li, .pagination span, .pagination a {
  background: #F7E0C7;
  border-radius: 18px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: background 0.15s, color 0.16s;
  color: #25644B;
}
.categories-list li a {
  color: #25644B;
}
.categories-list li a:hover {
  color: #E4572E;
}
.pagination span {
  background: #25644B;
  color: #fff;
  pointer-events: none;
}
.pagination a {
  background: #F7E0C7;
  color: #25644B;
  font-weight: 500;
}
.pagination a:hover,
.pagination a:focus {
  background: #E4572E;
  color: #fff;
}
.filter-tags a, .season-filter a {
  background: #E8F4F3;
  color: #25644B;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 18px;
  font-size: 0.99rem;
  transition: background 0.14s, color 0.14s;
}
.filter-tags a:hover, .season-filter a:hover,
.filter-tags a:focus, .season-filter a:focus {
  background: #E4572E;
  color: #fff;
}
.filter-tags span, .season-filter span {
  color: #888;
  font-weight: 400;
  margin-right: 8px;
}

/* CATEGORY GRID CARDS */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.category-card {
  background: #F8FAFF;
  border-radius: 20px;
  padding: 30px 22px 24px 22px;
  box-shadow: 0 1px 8px 0 rgba(44,55,77,0.09);
  min-width: 220px;
  flex: 1 1 250px;
  color: #25644B;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.18s;
}
.category-card:hover {
  background: #FFF7F2;
  box-shadow: 0 6px 24px 0 rgba(44,55,77,0.15);
}
.category-card h3 {
  color: #205042;
  font-size: 1.18rem;
  margin-bottom: 6px;
}

/* TEXT BLOCKS, VALUE LISTS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 860px;
}
.about-values {
  background: #F8FAFF;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 1px 8px 0 rgba(44,55,77,0.07);
  width: 100%;
  margin: 20px 0 0 0;
}
.about-values h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.about-values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-values li {
  background: #F7E0C7;
  padding: 12px 18px;
  border-radius: 9px;
  color: #25644B;
  font-weight: 500;
  font-size: 1rem;
}

/* SEARCH BAR */
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 12px 0 12px 0;
  width: 100%;
  max-width: 480px;
}
.search-bar input[type='text'] {
  border: 1.5px solid #dadfe2;
  border-radius: 16px;
  padding: 11px 20px;
  font-size: 1.08rem;
  background: #fff;
  flex: 1;
  outline: none;
}
.search-bar button {
  background: #25644B;
  color: #fff;
  border-radius: 16px;
  font-size: 1.03rem;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  transition: background 0.17s, color 0.16s;
}
.search-bar button:focus, .search-bar button:hover {
  background: #E4572E;
  color: #fff;
}

/* MAP PLACEHOLDER & CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.04rem;
  color: #25644B;
  margin-bottom: 18px;
}
.map-placeholder {
  background: #F8FAFF;
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 1rem;
  box-shadow: 0 1px 8px 0 rgba(44,55,77,0.07);
  color: #628073;
  margin-bottom: 18px;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #F3F7F2 0%, #FFFAF0 100%);
  border-top: 2px solid #e9e7e3;
  box-shadow: 0 -1px 12px 0 rgba(177,195,183,0.09);
  padding: 32px 0 22px 0;
}
.footer-brand {
  margin-bottom: 16px;
}
.footer-brand img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #25644B;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 9px;
  transition: background 0.12s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F7E0C7;
  color: #E4572E;
}
.footer-contact {
  font-size: 0.98rem;
  color: #668873;
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.footer-contact img {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin: 0 2px -2px 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .main-nav img {
    margin-right: 14px;
    height: 34px;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 9px;
    border-radius: 18px;
  }
  .content-wrapper, .testimonials, .card-container, .content-grid, .category-grid {
    gap: 14px;
  }
  .footer-nav, .footer-contact, .categories-list, .highlights-list, .features-list, .seasonal-tips {
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  .testimonial-card {
    padding: 14px 7px 10px 7px;
    border-radius: 12px;
  }
  .card {
    padding: 14px 8px;
    border-radius: 12px;
  }
  .category-card {
    min-width: 170px;
    padding: 16px 8px 12px 8px;
    border-radius: 13px;
  }
  .about-values {
    padding: 12px 7px;
    border-radius: 7px;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.08rem; }
  .footer-nav, .footer-contact, .categories-list, .pagination, .features-list, .content-grid, .card-container, .testimonials, .category-grid {
    flex-direction: column;
    gap: 9px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4000;
  background: rgba(255,244,236,0.97);
  box-shadow: 0 -2px 20px #eed6c3c0;
  padding: 24px 20px 24px 20px;
  border-top: 2px solid #F7E0C7;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  opacity: 1;
  transition: transform 0.4s cubic-bezier(.7,.41,.33,1.13), opacity 0.3s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(200%);
  pointer-events: none;
}
.cookie-consent-text {
  font-size: 1rem;
  color: #205042;
  flex: 1 1 auto;
}
.cookie-btn,
.cookie-btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 24px;
  border-radius: 20px;
  margin-left: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(204,173,148,0.07);
  transition: background 0.2s, color 0.18s;
}
.cookie-btn {
  background: #25644B;
  color: #fff;
  font-weight: 600;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #205042;
  color: #FFE3C4;
}
.cookie-btn-secondary {
  background: #fff;
  color: #E4572E;
  border: 1.5px solid #E4572E;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #FFE3C4;
  color: #25644B;
  border-color: #25644B;
}
@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 19px 10px 19px 10px;
  }
  .cookie-btn, .cookie-btn-secondary {
    margin-left: 0;
    margin-top: 7px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,100,75,0.16);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBackdrop 0.27s;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff4ef;
  border-radius: 22px;
  padding: 32px 24px 22px 24px;
  min-width: 320px;
  max-width: 97vw;
  box-shadow: 0 10px 34px 0 rgba(77, 57, 42, 0.25);
  z-index: 4200;
  display: flex;
  flex-direction: column;
  animation: modalPop 0.32s;
  margin: 18px;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.87) translateY(60px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #25644B;
}
.cookie-category-list {
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1rem;
  color: #205042;
  font-weight: 500;
  min-width: 145px;
}
.cookie-switch {
  appearance: none;
  width: 42px;
  height: 22px;
  background: #C6DBD2;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-switch:checked {
  background: #25644B;
}
.cookie-switch::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
}
.cookie-switch:checked::before {
  left: 23px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn,
.cookie-modal-actions .cookie-btn-secondary {
  margin-left: 0;
}
.cookie-modal-close {
  background: #E4572E;
  color: #fff;
  border-radius: 12px;
  border: none;
  padding: 7px 14px;  
  font-size: 1rem;
  position: absolute;
  right: 22px;
  top: 17px;
  z-index: 1002;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: unset;
    padding: 19px 6px 16px 6px;
    border-radius: 10px;
  }
}

/* MICRO-INTERACTIONS */
.primary-cta, .cookie-btn, .cookie-btn-secondary, .main-nav a, .categories-list li, .pagination a, .filter-tags a, .season-filter a, .mobile-nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.14s;
}
.primary-cta:active, .cookie-btn:active, .cookie-btn-secondary:active,
.categories-list li:active, .main-nav a:active, .pagination a:active {
  transform: scale(0.98);
}

/* SOFT PASTEL COLORS & GRADIENTS */
body, .container, .content-wrapper {
  background: #FAF6F3;
}
.section {
  background: linear-gradient(135deg, #fff 50%, #fff4ef 100%);
}
.features-list li, .category-card, .map-placeholder, .about-values, .team-list li {
  background: linear-gradient(90deg, #F9F7FC 60%, #F8FAFF 100%);
}

/*******************
 * NO GRID! ONLY FLEX
 *******************/
/* Every structure above uses flex layout, never grid. No display: grid. */

/******* END ******/
