/* === CSS RESET & BASE === */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FAFAF7;
  color: #183153;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; }

:root {
  --brand-primary: #183153;
  --brand-secondary: #F6E6B4;
  --brand-accent: #48A9A6;
  --brand-bg: #FAFAF7;
  --brand-surface: #FFFFFF;
  --shadow-light: 0 2px 12px rgba(24, 49, 83, 0.07);
  --shadow-card: 0 5px 26px rgba(24, 49, 83, 0.10);
  --border-radius: 16px;
  --radius-btn: 8px;
  --text-dark: #183153;
  --text-light: #FFFFFF;
  --hr-light: #EDEBE6;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.3rem; margin-top: 12px;}
h2 { font-size: 1.7rem;  margin-top: 32px;}
h3 { font-size: 1.15rem;  margin-top: 24px;}
h4 { font-size: 1.05rem;  margin-top: 18px;}
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }

p, li, .price, .subtitle {
  color: var(--text-dark);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 1.18rem;
  line-height: 1.55;
  margin-bottom: 22px;
  color: var(--brand-accent);
}
strong, b { font-weight: 600; }

/* === SCANDINAVIAN CLEAN COMPONENTS === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-surface);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-card);
  padding: 32px 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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;
  background: var(--brand-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 280px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--brand-surface);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-light);
  padding: 22px 16px 16px 16px;
  min-width: 210px;
  flex: 1 1 235px;
  margin-bottom: 20px;
  transition: transform 0.16s cubic-bezier(.26,.79,.91,.37), box-shadow 0.23s;
}
.feature-item:hover,
.region-item:hover, .step-item:hover {
  box-shadow: 0 10px 32px rgba(24,49,83,.15);
  transform: translateY(-4px) scale(1.025);
}

/**** === HEADER & NAVIGATION === ****/
header {
  background: var(--brand-surface);
  box-shadow: 0 2px 10px rgba(24,49,83,0.05);
  position: sticky;
  top: 0; z-index: 51;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px 20px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 18px;
  flex: 1 1 auto;
  justify-content: flex-start;
  align-items: center;
  margin-left: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  color: var(--brand-primary);
  padding: 4px 0;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-accent);
}
.cta.primary {
  background: var(--brand-accent);
  color: var(--text-light);
  padding: 11px 28px;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  border: none;
  box-shadow: var(--shadow-light);
  transition: background 0.2s, transform 0.11s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  transform: translateY(-2px) scale(1.012);
}
.cta.secondary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 8px 24px;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.2s, color 0.19s, transform 0.11s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  transform: translateY(-2px) scale(1.008);
}
.button, button, .btn {
  border: none;
  background: var(--brand-accent);
  color: var(--text-light);
  border-radius: var(--radius-btn);
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  transition: background 0.18s, color 0.13s, transform 0.13s;
}
.button:hover, button:hover, .btn:hover {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  transform: translateY(-1.5px) scale(1.008);
}

/**** === MOBILE MENU === ****/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--brand-primary);
  background: none;
  border: none;
  height: 44px;
  width: 44px;
  cursor: pointer;
  margin-left: 16px;
  border-radius: 6px;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,49,83,0.85);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.71,.25,.18,.89);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 2.1rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 2100;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 90px 32px 32px 32px;
  width: 100vw;
  max-width: 360px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  background: none;
  padding: 15px 4px 15px 0;
  border-radius: 7px;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  background: rgba(246,230,180,0.08);
}

/**** === HERO SECTIONS === ****/
.hero {
  background: var(--brand-secondary);
  padding: 60px 0 50px 0;
  display: flex;
  align-items: center;
  min-height: 298px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  text-align: center;
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 36px 16px 30px 16px;
  box-shadow: none;
}
.hero h1 { color: var(--brand-primary); }

/**** === FEATURES === ****/
.features, .unique-features {
  margin-bottom: 60px;
}
.features .container, .unique-features .container { flex-direction: column; }
.feature-grid, .step-grid, .culinary-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  justify-content: flex-start;
}
.feature-grid { margin-bottom: 7px; }
.step-grid, .culinary-regions {
  justify-content: space-between;
}
.step-item, .region-item {
  background: var(--brand-surface);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-light);
  padding: 22px 14px 16px 14px;
  margin-bottom: 20px;
  min-width: 190px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.23s, transform 0.15s;
}
.step-item img, .region-item img, .feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  filter: grayscale(12%) saturate(85%);
}

/**** === SERVICES & LISTS === ****/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 28px 0;
}
.service-item {
  background: var(--brand-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 22px 16px 15px 16px;
  min-width: 210px;
  flex: 1 1 245px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.25s, transform 0.16s;
}
.service-item:hover {
  box-shadow: 0 13px 36px rgba(24,49,83,0.12);
  transform: translateY(-3px) scale(1.018);
}
.price {
  color: var(--brand-primary);
  font-size: 1.09rem;
  font-weight: 600;
  margin-top: 4px;
}

/**** === CARDS, TESTIMONIALS, RATINGS === ****/
.testimonials { margin-bottom: 60px; }
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 16px 0;
}
.testimonial-card {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: var(--border-radius);
  min-width: 260px;
  max-width: 410px;
  flex: 1 1 338px;
  box-shadow: var(--shadow-card);
  padding: 28px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.12s;
}
.testimonial-card .quote {
  font-style: italic;
  color: var(--brand-primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.testimonial-card .author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--brand-primary);
  font-size: 1rem;
  margin-top: 4px;
}
.ratings-summary {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-align: left;
  background: var(--brand-surface);
  border-radius: 8px;
  padding: 15px 22px;
  box-shadow: var(--shadow-light);
  margin-top: 19px;
  margin-bottom: 6px;
}

/**** === ABOUT / LEGAL / TEXT AREA === ****/
.about-home, .about, .unique-features, .legal, .contact, .contact-area, .next-steps-details {
  margin-bottom: 60px;
  background: var(--brand-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 40px 24px 25px 24px;
  display: flex;
  flex-direction: column;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 2px;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 5px;
  list-style: disc inside;
  font-size: 1rem;
}
.text-section a { color: var(--brand-accent); text-decoration: underline dotted; }
.text-section a:hover { color: var(--brand-primary); text-decoration: underline; }

/**** === CONTACT AREA === ****/
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-top: 15px;
}
.contact-wrapper .text-section {
  min-width: 190px;
  max-width: 430px;
  margin-bottom: 8px;
}

/**** === CTA SECTION === ****/
.cta {
  background: var(--brand-accent);
  color: var(--text-light);
  border-radius: var(--border-radius);
  text-align: center;
  padding: 60px 12px 40px 12px;
  box-shadow: 0 6px 20px rgba(72,169,166,0.08);
  margin-bottom: 65px;
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 19px;
}
.cta h2 { color: var(--brand-secondary); }
.cta p { color: var(--brand-surface); }

/**** === INGREDIENTS/REGIONE-SPECIFIC/SAFE ICONS === ****/
.ingredient-highlights,
.food-experiences, .trip-highlights {
  margin: 32px 0 22px 0;
}
.ingredient-highlights ul,
.food-experiences ul, .trip-highlights ul {
  list-style: circle inside;
  color: var(--brand-primary);
}
.safe-travel-icons, .service-icons {
  display: flex;
  gap: 22px;
  margin: 32px 0 0 0;
  align-items: center;
}
.safe-travel-icons img, .service-icons img {
  width: 40px;
  height: 40px;
}

/**** === FOOTER === ****/
footer {
  background: var(--brand-surface);
  border-top: 1px solid var(--hr-light);
  padding: 24px 0 8px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--brand-primary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 1px 0;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-accent);
}
.footer-info {
  color: #AFAFA7;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 5px;
}

/**** === COOKIE CONSENT BANNER === ****/
.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 98vw;
  max-width: 560px;
  background: var(--brand-surface);
  color: var(--brand-primary);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -2px 21px rgba(24,49,83,0.17);
  padding: 22px 18px 17px 18px;
  z-index: 2140;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: fadein-slideup 0.4s;
}
@keyframes fadein-slideup {
  from { opacity: 0; transform: translate(-50%, 20px);}
  to   { opacity: 1; transform: translate(-50%, 0);}
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 8px;
  background: var(--brand-accent);
  color: var(--text-light);
  box-shadow: var(--shadow-light);
  border: none;
}
.cookie-banner .btn.reject {
  background: #ECEAE4;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.cookie-banner .btn.settings {
  background: none;
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus {
  filter: brightness(0.98);
  box-shadow: 0 3px 16px rgba(72,169,166,.11);
  background: var(--brand-primary);
  color: var(--brand-secondary);
}
.cookie-banner .btn.reject:hover, .cookie-banner .btn.reject:focus {
  background: #E6DCC7;
  color: var(--brand-accent);
}
.cookie-banner .btn.settings:hover, .cookie-banner .btn.settings:focus {
  background: var(--brand-accent);
  color: var(--brand-surface);
}

/**** === COOKIE PREFERENCES MODAL === ****/
.cookie-modal-overlay {
  position: fixed;
  z-index: 2150;
  inset: 0;
  background: rgba(24,49,83,0.78);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--brand-surface);
  color: var(--brand-primary);
  border-radius: 16px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 10px 42px rgba(24,49,83,0.13);
  padding: 34px 30px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadein-modal 0.33s;
  position: relative;
}
@keyframes fadein-modal {
  from { opacity: 0; transform: scale(0.96);}
  to   { opacity: 1; transform: scale(1);}
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 24px;
  font-size: 1.6rem;
  background: none;
  color: var(--brand-accent);
  border: none;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 5px;
  transition: background 0.13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--brand-secondary);
}
.cookie-modal h2 {
  margin-top: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  padding: 7px 0 7px 0;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-accent);
  border-radius: 6px;
  margin-right: 5px;
}
.cookie-category.essential label {
  color: var(--brand-primary);
  opacity: 0.8;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/**** === RESPONSIVE: MOBILE FIRST === ****/
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  header .container { flex-wrap: wrap; }
  .main-nav { gap: 10px; }
  .feature-grid, .service-list, .step-grid, .culinary-regions, .testimonial-list {
    gap: 16px;
  }
  .feature-item, .service-item, .step-item, .region-item {
    min-width: 180px;
    max-width: 250px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .cta.primary,
  .footer-nav {
    display: none !important;
  }
  .mobile-menu-toggle { display: flex; }
  .feature-grid, .step-grid, .culinary-regions, .testimonial-list, .service-list, .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-item, .step-item, .region-item {
    min-width: 98vw;
    max-width: 98vw;
    box-sizing: border-box;
  }
  .testimonial-card {
    min-width: 90vw; max-width: 99vw; box-sizing: border-box;
  }
}
@media (max-width: 570px) {
  .container, .section {
    padding: 0 7px;
  }
  .hero {
    padding: 32px 0 25px 0;
    min-height: 144px;
  }
  .about-home, .about, .unique-features, .legal, .contact, .contact-area, .next-steps-details, .section {
    padding: 22px 6px 12px 6px;
    margin-bottom: 36px;
  }
  .cta { padding: 28px 7px 25px 7px; }
  .cookie-banner { max-width: 99vw; padding: 16px 5px 13px 6px; font-size: 0.98rem; }
  .cookie-modal { padding: 19px 7px 13px 10px; }
}
.text-image-section, .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section, .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
  }
}

/**** === SCROLLBAR & MISC MINI STYLE === ****/
::-webkit-scrollbar {
  width: 10px; background: #E1E1E1;
}
::-webkit-scrollbar-thumb {
  background: #CBD3DE; border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #A9B7C8;
}

hr {
  border: none;
  border-top: 1px solid var(--hr-light);
  margin: 28px 0;
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
a, button, .cta, .service-item, .feature-item, .region-item, .step-item, .testimonial-card {
  transition: box-shadow 0.22s, background 0.17s, transform 0.12s, color 0.18s;
}
a:focus, button:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* === Z-INDEX LAYERING === */
header { z-index: 51; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 2140; }
.cookie-modal-overlay { z-index: 2150; }

/* === END CSS === */
