/* RESET & BASELINE -------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  background: #F7F2E8;
  color: #283336;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #286D3E;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #2561A0;
}
ul, ol {
  padding-left: 1.3em;
  margin-top: 8px;
  margin-bottom: 8px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1B3925;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.22rem;
}
h4 {
  font-size: 1rem;
}
p {
  margin-bottom: 14px;
  max-width: 700px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 8px;
}
.feature-icons {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  align-items: center;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
/* HEADER & NAVIGATION -------------------- */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 16px rgba(40,109,62,0.04);
  position: relative;
  z-index: 10;
}
.header .container, .footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
.main-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  flex-wrap: wrap;
}
.main-nav a {
  color: #286D3E;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:not(.cta):hover,
.main-nav a:not(.cta):focus {
  background: #EEF3ED;
  color: #2561A0;
}
.main-nav a.cta.primary {
  background: #286D3E;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  padding: 10px 26px;
  margin-left: 10px;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 2px 12px rgba(40,109,62,0.10);
}
.main-nav a.cta.primary:hover,
.main-nav a.cta.primary:focus {
  background: #2561A0;
  color: #fff;
}
.main-nav img {
  height: 42px;
  margin-right: 8px;
}
.mobile-menu-toggle {
  display: none;
  background: #F7F2E8;
  border: none;
  color: #286D3E;
  font-size: 2.2rem;
  border-radius: 6px;
  cursor: pointer;
  padding: 2px 14px;
  transition: background .16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ddd;
  color: #2561A0;
}
/* MOBILE NAVIGATION -------------------- */
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  z-index: 1200;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #ffffff;
  padding: 28px 32px;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.91,.06,.69,1.63);
  box-shadow: 0 5px 32px rgba(40,109,62,0.08);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #286D3E;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 6px;
  cursor: pointer;
  transition: color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #2561A0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #286D3E;
  font-size: 1.25rem;
  padding: 14px 0 12px 0;
  font-weight: 500;
  border-bottom: 1px solid #E6E2D9;
  transition: color .18s, padding-left .22s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #2561A0;
  padding-left: 10px;
}
/* HERO -------------------- */
.hero {
  background: linear-gradient(85deg, #F7F2E8 80%, #fff 100%);
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 48px 0 32px 0;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 12px 30px -20px rgba(40,109,62,0.07);
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.4rem;
}
.subheadline {
  font-size: 1.15rem;
  color: #2561A0;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
  margin-top: -8px;
  line-height: 1.35;
}
/* FEATURES & SERVICES -------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  gap: 15px;
  box-shadow: 0 1px 8px rgba(40,109,62,0.06);
  padding: 25px 22px 22px 22px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
  flex: 1 1 220px;
}
.feature-item img {
  height: 36px;
  width: 36px;
  margin-bottom: 0;
}
.feature-item:hover {
  box-shadow: 0 4px 22px rgba(40,109,62,0.13);
  transform: translateY(-3px) scale(1.02);
}
/* SERVICE LIST (Cards) -------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 270px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(40,109,62,0.08);
  gap: 15px;
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .15s;
  flex: 1 1 250px;
}
.service-item img {
  height: 34px;
  width: 34px;
}
.service-item strong {
  color: #286D3E;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}
.service-item:hover {
  box-shadow: 0 6px 26px rgba(40,109,62,0.13);
  transform: translateY(-3px) scale(1.015);
}
/* TESTIMONIALS -------------------- */
.testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px 18px 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(40,109,62,0.09);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 500px;
  color: #1a291c;
  transition: box-shadow .15s;
}
.testimonial-card p {
  margin-bottom: 2px;
  font-size: 1.07rem;
  color: #2A332B;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  color: #2561A0;
  font-weight: 500;
}
.testimonial-card img {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px rgba(40,109,62,0.13);
}
/* USP & INFO LISTS -------------------- */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F7F2E8;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 14px;
}
.usp-list li {
  list-style: disc inside;
}
.next-steps-info {
  background: #E8F1EC;
  border-radius: 8px;
  padding: 14px 16px 14px 32px;
  font-size: 1rem;
  margin-bottom: 16px;
}
.thank-you-message {
  font-size: 1.12rem;
  color: #286D3E;
  margin-bottom: 16px;
}
/* PARK/HIDDEN SPOTS LISTS -------------------- */
.park-list, .hidden-spots-list, .route-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.park-item, .hidden-spots-list .feature-item, .route-overview .feature-item {
  flex: 1 1 230px;
  min-width: 200px;
  margin-bottom: 20px;
}
.park-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(40,109,62,0.06);
  transition: box-shadow .17s;
}
.park-item:hover { box-shadow: 0 3px 14px rgba(40,109,62,0.11); }
/* CONTACT / FOOTER INFO -------------------- */
.contact-summary ul, .contact-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.contact-summary li, .contact-footer li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #286D3E;
}
.contact-summary img, .contact-footer img {
  width: 20px;
  height: 20px;
  opacity: .81;
}
/* BUTTONS -------------------- */
.cta, .btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  text-align: center;
  border-radius: 28px;
  padding: 13px 32px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, color .18s;
  box-shadow: 0 1px 8px rgba(40,109,62,0.08);
}
.cta.primary, .btn.primary {
  background: #286D3E;
  color: #fff;
}
.cta.primary:hover, .btn.primary:hover,
.cta.primary:focus,.btn.primary:focus {
  background: #2561A0;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,97,160,0.13);
}
.cta.secondary, .btn.secondary {
  background: #EEF3ED;
  color: #286D3E;
  border: 1px solid #286D3E;
}
.cta.secondary:hover, .btn.secondary:hover {
  background: #286D3E;
  color: #fff;
}
/* FOOTER -------------------- */
footer {
  width: 100%;
  background: #FFFFFF;
  color: #286D3E;
  box-shadow: 0 -2px 10px rgba(40,109,62,0.05);
  padding: 32px 0 12px 0;
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.footer-nav a {
  color: #2561A0;
  padding: 0 8px 0 8px;
  font-weight: 500;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #286D3E;
  text-decoration: underline;
}
.brand-info span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
}
.contact-footer {
  margin: 14px 0 8px 0;
}
/* COOKIE BANNER -------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -4px 28px rgba(40,109,62,0.10);
  z-index: 1500;
  padding: 16px 19px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  opacity: 1;
  transition: opacity .35s;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  flex: 1;
  color: #2561A0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner .btn, .cookie-banner .cta {
  padding: 9px 18px;
  font-size: 1rem;
  min-width: 114px;
}
.btn.cookie-settings {
  background: #E8F1EC;
  color: #2561A0;
  border: 1px solid #E8F1EC;
}
.btn.cookie-settings:hover {
  background: #2561A0;
  color: #fff;
  border: 1px solid #2561A0;
}
/* COOKIE MODAL -------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1650;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(40,109,62,0.32);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeBG .38s;
}
.cookie-modal-overlay.open { display: flex; }
@keyframes fadeBG {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 430px;
  width: 95vw;
  padding: 32px 22px 24px 22px;
  box-shadow: 0 11px 60px rgba(40,109,62,0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideUpModal .37s;
}
@keyframes slideUpModal {
  from { transform: translateY(75px) scale(.97); } to { transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #EEF3ED;
  border-radius: 9px;
  padding: 12px 12px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #286D3E;
  flex: 1;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: #286D3E;
  width: 18px; height: 18px;
  margin-right: 2px;
}
.cookie-category input[disabled] {
  accent-color: #a0bba8;
}
.cookie-category small {
  color: #2561A0;
  font-size: 0.97rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .btn, .cookie-modal .cta {
  padding: 9px 18px;
  font-size: 1rem;
}
/* TYPOGRAPHY & FORMS -------------------- */
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
}
input[type="text"], input[type="email"], textarea {
  background: #EEF3ED;
  border-radius: 7px;
  border: 1px solid #DDD;
  padding: 9px 12px;
  margin-bottom: 12px;
  transition: border .13s;
}
input:focus, textarea:focus {
  border-color: #286D3E;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 7px;
  display: block;
  color: #286D3E;
}
/* SPACING & FLEXBOX PATTERNS (MANDATORY) -------------------- */
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
/* Responsive/flex-hierarchy, no grid used! */
/* RESPONSIVE DESIGN -------------------- */
@media (max-width: 1000px) {
  .container { max-width: 95vw; }
  .main-nav { flex-wrap: wrap; }
  .service-list, .feature-grid, .park-list, .hidden-spots-list, .route-overview { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 26px;
    top: 18px;
  }
  .hero { padding: 36px 0 28px 0; }
  .hero .container { align-items: flex-start; }
  .feature-grid, .service-list, .park-list, .hidden-spots-list, .route-overview {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item { min-width: 0; }
  .section, section { padding: 32px 5px 0 5px; margin-bottom: 38px; }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .testimonial-slider, .testimonial-card {
    max-width: 100%;
    padding: 18px 9px;
  }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 1.44rem; }
  .section, section { padding: 16px 0 0 0; }
}
/* MICRO-ANIMATIONS & INTERACTIONS -------------------- */
a, .btn, .cta, button {
  transition: background .17s, color .15s, box-shadow .19s, transform .18s;
}
a:active, .btn:active, button:active, .cta:active {
  transform: scale(0.986);
}
.feature-item:active, .service-item:active, .testimonial-card:active {
  transform: scale(.987) translateY(2px);
}
input[type=checkbox]:focus-visible {
  outline: 2px solid #286D3E;
}
::-webkit-input-placeholder { color: #797979; opacity: 0.9; }
::-moz-placeholder { color: #797979; opacity: 0.9; }
:-ms-input-placeholder { color: #797979; opacity: 0.9; }
::placeholder { color: #797979; opacity: 0.92; }
/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  background: #F7F2E8;
}
::-webkit-scrollbar-thumb {
  background: #EEF3ED;
  border-radius: 5px;
}
/* HIDE NON-UI ABSOLUTE POSITIONING --------------- */
.card[style*="position: absolute"] {
  position: static !important;
}
/* UTILITIES -------------------- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.gap-20 { gap: 20px !important; }
.gap-8 { gap: 8px !important; }
/* Z INDEX (MENU, COOKIE, ETC) -------------------- */
header { z-index: 1002; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 1500; }
.cookie-modal-overlay { z-index: 1650; }

/* VISUAL HIERARCHY FOR SCANDINAVIAN_CLEAN ------------- */
section, .section {
  background: #F7F2E800;
  border-radius: 22px;
}
.feature-item, .service-item, .testimonial-card, .park-item {
  border: 1px solid #EEF3ED;
}

/* END OF FILE */
