/* 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,
b, 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
body {
  background: #fff;
  color: #191C21;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #284165;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, .footer-nav a:hover {
  color: #E0A143;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #284165;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.subheadline {
  color: #4A5770;
  font-size: 1.125rem;
  margin-bottom: 24px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

p, li, span {
  font-size: 1rem;
  color: #191C21;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

strong {
  font-weight: 700;
}

/* LAYOUT CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 36px;
  padding-bottom: 36px;
  border-top: 1px solid #E5E9EF;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX CONTAINERS (MANDATORY PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #F7F7F7;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(40,65,101,0.07);
  border: 1px solid #ECEDEF;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
}
.features-grid, .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div, .values-list > div {
  flex: 1 1 220px;
  background: #fff;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(40,65,101,0.09);
  border: 1px solid #ECEDEF;
  min-width: 210px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, border 0.18s;
}
.features-grid > div:hover, .values-list > div:hover {
  box-shadow: 0 6px 24px rgba(224,161,67,0.12);
  border-color: #E0A143;
}

/* HERO SECTION */
.hero {
  background: #F7F7F7;
  padding: 60px 0 40px 0;
  display: flex;
  align-items: center;
  min-height: 260px;
}
.hero .container .content-wrapper {
  align-items: flex-start;
}

/* CTA SECTION */
.cta {
  margin-top: 60px;
  margin-bottom: 0;
  padding: 48px 0;
  display: flex;
  align-items: center;
  background: #fff;
}
.cta.bg-accent {
  background: #284165;
}
.cta.bg-accent h2, .cta.bg-accent p, .cta.bg-accent a.cta-btn {
  color: #fff !important;
}
.cta.bg-accent a.cta-btn {
  background: #E0A143;
  color: #191C21 !important;
}

/* BUTTONS & CTAS */
.cta-btn {
  display: inline-block;
  background: #284165;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(40,65,101,0.09);
  margin-top: 12px; /* maintains spacing on stacked layouts */
  text-align: center;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #E0A143;
  color: #191C21;
  box-shadow: 0 4px 16px rgba(224,161,67,0.13);
  outline: none;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #284165;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.14s, color 0.15s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #ECEDEF;
  color: #E0A143;
  text-decoration: none;
}
.logo-link img {
  height: 38px;
  width: auto;
  display: block;
}

/* FOOTER */
.footer-nav, .footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 0.98rem;
}
.footer-nav a {
  color: #4A5770;
  transition: color 0.18s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a:hover {
  color: #E0A143;
}
.footer-contact span, .footer-contact a {
  color: #999fa7;
  font-size: 0.98rem;
}
.footer-contact a {
  text-decoration: underline;
}

/* CARD / LIST SECTIONS */
.services-list li, .exkursion-list li {
  background: #F7F7F7;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(40,65,101,0.03);
  margin-bottom: 20px;
  padding: 18px 19px;
  border: 1px solid #ECEDEF;
  font-size: 1rem;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.values-list > div img, .features-grid > div img {
  width: 40px;
  height: 40px;
  filter: grayscale(18%);
  margin-bottom: 12px;
}

.map-snippet {
  margin-top: 24px;
  padding: 18px 22px;
  background: #F7F7F7;
  border-radius: 8px;
  font-size: 0.99rem;
  color: #4A5770;
}

/* TESTIMONIALS */
.testimonial-card p {
  font-size: 1.125rem;
  color: #284165;
  font-style: italic;
}
.testimonial-name {
  font-size: 1rem;
  color: #E0A143;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: #fff;
  color: #191C21;
  box-shadow: 0 -6px 34px rgba(40,65,101,0.10);
  border-top: 1px solid #ECEDEF;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding: 28px 16px 24px;
  font-size: 1rem;
  gap: 18px;
  animation: cookie-banner-in 0.48s cubic-bezier(.6,.1,.34,1.2);
}
@keyframes cookie-banner-in {
  0% { transform: translateY(120px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 18px;
  background: #284165;
  color: #fff;
  padding: 9px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  margin-top: 2px;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.cookie-settings {
  background: #E0A143;
  color: #284165;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E0A143;
  color: #191C21;
  outline: none;
}
.cookie-btn.cookie-settings:hover {
  background: #fff3df;
  color: #284165;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 12000;
  background: rgba(40,65,101,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-modal-bg 0.2s cubic-bezier(.5,.2,.2,1.2);
}
@keyframes fadein-modal-bg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 32px rgba(40,65,101,0.16);
  max-width: 370px;
  width: 95vw;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-in 0.25s cubic-bezier(.6,.1,.3,1.1);
}
@keyframes cookie-modal-in {
  0% { transform: translateY(70px) scale(0.93); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-category {
  padding: 9px 6px;
  border-radius: 6px;
  background: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 2px;
}
.cookie-category .switch {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-category.essential label {
  color: #999fa7;
}
.cookie-category.essential input[type="checkbox"] {
  display: none;
}

/* Custom Switch Toggle */
.switch input[type="checkbox"] {
  width: 0; height: 0;
  opacity: 0;
  position: absolute;
}
.switch-label {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  background: #ECEDEF;
  border-radius: 999px;
  transition: background 0.19s;
}
.switch-label::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(40,65,101,0.08);
  transition: left 0.18s, background 0.15s;
}
.switch input[type="checkbox"]:checked + .switch-label {
  background: #E0A143;
}
.switch input[type="checkbox"]:checked + .switch-label::after {
  left: 22px; background: #E0A143;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  color: #284165;
  position: absolute;
  right: 24px;
  top: 28px;
  z-index: 10101;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E0A143;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: #fff;
  z-index: 11000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 0 34px rgba(40,65,101,0.12);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #284165;
  padding: 18px 24px 6px 20px;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 26px 24px 16px 32px;
  width: 85%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #284165;
  padding: 10px 0;
  border-bottom: 1px solid #ECEDEF;
  text-align: left;
  width: 100%;
  transition: color 0.14s, background 0.14s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E0A143;
  background: #F7F7F7;
  outline: none;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .header-flex {
    gap: 18px;
  }
  .features-grid > div, .values-list > div {
    max-width: 98vw;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.18rem; }
  .header-flex {
    flex-direction: row;
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-flex {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .features-grid, .values-list {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > div, .values-list > div {
    min-width: unset;
    max-width: none;
    width: 100%;
  }
  .hero {
    padding: 42px 0 24px 0;
  }
  .section, section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
  .testimonial-card {
    padding: 14px;
  }
  .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .footer-contact, .footer-nav {
    gap: 9px;
    font-size: 0.96rem;
  }
  .footer-contact span, .footer-contact a {
    font-size: 0.95rem;
  }
}

/* UTILITIES & ANIMATIONS */
.bg-accent {
  background: #284165 !important;
}
.relative { position: relative; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.rounded { border-radius: 12px !important; }

/* HIDE CONTENT ACCESSIBILITY */
.sr-only {
  position: absolute;
  left: -999vw;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* TRANSITIONS FOR INTERACTIVE */
a, .cta-btn, .cookie-btn, .main-nav a, .mobile-nav a, .features-grid > div, .values-list > div {
  transition: background 0.14s, color 0.14s, box-shadow 0.16s, border 0.18s;
}

/* SPACING FOR UL/OL */
ul, ol {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
ul li:not(:last-child), ol li:not(:last-child) {
  margin-bottom: 14px;
  margin-right: 0;
}

/* Misc */
section:not(.hero, .cta) {
  background: #fff;
}

/* Card shadow micro-interaction */
.card:hover, .services-list li:hover, .exkursion-list li:hover {
  box-shadow: 0 6px 24px rgba(40,65,101,0.11);
  border-color: #E0A143;
}

/* Z-INDEX order for menus, cookie banner, overlays */
header, footer { z-index: 10; position: relative; }
main { z-index: 1; position: relative; }

/* ENSURE ADEQUATE SPACING BETWEEN ALL FLEX ITEMS */
.features-grid > div, .values-list > div,
.card-container > .card,
.card-container > div,
.content-grid > *,
.text-image-section > *,
.footer-flex > *,
.services-list li,
.exkursion-list li {
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .content-grid, .features-grid, .values-list {
    flex-direction: row;
  }
  .text-image-section {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* PREVENT ABSOLUTE FOR CARDS: only for icons/badges if ever used */