/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #3F2C25;
  background: #F9ECD6;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #F9ECD6;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
[tabindex="-1"]:focus {
  outline: none !important;
}

/* ROOT COLORS -- custom properties + fallback */
:root {
  --c-primary: #7C342E;
  --c-secondary: #F9ECD6;
  --c-accent: #23612C;
  --c-gold: #b59c53;
  --c-white: #fff;
  --c-offwhite: #FAF7F0;
  --c-brown: #3F2C25;
  --c-shadow: rgba(60,40,20,0.08);
}

/* LUXURY PREMIUM TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #7C342E;
  margin-bottom: 20px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.35rem;
}
h4 { font-size: 1.125rem; }

p, li, span, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #3F2C25;
  font-weight: 400;
}
blockquote {
  border-left: 3px solid var(--c-gold);
  padding-left: 16px;
  font-style: italic;
  margin: 12px 0 18px 0;
  color: var(--c-primary);
}
.subheadline {
  font-size: 1.2rem;
  color: var(--c-brown);
  margin-bottom: 24px;
  letter-spacing: 0.015em;
  font-weight: 500;
}
strong { color: var(--c-primary); font-weight: 700; }

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 1.5px solid #f2e9da;
  box-shadow: 0 2px 16px var(--c-shadow);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
}
.logo img {
  height: 48px;
}
.nav-cta {
  margin-left: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 40px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: 8px;
  transition: 
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  color: var(--c-brown);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--c-gold);
  background: #fcf6ef;
  box-shadow: 0 2px 10px var(--c-shadow);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: var(--c-secondary);
  border-radius: 10px;
  width: 44px; height: 44px;
  font-size: 2rem;
  color: var(--c-primary);
  border: 2px solid var(--c-gold);
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.23s;
  margin-left: 12px;
  box-shadow: 0 2px 8px var(--c-shadow);
  z-index: 35;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #f8f2e8;
  box-shadow: 0 2px 20px var(--c-shadow);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
  box-shadow: -8px 0 28px var(--c-shadow);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 18px 24px 16px auto;
  background: none;
  color: var(--c-primary);
  font-size: 2.2rem;
  border: 1px solid var(--c-gold);
  border-radius: 11px;
  width: 46px; height: 46px;
  cursor: pointer;
  transition: background 0.22s, color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #faecd8;
  color: var(--c-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 16px 0 0 26px;
}
.mobile-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.14rem;
  padding: 14px 0 14px 0;
  color: var(--c-primary);
  border-bottom: 1px solid #f1e4c2;
  width: fit-content;
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--c-gold);
}

/* Hide .main-nav and .nav-cta on mobile */
@media (max-width: 900px) {
  .main-nav, .nav-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION (home) */
.hero {
  background: linear-gradient(120deg, #fff 86%, #F9ECD6 100%);
  padding: 70px 0 60px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding: 0;
}
.hero h1 {
  color: var(--c-primary);
  font-size: 2.7rem;
  letter-spacing: 0.01em;
}
.hero .btn-primary {
  margin-top: 26px;
}

/* FEATURES, DESTINATIONS PREVIEW, LISTS */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
  margin-top: 32px;
  justify-content: flex-start;
}
.feature-grid > li {
  background: var(--c-white);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--c-shadow);
  flex: 1 1 220px;
  min-width: 230px;
  padding: 32px 25px 24px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1.5px solid #f2e9da;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, border 0.22s, transform 0.16s;
}
.feature-grid > li img {
  width: 44px; height: 44px;
}
.feature-grid > li:hover, .feature-grid > li:focus {
  border: 1.5px solid var(--c-gold);
  box-shadow: 0 6px 24px var(--c-shadow);
  transform: translateY(-3px) scale(1.011);
}

/* Destinations Preview */
.destinations-preview {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.destinations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
  margin-top: 15px;
}
.destinations-list > li {
  background: var(--c-offwhite);
  border-left: 4px solid var(--c-gold);
  border-radius: 11px 0 0 11px;
  padding: 18px 24px;
  min-width: 210px;
  flex: 1 1 280px;
  margin-right: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--c-shadow);
}
.btn-secondary {
  display: inline-block;
  padding: 13px 32px;
  background: none;
  color: var(--c-primary);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  border: 2px solid var(--c-gold);
  border-radius: 10px;
  font-size: 1.16rem;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.22s, color 0.18s, border 0.23s, box-shadow 0.23s;
  box-shadow: 0 2px 10px var(--c-shadow);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--c-gold);
  color: var(--c-white);
  border-color: var(--c-gold);
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px 20px 32px;
  background: #fff7ee;
  border-radius: 15px;
  border: 2px solid #eee3d0;
  box-shadow: 0 3px 18px var(--c-shadow);
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 260px;
  margin-bottom: 22px;
  position: relative;
  transition: box-shadow 0.22s, border 0.18s, transform 0.16s;
}
.testimonial-card:hover, .testimonial-card:focus {
  border: 2px solid var(--c-gold);
  box-shadow: 0 6px 32px var(--c-shadow);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--c-brown);
}
.testimonial-footer .name {
  font-weight: 700;
}
.testimonial-footer .location {
  color: var(--c-accent);
  font-weight: 400;
}
.testimonial-footer .rating {
  color: var(--c-gold);
  letter-spacing: 1px;
  font-size: 1.12rem;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(90deg, #f3eee9 80%, #fff8e8 100%);
  padding: 48px 20px;
  margin-bottom: 60px;
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--c-shadow);
}
.cta-banner .content-wrapper {
  align-items: center;
  justify-content: center;
}
.cta-banner h2 {
  color: var(--c-accent);
  font-size: 2.2rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 15px 36px;
  background: var(--c-gold);
  color: var(--c-primary);
  font-family: 'Merriweather', serif;
  font-size: 1.17rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.045em;
  box-shadow: 0 2px 12px var(--c-shadow);
  transition: background 0.17s, color 0.19s, box-shadow 0.18s, transform 0.13s;
  text-align: center;
  margin-top: 10px;
  border-bottom: 2.5px solid #e2d190;
  position: relative;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--c-primary);
  color: var(--c-gold);
  box-shadow: 0 8px 32px var(--c-shadow);
  transform: translateY(-1.5px) scale(1.014);
}

/* LISTS & SECTIONS */
.text-section {
  margin-bottom: 16px;
}
.text-section ul {
  list-style: disc;
  margin-left: 24px;
}
.text-section li {
  margin-bottom: 9px;
}
ul.service-categories, ul.steps-list, ul.unique-values-list, ul.destination-list, ul.culinary-highlights ul, ul.local-experiences-list, ul.highlighted-moments, ul.newsletter-benefits, ul.faq-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 20px;
  margin-top: 7px;
}
/* Remove forced flex for unordered regular text-section lists */
.text-section ul:not(.service-categories):not(.steps-list):not(.unique-values-list):not(.destination-list):not(.local-experiences-list):not(.highlighted-moments):not(.newsletter-benefits):not(.faq-list):not(.culinary-highlights ul) {
  display: initial;
  gap: initial;
  margin-bottom: initial;
  margin-top: initial;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 10px 0;
}
.team-member {
  flex: 1 1 270px;
  min-width: 220px;
  background: #fff;
  border-radius: 11px;
  padding: 26px 18px 15px 24px;
  box-shadow: 0 2px 11px var(--c-shadow);
  border: 1.5px solid #f3e7cd;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border 0.18s, transform 0.13s;
}
.team-member:hover, .team-member:focus {
  border: 1.5px solid var(--c-gold);
  box-shadow: 0 6px 21px var(--c-shadow);
  transform: translateY(-2.5px) scale(1.013);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2.5px 14px var(--c-shadow);
  border: 1.5px solid #f2e9da;
  margin-bottom: 20px;
  position: relative;
  padding: 30px 25px;
  transition: box-shadow 0.17s, border 0.14s, transform 0.13s;
}
.card:hover, .card:focus {
  border: 1.5px solid var(--c-gold);
  box-shadow: 0 12px 36px var(--c-shadow);
  transform: translateY(-2px) scale(1.011);
}

.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;
}

/* BLOG, NEWSLETTER, STORIES */
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
  margin-bottom: 16px;
}
.blog-categories li {
  background: var(--c-white);
  color: var(--c-accent);
  border: 1px solid #eadec0;
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 0.97rem;
  font-weight: 600;
}
.tour-story-previews > li, .post-summaries > li {
  background: #fff;
  border-radius: 7px;
  padding: 18px 20px;
  box-shadow: 0 2px 9px var(--c-shadow);
  margin-bottom: 15px;
}
.highlighted-moments > li {
  padding-left: 18px;
  position: relative;
}
.highlighted-moments > li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--c-gold);
}

/* FAQ */
.faq-section .faq-list {
  background: #fff;
  border-radius: 11px;
  padding: 26px 32px 18px 32px;
  box-shadow: 0 4px 20px var(--c-shadow);
  border: 1.5px solid #faebd3;
  margin-bottom: 20px;
}
.faq-list > li {
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background: #fffaf0;
  color: #513B33;
  border-top: 2.3px solid #efdcba;
  margin-top: 68px;
  font-size: 1rem;
  box-shadow: 0 -2px 18px var(--c-shadow);
}
footer .container {
  padding: 30px 20px 0 20px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
  padding-bottom: 22px;
}
.logo-footer img {
  height: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: var(--c-brown);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.19s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--c-gold);
}
.contact-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.contact-footer img {
  width: 19px; height: 19px; margin-right: 7px;
}
.copyright-bar {
  text-align: center;
  background: #f7ecd1;
  color: #93794A;
  font-size: 0.98rem;
  padding: 15px 0;
  margin-top: 12px;
  border-radius: 0 0 13px 13px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffdfa;
  border-top: 2px solid var(--c-gold);
  z-index: 1205;
  box-shadow: 0 -4px 24px var(--c-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 22px 12px 22px 12px;
  font-size: 1.04rem;
  color: var(--c-brown);
  transition: transform 0.33s cubic-bezier(0.77,0,0.18,1), opacity 0.22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-btn {
  margin-left: 13px;
}
.cookie-banner .btn-cookie {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  margin-right: 10px;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1.5px solid var(--c-gold);
  background: var(--c-gold);
  color: var(--c-primary);
  cursor: pointer;
  transition: background 0.15s, color 0.18s, border 0.17s, box-shadow 0.17s;
  box-shadow: 0 2px 8px var(--c-shadow);
  font-size: 1rem;
}
.cookie-banner .btn-cookie.settings {
  background: var(--c-secondary);
  color: var(--c-primary);
  border: 1.5px solid var(--c-gold);
}
.cookie-banner .btn-cookie.reject {
  background: #fff;
  color: var(--c-primary);
}
.cookie-banner .btn-cookie:focus, .cookie-banner .btn-cookie:hover {
  background: var(--c-primary);
  color: var(--c-gold);
  border-color: var(--c-gold);
}

/* COOKIE CONSENT MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(60,40,20,0.32);
  z-index: 1210;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 6px 40px var(--c-shadow);
  border: 2px solid var(--c-gold);
  min-width: 325px;
  max-width: 440px;
  width: 95vw;
  padding: 38px 32px 22px 32px;
  position: relative;
  animation: modalIn 0.21s cubic-bezier(0.36,0.54,0.28,1.07);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.89); }
  to   { opacity: 1; transform: scale(1.0); }
}
.cookie-modal h3 { font-size: 1.33rem; margin-bottom: 13px; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin-bottom: 17px;
  font-size: 1.08rem;
}
.cookie-toggle {
  width: 48px; height: 26px;
  border-radius: 13px;
  background: #eee3cd;
  border: 1.3px solid var(--c-gold);
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
  flex-shrink: 0;
}
.cookie-toggle.on {
  background: var(--c-gold);
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s, background 0.16s;
}
.cookie-toggle.on .slider {
  left: 24px;
  background: #fffdfa;
}
.cookie-modal .btn-cookie-save {
  display: block;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  margin: 22px auto 0 auto;
  padding: 12px 26px;
  border-radius: 8px;
  border: 1.5px solid var(--c-gold);
  background: var(--c-gold);
  color: var(--c-primary);
  cursor: pointer;
  transition: background 0.15s, color 0.18s, border 0.17s, box-shadow 0.17s;
  box-shadow: 0 2px 10px var(--c-shadow);
  font-size: 1rem;
}
.cookie-modal .btn-cookie-save:focus, .cookie-modal .btn-cookie-save:hover {
  background: var(--c-primary);
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 14px; top: 14px;
  background: none;
  border-radius: 8px;
  border: 1.2px solid var(--c-gold);
  color: var(--c-primary);
  width: 32px; height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.14s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: var(--c-gold);
  color: var(--c-white);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1180px) {
  .feature-grid, .team-list, .content-grid, .card-container, .testimonial-carousel, .footer-main {
    flex-wrap: wrap;
    gap: 22px;
  }
  .main-nav {
    gap: 12px;
    margin-left: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding: 0 12px;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .main-nav { display: none; }
}
@media (max-width: 768px) {
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .hero {
    padding: 48px 0 32px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .testimonial-carousel {
    gap: 16px;
  }
  .features, .cta-banner,
  .destinations-preview,
  .testimonials {
    padding: 22px 0;
  }
  .cta-banner h2 {
    font-size: 1.32rem;
  }
  .feature-grid, .destinations-list, .testimonial-carousel, .team-list {
    flex-direction: column;
  }
  .feature-grid > li,
  .destinations-list > li,
  .testimonial-card,
  .team-member {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .section { padding: 25px 5px; }
}
@media (max-width: 540px) {
  .btn-primary, .btn-secondary, .cookie-banner .btn-cookie, .cookie-modal .btn-cookie-save {
    font-size: 1rem;
    padding: 10px 12px;
  }
  .testimonial-card,
  .feature-grid > li,
  .team-member,
  .card {
    padding-left: 9px; padding-right: 9px;
  }
  .cookie-modal {
    min-width: 95vw;
    max-width: 98vw;
    padding: 14px 4vw 12px 4vw;
  }
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.btn-primary, .btn-secondary, .btn-cookie, .btn-cookie-save {
  will-change: transform, box-shadow;
}

::-webkit-input-placeholder { color: #826357; }
::-moz-placeholder { color: #826357; }
:-ms-input-placeholder { color: #826357; }
::placeholder { color: #826357; }

/* SPECIAL: show visible outline on keyboard navigation for a11y */
:focus-visible {
  outline: 2.5px solid var(--c-gold);
  outline-offset: 2.5px;
}

/* MISC. */
.section + .section {
  margin-top: 32px;
}
.blog-intro, .featured-posts, .newsletter-signup, .contact-section, .faq-section, .confirmation-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}

/* END */
