/* CSS RESET & NORMALIZE */
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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1a1a1a;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #254171;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #000;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.4em;
}
button, input, textarea, select {
  font: inherit;
  color: inherit;
  outline: none;
  background: none;
  border: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 16px;
  font-weight: 700;
  color: #151515;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; letter-spacing: -0.01em; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
}
p, li, blockquote {
  color: #232323;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
strong {
  font-weight: 700;
  color: #222;
}
.subheadline {
  color: #444;
  font-size: 1.2rem;
  margin-bottom: 24px;
  font-style: italic;
  letter-spacing: 0.005em;
}
blockquote {
  font-style: italic;
  color: #191919;
  border-left: 3px solid #151515;
  padding-left: 14px;
  margin-bottom: 8px;
}

/* CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 auto;
}
/* FLEXBOX MANDATORY PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f6f6f6;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 22px 26px;
  transition: box-shadow 0.25s, transform 0.23s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 24px rgba(30,30,30,0.11);
  transform: translateY(-2px) scale(1.025);
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 18px;
  background: #fafafa;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}
.testimonial-card blockquote {
  color: #181818;
  margin: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: #fff;
  color: #151515;
  width: 100%;
  padding: 60px 0 48px 0;
  margin-bottom: 0px;
  border-bottom: 1px solid #E8E8E8;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.7rem;
  color: #151515;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero .subheadline {
  color: #424242;
}

@media (max-width: 600px) {
  .hero {
    padding: 36px 0 24px 0;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px 20px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 20px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  opacity: 0.92;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.25s, color 0.2s, box-shadow 0.22s;
}
nav a:hover, nav a:focus {
  background: #191919;
  color: #F9F7F5;
  text-decoration: none;
  opacity: 1;
}

header .btn.primary {
  margin-left: 20px;
}
@media (max-width: 1024px) {
  nav {
    gap: 12px;
  }
  header .btn.primary {
    margin-left: 10px;
  }
}
@media (max-width: 950px) {
  header img {
    height: 32px;
  }
  nav a {
    font-size: 0.97rem;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #191919;
  color: #fff;
  font-size: 2rem;
  padding: 5px 15px 8px 15px;
  border-radius: 7px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, box-shadow 0.23s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #254171;
  color: #fff;
}

@media (max-width: 920px) {
  header .container nav,
  header .container .btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,18,18,0.97);
  color: #fff;
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.67,0,.29,1.01);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #F9F7F5;
  background: transparent;
  border: none;
  margin: 26px 32px 28px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #95B688;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 34px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #F9F7F5;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 2px 10px 0;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.22s, color 0.16s, opacity 0.25s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #254171;
  color: #FFF;
  opacity: 1;
  padding-left: 6px;
}

/* BUTTONS */
.btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  padding: 12px 32px;
  background: #fff;
  color: #151515;
  border: 1.6px solid #151515;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(20,20,20,0.04);
  text-align: center;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 6px;
  transition: background 0.22s, color 0.23s, box-shadow 0.14s;
  display: inline-block;
}
.btn.primary {
  background: #191919;
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(40,40,40,0.16);
}
.btn:hover, .btn:focus {
  background: #254171;
  color: #fff;
  border-color: #254171;
  box-shadow: 0 7px 18px rgba(20,20,40,0.11);
  text-decoration: none;
  transform: translateY(-2px) scale(1.021);
}

/* CARD & LIST LAYOUTS */
.tour-list,
.workshop-list,
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.tour-card {
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(33,33,33,0.07);
  padding: 28px 30px 22px 30px;
  flex: 1 1 360px;
  min-width: 290px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.23s, transform 0.23s;
}
.tour-card:hover, .tour-card:focus {
  box-shadow: 0 7px 25px rgba(30,30,30,0.14);
  transform: translateY(-2px) scale(1.018);
}
.tour-card h2 {
  font-size: 1.32rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tour-card h2 span {
  background: #191919;
  color: #F9F7F5;
  border-radius: 32px;
  font-size: 1.03rem;
  padding: 4px 16px;
  margin-left: 8px;
  font-weight: 600;
}
.tour-card ul {
  margin-top: 8px;
  list-style: disc;
  color: #232323;
}

@media (max-width: 900px) {
  .tour-list, .workshop-list, .blog-list {
    gap: 16px;
    flex-direction: column;
  }
  .tour-card, .card {
    min-width: 0;
    width: 100%;
    padding: 22px 12px 18px 12px;
  }
}

/* MAP SNIPPET */
.map-snippet {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 8px 0;
  color: #232323;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 10px 16px;
}
.map-snippet img {
  width: 40px;
  height: 40px;
}

/* FOOTER */
footer {
  background: #181818;
  color: #F9F7F5;
  padding: 32px 0 14px 0;
  margin-top: 56px;
  border-top: 1px solid #dedede;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #F9F7F5;
  opacity: 0.84;
  font-size: 1rem;
  padding: 4px 8px;
  transition: color 0.19s, background 0.14s, opacity 0.21s;
  border-radius: 5px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  background: #254171;
  opacity: 1;
}
footer .copyright {
  color: #b2b2b2;
  font-size: 0.98rem;
  text-align: center;
  margin-top: 10px;
}

/* SPACING CONSISTENCY */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
}
@media (max-width: 600px) {
  section {
    margin-bottom: 30px;
    padding: 18px 0 10px 0;
  }
}

.content-wrapper > ul, .content-wrapper > ol {
  margin-bottom: 18px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* MONOCHROME SOPHISTICATED PALETTE */
body, section, .container, .content-wrapper, .text-section, .tour-card, .card, .testimonial-card {
  background: #fff;
}
.card, .tour-card, .testimonial-card {
  background: #fafafa;
}

/* STYLE MICRO-INTERACTIONS */
.btn, .card, .tour-card, .testimonial-card {
  transition: box-shadow 0.23s, transform 0.18s, background 0.18s, color 0.14s;
}

/* ACCENT COLORS FOR ACCESSIBLE CONTRAST */
.btn.primary,
.mobile-menu,
.mobile-menu-toggle {
  background: #191919;
  color: #fff;
}
.mobile-menu {
  border-right: 4px solid #95B688;
}
.btn.primary:focus, .btn.primary:active {
  outline: 2.6px solid #254171;
  outline-offset: 2px;
}

/* TESTIMONIAL & CARDS CONTRAST */
.testimonial-card {
  background: #fafafc;
  color: #181818;
  border: 1.3px solid #dedede;
}
.testimonial-card strong {
  color: #254171;
  font-weight: 700;
}

/* ICON IMAGES WITHIN LISTS */
ul li img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  height: 22px;
  width: 22px;
}

/* RESPONSIVE FLEX PATTERNS FOR SPECIAL LAYOUTS */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .card-container,
  .content-grid,
  .footer-menu,
  .tour-list,
  .workshop-list,
  .blog-list {
    flex-direction: column;
    gap: 16px;
  }
  .section, section {
    padding: 18px 2px 10px 2px;
    margin-bottom: 36px;
  }
  header .container {
    flex-direction: row;
    padding: 11px 10px 10px 10px;
  }
}

/* Z-INDEX LAYERS */
header { z-index: 60; }
.mobile-menu { z-index: 120; }
.cookie-banner, .cookie-modal { z-index: 200; }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.hero, .card, .tour-card, .testimonial-card {
  animation: fadeInUp 0.7s cubic-bezier(.45,0,.46,1.0) 0.05s 1 both;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #191919;
  color: #fff;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.11);
  padding: 22px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: center;
  z-index: 210;
  font-size: 0.98rem;
  animation: fadeInUp 0.55s cubic-bezier(.33,.3,.75,.87) 0s 1 both;
}
.cookie-banner p {
  color: #ececec;
  margin: 0 18px 0 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  padding: 9px 22px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: #181818;
  color: #fff;
  transition: background 0.21s, color 0.17s;
}
.cookie-banner button.accept {
  background: #254171;
  color: #fff;
}
.cookie-banner button.decline {
  background: #868686;
  color: #fff;
}
.cookie-banner button.settings {
  background: transparent;
  border: 1.2px solid #fafafc;
  color: #fafafc;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  box-shadow: 0 2px 8px rgba(30,30,30,0.14);
  background: #95B688;
  color: #181818;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 12px 8px 10px 8px;
    font-size: 0.98rem;
    align-items: flex-start;
  }
  .cookie-banner p {
    margin: 0;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.54);
  z-index: 220;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  animation: fadeInScale 0.4s cubic-bezier(.37,.51,.79,1) 0.01s 1 both;
}
.cookie-modal .modal-inner {
  background: #fff;
  color: #151515;
  padding: 36px 34px 18px 34px;
  border-radius: 20px;
  max-width: 430px;
  width: 92vw;
  box-shadow: 0 9px 32px rgba(25,25,35,0.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInScale 0.4s cubic-bezier(.66,0,.59,.99) 0s 1 both;
}
.cookie-modal .modal-inner h3 {
  color: #254171;
  margin-bottom: 10px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 2px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal .category input[type=checkbox] {
  accent-color: #254171;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  margin-right: 4px;
}
.cookie-modal .category.essential label {
  font-weight: bold;
  color: #151515;
}
.cookie-modal .modal-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .modal-footer button {
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 18px;
  font-family: 'Montserrat';
}
.cookie-modal .modal-footer button.save {
  background: #254171;
  color: #fff;
  border: none;
}
.cookie-modal .modal-footer button.cancel {
  background: transparent;
  color: #254171;
  border: 1px solid #254171;
}
.cookie-modal .modal-footer button:hover, .cookie-modal .modal-footer button:focus {
  background: #191919;
  color: #fff;
  border-color: #191919;
}
.cookie-modal .close-x {
  position: absolute;
  right: 28px;
  top: 16px;
  color: #254171;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal .close-x:hover, .cookie-modal .close-x:focus {
  color: #95B688;
}
@media (max-width: 500px) {
  .cookie-modal .modal-inner {
    padding: 18px 8px 8px 8px;
    max-width: 99vw;
  }
}

/* SELECTION COLOR */
::selection {
  background: #95B688;
  color: #151515;
}

/* SCROLLBARS */
::-webkit-scrollbar { width: 12px; background: #dedede; }
::-webkit-scrollbar-thumb { background: #cacaca; border-radius: 100px;}

/* UTILITY/HELPER CLASSES */
.flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.d-none { display: none !important; }

/* OVERRIDES FOR ACCESSIBILITY & CLARITY */
:focus {
  outline: 2.5px solid #254171;
  outline-offset: 2px;
}

/* MONOCHROME REFINEMENT */
body, section, .container, .content-wrapper, .text-section {
  background: #fff;
  color: #191919;
}
h1, h2, h3, h4, strong, .btn, .footer-menu a, .mobile-nav a {
  color: #151515;
}
.btn.primary, .mobile-menu, .mobile-menu-toggle {
  color: #fff;
}

/* END CSS */
