/*! RESET & BASELINE STYLES */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; border: 0; }
html, body { height: 100%; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #214C37;
  background-color: #F2E8DC;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
ul, ol { margin-left: 24px; margin-bottom: 16px; }
a { color: #B68141; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #214C37; text-decoration: underline; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #214C37;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; line-height: 1.12; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 16px; }
blockquote {
  font-style: italic;
  color: #214C37;
  background: #F2E8DC;
  border-left: 4px solid #B68141;
  padding: 12px 18px;
  margin-bottom: 12px;
}
strong { font-weight: 700; }

/*! CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F2E8DC;
  border-radius: 34px 18px 30px 24px/44px 25px 18px 30px;
  box-shadow: 0 2px 12px 0 rgba(33,76,55,0.04),0 0.5px 1.5px 0 rgba(182,129,65,0.07);
}

/*! HEADER & MAIN NAVIGATION */
header {
  background: #fff;
  border-bottom: 1.5px solid #B68141;
  z-index: 102;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 68px;
}
header a img { height: 42px; margin-right: 10px; }
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #214C37;
  background: none;
  padding: 5px 9px;
  border-radius: 10px/12px;
  font-size: 1rem;
  transition: background .18s, color .18s;
}
header nav a:hover, header nav a:focus {
  background: #F2E8DC;
  color: #B68141;
}
.cta-btn {
  background: #214C37;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 32px 18px 32px 18px/18px 32px 18px 32px;
  padding: 11px 28px;
  font-size: 1.15rem;
  box-shadow: 0 3px 8px 0 rgba(33,76,55,0.12);
  border: 1.5px solid #214C37;
  display: inline-block;
  transition: background .2s, color .2s, box-shadow .2s;
  margin-left: 12px;
  margin-top: 5px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #B68141;
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(182,129,65,0.09);
  border-color: #B68141;
}

/*! HERO SECTIONS */
.hero {
  background: #F2E8DC;
  padding: 44px 0 52px 0;
  margin-bottom: 60px;
  border-radius: 0 0 44px 44px/0 0 44px 44px;
  box-shadow: 0 6px 36px 0 rgba(33,76,55,0.032);
  position: relative;
}
.hero .container { align-items: center; }
.hero .content-wrapper { align-items: flex-start; }
.hero h1 { color: #214C37; font-size: 2.5rem; }
.hero p { color: #3a5441; font-size: 1.13rem; }
.hero .cta-btn { margin-top: 24px; }

/*! FLEX LAYOUT CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; border-radius: 22px; box-shadow: 0 2px 8px 0 rgba(33,76,55,0.06); background: #fff; }
.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: #fff;
  border-radius: 18px 32px 18px 32px/32px 18px 32px 18px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(33,76,55,0.07);
  border-left: 6px solid #B68141;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*! UNIQUE LISTS, GRIDS, ETC */
.feature-grid,
.team-grid,
.country-grid,
.recent-highlights,
.recipe-list,
.post-excerpt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.feature {
  background: #fff;
  border-radius: 22px;
  padding: 24px 20px;
  flex: 1 1 230px;
  min-width: 218px;
  max-width: 330px;
  box-shadow: 0 2px 8px 0 rgba(33,76,55,0.040);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .16s;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}
.feature:hover {
  box-shadow: 0 8px 32px 0 rgba(33,76,55,0.08);
  transform: translateY(-2px);
}
.team-member {
  background: #F2E8DC;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(182,129,65,0.045);
  flex: 1 1 180px;
  padding: 22px 18px;
  margin-bottom: 20px;
}
.destination {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 6px 0 rgba(33,76,55,0.06);
  flex: 1 1 180px;
  min-width: 170px;
  max-width: 260px;
  padding: 18px 14px;
  margin-bottom: 20px;
}
.destination-highlight {
  background: #B68141;
  color: #fff;
  border-radius: 24px;
  padding: 18px;
  margin-top: 14px;
  margin-bottom: 16px;
  font-size: 1.13rem;
  box-shadow: 0 2px 8px 0 rgba(182,129,65,0.09);
}
.destination-highlight h3 { color: #fff; }
.local-specialties {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 5px 0 rgba(33,76,55,0.04);
  padding: 24px;
}
.blog-preview, .post-excerpt, .recipe-teaser {
  background: #fff;
  border-radius: 18px 10px 25px 18px/25px 12px 18px 20px;
  box-shadow: 0 2px 8px 0 rgba(33,76,55,0.04);
  flex: 1 1 210px;
  min-width: 190px;
  max-width: 340px;
  padding: 22px 18px;
  transition: box-shadow .18s, transform .16s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.blog-preview:hover, .post-excerpt:hover, .recipe-teaser:hover {
  box-shadow: 0 2px 22px 0 rgba(33,76,55,0.1);
  transform: translateY(-2px);
}
.cooking-tips, .editors-picks, .recommended-experiences, .travel-tips-list, .foodie-guides-overview {
  background: #F2E8DC;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
}
.post-category-nav {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #B68141;
}
.post-category-nav a {
  color: #214C37;
  font-weight: 500;
  margin: 0 2px;
  transition: color .2s;
}
.post-category-nav a:hover, .post-category-nav a:focus {
  color: #B68141;
}
.confirmation-section {
  background: #F2E8DC;
  border-radius: 16px;
  padding: 32px 22px;
  margin-top: 10px;
  text-align: left;
}

/*! CONTACT & SOCIALS */
.contact-information p, .address-block p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.social-media-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 14px;
  margin-bottom: 2px;
}
.social-media-links a img { width: 20px; height: 20px; margin-right: 7px; }

/*! FOOTER */
footer {
  background: #214C37;
  color: #fff;
  padding: 44px 0 34px 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #fff;
  opacity: 0.9;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 3px 0;
  transition: opacity .16s, color .16s;
}
.footer-links a:hover, .footer-links a:focus {
  opacity: 1;
  color: #B68141;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.99rem;
  margin-bottom: 3px;
}
.footer-logo {
  display: flex;
  align-items: flex-end;
}
.footer-logo img { height: 42px; margin-top: 16px; }

/*! BUTTONS & LINKS */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible, .mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2px solid #B68141;
}

/*! RESPONSIVE: MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 300;
  width: 48px;
  height: 48px;
  background: #214C37;
  color: #fff;
  border-radius: 14px 30px 16px 18px/20px 10px 25px 21px;
  border: none;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(33,76,55,0.08);
  transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #B68141;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #214C37;
  color: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .37s cubic-bezier(.65,.05,.36,1);
  padding: 32px 24px 24px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 19px;
  width: 44px;
  height: 44px;
  background: #B68141;
  color: #fff;
  border: none;
  font-size: 1.8rem;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #214C37;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 80px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.29rem;
  padding: 9px 2px;
  border-radius: 9px;
  font-weight: 500;
  width: 100%;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B68141;
  color: #fff;
}

/*! -- Hide desktop NAV on mobile, show burger -- */
@media (max-width: 980px) {
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/*! COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F2E8DC;
  color: #214C37;
  box-shadow: 0 -2px 14px 0 rgba(33,76,55,0.11);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 22px 18px;
  z-index: 5010;
  font-size: 1.05rem;
  border-radius: 30px 30px 0 0/22px 22px 0 0;
  transition: transform .35s cubic-bezier(.65,.05,.36,1);
}
.cookie-banner.hidden {
  transform: translateY(130%);
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  margin-left: 0;
  margin-right: 2px;
  background: #214C37;
  color: #fff;
  transition: background .2s, color .2s, box-shadow .2s;
  box-shadow: 0 1.5px 6px 0 rgba(33,76,55,0.15);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #B68141;
  color: #fff;
}
.cookie-btn.outline {
  background: #F2E8DC;
  color: #214C37;
  border: 1px solid #214C37;
}
.cookie-btn.outline:hover, .cookie-btn.outline:focus {
  background: #B68141;
  color: #fff;
  border-color: #B68141;
}

/*! COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -120%);
  max-width: 95vw;
  width: 380px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 10px 40px 0 rgba(33,76,55,0.19);
  z-index: 5012;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 36px 26px 26px 26px;
  opacity: 0;
  transition: transform .37s cubic-bezier(.65,.05,.36,1), opacity .24s;
  will-change: transform, opacity;
  pointer-events: none;
}
.cookie-modal.active {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-close-btn {
  background: #B68141;
  color: #fff;
  border: none;
  border-radius: 22px;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  position: absolute;
  top: 20px; right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .16s, color .16s;
}
.cookie-modal-close-btn:hover, .cookie-modal-close-btn:focus {
  background: #214C37;
}
.cookie-modal .cookie-category {
  margin-bottom: 12px;
  padding: 10px 0 6px 0;
  border-bottom: 1px solid #F2E8DC;
}
.cookie-modal .cookie-category label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #214C37;
  cursor: pointer;
  margin-right: 12px;
}
.cookie-modal .cookie-category input[type='checkbox'],
.cookie-modal .cookie-category input[type='radio'] {
  accent-color: #B68141;
  margin-right: 7px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .always-on {
  color: #999;
  font-size: .97rem;
}

/*! --- SPACING HELPERS --- */
.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; }

/*! --- FLEX CHILD SPACING --- */
.card-container > *,
.content-grid > *,
.feature-grid > *,
.team-grid > *,
.country-grid > * {
  margin-bottom: 0;
}
.section > * + * { margin-top: 20px; }

/*! --- ORGANIC SHAPES DECORATION (SUBTLE) --- */
.hero, .section, .feature, .card, .team-member, .destination,
.testimonial-card, .local-specialties, .blog-preview, .post-excerpt, .recipe-teaser, .confirmation-section {
  border-radius: 34px 18px 30px 24px/44px 25px 18px 30px;
}

/*! --- TESTIMONIALS READABILITY --- */
.testimonial-card {
  color: #214C37;
  background: #fff;
  border-left: 6px solid #B68141;
  box-shadow: 0 2px 16px 0 rgba(33,76,55,0.08);
}
.testimonial-card blockquote {
  color: #3a5441;
  background: transparent;
  border: none;
  font-size: 1.12rem;
  padding: 0;
  margin: 0 0 0 0;
}
.testimonial-meta {
  color: #B68141;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: .98rem;
  margin-left: 6px;
}

/*! --- Z-INDEX & ABSOLUTE DECORATION (LIMITED) --- */
@media (min-width: 1100px) {
  .hero:before {
    content: '';
    position: absolute;
    right: 64px; top: 24px;
    width: 130px; height: 98px;
    background: url('../assets/deco-leaf.svg') no-repeat center/contain;
    opacity: 0.16;
    z-index: 1;
    pointer-events: none;
  }
}

/*! --- RESPONSIVE LAYOUTS --- */
@media (max-width: 980px) {
  .container { max-width: 100vw; padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  header .container { flex-direction: row; gap: 10px; min-height: 50px; }
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
    border-radius: 21px 11px 19px 14px/22px 12px 11px 20px;
  }
  .hero {
    padding: 24px 0 36px 0;
    border-radius: 0 0 28px 28px/0 0 28px 28px;
  }
  .card-container, .feature-grid, .team-grid, .country-grid, .recent-highlights, .post-excerpt-list, .recipe-list {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .local-specialties, .confirmation-section, .blog-preview, .post-excerpt, .recipe-teaser, .feature {
    padding: 14px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 8px;
  }
  .footer-links, .footer-contact, .footer-logo {
    flex-basis: 100%;
    margin-bottom: 7px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .mobile-menu {
    padding: 26px 11px 10px 19px;
  }
}
/*! --- TIGHTER PADDING ON XS DEVICES --- */
@media (max-width: 500px) {
  .container { padding-left: 5px; padding-right: 5px; }
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 15px; padding: 12px 5px; font-size: .97rem; }
  .cookie-banner-buttons { flex-direction: column; gap: 8px; }
  .cookie-modal { width: 98vw; padding: 16px 6vw; }
}
/* End */