/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 10%;
  height: auto;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1em;
}
a {
  color: #10131a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2e2e2e;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
:focus-visible {
  outline: 2px solid #181818;
  outline-offset: 2px;
}

/* --- BRAND & PALETTE (MONOCHROME SOPHISTICATED) --- */
:root {
  --black: #10131a;
  --charcoal: #21242a;
  --gray-dark: #373942;
  --gray: #7a7a7a;
  --gray-light: #e8e9eb;
  --white: #fff;
  --primary: #10131a;
  --secondary: #eeeeee;
  --accent: #ffffff;
  --border: #ececec;
  --shadow: rgba(20,24,35,0.09);
  --shadow-card: 0 4px 18px rgba(16,19,26,0.11);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 500;
}
p,
.subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--gray-dark);
}
.subtitle {
  color: var(--primary);
  opacity: 0.9;
  font-weight: 400;
  margin-bottom: 18px;
}

strong, b {
  font-weight: 600;
  color: var(--primary);
}

/***** --- MAIN CONTAINER & LAYOUT STRUCTURE --- *****/
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: var(--accent);
  box-shadow: 0 4px 18px var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 26px 8px;
    margin-bottom: 38px;
    border-radius: 12px;
  }
}

/***** --- HEADER & NAV --- *****/
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
  box-shadow: 0 2px 6px var(--shadow);
}
header .container {
  min-height: 76px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
header a img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--charcoal);
  opacity: 0.88;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-color 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--black);
  border-bottom: 2px solid var(--primary);
  opacity: 1;
}

.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--accent);
  padding: 13px 32px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 9px rgba(16,19,26,0.11);
  transition: background 0.18s, color 0.18s, transform 0.17s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--gray-dark);
  color: var(--accent);
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 4px 18px var(--shadow);
}

/**** --- MOBILE MENU --- ****/
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--accent);
  font-size: 2rem;
  border-radius: 8px;
  padding: 8px 13px;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 40;
  transition: background 0.18s, color 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--gray-dark);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  z-index: 99;
  padding: 0;
  box-shadow: 0 6px 28px var(--shadow);
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(.86,.12,.42,.98);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--accent);
  font-size: 2.4rem;
  padding: 20px 22px 8px 12px;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 24px 0 0 38px;
  width: 80vw;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  transition: color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gray-light);
}
@media (max-width: 1024px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/**** --- MAIN/LAYOUT & FLEX PATTERNS --- ****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 210px;
  min-width: 210px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 28px 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.24s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 25px var(--shadow);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img {
  width: 36px;
  height: 36px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.21s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 6px 38px var(--shadow-card);
  transform: translateY(-3px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
}
.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;
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/***** --- TESTIMONIALS --- *****/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafbfc;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(40,40,44,0.09);
  flex: 1 1 310px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card p {
  color: #23232c;
  font-size: 1.09rem;
  letter-spacing: 0.01em;
}
.testimonial-author {
  margin-left: 18px;
  font-size: 0.98rem;
  color: #7a7a7a;
  font-style: italic;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px var(--shadow-card);
  transform: translateY(-2px) scale(1.02);
}

/***** --- FEATURE ITEM --- *****/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 7px var(--shadow);
  padding: 20px 18px;
  margin-bottom: 20px;
}

/***** --- FOOTER --- *****/
footer {
  padding: 0 0 40px 0;
  background: var(--white);
  border-top: 1.5px solid var(--gray-light);
  box-shadow: 0 -2px 10px var(--shadow);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--gray-dark);
  font-size: 1.22rem;
  font-weight: 700;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
.footer-contact, .footer-links, .footer-social {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links a {
  color: var(--primary);
  opacity: 0.75;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 3px;
  transition: color 0.14s, opacity 0.13s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--black);
  opacity: 1;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-social img {
  width: 23px;
  height: 23px;
  opacity: 0.77;
  transition: opacity 0.15s;
}
.footer-social img:hover, .footer-social img:focus {
  opacity: 1;
}
@media (max-width: 900px) {
 footer .content-wrapper {
   flex-direction: column;
   gap: 18px;
 }
}

/***** --- SPECIAL SECTIONS --- *****/
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.location-grid > div {
  flex: 1 1 200px;
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 18px 12px;
}
@media (max-width: 800px) {
  .location-grid {flex-direction: column; gap: 16px;}
}

.map-overview, .tip-highlights, .featured-tip, .visitor-tips, .seasonal-highlights {
  background: #fafbfc;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 2px 8px rgba(20,24,35,0.07);
  margin-bottom: 24px;
}

/***** --- LEGAL PAGES --- *****/
.legal-content {
  background: #fafbfc;
  border-radius: 16px;
  padding: 30px 22px;
  margin-bottom: 24px;
  font-size: 1.06rem;
  color: var(--gray-dark);
  box-shadow: 0 2px 8px var(--shadow);
}
.legal-content h2 {
  font-size: 1.13rem;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 5px;
}
.legal-content p,
.legal-content ul,
.legal-content li {
  color: var(--gray-dark);
}

/***** --- RESPONSIVE FLEX & PADDING --- *****/
@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  .section { padding: 22px 8px; }
}
@media (max-width: 768px) {
  header .container {min-height:54px;gap:10px;}
  main, footer {
    font-size: 0.98rem;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.22rem; }
  .testimonial-slider,
  .location-grid,
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/***** --- BUTTONS, LINKS, UI --- *****/
button, .cta-btn {
  cursor: pointer;
  border: none;
}
button:disabled, .cta-btn:disabled {
  opacity: 0.56;
  pointer-events: none;
}

/***** --- COOKIE CONSENT BANNER --- *****/
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1100;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-shadow: 0 -2px 16px var(--shadow);
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.34s cubic-bezier(.84,.3,.24,.92), opacity 0.3s;
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(220%);
}
#cookie-banner p {
  flex: 1;
  min-width: 180px;
  color: var(--accent);
  margin-bottom: 0;
  margin-right: 14px;
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: var(--white);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 9px 22px;
  border: 1.3px solid #dadada;
  box-shadow: 0 1px 4px rgba(16,19,26,0.07);
  transition: background 0.17s, color 0.16s, border-color 0.15s, transform 0.15s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #efefef;
  color: var(--black);
  border-color: #bfbfbf;
  transform: translateY(-1px) scale(1.06);
}
.cookie-btn.reject {
  background: #ededed;
  color: #2e2e2e;
  border-color: #d9d9d9;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--charcoal);
  color: var(--accent);
  border-color: var(--primary);
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #23232c;
  color: #fff;
  border-color: #fff;
}

/**** COOKIE MODAL ****/
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,20,24,0.63);
  align-items: center;
  justify-content: center;
}
#cookie-modal.open {
  display: flex;
  animation: modalFade 0.29s cubic-bezier(.92,.19,.45,1.21);
}
@keyframes modalFade {
  from { opacity: 0; } to { opacity: 1; }
}
#cookie-modal .modal-box {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 7px 36px var(--shadow);
  padding: 40px 30px 24px;
  min-width: 320px;
  max-width: 97vw;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1201;
}
#cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0;
}
#cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#cookie-modal label {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.07rem;
  font-weight: 500;
}
#cookie-modal input[type="checkbox"] {
  accent-color: var(--primary);
  width: 19px;
  height: 19px;
  margin: 0 8px 0 0;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
#cookie-modal .cookie-btn {
  min-width: 100px;
}
#cookie-modal .modal-close {
  position: absolute;
  top: 19px;
  right: 17px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--gray-dark);
  cursor: pointer;
  transition: color 0.17s;
}
#cookie-modal .modal-close:hover, #cookie-modal .modal-close:focus {
  color: var(--primary);
}

/***** --- UTILS & MISC --- *****/
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.activity-overview ul,
.category-filters ul,
.activity-listing ul,
.values-list ul,
.team-intro ul {
  margin: 0 0 14px 0;
}
.location-info, .contact-details {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.09rem;
}
.location-info img, .contact-details img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  opacity: 0.75;
}

/***** --- SCROLLBAR (subtle monochrome) --- *****/
::-webkit-scrollbar {
  width: 10px;
  background: #edeef0;
}
::-webkit-scrollbar-thumb {
  background: #c6c7ca;
  border-radius: 12px;
}

/***** --- OVERRIDES FOR VERY SMALL DEVICES --- *****/
@media (max-width: 415px) {
  h1 {
    font-size: 1.09rem;
  }
  .container {
    padding: 0 2px;
  }
}

/***** --- ANIMATION HELPERS --- *****/
.fade-in {
  animation: fade-in 0.9s cubic-bezier(.2,.56,.47,1) both;
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

/***** --- END OF CSS --- *****/
