/* CSS RESET & BASE TYPOGRAPHY ================================================== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F5F1;
  color: #21456E;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #21456E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B53A00;
  text-decoration: underline;
}

/* SCANDINAVIAN CLEAN DESIGN SYSTEM ============================================= */
:root {
  --primary-color: #21456E;
  --secondary-color: #F6F5F1;
  --accent-color: #B53A00;
  --card-bg: #FFFFFF;
  --card-shadow: 0 2px 8px rgba(60,52,36,0.06), 0 1.5px 4px rgba(180,175,140,0.07);
  --neutral-gray: #DFE4E8;
  --light-gray: #EDEDEA;
  --focus: #C1481E;
  --radius: 12px;
  --box-shadow: 0 2px 8px rgba(33,69,110,0.07);
  --header-height: 68px;
}

/* LAYOUT CLASSES =============================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
header {
  background: var(--secondary-color);
  border-bottom: 1px solid var(--neutral-gray);
  box-shadow: 0 2px 8px rgba(33,69,110,0.03);
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-height);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  max-width: 770px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX LAYOUT PATTERNS (MANDATORY) ========================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
.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: #FFFFFF;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(33,69,110,0.06);
  margin-bottom: 24px;
  border: 1px solid var(--neutral-gray);
  flex-direction: column;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SCANDINAVIAN STYLES – HEROES, BUTTONS, HEADINGS =============================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 700;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.13;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  line-height: 1.28;
}
h4 {
  font-size: 1.08rem;
}
.subheadline {
  font-size: 1.13rem;
  color: #466686;
  max-width: 650px;
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.6;
}

p, li, blockquote, cite {
  font-size: 1rem;
  font-family: 'Source Sans Pro', sans-serif;
  color: #21456E;
  line-height: 1.6;
  font-weight: 400;
}

blockquote {
  font-style: italic;
  color: #325695;
  margin-bottom: 4px;
}
cite {
  display: block;
  font-size: 0.97rem;
  font-weight: 500;
  color: #818b99;
  margin-bottom: 0;
}

ul, ol {
  padding-left: 26px;
  margin-bottom: 14px;
  list-style: disc;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* BUTTONS (CTA, PRIMARY, SECONDARY) ============================================ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 12px 30px;
  margin-top: 8px;
  margin-bottom: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(33,69,110,0.08);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.14s;
}
.cta.primary {
  background: var(--primary-color);
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(177,86,0,0.12);
}
.cta.secondary {
  background: #FFF;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--neutral-gray);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

button {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  padding: 10px 22px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(33,69,110,0.05);
  transition: background 0.17s, color 0.12s, box-shadow 0.18s;
}
button:hover, button:focus {
  background: var(--accent-color);
  color: #fff;
  outline: none;
}

/* NAVIGATION =================================================================== */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  margin-left: 20px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.01rem;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.12s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent-color);
  background: var(--secondary-color);
}

header img {
  height: 44px;
  width: auto;
  margin-right: 0;
  vertical-align: middle;
}

/* MOBILE MENU ======================================================== */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary-color);
  cursor: pointer;
  display: none;
  align-items: center;
  padding: 7px 10px;
  z-index: 31; /* Above content but under the mobile menu */
  margin-left: 16px;
  transition: color 0.13s, background 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent-color);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0 4px 44px 0 rgba(33,69,110,0.2);
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1005;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.66,.02,.33,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent-color);
  margin: 16px 20px 10px 0;
  cursor: pointer;
}

.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin-left: 36px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary-color);
  padding: 12px 0;
  margin-bottom: 4px;
  border-radius: 8px;
  transition: color 0.16s, background 0.1s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary-color);
  color: var(--accent-color);
}
/* MOBILE NAV: FOCUS STATE */
.mobile-nav a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 11px;
  }
  header .container {
    gap: 14px;
  }
}

@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 851px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO & FEATURES SECTIONS ===================================================== */
section {
  background: var(--secondary-color);
  border-radius: var(--radius);
  margin-bottom: 36px;
  padding: 40px 0 40px 0;
  box-shadow: none;
}
.features-grid, .recipes-grid, .blog-teaser-group, .blog-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div,
.recipes-grid > div,
.blog-teaser-group > div,
.blog-listings > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 20px 24px 16px 24px;
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.18s, transform 0.14s;
  border: 1px solid var(--neutral-gray);
}
.features-grid > div:hover,
.recipes-grid > div:hover,
.blog-teaser-group > div:hover,
.blog-listings > div:hover {
  box-shadow: 0 6px 30px rgba(33,69,110,0.10);
  transform: translateY(-3px) scale(1.015);
}
.features-grid img {
  height: 46px;
  width: auto;
  margin-bottom: 3px;
}

.category-navigation, .topic-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.category-navigation a, .topic-filters a {
  padding: 3px 12px;
  border-radius: 8px;
  background: var(--neutral-gray);
  margin-right: 6px;
  color: var(--primary-color);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  transition: background 0.14s, color 0.11s;
}
.category-navigation a:hover, .topic-filters a:hover {
  background: var(--accent-color);
  color: #fff;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 18px 22px;
  margin-bottom: 20px;
  border: 1px solid var(--neutral-gray);
}
.filter-options ul {
  display: flex;
  flex-direction: row;
  gap: 28px;
  padding-left: 0;
}
.filter-options li {
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}
.filter-options b {
  background: var(--neutral-gray);
  border-radius: 6px;
  padding: 1px 9px;
  margin-left: 4px;
  font-size: 0.98em;
  font-weight: 500;
  color: var(--primary-color);
}
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.search-bar input {
  border: 1px solid var(--neutral-gray);
  background: var(--secondary-color);
  border-radius: 6px;
  font-size: 1em;
  padding: 7px 15px;
  color: var(--primary-color);
  font-family: inherit;
  outline: none;
  min-width: 188px;
  transition: border-color 0.15s;
  opacity: 0.57;
  cursor: not-allowed;
}

/* BLOG PREVIEW & LISTINGS ====================================================== */
.blog-teaser-group > div {
  min-width: 265px;
  max-width: 400px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.blog-teaser-group h3, .blog-listings h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* TESTIMONIALS CARDS =========================================================== */
.testimonial-card {
  background: #fff;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--neutral-gray);
  border-radius: var(--radius);
  padding: 20px 26px;
  margin-bottom: 20px;
  color: #203549;
  max-width: 560px;
  /* Text: dark on white for accessibility */
}

.testimonial-card blockquote {
  color: #21456E;
  font-size: 1.07rem;
  font-family: 'Source Sans Pro', sans-serif;
  margin-bottom: 8px;
}
.testimonial-card cite {
  color: #B53A00;
  font-size: 0.98rem;
  font-style: normal;
}

/* FOOTER ======================================================================= */
footer {
  background: #f3f5f9;
  border-top: 1px solid var(--neutral-gray);
  padding: 32px 0 28px 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  color: #435873;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent-color);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  font-size: 0.97em;
  color: #54575D;
}
.footer-contact img {
  height: 17px;
  width: 17px;
  margin-right: 8px;
  vertical-align: middle;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5A5C5E;
  font-size: 0.97em;
}

/* RESPONSIVE DESIGN (MOBILE FIRST) ============================================= */
@media (max-width: 991px) {
  .container {
    max-width: 95%;
    padding: 0 12px;
  }
  .features-grid > div, .recipes-grid > div, .blog-listings > div, .blog-teaser-group > div {
    min-width: 200px;
    max-width: 100%;
    padding: 18px 15px 12px 14px;
  }
  .footer-contact {
    align-items: flex-start;
  }
  .footer-contact p {
    font-size: 1em;
  }
}
@media (max-width: 750px) {
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 56px;
  }
  section {
    padding: 26px 0 26px 0;
  }
  .content-wrapper, .text-section {
    gap: 16px;
  }
  .features-grid, .recipes-grid, .blog-listings, .blog-teaser-group {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    padding: 18px 9px;
    max-width: 95%;
    font-size: 0.98rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
  }
  .footer-contact {
    align-items: flex-start;
  }
  .footer-contact p {
    font-size: 0.96em;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 5px;
    min-width: 95vw;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .testimonial-card {
    padding: 11px 5px;
    font-size: 0.96rem;
  }
  .card, .features-grid > div, .recipes-grid > div, .blog-listings > div, .blog-teaser-group > div {
    padding: 12px 7px 8px 7px;
  }
}

/* VISUAL DETAILS (SCANDINAVIAN-INSPIRED EFFECTS) =========================== */
.card, .features-grid > div, .recipes-grid > div, .blog-listings > div, .blog-teaser-group > div {
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  background: #fff;
  border: 1px solid var(--neutral-gray);
}

/* CTA SECTIONS & DOUBLE-LAYER BACKDROPS */
section:nth-of-type(2n) {
  background: #FFF;
}

/* Misc Helpers */
.hidden { display: none !important; }

/* Z-INDEXS for Stacking Order (MOBILE MENU, COOKIE) */
.mobile-menu,
.cookie-banner,
.cookie-modal {
  z-index: 10050;
}

/* FORM ELEMENTS ================================================================= */
input, textarea, select {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid var(--neutral-gray);
  padding: 9px 14px;
  margin-bottom: 12px;
  background: #fff;
  box-sizing: border-box;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary-color);
  outline: 1.5px solid var(--primary-color);
}
label {
  font-size: 1em;
  color: var(--primary-color);
  margin-bottom: 3px;
}

/* COOKIE CONSENT BANNER & MODAL ================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF;
  border-top: 1.5px solid var(--neutral-gray);
  box-shadow: 0 -3px 24px 0 rgba(33,69,110,0.07);
  padding: 22px 26px 22px 26px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  z-index: 12000;
  transition: transform 0.25s cubic-bezier(.61,.13,.27,1);
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner p {
  color: #2d3e4e;
  font-size: 1rem;
  max-width: 450px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  min-width: 86px;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.16s, color 0.11s;
  box-shadow: 0 1.5px 8px rgba(33,69,110,0.04);
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--primary-color);
  color: #fff;
}
.cookie-banner .accept:hover { background: var(--accent-color); }
.cookie-banner .reject {
  background: #fff;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}
.cookie-banner .reject:hover {
  background: var(--neutral-gray);
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.cookie-banner .settings {
  background: var(--neutral-gray);
  color: var(--primary-color);
}
.cookie-banner .settings:hover {
  background: var(--primary-color);
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 7px 12px 7px;
    gap: 11px;
  }
}

/* COOKIE CONSENT MODAL ========================================================= */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 13000;
  background: rgba(10, 18, 32, 0.42);
  backdrop-filter: blur(3px);
}
.cookie-modal.open {
  display: flex;
  animation: fadeInModal 0.28s cubic-bezier(.32,.11,.41,.99);
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 30px rgba(33,69,110,0.17);
  padding: 32px 21px;
  max-width: 390px;
  min-width: 230px;
  min-height: 180px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.22em;
  margin-bottom: 1em;
  color: var(--primary-color);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 1em;
  border-bottom: 1px solid var(--neutral-gray);
}
.cookie-category label {
  font-size: 0.98em;
  font-weight: 500;
  color: var(--primary-color);
}
.cookie-category .toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-toggle-switch {
  position: relative;
  width: 36px;
  height: 21px;
  display: inline-block;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #EAEAEA;
  transition: background 0.2s;
  border-radius: 14px;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  background: var(--primary-color);
}
.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 4px rgba(33,69,110,0.02);
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider:before {
  transform: translateX(13px);
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 1.5em;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  min-width: 84px;
  font-size: 1em;
  border-radius: 24px;
  padding: 8px 14px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.15s, color 0.12s;
  box-shadow: 0 1.5px 8px rgba(33,69,110,0.04);
  cursor: pointer;
}
.cookie-modal-actions .save {
  background: var(--primary-color); color: #fff;
}
.cookie-modal-actions .save:hover { background: var(--accent-color); }
.cookie-modal-actions .cancel {
  background: #FFF; color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}
.cookie-modal-actions .cancel:hover {
  background: var(--neutral-gray); color: var(--accent-color); border-color: var(--accent-color);
}
.cookie-modal-close {
  position: absolute; top: 15px; right: 18px;
  background: none; border: none;
  font-size: 1.55rem; color: var(--accent-color);
  cursor: pointer;
}

@media (max-width: 500px) {
  .cookie-modal-content { padding: 15px 7px; min-width: 140px; }
  .cookie-modal-content h3 {font-size: 1em;}
}

/* MICRO-INTERACTIONS & TRANSITIONS ============================================= */
.card, .features-grid > div, .recipes-grid > div, .blog-listings > div, .blog-teaser-group > div, .cta, button, .footer-nav a, .main-nav a, .mobile-nav a, .category-navigation a, .topic-filters a {
  transition: box-shadow 0.19s, transform 0.12s, color 0.13s, background 0.13s;
}

/* SCROLLBAR (SCANDINAVIAN MINIMAL) ============================================= */
::-webkit-scrollbar {
  width: 10px;
  background: #ECECEC;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #DFE4E8;
  border-radius: 10px;
}

/* SELECTION */
::selection { background: #B53A00; color: #fff; }

/* PRINT STYLES (Hide navigation, adjust colors for print) ======================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #222; }
}

