/* =======================================================
   CSS RESET & NORMALIZATION – vintage retro web aesthetic
   ======================================================= */
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 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8F6F2;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
/* ================================================
   VARIABLE FONTS & COLOR PALETTE FOR RETRO EFFECT
   ================================================ */
:root {
  --vw-primary: #1C3552;
  --vw-secondary: #E4B96B;
  --vw-accent: #F8F6F2;
  --vw-bg-light: #F8F6F2;
  --vw-bg-dark: #1C3552;
  --vw-brown: #8D7353;
  --vw-warm-red: #C85942;
  --vw-mint: #82B6A3;
  --vw-shadow: rgba(28,53,82,0.18);
  --vw-border: #EAD894;
  --vw-card-bg: #FCFAF5;
  --vw-card-border: #EAD894;
  --vw-retro-orange: #D17852;
  --vw-retro-green: #A5BD82;
  --retro-pattern: repeating-linear-gradient(135deg, transparent 0 23px, rgba(228,185,107,0.1) 24px 48px), repeating-linear-gradient(45deg, transparent 0 15px, rgba(205,174,85,0.08) 16px 32px);
  --vw-radius: 16px;
  --vw-radius-sm: 8px;
  --vw-header-height: 64px;
  --vw-footer-bg: #E4B96B;
  --vw-footer-alt: #EAD894;
  --vw-font-display: 'Montserrat', 'Montserrat Alternate', Arial, sans-serif;
  --vw-font-body: 'Open Sans', 'Arial', sans-serif;
  --vw-transition: all 0.18s cubic-bezier(.64,.04,.35,1);
  --focus-outline: 2px dashed #A5BD82;
  --vw-elevate: 0 2px 10px var(--vw-shadow);
}

@media (max-width:680px) {
  :root { --vw-header-height: 54px; }
}

/* =======================================
   WEB FONTS Vintage Look (Google Fonts)
   ======================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* ===================================================
   BODY, TYPOGRAPHY AND GENERAL STRUCTURE
   =================================================== */
body {
  font-family: var(--vw-font-body);
  font-size: 16px;
  background: var(--vw-bg-light);
  color: var(--vw-primary);
  min-height: 100vh;
  background-image: var(--retro-pattern);
}

.container {
  width: 94%;
  margin: 0 auto;
  max-width: 1080px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  background: none;
  padding: 0;
}

::selection {
  background: var(--vw-secondary);
  color: var(--vw-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vw-font-display);
  color: var(--vw-primary);
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 1px 2.5px 0 var(--vw-border);
}
h1 { font-size: 2.4rem; margin-bottom: 24px;}
h2 { font-size: 2rem; margin-bottom: 16px;}
h3 { font-size: 1.38rem; letter-spacing: 0.5px; margin-bottom: 12px;}
h4 { font-size: 1.14rem; font-weight: 700;}
h5, h6 { font-size: 1rem; }

p, ul, ol, li {
  font-size: 1rem;
  line-height: 1.7;
  font-family: var(--vw-font-body);
  color: var(--vw-primary);
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
  color: var(--vw-brown);
  font-family: var(--vw-font-display);
  letter-spacing: 0.5px;
}

em, i {
  font-style: italic;
  color: var(--vw-retro-green);
}

.text-section ul, .content-wrapper ul {
  margin-left: 0;
  padding-left: 1.2em;
  list-style-position: inside;
  list-style: square inside none;
  color: var(--vw-primary);
}
.text-section ul li, .content-wrapper ul li {
  margin-bottom: 8px;
  font-size: 1.04em;
  position: relative;
  left: 0.1em;
}

hr {
  border: none;
  height: 1px;
  background: var(--vw-secondary);
  margin: 36px 0;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
  width: 100vw;
  height: var(--vw-header-height);
  background: var(--vw-bg-light);
  box-shadow: 0 4px 24px 0 var(--vw-shadow);
  z-index: 90;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: var(--vw-header-height);
  padding-top: 8px; padding-bottom: 7px;
}
header img {
  height: 38px;
  max-width: 146px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-left: 18px;
}
header nav a {
  font-family: var(--vw-font-display);
  font-size: 1.03rem;
  letter-spacing: 0.06em;
  color: var(--vw-primary);
  background: transparent;
  border-radius: var(--vw-radius-sm);
  padding: 7px 18px;
  transition: var(--vw-transition);
  position: relative;
}
header nav a:not(.cta):hover,
header nav a:focus {
  color: var(--vw-warm-red);
  background: var(--vw-secondary);
  outline: var(--focus-outline);
}
header nav .cta {
  background: var(--vw-secondary);
  color: var(--vw-primary);
  font-weight: 900;
  font-size: 1.10em;
  box-shadow: 0 2px 8px var(--vw-shadow);
  border-radius: var(--vw-radius);
  margin-left: 14px;
  transition: var(--vw-transition);
  border: 1.5px solid var(--vw-card-border);
  position: relative;
  z-index: 1;
}
header nav .cta:hover, header nav .cta:focus {
  background: var(--vw-retro-orange);
  color: #fff;
  letter-spacing: 2px;
  outline: var(--focus-outline);
}

.mobile-menu-toggle {
  display: none;
  background: var(--vw-secondary);
  color: var(--vw-primary);
  border-radius: var(--vw-radius-sm);
  font-size: 2.2rem;
  width: 50px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101;
  border: 1.5px solid var(--vw-border);
  box-shadow: 0 2px 10px rgba(28,53,82,.08);
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.17s, color 0.15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--vw-retro-orange);
  color: #FFF;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  height: 100vh;
  background: var(--vw-bg-light);
  box-shadow: -2px 0 40px var(--vw-shadow);
  z-index: 250;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transition: transform 0.33s cubic-bezier(.68,.11,.4,1), opacity 0.25s;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--vw-secondary);
  color: var(--vw-primary);
  font-size: 2rem;
  padding: 0 24px;
  margin: 24px 12px 2px 0;
  border-radius: var(--vw-radius-sm);
  align-self: flex-end;
  border: 1.5px solid var(--vw-card-border);
  cursor: pointer;
  transition: background 0.18s, color 0.12s;
  z-index: 251;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vw-warm-red);
  color: #fff;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  gap: 16px;
  padding: 0 30px 0 0;
  margin-top: 26px;
}
.mobile-menu .mobile-nav a {
  font-family: var(--vw-font-display);
  font-size: 1.32rem;
  color: var(--vw-primary);
  background: none;
  padding: 13px 0 13px 0;
  width: 100%;
  border-radius: 0 20px 20px 0;
  text-align: right;
  border-right: 4px solid transparent;
  transition: background 0.15s, color 0.18s, border 0.12s;
  box-shadow: none;
}
.mobile-menu .mobile-nav a:hover, .mobile-menu .mobile-nav a:focus {
  background: var(--vw-secondary);
  color: var(--vw-warm-red);
  border-right: 4px solid var(--vw-warm-red);
}
.mobile-menu .mobile-nav a.cta {
  background: var(--vw-secondary);
  color: var(--vw-primary);
  font-weight: bold;
  border-radius: var(--vw-radius);
  margin-top: 18px;
  padding: 15px 25px;
  text-align: center;
}
.mobile-menu .mobile-nav a.cta:hover, .mobile-menu .mobile-nav a.cta:focus {
  background: var(--vw-retro-orange);
  color: #fff;
}
/* HIDE DESKTOP NAV ON MOBILE, SHOW HAMBURGER */
@media (max-width: 900px) {
  header nav { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none!important; }
  .mobile-menu-toggle { display: none!important; }
}

/* Fix z-index stacking for sticky header and overlays */
header,
.mobile-menu,
.cookie-banner, .cookie-modal {
  z-index: 150;
}

/* ===========================================
   SECTIONS, SPACING AND RETRO FRAMES
   =========================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vw-card-bg);
  border-radius: var(--vw-radius);
  box-shadow: 0 8px 32px var(--vw-shadow);
  border: 2px solid var(--vw-border);
  position: relative;
  z-index: 1;
  min-width: 0;
}
main > section:first-child {
  margin-top: 38px;
}
@media (max-width: 700px) {
  section {
    margin-bottom: 34px;
    padding: 25px 8px;
    border-radius: var(--vw-radius-sm);
  }
  main > section:first-child {
    margin-top: 10px;
  }
  .container {
    width: 99%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Retro borders and nostalgic corners */
section {
  border-image: repeating-linear-gradient(135deg, var(--vw-secondary) 0 8px, transparent 8px 16px, var(--vw-retro-orange) 16px 24px, transparent 24px 32px, var(--vw-retro-green) 32px 40px, transparent 40px 48px) 1;
}

/* Flexbox utility sections */
.card-container,
.content-grid,
.service-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.card-container { gap: 24px; }
.content-grid { gap: 20px; }
.service-grid, .feature-grid { gap: 24px; }
@media (max-width: 900px) {
  .card-container,
  .content-grid,
  .service-grid,
  .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

/* ================================================
   CARDS, TESTIMONIALS, PRICING & NOSTALGIC PANELS
   ================================================ */
.card, .service-grid > div, .feature-grid > div {
  background: var(--vw-card-bg);
  border-radius: var(--vw-radius);
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--vw-border);
  box-shadow: 0 4px 18px var(--vw-shadow);
  padding: 28px 22px 22px 22px;
  flex: 1 1 300px;
  transition: box-shadow 0.14s, top 0.10s;
  min-width: 230px;
  max-width: 100%;
}
.card:hover, .service-grid > div:hover, .feature-grid > div:hover {
  box-shadow: 0 8px 26px 0 rgba(205,174,85,0.29), 0 1px 0 var(--vw-secondary);
  top: -2px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFFDEB;
  border-radius: var(--vw-radius-sm);
  border: 2px solid var(--vw-retro-orange);
  box-shadow: 2px 3px 14px 0px rgba(206,171,82,0.09);
  max-width: 720px;
  position: relative;
}
.testimonial-card p {
  flex: 1;
  color: #1C3552;
  font-family: var(--vw-font-body);
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 0;
  background: none;
}
.testimonial-card span {
  font-family: var(--vw-font-display);
  color: var(--vw-primary);
  font-size: 0.97rem;
  font-weight: 700;
  opacity: 0.93;
}
/* Mobile testimonials */
@media (max-width: 650px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 10px;
    min-width: 0;
  }
}

/* ============================
   CTA BUTTONS & MICRO ANIMATION
   ============================ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vw-font-display);
  font-weight: 900;
  color: var(--vw-primary);
  background: var(--vw-secondary);
  font-size: 1.17rem;
  padding: 10px 32px;
  border-radius: 40px;
  border: 2px solid var(--vw-retro-green);
  outline: none;
  box-shadow: 0 2px 8px var(--vw-shadow), 0 1px 0 var(--vw-card-border);
  margin-top: 8px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background 0.19s, color 0.18s, box-shadow 0.18s, letter-spacing 0.09s;
}
.cta:hover, .cta:focus {
  background: var(--vw-retro-orange);
  color: #fff;
  letter-spacing: 2.5px;
  outline: var(--focus-outline);
  top: -2px;
  box-shadow: 0 8px 26px 0 rgba(205,174,85,0.20), 0 2px 0 var(--vw-retro-orange);
}

/* ========================
   LINKS
   ======================== */
a {
  color: var(--vw-brown);
  transition: color 0.16s;
  text-decoration: underline dotted var(--vw-retro-orange) 1.2px;
}
a:hover, a:focus {
  color: var(--vw-warm-red);
  text-decoration: underline solid var(--vw-warm-red) 2px;
}

/* ========================
   FORMS & INPUTS
   ======================== */
input, textarea, select {
  font-family: var(--vw-font-body);
  padding: 0.7em 1em;
  border: 1.5px solid var(--vw-retro-green);
  border-radius: var(--vw-radius-sm);
  background: #FFFAF2;
  margin-bottom: 18px;
  color: var(--vw-primary);
  font-size: 1rem;
  transition: border-color 0.16s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vw-retro-orange);
  outline: var(--focus-outline);
}

/* =============================
   FOOTER
   ============================= */
footer {
  width: 100vw;
  background: var(--vw-footer-bg);
  color: var(--vw-primary);
  box-shadow: 0 -2px 20px rgba(230,198,93,0.07);
  font-size: 1.07rem;
  padding: 0;
  border-top: 4px solid var(--vw-border);
  margin-top: 80px;
}
footer .container {
  padding-top: 26px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0px;
}
footer img {
  height: 48px;
  margin-bottom: 0;
  margin-right: 8px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
footer nav a {
  color: var(--vw-primary);
  font-family: var(--vw-font-display);
  background: none;
  font-size: 1.025rem;
  font-weight: 600;
  border-radius: var(--vw-radius-sm);
  padding: 8px 12px;
  transition: var(--vw-transition);
  margin: 2px;
}
footer nav a.cta {
  background: var(--vw-retro-orange);
  color: #fff;
  padding: 8px 22px;
  font-weight: 900;
  border-radius: var(--vw-radius);
}
footer nav a:hover, footer nav a:focus {
  color: var(--vw-warm-red);
  background: var(--vw-footer-alt);
  outline: var(--focus-outline);
  box-shadow: 0 2px 8px var(--vw-shadow), 0 1px 0 var(--vw-retro-orange);
}
footer small {
  margin-top: 20px;
  font-size: .98em;
  font-family: var(--vw-font-body);
  color: var(--vw-primary);
  letter-spacing: .08em;
  opacity: 0.86;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}

/* =============================
   COOKIE BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--vw-retro-orange);
  color: #222;
  font-family: var(--vw-font-display);
  font-size: 1.02rem;
  box-shadow: 0 -6px 32px #C6592e18;
  z-index: 3333;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw 22px 18px;
  border-top: 3px solid var(--vw-border);
  transition: transform 0.33s cubic-bezier(.68,.11,.4,1), opacity 0.25s;
  opacity: 1;
  gap: 20px;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(110%);}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--vw-font-display);
  border-radius: 18px;
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 800;
  background: var(--vw-card-bg);
  color: var(--vw-primary);
  border: 2px solid var(--vw-secondary);
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.12s, color 0.17s;
  box-shadow: 0 2px 7px var(--vw-shadow);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--vw-warm-red);
  color: #fff;
  border-color: var(--vw-warm-red);
  outline: var(--focus-outline);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3500;
  background: rgba(28,53,82,0.56);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: var(--vw-card-bg);
  border-radius: var(--vw-radius);
  box-shadow: 0 14px 56px var(--vw-shadow), 0 0px 0 var(--vw-border);
  padding: 36px 32px 30px 32px;
  min-width: 320px;
  max-width: 90vw;
  color: var(--vw-primary);
  border: 2px solid var(--vw-border);
  font-family: var(--vw-font-display);
  animation: fadeInModal 0.32s cubic-bezier(.56,.23,.72,1);
  position: relative;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(64px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h3 {
  margin-bottom: 15px;
  font-size: 1.39rem;
  font-family: var(--vw-font-display);
}
.cookie-modal label {
  display: flex; align-items: center; font-size: 1.09rem; margin-bottom: 9px; cursor:pointer;}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--vw-retro-green);
  margin-right: 10px;
}
.cookie-modal .cookie-category {
  margin-bottom: 12px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.cookie-modal button {
  font-family: var(--vw-font-display);
  font-weight: 700;
  border-radius: 18px;
  padding: 7px 20px;
  font-size: 1rem;
  background: var(--vw-secondary);
  border: 2px solid var(--vw-retro-green);
  color: var(--vw-primary);
  cursor: pointer;
  transition: background 0.11s, color 0.13s;
  margin-right: 0px;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--vw-retro-orange);
  color: #fff;
  outline: var(--focus-outline);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 22px;
  background: none;
  color: var(--vw-primary);
  font-size: 2rem;
  cursor: pointer;
  border: none;
  padding: 0 8px;
  border-radius: 50%;
  transition: background 0.1s, color 0.1s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: var(--vw-retro-green);
  color: #fff;
  outline: var(--focus-outline);
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS & STACKING
   ========================================== */
@media (max-width: 950px) {
  .card, .service-grid > div, .feature-grid > div {
    min-width: 160px; max-width: 100%; flex: 1 1 100%;
    padding: 20px 10px 16px 18px;
  }
}
@media (max-width: 650px) {
  h1 { font-size: 1.39rem; }
  h2 { font-size: 1.13rem; }
  section {
    padding: 16px 2px;
    margin-bottom: 17px;
  }
  .testimonial-card { padding: 13px 5px; }
}
@media (max-width: 460px) {
  main > section:first-child { margin-top: 2px; }
  h1,h2{font-size:1.02rem;}
  .container { width:100%;}
}

/* ========================================
   MISC: FOCUS, ACCENTS, RETRO MICROPATTERNS
   ======================================== */
:focus-visible, .cta:focus {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Retro effect for section background */
section::after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  top: 10px;
  pointer-events: none;
  border: 2px dashed var(--vw-retro-green);
  opacity: 0.13;
  border-radius: calc(var(--vw-radius) - 3px);
  z-index: 0;
}

/* Decorative top lines for retro flavor */
section > .container > .content-wrapper > h2 {
  position: relative;
  padding-left: 30px;
}
section > .container > .content-wrapper > h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 3px;
  background: var(--vw-retro-orange);
  border-radius: 2px;
  margin-right: 8px;
  transform: translateY(-50%);
}

/* ---------------------------------
   PRINT: Remove retro patterns
   --------------------------------- */
@media print {
  body, section, .container, .content-wrapper {
    background: #fff !important;
    box-shadow: none !important;
  }
  section::after, header, footer, .cookie-banner, .cookie-modal { display: none !important;}
}

/* =========== HANDY SCROLL BARS ============== */
::-webkit-scrollbar {
  width: 12px;
  background: #e1d5bc;
  border-radius: 16px;
}
::-webkit-scrollbar-thumb {
  background: var(--vw-retro-orange);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--vw-brown);
}

/* =================
   UTILITY CLASSES
   ================= */
.flex {
  display: flex;
}
.flex-center {
  align-items: center;
  justify-content: center;
}

.w-full { width: 100%;}
.mt-12 { margin-top: 12px;}
.mb-24 { margin-bottom: 24px;}
.gap-20 { gap: 20px;}

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