/* --------------------------------------------------- */
/* 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,font,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,main,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;
}
html { scroll-behavior: smooth; }
body { line-height: 1.5; background: #FAFAF9; }
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
ol,ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; display: block; height: auto; border: 0; }
button,input,select,textarea { font-family: inherit; font-size: 100%; }
a {text-decoration: none; color: inherit; transition: color 0.2s;}

/* --------------------------------------------------- */
/* Brand Palette & Font Variables (with Fallbacks)     */
/* --------------------------------------------------- */
:root {
  --lux-blue: #24547A;
  --lux-secondary: #E6EDEE;
  --lux-gold: #C3A062;
  --lux-gold-accent: #FFF3CD;
  --lux-paper: #FAFAF9;
  --lux-dark: #23262D;
  --lux-white: #fff;
  --lux-text-dark: #23262D;
  --lux-text-body: #344052;
  --lux-border: #ded9ce;
  --lux-shadow: 0 4px 24px 0 rgba(40, 54, 64, 0.08);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

/* --------------------------------------------------- */
/* Global Typography                                  */
/* --------------------------------------------------- */
body {
  font-family: var(--font-body);
  color: var(--lux-text-body);
  font-size: 16px;
  background: var(--lux-paper);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--lux-dark);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 600;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 10px;
}
.subheadline {
  color: var(--lux-blue);
  font-size: 1.125rem;
  margin-bottom: 24px;
  font-weight: 600;
}
/* Spacing scale: 8, 16, 24, 32, 40, 48, 60 */

/* --------------------------------------------------- */
/* Layout Containers                                   */
/* --------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--lux-white);
  border-radius: 18px;
  box-shadow: var(--lux-shadow);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  max-width: 760px;
  margin: 0 auto;
}

/* --------------------------------------------------- */
/* Header & Navigation                                 */
/* --------------------------------------------------- */
header {
  width: 100%;
  background: var(--lux-white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  box-shadow: 0 2px 16px -6px rgba(36,84,122,.05);
  position: relative;
  z-index: 102;
}
header a img {
  height: 40px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lux-blue);
  padding: 6px 14px 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--lux-gold);
  border-bottom: 2px solid var(--lux-gold);
  outline: none;
}
.cta-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  background: var(--lux-gold-accent);
  color: var(--lux-blue);
  border: 2px solid var(--lux-gold);
  border-radius: 8px;
  padding: 12px 28px;
  box-shadow: 0 2px 16px -8px var(--lux-blue);
  margin-left: 24px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .24s;
  display: inline-block;
  position: relative;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--lux-gold);
  color: var(--lux-white);
  box-shadow: 0 6px 24px -8px var(--lux-gold);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--lux-blue);
  margin-left: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color .18s;
  outline: none;
}
.mobile-menu-toggle:hover { color: var(--lux-gold); }

/* --------------------------------------------------- */
/* Mobile Navigation Overlay                           */
/* --------------------------------------------------- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32,37,44,0.97);
  z-index: 900;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 48px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 2.3rem;
  font-weight: 700;
  background: none;
  border: none;
  color: var(--lux-gold);
  z-index: 950;
  cursor: pointer;
  transition: color .17s;
  line-height: 1;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
  outline: none;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding: 42px 32px 16px 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lux-gold);
  letter-spacing: 0.03em;
  padding: 8px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--lux-white);
  outline: none;
}

/* ----------- Responsive Navigation --------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .main-nav {
    gap: 16px;
    font-size: 1rem;
  }
  .cta-button {
    margin-left: 12px;
    padding: 11px 18px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta-button {
      display: none;
    }
}

/* --------------------------------------------------- */
/* Section Patterns, Flex Patterns & Cards             */
/* --------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--lux-white);
  border-radius: 18px;
  box-shadow: var(--lux-shadow);
}
.card-container,
.category-grid,
.season-grid,
.value-grid,
.tip-grid,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card,
.category-grid > div,
.season-grid > div,
.value-grid > div,
.tip-grid > div,
.faq-list > div {
  background: var(--lux-secondary);
  border-radius: 14px;
  box-shadow: var(--lux-shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  position: relative;
  min-width: 220px;
  max-width: 100%;
  transition: box-shadow 0.22s, background 0.24s;
}
.card:hover,
.category-grid > div:hover,
.season-grid > div:hover,
.value-grid > div:hover,
.tip-grid > div:hover,
.faq-list > div:hover {
  box-shadow: 0 6px 24px -6px var(--lux-blue);
  background: #fff;
  z-index: 2;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------------------------------------------- */
/* Lists, Filters, Category Navigation                 */
/* --------------------------------------------------- */
ul, ol {
  margin-left: 22px;
  margin-bottom: 20px;
  list-style: disc outside;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1.04rem;
  color: var(--lux-text-body);
}
.category-navigation, .season-navigation {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.category-navigation a, .season-navigation a {
  background: var(--lux-secondary);
  color: var(--lux-blue);
  padding: 8px 22px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
  border: 1.5px solid transparent;
}
.category-navigation a:hover, .season-navigation a:hover,
.category-navigation a:focus, .season-navigation a:focus {
  background: var(--lux-gold);
  color: var(--lux-white);
  border-color: var(--lux-gold);
  outline: none;
}
.filters {
  margin-bottom: 24px;
  padding: 16px 16px 10px 16px;
  background: var(--lux-paper);
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(36,84,122,0.07);
}
.filters h3 { margin-bottom: 12px; font-size: 1.1rem; color: var(--lux-blue); }

/* --------------------------------------------------- */
/* CTA Banner                                          */
/* --------------------------------------------------- */
.cta-banner {
  background: var(--lux-gold-accent);
  border-radius: 14px;
  box-shadow: 0 2px 24px -12px var(--lux-gold);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cta-banner h2 {
  color: var(--lux-blue);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.cta-banner p { color: var(--lux-text-body); margin-bottom: 8px; }

/* --------------------------------------------------- */
/* Testimonials Cards                                  */
/* --------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--lux-secondary);
  border-left: 5px solid var(--lux-gold);
  border-radius: 12px;
  color: var(--lux-text-dark);
  box-shadow: 0 2px 12px -4px rgba(36,84,122,0.09);
  margin-bottom: 20px;
  font-size: 1rem;
  transition: box-shadow .18s;
}
.testimonial-card strong {
  color: var(--lux-blue);
  font-size: 1.01rem;
  font-weight: 700;
  margin-left: 12px;
}
.testimonial-card:hover { box-shadow: 0 6px 24px -6px var(--lux-blue); }

/* --------------------------------------------------- */
/* Address, Contact, Social, Share Buttons              */
/* --------------------------------------------------- */
.address-block, .footer-contact, .open-hours, .footer-hours, .submit-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 1.03rem;
}
.address-block img, .footer-contact img, .open-hours img { height: 18px; width: auto; margin-right: 4px; display: inline-block; vertical-align: middle; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}
.social-links a {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  color: var(--lux-blue);
  font-weight: 600;
  gap: 6px;
  transition: color 0.15s;
}
.social-links a:hover { color: var(--lux-gold); }
.share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: var(--lux-gold-accent);
  color: var(--lux-blue);
  padding: 8px 18px;
  border-radius: 18px;
  margin-top: 14px;
  font-size: 1.04rem;
  cursor: pointer;
  transition: background 0.18s;
}
.share-buttons:hover { background: var(--lux-gold); color: var(--lux-white); }

/* --------------------------------------------------- */
/* Footer Styles                                       */
/* --------------------------------------------------- */
footer {
  width: 100%;
  background: var(--lux-white);
  margin-top: 72px;
  padding: 40px 16px 24px 16px;
  box-shadow: 0 -2px 16px -6px rgba(36,84,122,0.03);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
footer a img {
  height: 32px; width: auto; margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-display);
  color: var(--lux-blue);
  font-size: 1rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--lux-gold-accent);
  color: var(--lux-gold);
  outline: none;
}
.footer-contact { color: var(--lux-text-body); }
.footer-hours { font-size: 1.03rem; color: var(--lux-blue); }

/* --------------------------------------------------- */
/* Responsive Styles                                    */
/* --------------------------------------------------- */
@media (max-width: 1050px) {
  .section {
    padding: 32px 9vw;
    margin-bottom: 38px;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 32px 4vw;
    margin-bottom: 26px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .card-container,
  .category-grid,
  .season-grid,
  .value-grid,
  .tip-grid,
  .faq-list {
    gap: 16px;
    flex-wrap: wrap;
  }
  .card,
  .category-grid > div,
  .season-grid > div,
  .value-grid > div,
  .tip-grid > div,
  .faq-list > div {
    padding: 20px 13px;
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.24rem; }
  .section { padding: 20px 5vw; margin-bottom: 16px; }
  .container { padding: 0 7px; }
  header { flex-direction: row; padding: 7px 0 7px 0; }
  .cta-button {
    font-size: 1rem;
    padding: 11px 12px;
    margin-left: 7px;
  }
  .footer-nav { gap: 11px; font-size: .97rem; }
  .content-wrapper, .text-section { gap: 12px; max-width: 98vw; }
  .card-container,
  .category-grid,
  .season-grid,
  .value-grid,
  .tip-grid,
  .faq-list {
    gap: 12px;
  }
  .card,
  .category-grid > div,
  .season-grid > div,
  .value-grid > div,
  .tip-grid > div,
  .faq-list > div {
    font-size: 0.97rem;
    min-width: 150px;
    padding: 14px 6px;
  }
  .testimonial-card { font-size: 0.97rem; }
}
@media (max-width: 600px) {
  .content-wrapper,
  .text-section {
    padding: 0;
    gap: 8px;
  }
  .footer-contact, .footer-nav {
    font-size: 0.97rem;
    gap: 7px;
  }
  footer { padding: 24px 5px 10px 5px; min-width: unset; gap: 7px; }
  .cta-banner { padding: 22px 7px; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 12px; }
}

/* --------------------------------------------------- */
/* Interactive States, Transitions, Buttons             */
/* --------------------------------------------------- */
button, .cta-button, .share-buttons {
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.24s;
  outline: none;
}
button:active, .cta-button:active, .share-buttons:active {
  filter: brightness(0.96);
}
:focus-visible { outline: 2px solid var(--lux-gold); outline-offset: 2px; }

/* --------------------------------------------------- */
/* Cookie Consent Banner                               */
/* --------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  width: 100vw;
  background: var(--lux-white);
  box-shadow: 0 -4px 24px -6px var(--lux-blue);
  border-top: 2px solid var(--lux-gold);
  padding: 22px 7vw 20px 7vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  transition: transform .33s cubic-bezier(.8, 0, .2, 1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--lux-dark);
  max-width: 550px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn-primary {
  background: var(--lux-gold);
  color: var(--lux-white);
  border: none;
  border-radius: 6px;
  padding: 10px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px -6px var(--lux-gold);
  transition: background 0.13s, color 0.13s;
}
.cookie-btn-primary:hover { background: #a68338; color: #fff; }
.cookie-btn-secondary {
  background: var(--lux-gold-accent);
  color: var(--lux-blue);
  border: 1.8px solid var(--lux-gold);
  border-radius: 6px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: background 0.1s, color 0.11s;
  cursor: pointer;
}
.cookie-btn-secondary:hover { background: var(--lux-gold); color: #fff; }
@media (max-width: 790px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 24px 2vw 18px 2vw;
    font-size: .97rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-text { max-width: unset; }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 12000;
  background: rgba(36,84,122,0.57);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  animation: cookieModalIn 0.33s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal-inner {
  background: var(--lux-white);
  box-shadow: 0 8px 40px -8px var(--lux-blue);
  border-radius: 14px;
  max-width: 480px;
  width: 92vw;
  padding: 36px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 700;
  color: var(--lux-blue);
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1;
}
.cookie-modal-close:hover { color: var(--lux-gold); }
.cookie-modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.27rem;
  color: var(--lux-blue);
}
.cookie-options {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 1.08rem;
}
.cookie-category .label {
  font-weight: 600;
  color: var(--lux-text-dark);
}
.cookie-category .desc {
  font-size: 0.99rem;
  color: var(--lux-text-body);
  margin-left: 8px;
}
.cookie-toggle {
  width: 45px; height: 24px;
  background: var(--lux-secondary);
  border-radius: 40px;
  border: 1.5px solid var(--lux-gold);
  position: relative;
  cursor: pointer;
  transition: background .12s;
}
.cookie-toggle input {
  opacity: 0; width: 0; height: 0;
  position: absolute;
}
.cookie-toggle .slider {
  position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: var(--lux-gold);
  border-radius: 50%;
  transition: left 0.18s, background 0.13s;
}
.cookie-toggle input:checked + .slider {
  left: 22px;
  background: var(--lux-blue);
}
.cookie-category[data-essential] .cookie-toggle {
  background: var(--lux-gold);
  cursor: not-allowed;
  opacity: 0.7;
}
.cookie-category[data-essential] .slider {
  background: var(--lux-blue);
}
/* --------------------------------------------------- */
/* Utility                                             */
/* --------------------------------------------------- */
.visually-hidden {
  position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;
}

/* --------------------------------------------------- */
/* Other / Micro Animations                             */
/* --------------------------------------------------- */
a, button, .cta-button, .cookie-btn-primary, .cookie-btn-secondary, .mobile-menu-close, .mobile-menu-toggle {
  transition: color .15s, background .16s, box-shadow .16s, border .14s, opacity .13s;
}
.card, .card-container > *, .testimonial-card, .category-grid > div, .season-grid > div { transition: box-shadow 0.22s, background 0.2s; }

/* --------------------------------------------------- */
/* Hide visually redundant elements                     */
/* --------------------------------------------------- */
[hidden] { display: none !important; }

/* --------------------------------------------------- */
/* Microdetails (Dividers, Decorative Gold)             */
/* --------------------------------------------------- */
.section > h2:after, .content-wrapper > h2:after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--lux-gold);
  margin-top: 7px;
  margin-bottom: 10px;
}
.value-grid > div, .season-grid > div, .tip-grid > div {
  border-left: 4px solid var(--lux-gold-accent);
}
.team-intros h3 {
  margin-top: 12px;
  margin-bottom: 6px;
  color: var(--lux-gold);
  font-size: 1.1rem;
}

/* --------------------------------------------------- */
/* Form Styles (for forms if added)                    */
/* --------------------------------------------------- */
input, textarea, select {
  border: 1.5px solid var(--lux-gold-accent);
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  width: 100%;
  margin-bottom: 17px;
  background: #fff;
  box-shadow: 0 2px 10px -7px var(--lux-blue);
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--lux-gold);
  outline: none;
}

/* --------------------------------------------------- */
/* Ensure min spacing for all cards/sections            */
/* --------------------------------------------------- */
.card, .category-grid > div, .season-grid > div, .value-grid > div, .tip-grid > div, .faq-list > div {
  margin-bottom: 20px;
}
.section, .testimonial-card, .cta-banner, .address-block, .feature-item, .content-grid > * {
  margin-bottom: 20px;
}

/* --------------------------------------------------- */
/* Scrollbar Styling                                   */
/* --------------------------------------------------- */
::-webkit-scrollbar { width: 11px; background: var(--lux-secondary); }
::-webkit-scrollbar-thumb { background: var(--lux-gold-accent); border-radius: 7px; }
::-webkit-scrollbar-thumb:hover { background: var(--lux-gold); }

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