/* --------------------------------------
   CSS RESET & NORMALIZATION
----------------------------------------- */
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, 
main, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #f4f7fa;
  color: #212529;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* --------------------------------------
   BRAND COLOR VARIABLES (with fallbacks)
----------------------------------------- */
:root {
  --color-primary: #105B85;
  --color-primary-light: #2780b4;
  --color-bg: #f4f7fa;
  --color-secondary: #F8CB2E;
  --color-secondary-dark: #c5a329;
  --color-accent: #fff;
  --color-heading: #11151a;
  --color-body: #212529;
  --color-grey: #eaeaea;
  --color-card: #fff;
  --color-shadow: rgba(16,91,133,0.07);
  --color-gold: #D4AF37;
  --color-gold-dark: #a88c2a;
  --color-footer: #102535;
}

/* --------------------------------------
   TYPOGRAPHY: Luxury Premium
----------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Roboto:wght@400;500&display=swap');

body {
  font-family: var(--font-body, 'Roboto', Arial, sans-serif);
  color: var(--color-body);
  background: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.6rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; font-weight: 600; }
h4 { font-size: 1.125rem; }
p, ul, ol, li, span, strong {
  font-family: var(--font-body, 'Roboto', Arial, sans-serif);
  font-size: 1rem;
  color: var(--color-body);
  margin-bottom: 12px;
}
strong, b {
  font-weight: 600;
  color: var(--color-primary);
}

@media (max-width: 480px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; }
}

/* Luxury accent for headings */
h1, h2  {
  border-left: 4px solid var(--color-gold);
  padding-left: 16px;
  background: linear-gradient(to right,rgba(212,175,55,0.03) 0,rgba(212,175,55,0.01) 60%,transparent 100%);
}

/* --------------------------------------
   LAYOUT CONTAINERS
----------------------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 86px;
  padding: 18px 0;
}
@media (max-width: 900px) {
  .header-container {gap:10px;padding:13px 0;}
}

/* --------------------------------------
   NAVIGATION (Desktop)
----------------------------------------- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--color-heading);
  position: relative;
  padding: 8px 0;
  font-size: 1rem;
  opacity:0.89;
  transition:color .2s,opacity .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  opacity:1;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 26px;
  padding: 0.65em 2.25em;
  font-size: 1.06rem;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: none;
  transition: background .2s, box-shadow .2s, color .2s;
  position: relative;
  z-index: 1;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.04em;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-gold);
  color: var(--color-heading);
  box-shadow: 0 6px 24px rgba(16,91,133,0.11);
}

/* --------------------------------------
   MOBILE NAVIGATION
----------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-gold);
  color: var(--color-footer);
  border-radius: 8px;
  font-size: 2.2rem;
  line-height: 1;
  padding: 3px 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212,175,55,0.04);
  transition: background .2s, color .2s;
  z-index: 102;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .main-nav { display: none !important; }
  .btn-primary { display: none !important; }
  .mobile-menu-toggle {
    display: block !important;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: var(--color-accent);
  z-index: 101;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.76,.01,.22,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 20px;
  box-shadow: 0 6px 48px rgba(16,91,133,0.13);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2.6rem;
  margin: 30px 24px 0 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 105;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-gold-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0 0 0;
  width: 88vw;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  padding: 15px 0 15px 10px;
  border-bottom: 1px solid rgba(248,203,46,0.13);
  border-radius: 0 8px 8px 0;
  transition: background .2s, color .16s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: rgba(248,203,46,0.09);
  color: var(--color-secondary);
}
@media (min-width:901px) {
  .mobile-menu { display:none!important; }
}

/* --------------------------------------
   HERO SECTION
----------------------------------------- */
.hero-section {
  background: linear-gradient(120deg, #fff 60%, #f6ecd2 100%);
  padding: 40px 0 60px 0;
  position: relative;
}
.hero-section .container {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 6px 32px rgba(216,198,113,0.08);
  border-radius: 24px;
  padding: 36px 30px 32px 36px;
  gap: 18px;
}
.hero-section h1 {
  color: var(--color-primary);
  background: linear-gradient(92deg, #D4AF37 20%, #105B85 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section p {
  color: #4e5357;
  font-size: 1.11rem;
}
.hero-section .btn-primary {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 28px 0 30px 0;
  }
  .hero-section .content-wrapper {
    padding: 18px 10px 16px 14px;
    max-width: 100vw;
  }
}

/* --------------------------------------
   SECTION SPACING & FLEX LAYOUTS
----------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media(max-width:700px) {
  section {
    padding: 24px 1.5vw;
    margin-bottom: 34px;
  }
}

.content-wrapper,
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}
.feature {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 20px 20px 22px;
  position: relative;
  border: 1.5px solid rgba(212,175,55,0.10);
  transition: box-shadow .2s, border-color .2s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.feature h3 {
  font-size: 1.14rem;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 24px rgba(212,175,55,.13);
  border-color: var(--color-gold);
  z-index: 1;
}
@media (max-width: 900px) {
  .features-grid {
    gap: 20px;
  }
  .feature {
    min-width: 170px;
    padding: 16px 8px 14px 12px;
  }
}
@media (max-width: 700px) {
  .features-grid {
    flex-direction: column;
  }
  .feature {
    width: 100%;
    max-width: 100%;
  }
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}
.service {
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--color-card);
  border-radius: 15px;
  box-shadow: 0 2px 11px var(--color-shadow);
  padding: 26px 22px 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  margin-bottom: 20px;
  border: 1.5px solid rgba(212,175,55,.07);
  position: relative;
  transition:box-shadow .2s,border-color .2s;
}
.service h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-gold);
  margin-bottom: 7px;
  font-size: 1.12rem;
}
.service span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: var(--color-gold-dark);
  letter-spacing:0.01em;
  margin-top: 6px;
}
.service:hover, .service:focus-within {
  box-shadow: 0 8px 32px rgba(248,203,46,0.09);
  border-color: var(--color-gold);
  z-index: 3;
}
@media (max-width: 800px){
  .services-list {
    gap: 16px;
  }
  .service {
    min-width: 150px;
    padding: 14px 10px 14px 13px;
  }
}
@media (max-width: 650px) {
  .services-list {
    flex-direction: column;
    gap: 14px;
  }
  .service {
    width: 100%;
    max-width: 100%;
  }
}

.text-section ul {
  margin-left: 14px;
  font-size: 1rem;
  padding-left: 0.5em;
}
.text-section ul li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 22px;
  color: #143f52;
}
.text-section ul li:before {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-gold);
  position: absolute;
  left: 0; top: 8px;
}
/* icons-row in about-us */
.icons-row {
  display: flex;
  gap: 22px;
  margin-top: 22px;
}
.icons-row img {
  width: 43px; height: 43px;
  filter: drop-shadow(0 2px 4px rgba(212,175,55,0.12));
}

@media (max-width: 600px) {
  .icons-row {justify-content: center;gap:10px;}
  .icons-row img{width:30px; height:30px;}
}

/* --------------------------------------
   CARD CONTAINERS
----------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  min-width: 180px;
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* --------------------------------------
   TESTIMONIALS
----------------------------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  background: #fffbea;
  border-radius: 15px;
  padding: 20px;
  min-width:220px;
  box-shadow: 0 4px 18px rgba(155,134,53,0.08);
  border: 1.2px solid rgba(212,175,55,0.13);
  color: #1b1d1f;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #231b15;
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-size: 0.98rem;
  margin-top: 4px;
}
.testimonial-card:before {
  content: '“';
  color: var(--color-gold);
  font-family: 'Montserrat', serif;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  opacity: .95;
  margin-bottom: -13px;
}
.testimonial-card:after {
  content: '';
  display: block;
  width: 36px; height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  margin: 10px 0 0 0;
}
@media (max-width:700px){
  .testimonial-slider{ flex-direction:column; }
}

/* --------------------------------------
   TEAMS (about page)
----------------------------------------- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}
.team-member {
  flex: 1 1 240px;
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(212,175,55,0.09);
  border: 1.5px solid rgba(212,175,55,0.10);
  padding: 26px 22px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition:box-shadow .2s,border-color .2s;
}
.team-member h3 {
  color: var(--color-gold-dark);
  font-size: 1.13rem;
  margin-bottom: 1px;
}
.team-member span {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 10px 40px rgba(212,175,55,0.17);
  border-color: var(--color-gold);
  z-index: 2;
}
@media (max-width: 670px) {
  .team-list { flex-direction: column; gap:11px;}
}

/* --------------------------------------
   CONTACT SUMMARY / DETAILS
----------------------------------------- */
.contact-summary {
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 0.99rem;
  color: var(--color-heading);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-summary a {
  text-decoration: underline;
  color: var(--color-gold-dark);
  transition: color .2s;
}
.contact-summary a:hover, .contact-summary a:focus {
  color: var(--color-primary);
}
.contact-details ul,
.contact-details li {
  font-size: 1.06rem;
  color: var(--color-primary);
  line-height: 1.65;
  margin-bottom: 7px;
}

/* --------------------------------------
   FOOTER
----------------------------------------- */
footer {
  background: var(--color-footer);
  color: var(--color-accent);
  padding: 36px 0 20px 0;
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.9;
  transition: color .2s,opacity .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
  opacity:1;
}
.footer-contact {
  font-size: 1rem;
  background-color: #ebf1f8;
  opacity: .89;
  text-align: center;
}
.footer-contact a {
  color: var(--color-gold);
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--color-secondary);
}
.footer-disclaimer {
  font-size: 0.92rem;
  color: #ccc58a;
  margin-top:12px;
  letter-spacing: 0.03em;
  opacity: .62;
}
@media(max-width:700px){
  .footer-container{
    gap:7px;
    font-size: 0.94rem;
  }
  .footer-nav {
    gap:10px;
    font-size:0.93rem;
  }
}

/* --------------------------------------
   COOKIE CONSENT BANNER
----------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(255,255,245,0.98);
  box-shadow: 0 -2px 22px rgba(212,175,55,0.09);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  z-index: 2500;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #21292a;
  padding: 20px 32px 22px 32px;
  border-top: 2.5px solid var(--color-gold);
  animation: fadeInUp 0.35s cubic-bezier(.6,.01,.27,.99);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(56px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner__msg {
  flex: 1 1 320px;
  max-width: 530px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 0.55em 1.6em;
  font-size: 1rem;
  border-radius: 20px;
  font-weight: 600;
  border: none;
  transition: background .2s, color .2s;
  cursor: pointer;
  margin-bottom: 3px;
  outline: none;
}
.cookie-btn__accept {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-btn__accept:hover { background: var(--color-gold); color: var(--color-heading);}
.cookie-btn__reject {
  background: #ffe496;
  color: var(--color-heading);
  border: 1.2px solid var(--color-gold);
}
.cookie-btn__reject:hover {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-btn__settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1.2px solid var(--color-primary);
}
.cookie-btn__settings:hover {
  background: var(--color-secondary);
  color: var(--color-heading);
}
@media(max-width:600px){
  .cookie-banner{
    flex-direction:column;
    gap:14px;
    padding:11px 14px 15px 14px;
    font-size:0.97rem;
  }
  .cookie-banner__actions{gap:7px;}
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,28,35,0.46);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.77,.01,.19,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__box {
  background: #fffdf6;
  padding: 38px 32px 30px 32px;
  border-radius: 20px;
  min-width: 330px;
  max-width: 97vw;
  box-shadow: 0 4px 29px rgba(212,175,55,0.17);
  position: relative;
  border: 1.7px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: popupScaleIn .32s cubic-bezier(.22,.88,.24,1.14);
}
@keyframes popupScaleIn {
  0% { opacity:0; transform:scale(.78); }
  100% { opacity:1; transform:scale(1); }
}
.cookie-modal__box h3 {
  color: var(--color-primary);
}
.cookie-modal__close {
  position: absolute;
  right:22px; top:13px;
  background: none;
  color: var(--color-primary);
  font-size:1.9rem;
  border: none;
  cursor:pointer;
  z-index:10;
  transition:color .2s;
}
.cookie-modal__close:hover { color:var(--color-gold);}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1.3px solid #eee5bf;
  padding-bottom: 13px;
  margin-bottom:7px;
}
.cookie-toggle {
  width:40px; height:22px;
  background: #e6e2d9;
  border-radius:11px;
  cursor: pointer;
  position: relative;
  transition: background .2s;
  flex-shrink:0;
}
.cookie-toggle--on {
  background: var(--color-gold);
}
.cookie-toggle__knob {
  position: absolute;
  top:2px;
  left:2px;
  width: 18px; height:18px;
  background: #fff;
  border-radius:50%;
  box-shadow: 0 1px 3px rgba(16,91,133,0.14);
  transition: left .27s cubic-bezier(.77,.01,.19,1);
}
.cookie-toggle--on .cookie-toggle__knob {
  left:20px;
}

.cookie-modal__category .category-title {
  font-family:'Montserrat',sans-serif;
  font-weight:600;
}
.category-desc {
  font-size:0.95rem;
  opacity:.83;
  color:#7a7772;
  font-family:'Roboto',sans-serif;
}
.category-essential {
  color: var(--color-gold-dark);
  font-weight: 700;
}
@media(max-width:448px){
  .cookie-modal__box {padding:16px 4vw 12px 5vw;} 
  .cookie-modal__box min-width: auto;
  .cookie-modal__box h3 { font-size:1.09rem;}
}

/* --------------------------------------
   UTILITY CLASSES & ANIMATION
----------------------------------------- */
@media (max-width:900px){
  .container {
    max-width: 97vw;
    padding: 0 5vw;
  }
}
.shadow {
  box-shadow: 0 2px 10px rgba(16,91,133,0.11);
}
.rounded {
  border-radius: 14px;
}
.text-center {
  text-align: center;
}

::-webkit-scrollbar {
  width: 10px;
  background: #ede6c7;
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 12px;
}

/* Extra: micro-interaction for cards */
.feature, .service, .team-member, .testimonial-card, .card {
  transition: box-shadow .18s, border-color .15s, transform .14s;
}
.feature:hover, .feature:focus,
.service:hover, .service:focus,
.team-member:hover, .team-member:focus,
.testimonial-card:hover, .testimonial-card:focus,
.card:hover, .card:focus {
  box-shadow:0 7px 30px rgba(248,203,46,0.13);
  transform: translateY(-2px) scale(1.012);
  border-color: var(--color-gold);
}

/* Responsive Handling for .content-wrapper */
@media (max-width:650px) {
  .content-wrapper {
    padding: 10px 6px !important;
    font-size: 0.97em;
    gap: 8px;
  }
}

/* Remove outline on mouse, keep for keyboard navigation */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--color-gold);
}

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