/* --------------------------------------------------
   CSS RESET & BASE 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,
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%;
  font: inherit;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1EEE9;
  color: #2C2922;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}
ol, ul {
  list-style: none;
}

/* ----------------------------
   FONT IMPORT (Vintage/Retro)
------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&family=Archivo+Black&family=Quicksand:wght@500&display=swap');

:root {
  --primary: #163243;
  --secondary: #3596B5;
  --accent: #F6F6F6;
  --retro-mustard: #FFD24A;
  --retro-coral: #ED6A5A;
  --retro-olive: #53736A;
  --retro-brown: #A8793E;
  --retro-cream: #FAF6E2;
  --retro-blue: #3D4A5F;
  --bg-section: #F8F4EB;
  --text-primary: #2C2922;
  --text-dark: #1C1A12;
  --shadow-card: 0 3px 18px rgba(49,36,26,0.10), 0 1.5px 8px rgba(163,121,62,0.09);
  --radius-card: 18px;
  --radius-button: 8px;
  --font-display: 'Archivo Black', 'Montserrat', Arial, sans-serif;
  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', 'Quicksand', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-section);
  font-size: 16px;
  color: var(--text-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: var(--radius-card);
}

/* --------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 0 var(--retro-mustard), 1px 1px 2px var(--retro-cream);
}
h2 {
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--retro-brown);
  text-shadow: 0 1px 0 var(--retro-cream);
}
h3 {
  font-size: 1.2rem;
  color: var(--retro-olive);
  margin-bottom: 8px;
}
h4 {
  font-size: 1.08rem;
  color: var(--retro-blue);
  margin-bottom: 6px;
}
p, ul, ol, li, small {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--retro-coral);
}
small {
  font-size: 0.92rem;
}

/* --------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------- */
header {
  background: var(--retro-cream);
  box-shadow: 0 2px 12px rgba(49,36,26,0.06);
  border-bottom: 4px solid var(--retro-brown);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 8px 24px;
}
.logo img {
  height: 44px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 1px;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 4px;
  position: relative;
  transition: background 0.20s; 
}
.main-nav a:not(.cta-primary):hover,
.main-nav a:not(.cta-primary):focus {
  background: var(--retro-mustard);
  color: var(--retro-blue);
}
.main-nav .cta-primary {
  background: var(--retro-coral);
  color: #fff;
  border-radius: var(--radius-button);
  padding: 10px 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-left: 4px;
  box-shadow: 0 2px 6px rgba(237,106,90,0.11);
  transition: background .17s, transform .1s;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: var(--retro-brown);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* --------------------------------------------------
   MOBILE MENU
-------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-olive);
  color: var(--retro-mustard);
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
  z-index: 91;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--retro-coral);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-cream);
  box-shadow: 3px 0 16px rgba(49,36,26,0.08);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.8,-0.1,0.3,1.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 3px 0 24px rgba(49,36,26,0.17);
}

.mobile-menu-close {
  background: var(--retro-coral);
  color: #fff;
  border-radius: 50%;
  border: none;
  margin: 22px 18px 10px 18px;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  font-size: 2rem;
  transition: background .20s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--retro-brown);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 16px 32px;
  width: 100%;
  margin-top: 10px;
}

.mobile-nav a {
  font-size: 1.19rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--primary);
  padding: 17px 7px 7px 7px;
  border-bottom: 2px solid var(--retro-mustard);
  margin-bottom: 4px;
  border-radius: 0 0 7px 7px;
  transition: background .18s, color .14s;
  min-width: 200px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--retro-mustard);
  color: var(--retro-olive);
}

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

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero {
  background:
    repeating-linear-gradient(135deg, var(--retro-mustard), var(--retro-mustard) 24px, transparent 30px, transparent 60px),
    var(--retro-cream);
  border-bottom: 7px double var(--retro-brown);
  box-shadow: 0 6px 22px rgba(49,36,26,0.13);
}
.hero .container {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 14px 38px 14px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: var(--retro-olive);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0 0 8px 0;
}

/* --------------------------------------------------
   BUTTONS (Retro)
-------------------------------------------------- */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: var(--radius-button);
  cursor: pointer;
  padding: 12px 28px;
  margin-top: 10px;
  letter-spacing: 1px;
  box-shadow: 0 2px 11px rgba(49,36,26,0.08);
  border: 2px solid transparent;
  transition: background .19s, color .14s, transform .13s, border-color .17s;
}
.cta-primary {
  background: var(--retro-coral);
  color: #fff; 
  border-color: var(--retro-coral);
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--retro-brown);
  color: #fff;
  border-color: var(--retro-brown);
  transform: translateY(-2px) scale(1.07);
}
.cta-secondary {
  background: var(--retro-olive);
  color: #fff;
  border-color: var(--retro-olive);
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--retro-mustard);
  color: var(--retro-blue);
  border-color: var(--retro-mustard);
  transform: translateY(-2px) scale(1.06);
}

/* --------------------------------------------------
   FEATURES GRID, CARDS, LISTS
-------------------------------------------------- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
  justify-content: space-between;
}
.features-grid > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 18px 22px 18px;
  min-width: 240px;
  flex: 1 1 240px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border: 2.2px solid var(--retro-mustard);
  margin-bottom: 20px;
  position: relative;
}
.features-grid > div img {
  height: 44px;
  width: 44px;
  margin-bottom: 6px;
  filter: drop-shadow(0px 1px 2px #F2E8CF);
}
.features-grid > div h3 {
  color: var(--retro-blue);
  font-size: 1.18rem;
  margin-bottom: 7px;
  letter-spacing: 1px;
}
.features-grid > div p {
  color: var(--text-primary);
  font-size: 1rem;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 26px 18px 18px 18px;
  position: relative;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
}

.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;
}
.text-image-section > * {
  flex: 1 1 240px;
}

/* Blog List
------------------- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 24px 0;
  justify-content: flex-start;
}
.blog-list article {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 22px 19px;
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 240px;
  border-left: 7px solid var(--retro-brown);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.16s, border-color 0.18s;
}
.blog-list article:hover {
  border-color: var(--retro-coral);
  box-shadow: 0 6px 24px rgba(237,106,90,0.11);
}

.categories {
  margin: 6px 0 14px 0;
}
.categories ul {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}
.categories li {
  background: var(--retro-mustard);
  color: var(--retro-blue);
  border-radius: 6px;
  padding: 3.5px 12px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
}

ul, ol {
  margin: 0 0 12px 20px;
}
ul li {
  list-style: disc;
  margin-bottom: 7px;
}
ol li {
  list-style: decimal;
  margin-bottom: 7px;
}


/* --------------------------------------------------
   TESTIMONIALS & REVIEW CARDS
-------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px rgba(26,28,28,0.10);
  border-left: 9px solid var(--retro-mustard);
  margin-bottom: 20px;
  max-width: 650px;
  min-width: 260px;
  flex-direction: column;
}
.testimonial-card strong {
  color: var(--retro-olive);
  font-size: 1.05rem;
}
.testimonial-card span {
  font-size: 1.22rem;
  color: var(--retro-coral);
  letter-spacing: 0.03em;
  margin-left: 5px;
}
.testimonial-card p,
.testimonial-card small {
  color: var(--text-dark);
}
.testimonial-card small {
  color: var(--retro-brown);
}
.testimonial-card div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Ensure strong contrast readable text */
.testimonial-card,
.review-section {
  background: #fff !important;
  color: var(--text-dark) !important;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: var(--retro-blue);
  color: #fff;
  border-top: 7px double var(--retro-mustard);
  font-size: 1rem;
  padding: 0 0 12px 0;
}
footer .container {
  padding: 0 14px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0 8px 0;
}
.logo-footer img {
  height: 42px;
}
.footer-nav, .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-nav a, .footer-menu a {
  color: var(--retro-mustard);
  font-family: var(--font-heading);
  font-size: 1.07rem;
  font-weight: 500;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
  transition: color .18s;
}
.footer-nav a:hover, .footer-menu a:hover,
.footer-nav a:focus, .footer-menu a:focus {
  color: var(--retro-coral);
}
.footer-contact p, .footer-contact a {
  font-size: 0.99rem;
  color: #F6F6F6;
  margin-bottom: 6px;
}
.footer-social {
  display: flex;
  gap: 16px;
  padding: 8px 0 0 0;
}
.footer-social img {
  width: 27px;
  height: 27px;
  filter: drop-shadow(0 1px 1px #3D4A5F);
  background: #fff;
  border-radius: 50%;
  padding: 3px;
  transition: filter .16s, box-shadow .14s;
  box-shadow: 0 3px 10px rgba(250,246,226,0.11);
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: drop-shadow(0 1px 6px #FFD24A);
  box-shadow: 0 4px 16px rgba(255,210,74,0.22);
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--retro-brown);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 20px;
  box-shadow: 0 -3px 18px rgba(49,36,26,0.13);
  z-index: 200;
  font-size: 1rem;
  animation: cookie-slideup .44s cubic-bezier(.65,.05,.36,1.00);
}
@keyframes cookie-slideup {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  flex: 1 1 220px;
  font-size: 1.06rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--font-heading);
  border-radius: var(--radius-button);
  font-size: 1rem;
  border: 2px solid transparent;
  min-width: 120px;
  padding: 9px 20px;
  transition: background .16s, border .18s, color .15s;
  font-weight: 700;
}
.cookie-accept {
  background: var(--retro-mustard);
  color: var(--text-primary);
  border: 2px solid var(--retro-mustard);
}
.cookie-accept:hover {
  background: var(--retro-coral);
  color: #fff;
  border-color: var(--retro-coral);
}
.cookie-reject {
  background: #fff;
  color: var(--retro-coral);
  border: 2px solid var(--retro-coral);
}
.cookie-reject:hover {
  background: var(--retro-coral);
  color: #fff;
}
.cookie-settings {
  background: var(--retro-olive);
  color: #fff;
  border: 2px solid var(--retro-olive);
}
.cookie-settings:hover,
.cookie-settings:focus {
  background: var(--retro-mustard);
  color: var(--retro-blue);
  border-color: var(--retro-mustard);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,38,32,.52);
  z-index: 211;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: background .34s;
  animation: fadein-modal .23s;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--text-dark);
  border-radius: 22px 22px 0 0;
  min-width: 310px;
  max-width: 450px;
  width: 95vw;
  box-shadow: 0 -8px 32px rgba(49,36,26,0.16);
  padding: 32px 26px 22px 26px;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-slidein .31s cubic-bezier(.71,-0.04,.29,1.15);
}
@keyframes modal-slidein {
  0% { transform: translateY(120%); }
  100% { transform: translateY(0); }
}
.cookie-modal h2 {
  color: var(--retro-brown);
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 11px 0;
}
.cookie-category {
  background: var(--bg-section);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 5px rgba(163,121,62,0.06);
}
.cookie-category label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-right: 7px;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: var(--retro-olive);
  border-radius: 15px;
  position: relative;
  transition: background .12s;
  flex-shrink: 0;
}
.cookie-toggle input[type='checkbox'] {
  display: none;
}
.cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: left .17s;
  box-shadow: 0 1px 5px rgba(49,36,26,0.10);
}
.cookie-toggle input:checked + span {
  left: 18px;
  background: var(--retro-mustard);
}
/* Essential always enabled style */
.cookie-toggle[aria-disabled='true'] {
  opacity: 0.69;
  background: #BCBCBC;
}
.cookie-modal .modal-btn-group {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal button {
  padding: 9px 18px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-button);
}

/* --------------------------------------------------
   MEDIA QUERIES (RESPONSIVE)
-------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .features-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  header .container { padding: 7px 10px; }
  .container { padding: 0 8px; }
  .section { padding: 24px 7px; margin-bottom: 37px; }
  .content-wrapper { gap: 17px; }
  .features-grid, .card-container, .blog-list { gap: 14px; }
  .features-grid > div, .card, .blog-list article {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 18px 7px 16px 11px;
  }
  .testimonial-card {
    max-width: 97vw;
    min-width: unset;
    padding: 13px 6px 9px 7px;
    gap: 8px;
    flex-direction: column;
  }
  .footer-main {
    flex-direction: column;
    gap: 16px;
    padding: 18px 0 3px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .mobile-menu {
    padding-top: 0;
  }
  .mobile-nav {
    gap: 12px;
    padding: 20px 9px;
    margin-top: 6px;
  }
}
@media (max-width: 550px) {
  .logo img, .logo-footer img { height: 36px; }
  .hero h1 { font-size: 1.18rem; }
  .hero p { font-size: 1.02rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 0.98rem; }
  .footer-main, .footer-nav, .footer-menu,.footer-contact,.footer-social {
    gap: 8px;
  }
  .footer-nav a, .footer-menu a { font-size: 0.96rem; }
  .cookie-banner p { font-size: 0.95rem; }
  .cta-primary, .cta-secondary {
    padding: 8px 11px;
    font-size: 0.98rem;
  }
  .cookie-modal { padding: 18px 7px 12px 12px; }
}

/* --------------------------------------------------
   MICRO-INTERACTIONS & HOVER STATES
-------------------------------------------------- */
a, .cta-primary, .cta-secondary, button, .main-nav a, .mobile-nav a {
  transition: color .16s, background .15s, border .17s, box-shadow .17s, transform .13s;
}
.features-grid > div:hover, .card:hover, .blog-list article:hover {
  box-shadow: 0 8px 24px rgba(49,36,26,0.16);
  border-color: var(--retro-coral);
  transform: translateY(-2px) scale(1.02);
}
.footer-social a:hover img { filter: brightness(1.1); }

/* --------------------------------------------------
   VINTAGE & RETRO NOSTALGIA ELEMENTS
-------------------------------------------------- */
.section {
  background: repeating-linear-gradient(135deg,
   var(--retro-cream), var(--retro-cream) 48px,
   #F3E2B2 50px,
   var(--retro-cream) 58px);
  border: 1.2px dashed var(--retro-mustard);
  border-radius: 20px;
  box-shadow: 0 5px 19px rgba(53,150,181,0.05);
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  left: 14px;
  top: -12px;
  width: 71px;
  height: 12px;
  background: repeating-linear-gradient(90deg,#FFD24A,#FFD24A 13px,#ED6A5A 13px,#ED6A5A 26px);
  border-radius: 11px 11px 6px 6px;
  opacity: .33;
  z-index: 1;
}
.section::after {
  content: '';
  position: absolute;
  right: 11px;
  bottom: -12px;
  width: 61px;
  height: 12px;
  background: repeating-linear-gradient(90deg,#3596B5,#3596B5 11px,#3D4A5F 11px,#3D4A5F 22px);
  border-radius: 7px 7px 10px 10px;
  opacity: .27;
  z-index: 1;
}

/* --------------------------------------------------
   CUSTOM SCROLLBAR FOR RETRO FEEL ON DESKTOP
-------------------------------------------------- */
@media (hover: hover) {
  ::-webkit-scrollbar {
    width: 12px;
    background: var(--retro-cream);
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--retro-brown);
    border-radius: 10px;
    border: 3px solid var(--retro-cream);
  }
}

/* --------------------------------------------------
   ACCESSIBILITY
-------------------------------------------------- */
:focus-visible {
  outline: 2.5px dashed var(--retro-coral);
  outline-offset: 2.5px;
}

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


/* ----------------------------------------
   END OF CSS
----------------------------------------- */
