/* =========================================================
   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,
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;
  vertical-align: baseline;
  font-size: 100%;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  height: 100%;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222;
  background: #FFFFFF;
  height: 100%;
  line-height: 1.6;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #235F49;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7FB069;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}

/* =========================================================
   BRANDING & TYPOGRAPHY
   =========================================================*/
:root {
  --color-primary: #235F49;
  --color-secondary: #FFFFFF;
  --color-accent: #417541;
  --color-brand-accent-light: #D9E5D6;
  --color-brand-accent-dark: #7FB069;
  --color-grey-med: #F2F4F2;
  --color-grey-dark: #273432;
  --color-text: #222;
  --color-light-text: #fff;
  --color-shadow: rgba(35,95,73,0.10);
  --color-error: #D85D5D;
  --color-card-outline: #D9E5D6;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.12; }
h2 { font-size: 2rem; line-height: 1.15; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.12rem; }
}

p, li, blockquote, span, label {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.005em;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
}

blockquote {
  border-left: 4px solid var(--color-brand-accent-dark);
  padding-left: 1em;
  color: var(--color-accent);
  font-size: 1.12em;
  margin: 24px 0;
  font-family: var(--font-display);
  background: var(--color-brand-accent-light);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}

.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  max-width: 740px;
  margin: 0 auto;
}

/* =========================================================
   HEADER, NAVS & LOGO
   =========================================================*/
header {
  background: var(--color-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 20px 14px 20px;
  border-bottom: 2px solid var(--color-card-outline);
  position: relative;
  z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
  height: 52px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 7px 0;
  margin: 0 1px;
  letter-spacing: 0.04em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-accent);
}

/* --- Hide main nav for small screens --- */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}

/* ----------------------------------------------------------------
   HEADER BUTTON (Commencer l’Aventure)
-------------------------------------------------------------------*/
.btn, button.btn {
  font-family: var(--font-display);
  padding: 13px 32px;
  font-size: 1.1rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  border-radius: 30px;
  border: 2px solid var(--color-accent);
  box-shadow: 0 2px 8px var(--color-shadow);
  cursor: pointer;
  transition: background 0.22s, color 0.18s, box-shadow 0.21s, border-color 0.27s;
  margin: 0 10px 0 0;
  outline: none;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
}
.btn-primary, .btn.btn-primary {
  background: var(--color-accent);
  color: var(--color-light-text);
  border: 2px solid var(--color-accent);
}
.btn:hover, .btn:focus {
  background: var(--color-brand-accent-dark);
  color: var(--color-light-text);
  border-color: var(--color-brand-accent-dark);
  box-shadow: 0 4px 18px var(--color-shadow);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: var(--color-light-text);
  border-color: var(--color-primary);
}

/* MARGIN for main header button */
@media (max-width: 1024px) {
  .btn.btn-primary {
    margin-right: 0;
  }
}

/* MOBILE MENU BUTTON (HAMBURGER) */
.mobile-menu-toggle {
  background: var(--color-primary);
  color: var(--color-light-text);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  border: none;
  margin-left: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s, transform 0.18s;
  z-index: 1001;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.08);
}
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .btn.btn-primary {
    display: none;
  }
}

/* MOBILE SLIDE-IN MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-secondary);
  box-shadow: 0 0 24px rgba(35,95,73,0.11);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.81,.07,.27,.94);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  margin: 25px 0 0 24px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 1500;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 44px 32px 0 40px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  padding: 14px 0 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2.5px solid var(--color-accent);
}

/* Overlay effect for mobile menu */
.mobile-menu::before {
  content: '';
  display: none;
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* =========================================================
   HERO SECTIONS
   =========================================================*/
.hero {
  background: var(--color-brand-accent-light);
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 {
  margin-bottom: 18px;
  color: var(--color-primary);
  text-shadow: 0 2px 18px rgba(32,95,73,.08);
  font-size: 2.3rem;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-accent);
  margin-bottom: 24px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 32px 0;
  }
  .hero .content-wrapper {
    padding: 0 6px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
}

/* =========================================================
   FLEX CONTAINERS / LAYOUTS / CARDS / GAPS
   =========================================================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-secondary);
  border-radius: 22px;
  box-shadow: 0 3px 18px var(--color-shadow);
  border: 1.5px solid var(--color-card-outline);
  padding: 32px 24px;
  flex: 1 1 calc(33% - 24px);
  min-width: 285px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  transition: box-shadow 0.21s, transform 0.19s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px var(--color-shadow);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.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) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    min-width: unset;
    width: 100%;
    flex: 1 1 100%;
  }
}

/**** FEATURE ITEMS ****/
.features { /* for .features section ul */
  width: 100%;
}
.features .content-wrapper > ul,
.features .content-wrapper > div,
.pillar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features ul li, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-grey-med);
  border-radius: 18px;
  padding: 24px 18px 22px 18px;
  box-shadow: 0 1.5px 6px var(--color-shadow);
  margin-bottom: 20px;
  min-width: 220px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
}
.features ul li img, .feature-item img {
  width: 30px; height: 30px;
  margin-bottom: 8px;
}
.features h2 {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .features .content-wrapper > ul,
  .pillar-grid {
    flex-direction: column;
    gap: 15px;
  }
}

/**** CARD GRIDS & ACCENT LABELS ****/
.destination-cards, .experience-cards, .recent-posts-grid, .tips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.destination-card, .experience-card, .post-snippet {
  background: var(--color-secondary);
  border-radius: 16px;
  box-shadow: 0 1.5px 9px var(--color-shadow);
  border: 1.5px solid var(--color-card-outline);
  padding: 24px 18px;
  min-width: 230px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform .17s;
  position: relative;
}
.destination-card:hover, .experience-card:hover, .post-snippet:hover {
  box-shadow: 0 7px 22px var(--color-shadow);
  transform: translateY(-3px) scale(1.02);
}
.label-eco {
  display: inline-block;
  background: var(--color-brand-accent-dark);
  color: var(--color-light-text);
  font-size: 0.92rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 11px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

/****** TESTIMONIALS - BOLD CARDS ******/
.testimonials .content-wrapper {
  gap: 22px;
  align-items: center;
}
.testimonials h2 {
  text-align: center;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--color-secondary);
  border-radius: 22px;
  box-shadow: 0 2px 14px var(--color-shadow);
  border: 2px solid var(--color-card-outline);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.13rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.testimonial-meta {
  color: var(--color-accent);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
}
@media (max-width: 700px) {
  .testimonial-card { max-width: 98vw; }
  .testimonials .content-wrapper { gap: 16px; }
}

/****** POPULAR DESTINATIONS & LISTS ******/
.popular-destinations .destinations-list, .blog-list .recent-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.popular-destinations .destinations-list li, .recent-posts-grid .post-snippet {
  background: var(--color-brand-accent-light);
  border-radius: 13px;
  padding: 14px 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.01rem;
  flex: 1 1 220px;
}
.popular-destinations .destinations-list a {
  color: var(--color-primary);
  font-weight: 700;
  transition: color .18s;
}
.popular-destinations .destinations-list a:hover {
  color: var(--color-brand-accent-dark);
}
@media (max-width: 600px) {
  .popular-destinations .destinations-list, .recent-posts-grid {
    flex-direction: column;
    gap: 9px;
  }
}

/**** FILTERS & TAGS ****/
.region-filters,
.thematic-filters,
.category-filters,
.tag-filters {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.region-filters a, .thematic-filters a, .category-filters a, .tag-filters a {
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--color-grey-med);
  border-radius: 9px;
  padding: 7px 18px;
  font-size: 1em;
  border: 2px solid transparent;
  color: var(--color-accent);
  transition: background .19s, border-color .16s, color .19s;
}
.region-filters a:hover, .thematic-filters a:hover, .category-filters a:hover, .tag-filters a:hover,
.region-filters a:focus, .thematic-filters a:focus, .category-filters a:focus, .tag-filters a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
  border-color: var(--color-accent);
}

/* =========================================================
   MISCELLANEOUS LAYOUTS (FAQ, ACCORDION, SHORT BLOCKS)
   =========================================================*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-brand-accent-light);
  border-radius: 15px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 18px 16px;
  margin-bottom: 20px;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--color-primary);
  font-family: var(--font-display);
}
.faq-item p {
  color: #232323;
  margin: 0;
  font-size: 1rem;
}

/**** MAP & CONTACT DETAILS BLOCKS ****/
.contact-details-block, .contact-details-short {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.contact-details-block p, .contact-details-short {
  color: var(--color-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-snippet {
  font-size: 1em;
  color: var(--color-accent);
  background: var(--color-grey-med);
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 10px;
}

/**** NEWSLETTER FORM ****/
.newsletter-signup form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}
.newsletter-signup input[type='email'] {
  padding: 12px 16px;
  border-radius: 18px;
  border: 1.5px solid var(--color-accent);
  font-size: 1rem;
  width: 220px;
  outline: none;
}
.newsletter-signup input[type='email']:focus {
  border-color: var(--color-primary);
  background: #f7fff6;
}
.newsletter-signup label {
  font-weight: 700;
  font-size: 1em;
  margin-right: 8px;
}
.privacy-reminder {
  color: #555;
  font-size: 0.98em;
  margin-top: 7px;
}
.privacy-reminder a {
  color: var(--color-accent);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .newsletter-signup form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .newsletter-signup input[type='email'] {
    width: 100%;
  }
}

/* =========================================================
   FOOTER
   =========================================================*/
footer {
  background: var(--color-primary);
  color: #ffffff;
  padding: 36px 0 0 0;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.005em;
  margin-top: 80px;
}
footer span {
  color: white !important;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 18px;
}
.footer-nav a {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.92;
  padding: 0 4px;
  transition: color 0.17s, opacity 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-brand-accent-dark);
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  margin-bottom: 20px;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 5px;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-social a {
  opacity: 0.83;
  transition: opacity 0.16s;
}
.footer-social a:hover, .footer-social a:focus {
  opacity: 1;
}
.footer-social img {
  width: 28px;
  height: 28px;
}
.footer-copy {
  text-align: center;
  padding: 9px 0 18px 0;
  background: transparent;
  font-size: 0.98rem;
  opacity: 0.9;
  border-top: 1.5px solid #548c6b33;
}
@media (max-width: 670px) {
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
  footer {
    font-size: 0.95rem;
  }
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
   =========================================================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-brand-accent-dark);
  color: var(--color-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px 18px 16px 18px;
  box-shadow: 0 -1.5px 24px rgba(35,95,49,0.08);
  z-index: 1300;
  font-size: 1.02rem;
  animation: fadeInUp .5s ease;
}
.cookie-banner p {
  margin: 0;
  color: var(--color-secondary);
  font-weight: 500;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 18px;
  margin: 0 5px;
  border: none;
  outline: none;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-banner .btn-accept {
  background: var(--color-accent);
  color: var(--color-light-text);
  border: 2px solid var(--color-secondary);
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: var(--color-primary);
  color: var(--color-light-text);
}
.cookie-banner .btn-reject {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: var(--color-brand-accent-dark);
  color: var(--color-light-text);
}
.cookie-banner .btn-settings {
  background: transparent;
  color: var(--color-light-text);
  border: 2px solid var(--color-light-text);
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    font-size: 0.98rem;
    padding: 14px 8px 13px 8px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,65,50,0.40);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--color-secondary);
  border-radius: 17px;
  box-shadow: 0 4px 36px rgba(35,95,73,0.13);
  max-width: 460px;
  padding: 36px 26px 26px 26px;
  color: var(--color-text);
  font-size: 1.08em;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 300px;
  animation: modalPopIn 0.4s;
}
@keyframes modalPopIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 7px;
  font-size: 1.17em;
  font-weight: 700;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 500;
  color: var(--color-text);
}
.cookie-modal-content label {
  display: flex; align-items: center; cursor: pointer;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 20px; height: 20px;
  margin-right: 9px;
}
.cookie-modal-content .desc {
  color: #616161;
  font-size: 0.98em;
  font-weight: 400;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.85em;
  color: var(--color-accent);
  cursor: pointer;
  padding: 3px 5px;
  transition: color 0.18s;
}
.cookie-modal-close:hover {
  color: var(--color-primary);
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 15px;
  font-size: 1.04em;
  padding: 9px 20px;
  cursor: pointer;
  border: none;
  background: var(--color-accent);
  color: var(--color-light-text);
  transition: background 0.16s, color 0.14s;
}
.cookie-modal-actions button.btn-save {
  background: var(--color-primary);
}
.cookie-modal-actions button.btn-cancel {
  background: var(--color-card-outline);
  color: var(--color-text);
}
.cookie-modal-actions button:hover {
  filter: brightness(1.13);
}
@media (max-width: 500px) {
  .cookie-modal-content {
    max-width: 94vw;
    min-width: unset;
    padding: 17px 6vw 16px 6vw;
  }
}

/* =========================================================
   GENERAL MOBILE RESPONSIVE ADJUSTMENTS
   =========================================================*/
@media (max-width: 1024px) {
  html { font-size: 15px; }
  .container { padding: 0 8px; }
}
@media (max-width: 900px) {
  html { font-size: 14px; }
}
@media (max-width: 680px) {
  html { font-size: 13px; }
  .container { padding: 0 2px; }
}

/* =========================================================
   ACCESSIBILITY: FOCUS STATES
   =========================================================*/
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.button:focus {
  outline: 2px solid var(--color-accent) !important;
}

/* =========================================================
   GEOMETRIC DECORATIVE ELEMENTS (BOLD)
   =========================================================*/
.hero::after {
  content: '';
  display: block;
  width: 70px; height: 70px;
  border-radius: 18px 70px 70px 18px;
  background: var(--color-accent);
  opacity: 0.08;
  position: absolute;
  bottom: 7px;
  right: 7vw;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero::after { display: none; }
}

/* =========================================================
   COLOR UTILITIES
   =========================================================*/
.bg-primary { background: var(--color-primary) !important; color: #fff; }
.bg-accent { background: var(--color-accent) !important; color: #fff; }
.bg-secondary { background: var(--color-secondary) !important; color: var(--color-primary); }
.text-primary { color: var(--color-primary) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-light { color: #fff !important; }

/* =========================================================
   PRINT STYLE (for eco tips guide)
   =========================================================*/
@media print {
  body {
    background: #fff;
    color: #222;
  }
  .header, .footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}
