/* CSS RESET & BASE STYLES */
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,
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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #F2EADA 0%, #e6eae6 100%);
  color: #2D5B4E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
main {
  flex: 1 0 auto;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
a {
  color: #2D5B4E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7B674F;
  text-decoration: underline;
}
/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #2D5B4E;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}(ul, ol) {
  margin-left: 30px;
  margin-bottom: 18px;
}
blockquote {
  font-style: italic;
  color: #7B674F;
  background: #F2EADA;
  border-left: 4px solid #2D5B4E;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 8px;
  font-size: 1.1rem;
}
blockquote span {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: #2D5B4E;
  font-weight: 500;
}

/* LAYOUT CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  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;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: #F2EADA;
  color: #2D5B4E;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(125,115,100,0.09);
  min-width: 200px;
  max-width: 480px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX RESPONSIVE GRIDS */
.feature-grid, .route-cards, .route-category-grid, .hidden-gem-grid, .gear-category-list, .article-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature, .gem, .route-card, .route-category, .gear-category, .article-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 2px 16px 0 rgba(45,91,78,0.06);
  flex: 1 1 270px;
  min-width: 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature:hover, .gem:hover, .route-card:hover, .route-category:hover, .gear-category:hover, .article-card:hover {
  box-shadow: 0 6px 24px 0 rgba(45,91,78,0.13);
  transition: box-shadow 0.22s;
}

/* HEADER */
header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 50;
  box-shadow: 0 2px 9px 0 rgba(45,91,78,0.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
header img {
  width: 160px;
  min-width: 120px;
  margin-right: 36px;
  display: block;
  border-radius: 0;
}
header nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
header nav a {
  padding: 7px 11px;
  border-radius: 6px;
  color: #2D5B4E;
  transition: background 0.15s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #F2EADA;
  color: #7B674F;
  text-decoration: none;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #2D5B4E 60%, #7B674F 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 24px;
  font-size: 1.1rem;
  padding: 13px 32px;
  box-shadow: 0 2px 13px 0 rgba(125,115,100,0.12);
  margin-left: 24px;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.19s, transform 0.17s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #7B674F 36%, #2D5B4E 100%);
  color: #F2EADA;
  box-shadow: 0 4px 21px 0 rgba(45,91,78, 0.17);
  transform: translateY(-2px) scale(1.025);
}
.cta-button.secondary {
  background: #fff;
  color: #2D5B4E;
  border: 2px solid #2D5B4E;
  box-shadow: 0 1px 6px 0 rgba(45,91,78,0.06);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #2D5B4E;
  color: #fff;
  border-color: #7B674F;
}

/* MOBILE HEADER & BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #2D5B4E;
  cursor: pointer;
  z-index: 110;
  margin-left: 18px;
  transition: color 0.17s;
}
.mobile-menu-toggle:focus {
  color: #7B674F;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.5,.5,0,1.02);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 2px 32px 0 rgba(45,91,78,0.29);
}
.mobile-menu.mobile-menu--active {
  transform: translateX(0);
  transition: transform 0.36s cubic-bezier(.52,.97,.39,.99);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #2D5B4E;
  margin-top: 18px;
  align-self: flex-end;
  margin-right: 28px;
  cursor: pointer;
  z-index: 1289;
  transition: color 0.15s;
}
.mobile-menu-close:focus
,.mobile-menu-close:hover { color: #7B674F; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.25rem;
  width: 100%;
  align-items: flex-start;
  margin-top: 40px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #2D5B4E;
  padding: 8px 0 5px 6px;
  border-radius: 6px;
  font-weight: 500;
  width: 84vw;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2EADA;
  color: #7B674F;
}

/* HERO & CTA SECTIONS */
.hero {
  background: linear-gradient(120deg, #F2EADA 60%, #e0f2ea 100%), linear-gradient(120deg,#2D5B4E 0 0);
  padding: 52px 0 56px 0;
  margin-bottom: 1rem;
  box-shadow: 0 4px 38px 0 rgba(45,91,78,0.08);
}
.hero .content-wrapper {
  max-width: 680px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #2D5B4E;
  font-size: 2.35rem;
}
.hero .subheadline {
  font-size: 1.16rem;
  color: #7B674F;
  font-weight: 400;
}
.cta {
  background: linear-gradient(92deg, #2D5B4E 0%, #7B674F 100%);
  padding-block: 48px 36px;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}
.cta h2, .cta .cta-statement {
  color: #fff;
}
.cta .content-wrapper {
  align-items: center;
  gap: 22px;
}
.cta-button.secondary {
  background: #F2EADA;
  color: #2D5B4E;
  border: 2px solid #FFF;
  margin-top: 22px;
}
.cta-button.secondary:hover {
  border: 2px solid #F2EADA;
  color: #fff;
}

/* ROUTE/CATEGORY/ARTICLE FLEX ARRAYS */
.route-cards, .article-cards, .gear-category-list, .hidden-gem-grid, .route-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.route-card, .article-card, .gem, .gear-category, .route-category {
  flex: 1 1 290px;
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  box-shadow: 0 2px 13px 0 rgba(125,115,100,0.07);
  transition: box-shadow 0.19s, transform 0.12s;
}
.route-card:hover, .article-card:hover, .gem:hover, .gear-category:hover, .route-category:hover {
  box-shadow: 0 6px 23px 0 rgba(45,91,78,0.13);
  transform: translateY(-2px) scale(1.012);
}
.difficulty-icons span {
  display: inline-block;
  margin-right: 9px;
  font-weight: bold;
}
.season-filter ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}
.season-filter ul li {
  background: #F2EADA;
  padding: 5px 18px;
  border-radius: 15px;
  color: #2D5B4E;
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
}

/* SEARCH BARS/INPUTS */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 23px 0;
}
.search-bar input[type="text"] {
  flex: 1 1 190px;
  padding: 11px 15px;
  border: 1px solid #7B674F;
  border-radius: 10px;
  background: #fff;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2D5B4E;
  outline: none;
  transition: border 0.14s;
}
.search-bar input[type="text"]:focus {
  border: 1.5px solid #2D5B4E;
}
.search-bar button {
  background: #2D5B4E;
  color: #fff;
  border: none;
  padding: 11px 21px;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(125,115,100,0.09);
  transition: background 0.18s, color 0.16s;
}
.search-bar button:hover, .search-bar button:focus {
  background: #7B674F;
  color: #F2EADA;
}
.filter-options, .newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0 0;
}
.filter-options span {
  font-weight: 600;
  color: #7B674F;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 6px;
}
.filter-options button {
  background: #F2EADA;
  border: 1px solid #2D5B4E;
  color: #2D5B4E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 17px;
  border-radius: 16px;
  cursor: pointer;
  margin-right: 2px;
  transition: background 0.14s, color 0.14s, border 0.14s;
}
.filter-options button:hover, .filter-options button:focus {
  background: #7B674F;
  color: #fff;
  border: 1px solid #7B674F;
}

/* TIP & FAQ LISTS, TEAM, VALUES, ETC */
.tip-list, .expert-quotes, .author-highlights, .team-profiles ul, .text-section ul, .faq-accordion, .off-path-descriptions ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 12px;
}
.expert-quotes, .author-highlights {
  margin-top: 19px;
}
.faq-accordion {
  gap: 18px;
}
.faq-item {
  background: #F2EADA;
  border-radius: 10px;
  padding: 17px 21px;
  box-shadow: 0 1px 8px 0 rgba(45,91,78,0.06);
}
.faq-item h3 {
  font-size: 1.04rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 0.99rem;
  color: #2D5B4E;
}
/* TEAM */
.team-profiles ul li {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eaeaea;
}
.team-profiles ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* CONTACT DETAILS */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-details img {
  width: 24px;
  margin-right: 9px;
  vertical-align: middle;
  display: inline-block;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.07rem;
}
.map-embed {
  background: #F2EADA;
  border-radius: 10px;
  padding: 15px 16px;
  margin-top: 10px;
  color: #2D5B4E;
}
.office-hours, .address-block, .phone-email-info {
  background: #F2EADA;
  border-radius: 10px;
  padding: 11px 13px;
  margin-bottom: 15px;
}

/* LEGAL TEXT/CONTENT SECTION */
.legal .content-wrapper {
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 18px 0 rgba(125,115,100,0.06);
  padding: 37px 24px;
}
.legal h1 {
  color: #2D5B4E;
  font-size: 2rem;
}
.legal h2, .legal h3 {
  color: #7B674F;
}

/* FOOTER */
footer {
  background: #2D5B4E;
  color: #fff;
  padding: 34px 0 0 0;
  flex-shrink: 0;
  margin-top: 0;
}
footer .container {
  flex-direction: column;
  gap: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 13px;
  justify-content: center;
}
footer nav a {
  color: #fff;
  opacity: 0.92;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: #7B674F;
  color: #F2EADA;
}
.footer-contact {
  text-align: center;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.footer-contact a {
  color: #F2EADA;
  text-decoration: underline;
  transition: color 0.15s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #7B674F;
}
.footer-brand {
  border-top: 1px solid #325c4f;
  text-align: center;
  margin-top: 15px;
  padding: 16px 0;
  font-size: 0.96rem;
  color: #F2EADA;
  opacity: 0.92;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #F2EADA;
  color: #2D5B4E;
  box-shadow: 0 -2px 18px 0 rgba(45,91,78, 0.13);
  z-index: 1500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 6vw 22px 6vw;
  gap: 28px;
  font-size: 1rem;
  transition: transform 0.24s;
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  max-width: 500px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 10px 22px;
  border-radius: 16px;
  margin: 0 2px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0px 1px 6px 0 rgba(45,91,78,0.07);
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .accept {
  background: #2D5B4E;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #7B674F;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #7B674F;
  border: 1.5px solid #7B674F;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #7B674F;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #2D5B4E;
  border: 1.5px solid #2D5B4E;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #2D5B4E;
  color: #fff;
}
.cookie-banner--hidden {
  transform: translateY(120%);
  transition: transform 0.32s;
  pointer-events: none;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1550;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(45,91,78, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 28px 0 rgba(125,115,100,0.19);
  padding: 34px 26px 28px 26px;
  min-width: 310px;
  max-width: 98vw;
  color: #2D5B4E;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #7B674F;
}
.cookie-modal .category-list {
  margin-top: 8px;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0 7px 0;
  border-bottom: 1px solid #F2EADA;
  font-size: 1.02rem;
}
.cookie-modal .category-item .toggle {
  appearance: none;
  width: 40px;
  height: 24px;
  border-radius: 13px;
  background: #F2EADA;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
  border: 1.5px solid #2D5B4E;
}
.cookie-modal .category-item .toggle:checked {
  background: #2D5B4E;
}
.cookie-modal .category-item .toggle:disabled {
  background: #f7f7f7;
  opacity: 0.49;
  cursor: not-allowed;
}
.cookie-modal .category-item label {
  margin-right: 10px;
  font-weight: 600;
}
.cookie-modal .category-item .toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #fff;
  transition: left 0.14s;
}
.cookie-modal .category-item .toggle:checked::before {
  left: 18px;
  background: #F2EADA;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  border-radius: 14px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.cookie-modal .save {
  background: #2D5B4E;
  color: #fff;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #7B674F;
}
.cookie-modal .cancel {
  background: #fff;
  color: #7B674F;
  border: 1.5px solid #7B674F;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #7B674F;
  color: #fff;
}

/* MISC: MAP-TEASER, CALLOUT, NEWSLETTER */
.map-teaser, .off-path-descriptions {
  background: #F2EADA;
  padding: 15px 17px 15px 17px;
  border-radius: 10px;
  margin-bottom: 18px;
  color: #2D5B4E;
  font-size: 1.04rem;
}
.callout {
  background: #e0f2ea;
  padding: 40px 0 36px 0;
  margin-bottom: 65px;
}
.newsletter-signup {
  background: #F2EADA;
  border-radius: 13px;
  padding: 16px 20px;
  margin-top: 18px;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* CONFIRMATION/THANK YOU */
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  background: #F2EADA;
  padding: 36px 16px 42px 16px;
  border-radius: 18px;
  margin-top: 44px;
  box-shadow: 0 2px 19px 0 rgba(45,91,78,0.07);
}
.confirmation h1 {
  color: #2D5B4E;
  font-size: 2.3rem;
}
.confirmation h2 {
  font-size: 1.4rem;
  color: #7B674F;
}
.confirmation .thank-you-message {
  font-size: 1.07rem;
  margin: 16px 0;
}
.confirmation .next-steps {
  margin-top: 18px;
}

/* VISUAL EFFECTS & ANIMATIONS */
.section, .feature-grid, .card, .feature, .route-card, .article-card {
  transition: box-shadow 0.19s, background 0.18s, transform 0.20s;
}
.cta-button, .cta-button.secondary, .search-bar button {
  transition: background 0.16s, color 0.14s, transform 0.17s, border 0.13s;
}
.card:active, .feature:active, .route-card:active, .article-card:active {
  transform: scale(0.98);
}

/* RESPONSIVE DESIGN (MOBILE FIRST) */
@media (max-width: 1020px) {
  .container {
    max-width: 94vw;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  .feature, .gem, .route-card, .route-category, .article-card, .gear-category {
    min-width: 220px;
    flex: 1 1 190px;
  }
  .feature-grid, .route-cards, .route-category-grid, .hidden-gem-grid, .article-cards, .gear-category-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  /* Nav */
  header nav {
    display: none !important;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }

  .hero .content-wrapper {
    padding-top: 7px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
  .feature-grid, .route-cards, .route-category-grid, .hidden-gem-grid, .article-cards, .gear-category-list {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .feature, .route-card, .article-card, .gem, .route-category, .gear-category {
    min-width: 90vw;
    width: 100%;
    padding: 18px 10px;
  }
  .section, .callout {
    padding: 24px 3vw;
    margin-bottom: 28px;
  }
  .testimonial-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 13px 10px;
  }
  .content-grid, .card-container, .features {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 22px 4vw;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
  .cookie-modal {
    padding: 24px 9px 17px 9px;
    min-width: 70vw;
    max-width: 97vw;
    font-size: 0.99rem;
  }
  .confirmation .content-wrapper {
    padding: 18px 8px 25px 8px;
    border-radius: 9px;
  }
  .legal .content-wrapper {
    padding: 14px 6px;
    border-radius: 8px;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
}
@media (max-width: 520px) {
  header .container img {
    width: 99px;
  }
  .hero {
    padding: 22px 0 25px 0;
  }
  h1 { font-size: 1.17rem; }
  h2 { font-size: 1.03rem; }
  .cta {
    padding-block: 22px 12px;
  }
  .section {
    padding: 13px 3vw;
  }
  .feature, .route-card, .article-card, .gem, .route-category {
    padding: 11px 4px;
  }
  .testimonial-card {
    padding: 7px 4px;
    border-radius: 7px;
    font-size: 0.93rem;
  }
}
/* END OF CSS */
