/* --- CSS RESET & BASE STYLES --- */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F6E8D6;
  color: #2F2E2C;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

ul, ol {
  list-style: none;
}
a {
  color: #346645;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #225031;
  text-decoration: underline;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  color: #1C4669;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  color: #346645;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h3 {
  font-size: 1.25rem;
  color: #1C4669;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  color: #346645;
  margin-bottom: 8px;
}

p, li, label, input, textarea {
  font-size: 1rem;
  color: #2F2E2C;
}
.subheadline {
  color: #376856;
  font-size: 1.125rem;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: .1px;
}
strong {
  color: #346645;
}
small {
  font-size: 0.9rem;
  color: #6C7169;
}

/* --- LAYOUT SIZING --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(52, 90, 60, 0.04);
}

@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 32px;
    border-radius: 14px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #F6E8D6;
  border-bottom: 1.5px solid #d7cfb9;
  box-shadow: 0 2px 12px rgba(60,90,60,0.025);
  position: relative;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
header img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #254a34;
  font-weight: 500;
  padding: 8px 8px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #eae5d9;
  color: #1C4669;
}
.cta-button {
  background: #346645;
  color: #fff;
  border-radius: 28px;
  padding: 8px 24px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(52,102,69,0.08);
  margin-left: 12px;
  cursor: pointer;
  outline: none;
  border: none;
  display: inline-block;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #225031;
  color: #fff;
  box-shadow: 0 6px 14px rgba(52,102,69,0.13);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #254a34;
  cursor: pointer;
  margin-left: 16px;
  border-radius: 50%;
  padding: 4px 12px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #eae5d9;
}

/* --- Mobile Navigation --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,80,49,0.96);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.75,0,.34,1) 0s;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  margin: 24px 28px 8px 0;
  padding: 2px 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #3e745a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  padding: 10px 0;
  transition: background 0.15s, color 0.15s;
  border-radius: 6px;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #225031;
  color: #F6E8D6;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO/SECTION STYLES --- */
.hero, .hero-marinas, .routes-hero, .tips-hero, .blog-hero, .kontakt-hero, .thank-you-section {
  background: #E1EDDF url('../assets/bg-organic.svg') no-repeat right bottom;
  background-size: auto 70%;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 24px rgba(84,104,82,0.09);
  padding-top: 44px;
  padding-bottom: 36px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .hero, .hero-marinas, .routes-hero, .tips-hero, .blog-hero, .kontakt-hero, .thank-you-section {
    border-radius: 0 0 16px 16px;
    padding-top: 24px;
    padding-bottom: 16px;
    margin-bottom: 32px;
    background-size: auto 40%;
    background-position: right -50px bottom;
  }
}

/* --- FEATURES (nature_organic style) --- */
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.feature-grid {
  margin-top: 18px;
  width: 100%;
  padding: 0;
}
.feature-grid li {
  background: #f7faee;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(90,120,75,0.07);
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 330px;
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.17s;
}
.feature-grid li img {
  height: 38px;
  width: 38px;
}
.feature-grid li:hover {
  box-shadow: 0 8px 30px rgba(52,102,69,0.15);
  transform: translateY(-6px) scale(1.025);
}

/* --- CARD LAYOUTS & GENERAL CARDS --- */
.card-container, .card-grid, .tip-cards, .blog-list .content-wrapper, .newsletter-blog .latest-articles ul, .faq-list, .routes-list .content-wrapper, .tips-grid .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .tip-card, .route-card, .blog-card {
  background: #f7faee;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(90,120,75,0.08);
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.18s, transform 0.15s;
  position: relative;
}
.card:hover, .tip-card:hover, .route-card:hover, .blog-card:hover {
  box-shadow: 0 12px 36px rgba(52,102,69,0.16), 0 1.4px 5px rgba(34,80,49,0.07);
  transform: translateY(-3px) scale(1.017);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- TESTIMONIALS --- */
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #204c2b;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 3px 18px rgba(52,102,69,0.09);
  margin-bottom: 20px;
  position: relative;
  font-size: 1.13rem;
  font-style: italic;
}
.testimonial-person {
  font-size: 1.04rem;
  color: #254a34;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: auto;
}
.star-rating {
  font-size: 1.07rem;
  color: #E5B965;
  margin-left: 16px;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
  }
}

/* --- CARDS GRID RESPONSIVE --- */
@media (max-width: 1024px) {
  .feature-grid, .card-container, .card-grid, .tip-cards, .blog-list .content-wrapper, .faq-list, .routes-list .content-wrapper, .tips-grid .content-wrapper {
    gap: 16px;
  }
  .feature-grid li, .card, .tip-card, .route-card, .blog-card {
    min-width: 140px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .card-grid, .tip-cards, .blog-list .content-wrapper, .faq-list, .routes-list .content-wrapper, .tips-grid .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
}

/* --- TEXT/IMAGE & FLEX UTILS --- */
.text-image-section, .marina-overview, .kontakt-info .content-wrapper, .kontakt-map .content-wrapper, .about .content-wrapper, .values .content-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section, .marina-overview, .kontakt-info .content-wrapper, .kontakt-map .content-wrapper, .about .content-wrapper, .values .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* --- FORMS --- */
form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 18px 0 8px 0;
}
input[type="email"], input[type="search"] {
  padding: 10px 16px;
  border-radius: 20px;
  border: 1.5px solid #CBDAB6;
  box-shadow: 0 1px 4px rgba(60,90,60,0.03);
  background: #f7faee;
  color: #254a34;
  font-size: 1rem;
  width: 220px;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: border 0.15s, box-shadow 0.12s;
}
input[type="email"]:focus, input[type="search"]:focus {
  border: 1.5px solid #346645;
  outline: none;
  box-shadow: 0 2px 10px #bdd4b7;
  background: #fff;
}
button[type="submit"], .newsletter button, .cookie-consent-btn, .cookie-modal .close-btn {
  background: #346645;
  color: #fff;
  border-radius: 22px;
  padding: 10px 22px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, transform 0.13s;
  box-shadow: 0 2px 8px rgba(52,102,69,0.09);
}
button[type="submit"]:hover, .newsletter button:hover, .cookie-consent-btn:hover, .cookie-modal .close-btn:hover {
  background: #225031;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

label {
  color: #346645;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 480px) {
  form {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  input[type="email"], input[type="search"] {
    width: 95%;
    max-width: 95%;
  }
}

/* --- FOOTER --- */
footer {
  background: #E1EDDF;
  margin-top: 80px;
  font-size: 1rem;
  color: #31522A;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -4px 28px rgba(52,102,69,0.05);
  padding: 36px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex: 1 1 320px;
}
.footer-nav a {
  color: #234820;
  opacity: 0.85;
  font-size: 1rem;
  transition: color 0.15s, opacity 0.17s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #225031;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 270px;
}
.footer-contact img {
  vertical-align: middle;
  height: 22px;
  width: auto;
  margin-right: 5px;
}

@media (max-width: 1000px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    padding: 0 0;
  }
  footer {
    border-radius: 16px 16px 0 0;
  }
}

/* --- ORGANIC/NATURE ACCENTS --- */
.section, .features, .feature-grid li, .card, .tip-card, .route-card, .blog-card, .testimonial-card {
  background: #f7faee;
  border-radius: 20px;
  box-shadow: 0 1.5px 8px rgba(90,120,75,0.06);
  position: relative;
}
/* Example decorative swirl accent */
.section:before, .features:before, .newsletter:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  background: url('../assets/bg-leaf-accent.svg') no-repeat top right;
  background-size: 120px auto;
  width: 120px;
  height: 60px;
  top: -25px;
  right: 0;
  opacity: 0.09;
  pointer-events: none;
}
@media (max-width: 768px) {
  .section:before, .features:before, .newsletter:before {
    background-size: 68px auto;
    width: 68px;
    height: 34px;
    top: -11px;
  }
}

/* --- FAQ LIST --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 22px 0 0 0;
}
.faq-list li h3 {
  font-size: 1.05rem;
  color: #346645;
  font-weight: 700;
}
.faq-list li p {
  font-size: 1rem;
  color: #2F2E2C;
}

/* --- BLOG SEARCH --- */
.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

/* --- LEGAL SECTION --- */
.legal-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(90,120,75,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 20px;
}
.text-section h2 {
  margin-top: 26px;
}
.text-section ul {
  margin: 10px 0 10px 0;
  padding-left: 25px;
  list-style: disc;
  color: #346645;
}
.text-section li {
  padding-bottom: 5px;
  color: #2F2E2C;
}

/* --- ORGANIC BUTTONS, INTERACTIVE ELEMENTS --- */
button, .cta-button, .cookie-consent-btn, .cookie-modal .close-btn {
  border: none;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  border-radius: 28px;
  background: #346645;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(52,102,69,0.08);
  transition: background 0.15s, box-shadow 0.13s, transform 0.12s;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.6px;
}
button:hover, .cta-button:hover, .cookie-consent-btn:hover, .cookie-modal .close-btn:hover {
  background: #225031;
  box-shadow: 0 6px 24px rgba(52,102,69,0.18);
  color: #fff;
  transform: translateY(-2px);
}

/* --- ORGANIC ACCENTS --- */
hr {
  border: 0;
  border-top: 2px solid #dee8c9;
  margin: 28px 0;
  border-radius: 2px;
}

/* --- Newsletter/Newsletter-Blog --- */
.newsletter, .newsletter-blog {
  background: #E1EDDF;
  border-radius: 20px;
  padding: 36px 18px 28px 18px;
  box-shadow: 0 2px 14px rgba(90,120,75,0.05);
  margin-bottom: 60px;
}
.newsletter form, .newsletter-blog form {
  gap: 10px;
}
.newsletter small, .newsletter-blog small {
  display: block;
  margin-top: 10px;
  color: #6C7169;
}

/* --- MARINA-OVERVIEW TABS --- */
.continent-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.continent-tabs li a {
  background: #D4E3C9;
  color: #234820;
  border-radius: 16px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 8px;
}
.continent-tabs li a:hover, .continent-tabs li a:focus {
  background: #376856;
  color: #fff;
}

/* --- MAP EMBED --- */
.map-embed {
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(90,120,75,0.09);
  overflow: hidden;
  margin-top: 12px;
  background: #fff;
  padding: 10px;
  width: 100%;
  max-width: 375px;
}

/* --- RESPONSIVE CLASSES --- */
@media (max-width: 800px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 1.3rem;
  }
  .footer-nav {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.11rem;
  }
  .cta-button, button, .cookie-consent-btn, .cookie-modal .close-btn {
    font-size: 0.97rem;
    padding: 9px 14px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fafff6;
  color: #234820;
  box-shadow: 0 -2px 18px rgba(52,102,69,0.09);
  padding: 22px 8px 18px 8px;
  z-index: 9999;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1rem;
  border-radius: 14px 14px 0 0;
  transition: transform 0.3s cubic-bezier(.87,.04,.36,1) 0s;
  opacity: 1;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  flex: 1 1 240px;
  margin-right: 18px;
  margin-bottom: 0;
  color: #254a34;
}
.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-consent-btn {
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 20px;
  font-weight: 700;
  background: #346645;
  color: #fff;
  border: none;
  transition: background 0.15s, color 0.13s;
}
.cookie-consent-btn.reject {
  background: #B25B2B;
  color: #fff;
}
.cookie-consent-btn.reject:hover, .cookie-consent-btn.reject:focus {
  background: #893e17;
  color: #fff;
}
.cookie-consent-btn.settings {
  background: #E9E3D0;
  color: #254a34;
  border: 1px solid #CBDAB6;
}
.cookie-consent-btn.settings:hover, .cookie-consent-btn.settings:focus {
  background: #ddebcf;
  color: #234820;
}
@media (max-width: 480px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 10px;
    padding: 16px 4px 14px 4px;
    font-size: 0.96rem;
    border-radius: 8px 8px 0 0;
  }
  .cookie-consent-banner p {
    margin-right: 0;
    text-align: left;
  }
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 80, 49, 0.82);
  transition: opacity 0.26s;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #234820;
  border-radius: 18px;
  max-width: 390px;
  width: 94vw;
  padding: 28px 28px 20px 28px;
  box-shadow: 0 7px 32px rgba(52,102,69,0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.7rem;
  background: #E9E3D0;
  color: #254a34;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #254a34;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
}
.cookie-modal-category label {
  flex: 1 1 180px;
  font-size: 1rem;
  color: #346645;
  font-weight: 600;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #346645;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #CBDAB6;
  cursor: pointer;
}
.cookie-modal-category input[type="checkbox"][disabled] {
  accent-color: #babdb8;
  cursor: not-allowed;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 13px 9px 12px 9px;
    min-width: 85vw;
    font-size: 0.98rem;
  }
  .cookie-modal-title {
    font-size: 1.08rem;
  }
}

/* --- UTILITIES --- */
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}

/* --- ANIMATIONS --- */
@keyframes organicFadeIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.section, .features, .feature-grid li, .testimonial-card, .newsletter, .newsletter-blog, .legal-section, .tip-card, .route-card, .blog-card {
  animation: organicFadeIn 1.1s cubic-bezier(.72,0,.46,1) both;
}

/* --- FOCUS STATE (Accessibility) --- */
a:focus, button:focus, input:focus, .cta-button:focus {
  outline: 2px solid #346645;
  outline-offset: 2px;
  background: #ddebcf;
}

/* --- Z-INDEX MANAGEMENT --- */
header, .mobile-menu, .cookie-consent-banner, .cookie-modal {
  z-index: 999;
}
