/* RESET & BASE ---------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #243751;
  background: #f3ece4;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
  font-size: 1rem;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #55947c;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #345941;
  outline: none;
}
ul, ol {
  list-style: disc inside;
  margin-left: 1.25em;
}
strong, b {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

/* TYPOGRAPHY & HIERARCHY ---------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #243751;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #243751;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #243751;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 30px;
  color: #345941;
}
p {
  margin-bottom: 18px;
  color: #28452b;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff9f3;
  border-radius: 32px;
  box-shadow: 0 4px 16px 0 rgba(36,55,81,0.08);
}
main > section.hero {
  background: #e8eee8;
  box-shadow: none;
  border-radius: 0 0 48px 48px/0 0 80px 80px;
  margin-bottom: 48px;
  padding: 54px 0 44px 0;
}
.hero h1 {
  color: #243751;
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.hero .subheadline {
  color: #417652;
}

/* FLEX LAYOUTS & WRAPPERS ---------------------- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}

.card-container, .card-grid, .feature-grid, .team-list, .offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

.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;
  padding: 20px;
  background: #f3ece4;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(36,55,81,0.06);
  margin-bottom: 20px;
  max-width: 560px;
  transition: transform 0.13s, box-shadow 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(36,55,81,0.1);
  transform: translateY(-3px) scale(1.03);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f6f3ed;
  border-radius: 22px 38px 22px 38px/38px 22px 38px 22px; /* organic */
  padding: 28px 24px 24px 24px;
  box-shadow: 0 1px 8px 0 rgba(85,148,124,0.11);
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, background 0.18s;
}
.feature-item:hover {
  background: #e8eee8;
  box-shadow: 0 6px 26px 0 rgba(36,55,81,0.10);
}

/* TEAM and OFFER GRIDS */
.team-list, .offers-grid {
  gap: 20px;
  margin-bottom: 30px;
}
.team-member, .offer-item {
  background: #f3f7f4;
  border-radius: 24px 32px 20px 36px;
  box-shadow: 0 2px 10px 0 rgba(85,148,124,0.08);
  padding: 22px 30px 24px 30px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, background 0.14s;
}
.team-member:hover, .offer-item:hover {
  background: #e8eee8;
  box-shadow: 0 8px 24px 0 rgba(36,55,81,0.10);
}

/* FAQ & BLOG LISTS ---------------------- */
.faq-list dt {
  margin-top: 18px;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #417652;
  font-size: 1.1rem;
}
.faq-list dd {
  margin-bottom: 12px;
  padding-left: 1.6em;
  color: #243751;
}

.blog-post-list li, .destination-list li {
  background: #f7f5f1;
  padding: 22px 22px 18px 22px;
  border-radius: 18px 30px 18px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(85,148,124,0.10);
  transition: box-shadow 0.14s, background 0.13s;
}
.blog-post-list li:hover, .destination-list li:hover {
  background: #e8eee8;
  box-shadow: 0 8px 22px 0 rgba(36,55,81,0.11);
}

.reasons-list li {
  margin-bottom: 14px;
  font-weight: 500;
  color: #286653;
}
.icon-row {
  display: flex;
  gap: 22px;
  margin-top: 18px;
}

/* FILTER & CATEGORY BUTTONS ---------------------- */
.region-filters, .category-filters, .topic-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.region-filters button, .category-filters button, .topic-filters button {
  background: #f6f3ed;
  color: #336e52;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  padding: 10px 28px;
  transition: background 0.19s, color 0.17s;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 6px;
}
.region-filters button:hover, .category-filters button:hover, .topic-filters button:hover {
  background: #dde9de;
  color: #243751;
}

/* BUTTONS & CTA ---------------------- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  padding: 13px 34px;
  border-radius: 30px 50px 30px 32px;
  margin-top: 18px;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px 0 rgba(36,55,81,0.10);
  cursor: pointer;
  transition: background 0.13s, color 0.17s, transform 0.10s;
}
.cta.primary {
  background: #55947c;
  color: #fff;
  border: 2px solid #417652;
}
.cta.primary:hover, .cta.primary:focus {
  background: #417652;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cta.secondary {
  background: #fff9f3;
  color: #335344;
  border: 2px solid #55947c;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #e8eee8;
  color: #417652;
  transform: translateY(-2px) scale(1.04);
}
.button, button {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 22px;
  background: #f3ece4;
  color: #417652;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.15s;
}
.button:hover, button:hover, .button:focus, button:focus {
  background: #dde9de;
  color: #28452b;
  outline: none;
}

/* HEADER & NAVIGATION ---------------------- */
header {
  width: 100%;
  background: #f3ece4;
  box-shadow: 0 2px 8px 0 rgba(36,55,81,0.06);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 12px;
  min-width: 52px;
}
.logo img {
  height: 44px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-left: 14px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #417652;
  font-size: 1.01rem;
  padding: 8px 4px;
  border-radius: 6px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e8eee8;
  color: #243751;
}
header .cta.primary {
  margin-left: 18px;
  font-size: 0.97rem;
  padding: 10px 20px;
}
/* HIDE ON MOBILE */
@media (max-width: 991px) {
  .main-nav, header .cta.primary {
    display: none;
  }
}

/* MOBILE MENU BURGER & SLIDE MENU ---------------------- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #417652;
  color: #417652;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.13s, border-color 0.16s, color 0.17s;
  z-index: 1020;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e8eee8;
  border-color: #55947c;
  color: #243751;
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,55,81,0.84);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.54,0,0.46,1);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff;
  color: #417652;
  border: 2px solid #55947c;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.12s, border-color 0.13s;
  z-index: 1240;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e8eee8;
  border-color: #417652;
}
.mobile-nav {
  background: #f6f3ed;
  box-shadow: -2px 0 16px 0 rgba(36,55,81,0.13);
  width: 84vw;
  max-width: 340px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 96px 36px 32px 28px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  color: #243751;
  font-weight: 500;
  padding: 14px 0;
  width: 100%;
  margin-bottom: 2px;
  border-radius: 12px;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #dde9de;
  color: #417652;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER ---------------------- */
footer {
  background: #243751;
  color: #fff;
  border-radius: 38px 38px 0 0/80px 80px 0 0;
  padding: 30px 0 5px 0;
  font-size: 1rem;
}
footer p {
  color: white;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #55947c;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
  transition: color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  font-size: 0.98rem;
  color: #f3ece4;
}
.footer-contact img {
  width: 16px;
  margin-right: 7px;
  vertical-align: middle;
}
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-links a {
  background: #fff9f3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.13s, background 0.13s;
}
.social-links a:hover {
  background: #dde9de;
  box-shadow: 0 6px 18px 0 rgba(85,148,124,0.11);
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-contact {
    margin-top: 16px;
  }
}

/* CONTACT & MAP EMBED ---------------------- */
.map-embed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #e8eee8;
  border-radius: 15px 25px 24px 16px;
  padding: 18px 18px 12px 18px;
  margin-top: 16px;
}

/* COOKIE BANNER ---------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff9f3;
  box-shadow: 0 -2px 16px 0 rgba(36,55,81,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 20px 16px;
  z-index: 1300;
  gap: 14px;
  border-radius: 32px 32px 0 0 / 72px 72px 0 0;
  transition: transform 0.28s cubic-bezier(0.54,0,0.46,1), opacity 0.18s;
  opacity: 1;
}
.cookie-banner.closed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #335344;
  margin-bottom: 3px;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}
.cookie-buttons .cookie-accept {
  background: #55947c;
  color: #fff;
  border: 2px solid #417652;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border-radius: 30px 38px 30px 32px;
  padding: 9px 26px;
  transition: background 0.16s, color 0.13s;
}
.cookie-buttons .cookie-accept:hover, .cookie-buttons .cookie-accept:focus {
  background: #417652;
}
.cookie-buttons .cookie-reject {
  background: #ffede0;
  color: #cf6c2d;
  border: 2px solid #cf6c2d;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  border-radius: 30px 38px 30px 32px;
  padding: 9px 16px;
  transition: background 0.12s, color 0.15s;
}
.cookie-buttons .cookie-reject:hover, .cookie-buttons .cookie-reject:focus {
  background: #fff2ea;
}
.cookie-buttons .cookie-settings {
  background: #e8eee8;
  color: #417652;
  border: 2px solid #55947c;
  font-weight: 500;
  border-radius: 30px 38px 30px 32px;
  padding: 9px 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: background 0.12s, color 0.12s, border 0.13s;
}
.cookie-buttons .cookie-settings:hover, .cookie-buttons .cookie-settings:focus {
  background: #dde9de;
  border-color: #417652;
  color: #243751;
}

/* COOKIE MODAL POPUP ---------------------- */
.cookie-modal {
  position: fixed;
  z-index: 1400;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(1);
  margin: 0 auto;
  max-width: 420px;
  background: #fff9f3;
  box-shadow: 0 8px 40px 0 rgba(36,55,81,0.22);
  border-radius: 38px 32px 22px 38px;
  padding: 34px 30px 28px 30px;
  opacity: 1;
  transition: opacity 0.18s, transform 0.22s cubic-bezier(0.47,0,0.53,1);
}
.cookie-modal.closed {
  opacity: 0;
  transform: translateY(-48%) scale(0.98);
  pointer-events: none;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #243751;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #dde9de;
}
.cookie-modal .category-info {
  flex: 1 1 65%;
}
.cookie-modal label {
  font-weight: 500;
  color: #417652;
  margin-left: 10px;
}
.cookie-modal input[type="checkbox"]:checked + label {
  color: #243751;
}
.cookie-modal .toggle-switch {
  width: 34px;
  height: 20px;
  border-radius: 12px;
  appearance: none;
  outline: none;
  background: #dde9de;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  transition: background 0.12s;
  margin-left: 16px;
}
.cookie-modal .toggle-switch:checked {
  background: #55947c;
}
.cookie-modal .toggle-switch:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.14s cubic-bezier(0.54,0,0.46,1);
}
.cookie-modal .toggle-switch:checked:before {
  left: 17px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #fff;
  border: none;
  font-size: 1.3rem;
  color: #55947c;
  border-radius: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #e8eee8;
  color: #243751;
}

/* RESPONSIVE DESIGN ---------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .feature-grid, .offers-grid, .team-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .section, main > section.hero {
    margin-bottom: 36px;
    padding: 20px 8px;
    border-radius: 18px;
  }
  .feature-item,.team-member,.offer-item,.testimonial-card {
    padding: 16px 12px;
    min-width: unset;
    font-size: 0.99rem;
  }
  .feature-grid, .team-list, .offers-grid {
    flex-direction: column;
    gap: 14px;
  }
  .content-wrapper, .content-grid {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100vw;
    padding: 13px 6px;
  }
  .mobile-nav {
    max-width: 98vw;
    padding: 82px 10px 12px 10px;
  }
  .icon-row {
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .map-embed {
    padding: 9px 6px 7px 6px;
    margin-top: 7px;
  }
}

/* Z-INDEXES ---------------------- */
header { z-index: 900; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 1300; }
.cookie-modal { z-index: 1400; }

/* UTILITIES ---------------------- */
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-12 { margin-top: 12px !important; }
.fill-accent { color: #55947c; }
.bg-accent { background: #e8eee8; }
.rounded { border-radius: 16px; }
.shadow { box-shadow: 0 2px 10px 0 rgba(36,55,81,0.08); }

/* ANIMATIONS & MICROINTERACTIONS ---------------------- */
.cta, .cta.primary, .cta.secondary, .feature-item, .testimonial-card, .blog-post-list li, .destination-list li, .offer-item, .team-member {
  will-change: transform, box-shadow;
  transition: box-shadow 0.16s, background 0.13s, transform 0.11s;
}
.feature-item:hover::before, .testimonial-card:hover::before {
  filter: blur(2px);
}
.feature-item:active, .cta:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* ORGANIC/DECORATIVE SHAPES (backgrounds, soft curves, nature feel) */
.section, .feature-item, .team-member, .offer-item, .testimonial-card, .card {
  border-radius: 32px 52px 28px 42px / 62px 34px 38px 58px;
}

/* OVERRIDES for LEGAL pages */
.legal .container, .legal .content-wrapper {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.legal h1, .legal h2, .legal h3 {
  color: #243751;
}
.legal ul li {
  color: #28452b;
  margin-bottom: 10px;
}

/* VISIBILITY/ACCESSIBILITY ---------------------- */
:focus-visible {
  outline: 2px solid #55947c;
  outline-offset: 1px;
}

/* END OF CSS */
