/* ==========================================================================
   AURELIO HOTELS — CORE DESIGN SYSTEM
   Design language: quiet luxury hospitality.
   Signature motif: the "keycard stripe" — a brass gradient bar that marks
   every card and confirmation, echoing a hotel key card's magnetic strip.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Work+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  /* --- Color tokens ------------------------------------------------ */
  --bg:            #FBF9F4;
  --surface:       #FFFFFF;
  --surface-sunk:  #F3EFE4;
  --ink:           #1B2A22;
  --ink-soft:      #4A5D52;
  --ink-faint:     #8A9A8F;
  --border:        #E4DFD3;
  --border-strong: #D2CBB8;

  --primary:       #1F3D2C;
  --primary-light: #2E5940;
  --primary-dark:  #142A1E;
  --primary-tint:  #E7EEE7;

  --brass:         #B8874B;
  --brass-light:   #D9AE73;
  --brass-dark:    #8F6531;
  --brass-tint:    #F5EBD9;

  --wine:          #8C3037;
  --wine-tint:     #F6E7E5;
  --gold-status:   #9A7A22;
  --gold-tint:     #F7EFD9;
  --green-status:  #2E6B45;
  --green-tint:    #E5F1E8;

  /* --- Type ---------------------------------------------------------- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'IBM Plex Mono', 'SFMono-Regular', monospace;

  /* --- Elevation ------------------------------------------------------ */
  --shadow-sm: 0 1px 2px rgba(27, 42, 34, 0.06), 0 1px 1px rgba(27, 42, 34, 0.04);
  --shadow-md: 0 6px 20px rgba(27, 42, 34, 0.08), 0 2px 6px rgba(27, 42, 34, 0.05);
  --shadow-lg: 0 20px 48px rgba(27, 42, 34, 0.16), 0 6px 16px rgba(27, 42, 34, 0.08);
  --shadow-keycard: 0 12px 32px rgba(184, 135, 75, 0.28);

  /* --- Radius / rhythm -------------------------------------------------- */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --container: 1240px;
  --demo-banner-h: 0px;
  --nav-h: calc(76px + var(--demo-banner-h));
}

/* --- Reduced motion --------------------------------------------------- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea{ font: inherit; color: inherit; }
ul{ list-style: none; }
h1,h2,h3,h4,h5{ font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
:focus-visible{ outline: 2.5px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 var(--space-5); }
@media (max-width: 640px){ .container{ padding: 0 var(--space-4); } }

.eyebrow{
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass-dark); font-weight: 500; display: inline-flex; align-items: center; gap: var(--space-2);
}
.eyebrow::before{ content:''; width: 22px; height: 1px; background: var(--brass); display:inline-block; }

.section{ padding: var(--space-9) 0; }
@media (max-width: 768px){ .section{ padding: var(--space-7) 0; } }
.section-head{ max-width: 620px; margin-bottom: var(--space-7); }
.section-head p{ color: var(--ink-soft); font-size: 17px; margin-top: var(--space-3); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 13px 26px; border-radius: var(--r-pill); font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.01em; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--primary-light); box-shadow: var(--shadow-md); }
.btn-brass{ background: linear-gradient(135deg, var(--brass-light), var(--brass-dark)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-brass:hover{ box-shadow: var(--shadow-keycard); transform: translateY(-1px); }
.btn-outline{ background: transparent; border-color: var(--border-strong); color: var(--ink); }
.btn-outline:hover{ border-color: var(--primary); color: var(--primary); }
.btn-outline-light{ background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover{ background: rgba(255,255,255,0.12); }
.btn-ghost{ background: transparent; color: var(--ink-soft); padding: 10px 14px; }
.btn-ghost:hover{ color: var(--ink); }
.btn-danger{ background: var(--wine-tint); color: var(--wine); }
.btn-danger:hover{ background: var(--wine); color: #fff; }
.btn-sm{ padding: 8px 16px; font-size: 13px; }
.btn-lg{ padding: 16px 34px; font-size: 15.5px; }
.btn-block{ width: 100%; }
.btn[disabled]{ opacity: 0.5; pointer-events: none; }
.btn .spinner{ width: 15px; height: 15px; }

/* ==========================================================================
   DEMO GUIDE (floating button + welcome modal)
   ========================================================================== */
.demo-guide-fab{
  position: fixed; bottom: 22px; right: 22px; z-index: 650;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(145deg, var(--brass-light), var(--brass-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-keycard); transition: transform .18s ease;
  animation: demo-fab-pop .35s cubic-bezier(.2,.9,.3,1.3);
}
.demo-guide-fab:hover{ transform: translateY(-2px) scale(1.04); }
@keyframes demo-fab-pop{ from{ transform: scale(0); opacity:0; } to{ transform: scale(1); opacity:1; } }
@media (max-width: 640px){ .demo-guide-fab{ bottom: 16px; right: 16px; width: 46px; height: 46px; } }

.demo-guide-checklist{ display:flex; flex-direction:column; gap: var(--space-4); margin: var(--space-4) 0; }
.demo-guide-checklist li{ display:flex; gap: 12px; align-items:flex-start; }
.demo-guide-checklist .num{
  flex-shrink:0; width: 26px; height:26px; border-radius:50%; margin-top:1px;
  background: var(--primary-tint); color: var(--primary); display:flex; align-items:center; justify-content:center;
  font-size: 12px; font-weight:700; font-family: var(--font-mono);
}
.demo-guide-checklist div{ font-size: 13.5px; }
.demo-guide-checklist b{ display:block; margin-bottom: 2px; font-size: 14px; }
.demo-guide-checklist span{ color: var(--ink-soft); line-height:1.5; }
.demo-guide-tip{
  display:flex; align-items:flex-start; gap: 10px; margin-top: var(--space-4);
  background: var(--brass-tint); border: 1px solid var(--brass-light); color: var(--brass-dark);
  border-radius: var(--r-md); padding: 12px 14px; font-size: 13px; line-height:1.5;
}
.demo-guide-tip svg{ flex-shrink:0; margin-top: 1px; }
.demo-guide-tip b{ color: var(--brass-dark); }
.demo-guide-switch{
  display:flex; align-items:flex-start; gap: 10px; margin-top: var(--space-3);
  background: var(--primary-tint); color: var(--primary); border-radius: var(--r-md);
  padding: 12px 14px; font-size: 13px; line-height:1.5;
}
.demo-guide-switch svg{ flex-shrink:0; margin-top: 1px; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar{
  position: fixed; top: var(--demo-banner-h); left: 0; right: 0; z-index: 500; height: 76px;
  display: flex; align-items: center; background: rgba(251,249,244,0.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, background-color .25s ease, top .25s ease;
}
.navbar.is-scrolled{ border-bottom-color: var(--border); background: rgba(251,249,244,0.97); }
.navbar .container{ display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); }
.brand{ display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--primary); }
.brand-mark{ width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(145deg, var(--brass-light), var(--brass-dark)); display:flex; align-items:center; justify-content:center; color:#fff; font-size:15px; font-weight:700; box-shadow: var(--shadow-sm); }
.nav-links{ display: flex; align-items: center; gap: var(--space-6); }
.nav-links a{ font-size: 14.5px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 6px 0; }
.nav-links a:hover, .nav-links a.active{ color: var(--ink); }
.nav-links a.active::after{ content:''; position:absolute; left:0; right:0; bottom:-3px; height:2px; background:var(--brass); border-radius: 2px; }
.nav-actions{ display: flex; align-items: center; gap: var(--space-3); }
.nav-toggle{ display: none; width: 40px; height: 40px; align-items:center; justify-content:center; border-radius: var(--r-sm); }
.nav-toggle:hover{ background: var(--surface-sunk); }
.nav-user{ display:flex; align-items:center; gap:10px; padding: 6px 14px 6px 6px; border-radius: var(--r-pill); background: var(--surface); border:1px solid var(--border); box-shadow: var(--shadow-sm); }
.nav-avatar{ width: 30px; height: 30px; border-radius: 50%; background: var(--primary-tint); color: var(--primary); display:flex; align-items:center; justify-content:center; font-size:12.5px; font-weight:700; font-family: var(--font-mono); }
.nav-avatar-badge{ position:absolute; top:-4px; right:-4px; min-width:16px; height:16px; padding:0 4px; border-radius:999px; background:var(--wine); color:#fff; font-size:10px; font-weight:700; display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); border:2px solid var(--bg); }
.nav-user span{ font-size: 13.5px; font-weight: 600; }

@media (max-width: 900px){
  .nav-links{ position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: stretch; padding: var(--space-5); gap: var(--space-1); transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ padding: 14px 4px; border-bottom: 1px solid var(--border); font-size: 16px; }
  .nav-toggle{ display: flex; }
  .nav-user span{ display: none; }
}

/* ==========================================================================
   CARDS  (keycard-stripe motif)
   ========================================================================== */
.card{
  background: var(--surface); border-radius: var(--r-lg); border: 1px solid var(--border);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s ease, transform .25s ease;
}
.card-stripe{ height: 5px; background: linear-gradient(90deg, var(--brass-dark), var(--brass-light) 45%, var(--brass) 55%, var(--brass-dark)); background-size: 200% 100%; }
.card:hover{ box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card:hover .card-stripe{ background-position: 100% 0; transition: background-position .6s ease; }

/* Room card */
.room-card{ display:flex; flex-direction: column; }
.room-card-media{ position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-sunk); }
.room-card-media img{ width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-card-media img{ transform: scale(1.06); }
.room-card-badge{ position:absolute; top: 14px; left: 14px; background: rgba(27,42,34,0.82); color:#fff; font-size: 11.5px; font-weight:600; letter-spacing:.04em; padding: 6px 12px; border-radius: var(--r-pill); backdrop-filter: blur(6px); }
.room-card-fav{ position:absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.9); display:flex; align-items:center; justify-content:center; }
.room-card-body{ padding: var(--space-5); display:flex; flex-direction:column; gap: var(--space-3); flex:1; }
.room-card-top{ display:flex; align-items:flex-start; justify-content:space-between; gap: var(--space-3); }
.room-card-top h3{ font-size: 19px; }
.room-card-type{ font-size: 12.5px; color: var(--ink-faint); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em; }
.room-card-desc{ color: var(--ink-soft); font-size: 14.5px; }
.room-card-amenities{ display:flex; flex-wrap:wrap; gap: 8px; }
.chip{ font-size: 12px; padding: 5px 11px; border-radius: var(--r-pill); background: var(--surface-sunk); color: var(--ink-soft); font-weight: 500; display:inline-flex; align-items:center; gap:5px; }
.room-card-footer{ margin-top: auto; padding-top: var(--space-3); border-top: 1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.room-price{ font-family: var(--font-mono); }
.room-price b{ font-size: 21px; color: var(--primary); }
.room-price span{ font-size: 12.5px; color: var(--ink-faint); }

/* ==========================================================================
   FORMS
   ========================================================================== */
.field{ display:flex; flex-direction:column; gap: 7px; margin-bottom: var(--space-4); }
.field label{ font-size: 13px; font-weight: 600; color: var(--ink); }
.field .hint{ font-size: 12px; color: var(--ink-faint); }
.field .error-text{ font-size: 12.5px; color: var(--wine); display:none; }
.field.has-error .error-text{ display:block; }
.field.has-error input, .field.has-error select, .field.has-error textarea{ border-color: var(--wine); }
.input, select.input, textarea.input{
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--surface); font-size: 14.5px; transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus{ border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-tint); outline: none; }
textarea.input{ resize: vertical; min-height: 90px; }
.input-icon-wrap{ position: relative; }
.input-icon-wrap .input{ padding-left: 42px; }
.input-icon-wrap svg{ position:absolute; left: 14px; top:50%; transform:translateY(-50%); color: var(--ink-faint); }
.input-group-2{ display:grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 520px){ .input-group-2{ grid-template-columns: 1fr; } }
.checkbox-row{ display:flex; align-items:center; gap: 9px; font-size: 13.5px; color: var(--ink-soft); }
.checkbox-row input{ width: 17px; height: 17px; accent-color: var(--primary); }

/* ==========================================================================
   BADGES / STATUS
   ========================================================================== */
.badge{ display:inline-flex; align-items:center; gap:6px; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--r-pill); }
.badge::before{ content:''; width:6px; height:6px; border-radius:50%; background: currentColor; }
.badge-pending{ background: var(--gold-tint); color: var(--gold-status); }
.badge-confirmed{ background: var(--green-tint); color: var(--green-status); }
.badge-cancelled{ background: var(--wine-tint); color: var(--wine); }
.badge-completed{ background: var(--primary-tint); color: var(--primary); }
.badge-available{ background: var(--green-tint); color: var(--green-status); }
.badge-unavailable{ background: var(--wine-tint); color: var(--wine); }
.badge-maintenance{ background: var(--gold-tint); color: var(--gold-status); }

/* ==========================================================================
   TOASTS
   ========================================================================== */
.toast-stack{ position: fixed; top: calc(var(--nav-h) + 16px); right: 20px; z-index: 2000; display:flex; flex-direction:column; gap: 10px; width: min(360px, calc(100vw - 40px)); }
.toast{
  background: var(--ink); color: #fff; padding: 15px 16px; border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  display:flex; align-items:flex-start; gap: 12px; animation: toast-in .28s cubic-bezier(.2,.9,.3,1.3);
  border-left: 4px solid var(--brass);
}
.toast.success{ border-left-color: #4CA871; }
.toast.error{ border-left-color: #C05353; }
.toast.warning{ border-left-color: var(--brass-light); }
.toast-icon{ flex-shrink:0; margin-top: 1px; }
.toast-body strong{ display:block; font-size: 13.5px; margin-bottom: 2px; }
.toast-body p{ font-size: 12.5px; color: rgba(255,255,255,0.72); }
.toast-close{ margin-left: auto; opacity: 0.6; }
.toast-close:hover{ opacity: 1; }
.toast.leaving{ animation: toast-out .22s ease forwards; }
@keyframes toast-in{ from{ opacity:0; transform: translateX(24px) scale(.96); } to{ opacity:1; transform: translateX(0) scale(1); } }
@keyframes toast-out{ to{ opacity:0; transform: translateX(24px) scale(.96); } }

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay{ position: fixed; inset:0; background: rgba(19,26,22,0.55); backdrop-filter: blur(3px); z-index: 1000; display:flex; align-items:center; justify-content:center; padding: var(--space-4); opacity:0; pointer-events:none; transition: opacity .22s ease; }
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal{ background: var(--surface); border-radius: var(--r-lg); width: 100%; max-width: 520px; max-height: 90vh; overflow-y:auto; box-shadow: var(--shadow-lg); transform: translateY(14px) scale(.98); transition: transform .25s cubic-bezier(.2,.9,.3,1.1); }
.modal-overlay.open .modal{ transform: translateY(0) scale(1); }
.modal-lg{ max-width: 760px; }
.modal-head{ display:flex; align-items:center; justify-content:space-between; padding: var(--space-5) var(--space-5) var(--space-4); border-bottom: 1px solid var(--border); }
.modal-head h3{ font-size: 20px; }
.modal-close{ width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; color: var(--ink-faint); }
.modal-close:hover{ background: var(--surface-sunk); color: var(--ink); }
.modal-body{ padding: var(--space-5); }
.modal-footer{ padding: var(--space-4) var(--space-5) var(--space-5); display:flex; gap: var(--space-3); justify-content:flex-end; border-top: 1px solid var(--border); }

/* ==========================================================================
   LOADING
   ========================================================================== */
.spinner{ width: 22px; height: 22px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,0.35); border-top-color: #fff; animation: spin .7s linear infinite; }
.spinner-dark{ border-color: var(--border-strong); border-top-color: var(--primary); }
@keyframes spin{ to{ transform: rotate(360deg); } }
.page-loader{ position: fixed; inset:0; background: var(--bg); z-index: 3000; display:flex; align-items:center; justify-content:center; flex-direction:column; gap: 16px; transition: opacity .3s ease, visibility .3s ease; }
.page-loader.hidden{ opacity:0; visibility:hidden; }
.page-loader .brand-mark{ width: 52px; height: 52px; font-size: 20px; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.08); } }

.skeleton{ background: linear-gradient(90deg, var(--surface-sunk) 25%, #EAE4D5 37%, var(--surface-sunk) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; border-radius: var(--r-md); }
@keyframes shimmer{ 0%{ background-position: 100% 0; } 100%{ background-position: -100% 0; } }
.skeleton-card{ height: 320px; border-radius: var(--r-lg); }

/* ==========================================================================
   EMPTY STATES
   ========================================================================== */
.empty-state{ text-align:center; padding: var(--space-8) var(--space-4); color: var(--ink-soft); }
.empty-state .icon-wrap{ width: 68px; height: 68px; border-radius: 50%; background: var(--surface-sunk); color: var(--ink-faint); display:flex; align-items:center; justify-content:center; margin: 0 auto var(--space-4); }
.empty-state h3{ font-size: 19px; margin-bottom: var(--space-2); color: var(--ink); }
.empty-state p{ max-width: 360px; margin: 0 auto var(--space-4); font-size: 14.5px; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center{ text-align:center; }
.mt-1{ margin-top: var(--space-1);} .mt-2{ margin-top: var(--space-2);} .mt-3{ margin-top: var(--space-3);}
.mt-4{ margin-top: var(--space-4);} .mt-5{ margin-top: var(--space-5);} .mt-6{ margin-top: var(--space-6);}
.mb-2{ margin-bottom: var(--space-2);} .mb-3{ margin-bottom: var(--space-3);} .mb-4{ margin-bottom: var(--space-4);}
.flex{ display:flex; } .items-center{ align-items:center; } .justify-between{ justify-content:space-between; }
.gap-2{ gap:8px;} .gap-3{ gap:12px;} .gap-4{ gap:16px;}
.text-soft{ color: var(--ink-soft); } .text-faint{ color: var(--ink-faint); } .text-brass{ color: var(--brass-dark); }
.hidden{ display:none !important; }
.sr-only{ position:absolute; width:1px;height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--primary-dark); color: rgba(255,255,255,0.78); padding: var(--space-8) 0 var(--space-5); }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-6); margin-bottom: var(--space-7); }
@media (max-width: 800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{ color: #fff; font-family: var(--font-body); font-size: 13px; letter-spacing:.06em; text-transform:uppercase; margin-bottom: var(--space-3); font-weight:600; }
.footer-grid a, .footer-grid p{ font-size: 14px; color: rgba(255,255,255,0.68); display:block; margin-bottom: 10px; }
.footer-grid a:hover{ color: #fff; }
.footer-brand p{ margin-top: var(--space-3); max-width: 280px; font-size: 14px; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--space-5); display:flex; justify-content:space-between; flex-wrap:wrap; gap: var(--space-3); font-size: 13px; color: rgba(255,255,255,0.5); }

/* Scrollbar polish */
::-webkit-scrollbar{ width: 10px; height: 10px; }
::-webkit-scrollbar-track{ background: transparent; }
::-webkit-scrollbar-thumb{ background: var(--border-strong); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover{ background: var(--ink-faint); }
