/* ============================================================
   MEMENTO MORI MMA — CORE STYLE SYSTEM
   Design Language: Refined Brutalism | Pure Grayscale
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg-deep:         #000000;
  --bg-surface:      #0A0A0A;
  --bg-surface-2:    #111111;
  --bg-surface-3:    #181818;
  --border-hairline: rgba(255,255,255,0.08);
  --border-mid:      rgba(255,255,255,0.15);
  --text-primary:    #F5F5F7;
  --text-muted:      #6E6E73;
  --text-faint:      #3A3A3C;
  --accent-white:    #FFFFFF;
  --font-display:    'Oswald', sans-serif;
  --font-body:       'Inter', sans-serif;
  --ease-premium:    cubic-bezier(0.16, 1, 0.3, 1);
  --transition:      0.6s var(--ease-premium);
  --max-w:           1280px;
  --section-pad:     clamp(3.5rem, 10vw, 9rem);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--text-primary);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-primary);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
}
.body-sm {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
section { position: relative; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent-white);
  color: var(--bg-deep);
  border: 1px solid var(--accent-white);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent-white);
}
.btn-ghost {
  background: transparent;
  color: var(--accent-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: var(--accent-white);
  color: var(--bg-deep);
  border-color: var(--accent-white);
}
.btn-arrow::after { content: '→'; transition: transform 0.3s ease; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), border-color var(--transition), padding var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-hairline);
  padding: 0.85rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 110px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}
.nav-links a,
.nav-links button {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent-white);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-premium);
}
.nav-links a:hover, .nav-links button:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 0.35rem; }
.dropdown-toggle .chevron {
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-hairline);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-premium);
  transform: translateX(-50%) translateY(-8px);
}
/* Invisible bridge to prevent hover gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -1.4rem;
  left: 0;
  right: 0;
  height: 1.4rem;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown:hover .chevron,
.dropdown.open .chevron { transform: rotate(225deg) translateY(-2px); }
.dropdown-menu a, .dropdown-menu button {
  display: block;
  width: 100%;
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-align: left;
  color: var(--text-muted);
  transition: color 0.2s ease, padding-left 0.2s ease;
  border-bottom: none !important;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover, .dropdown-menu button:hover {
  color: var(--text-primary);
  padding-left: 2rem;
}
.nav-cta { flex-shrink: 0; }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.35);
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease-premium) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.7) 100%
  );
}
/* CSS fallback when no image */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 50%),
    #040404;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hero-skull {
  width: clamp(80px, 12vw, 130px);
  margin-bottom: 1rem;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  animation: floatSkull 6s ease-in-out infinite;
}
@keyframes floatSkull {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-eyebrow {
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: uppercase;
}
.hero-logo {
  width: clamp(280px, 36vw, 300px);
  height: auto;
  margin-bottom: 0.5rem;
  pointer-events: auto;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--text-primary);
  max-width: 900px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(245,245,247,0.55);
  letter-spacing: 0.05em;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.hero-scroll-hint {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.35;
  margin-top: 1.5rem; /* Pinned directly under the CTA buttons */
  margin-bottom: 0; 
  animation: scrollBobRelative 2.5s ease-in-out infinite;
}
@keyframes scrollBobRelative {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50%       { transform: translateY(6px); opacity: 0.5; }
}
.hero-scroll-hint span { 
  font-size: 0.6rem; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
  margin-right: -0.2em; /* Offsets trailing letter-spacing to perfectly center the text */
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ── SECTION: WHAT WE OFFER ───────────────────────────────── */
#offer {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}
.offer-header { text-align: center; margin-bottom: 4rem; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-hairline);
}
.offer-card {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border-hairline);
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.offer-card:last-child { border-right: none; }
.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent-white);
  transition: width 0.5s var(--ease-premium);
}
.offer-card:hover { background: var(--bg-surface-2); }
.offer-card:hover::after { width: 100%; }
.offer-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}
.offer-card:hover .offer-number { color: var(--border-mid); }
.offer-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.25rem;
  opacity: 0.65;
}
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.offer-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.offer-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.5rem;
  transition: color 0.3s ease, gap 0.3s ease;
}
.offer-card:hover .card-arrow { color: var(--text-primary); gap: 0.7rem; }

/* ── SECTION: STATS ───────────────────────────────────────── */
#stats {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-hairline);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--border-hairline);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ── SECTION: WHY US ─────────────────────────────────────── */
#why {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-hairline);
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.why-headline-sticky {
  position: sticky;
  top: 8rem;
}
.why-headline-sticky .eyebrow { margin-bottom: 1.5rem; }
.why-pillars { display: flex; flex-direction: column; gap: 0; }
.why-pillar {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-hairline);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: start;
  transition: background 0.3s ease;
}
.why-pillar:first-child { border-top: 1px solid var(--border-hairline); }
.why-pillar-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-faint);
  line-height: 1;
}
.why-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.why-pillar p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

/* ── SECTION: TESTIMONIALS ────────────────────────────────── */
#testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-hairline);
  overflow: hidden;
}
.testimonials-header { text-align: center; margin-bottom: 5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.testimonial-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border-hairline);
  position: relative;
}
.testimonial-item:last-child { border-right: none; }
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
  user-select: none;
}
.testimonial-quote {
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2rem;
}
.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testimonial-author strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

/* ── SECTION: HOW TO START ────────────────────────────────── */
#start {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-hairline);
}
.start-header { text-align: center; margin-bottom: 5rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--border-hairline);
}
.step-item {
  padding: 0 3rem;
  text-align: center;
}
.step-num-wrap {
  width: 5rem; height: 5rem;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
  background: var(--bg-surface);
  transition: border-color 0.4s ease, background 0.4s ease;
}
.step-item:hover .step-num-wrap {
  background: var(--accent-white);
  border-color: var(--accent-white);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.4s ease;
}
.step-item:hover .step-num { color: var(--bg-deep); }
.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.step-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ── SECTION: FAQ ────────────────────────────────────────── */
#faq {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-hairline);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: 8rem;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border-hairline);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question:hover { color: var(--accent-white); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s var(--ease-premium);
}
.faq-item.active .faq-icon {
  background: var(--accent-white);
  color: var(--bg-deep);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-premium), padding 0.4s ease;
}
.faq-answer p {
  padding-bottom: 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── SECTION: CONTACT FORM ────────────────────────────────── */
#contact {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-hairline);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.contact-left .eyebrow { margin-bottom: 1.5rem; }
.contact-left .display-md { margin-bottom: 1.5rem; }
.contact-left p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }
.form-field {
  position: relative;
  margin-bottom: 2.5rem;
}
.form-field label {
  position: absolute;
  top: 0.9rem;
  left: 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
  pointer-events: none;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-mid);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px; /* Explicit 16px prevents iOS auto-zoom on focus */
  padding: 0.9rem 0;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}
.form-field select {
  cursor: pointer;
  padding-right: 1rem;
}
.form-field option {
  background-color: #000;
  color: #fff;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--accent-white); }
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label {
  top: -1rem;
  font-size: 0.6rem;
  color: var(--accent-white);
}
.form-field textarea { resize: none; height: 100px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: transparent; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-submit-wrap { margin-top: 1rem; }

/* ── SECTION: LOCATION ────────────────────────────────────── */
#location {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-hairline);
}
.location-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.map-wrap {
  position: relative;
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--border-hairline);
}
.map-link-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.map-link-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-cta-overlay {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.3s ease, border-color 0.3s ease;
  pointer-events: none;
}
.map-link-wrap:hover .map-cta-overlay {
  background: rgba(255,255,255,0.95);
  color: #000;
  border-color: transparent;
}
.location-info { display: flex; flex-direction: column; justify-content: center; gap: 2.5rem; }
.location-info .eyebrow { margin-bottom: 1rem; }
.location-detail { display: flex; flex-direction: column; gap: 0.35rem; }
.location-detail .detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.location-detail .detail-value { font-size: 0.95rem; color: var(--text-primary); line-height: 1.5; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-hairline);
}
.hours-table td:first-child { color: var(--text-primary); font-weight: 500; }
.hours-table tr:last-child td { border-bottom: none; }

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  padding: 5rem 0 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-hairline);
  position: relative;
  overflow: hidden;
}
.footer-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  opacity: 0.025;
  width: 55%;
  pointer-events: none;
  /* No filter — new badge logo is full-color */
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-hairline);
  position: relative;
}
.footer-brand .nav-logo-text { font-size: 1.1rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; max-width: 280px; margin-top: 1rem; }
.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social-links a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.footer-social-links a:hover {
  background: var(--accent-white);
  color: var(--bg-deep);
  border-color: var(--accent-white);
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-col ul a:hover { color: var(--text-primary); padding-left: 0.5rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-faint); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--text-faint); transition: color 0.25s ease; }
.footer-legal a:hover { color: var(--text-muted); }

/* Operation Light Footer Signature */
.op-light-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  transition: all 0.3s ease;
}
.op-light-footer-badge:hover { color: #F5F5F7; }
.op-light-footer-badge strong {
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.op-light-footer-badge:hover strong { color: #F5F5F7; }
.op-light-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-faint);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.op-light-footer-badge:hover .op-light-icon {
  background: #F5F5F7;
  border-color: #F5F5F7;
  color: #0A0A0B;
  transform: rotate(15deg) scale(1.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
/* ── MODAL ────────────────────────────────────────────────── */
#modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-hairline);
  max-width: 580px;
  width: 90%;
  padding: 3rem;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.5s var(--ease-premium);
  max-height: 90vh;
  overflow-y: auto;
}
#modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-mid);
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.modal-close:hover { background: var(--text-faint); color: var(--text-primary); }
.modal-eyebrow { margin-bottom: 0.75rem; }
.modal-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.modal-sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 2rem; }

/* ── PAGE HEROES (sub-pages) ──────────────────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-hairline);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.15);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .eyebrow { margin-bottom: 1rem; }

/* ── PROGRAMS PAGE ────────────────────────────────────────── */
.program-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 1px solid var(--border-hairline);
}
.program-item:nth-child(even) .program-img { order: 2; }
.program-item:nth-child(even) .program-content { order: 1; }
.program-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface-3);
  min-height: 400px;
}
.program-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.7);
  transition: transform 0.8s var(--ease-premium), filter 0.6s ease;
}
.program-item:hover .program-img img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
}
.program-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.program-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.program-content h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; text-transform: uppercase; }

/* ── SCHEDULE PAGE ────────────────────────────────────────── */
.schedule-embed-notice {
  margin: 3rem 0;
  padding: 2rem;
  border: 1px dashed var(--border-mid);
  text-align: center;
}
.schedule-embed-wrapper {
  border: 1px solid var(--border-hairline);
  overflow: hidden;
  background: var(--bg-surface);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.schedule-embed-wrapper iframe { display: block; }
.gymdesk-placeholder {
  text-align: center;
  padding: 4rem;
}
.gymdesk-placeholder h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.gymdesk-placeholder p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.gymdesk-placeholder code {
  display: block;
  margin: 1rem auto;
  padding: 0.75rem 1.5rem;
  background: var(--bg-surface-2);
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1px solid var(--border-hairline);
  max-width: 500px;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-hairline);
}
.story-img {
  position: relative;
  overflow: hidden;
  min-height: 550px;
  background: var(--bg-surface-3);
}
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.7);
  transition: transform 0.8s var(--ease-premium);
}
.story-img:hover img { transform: scale(1.03); }
.story-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  border-left: 1px solid var(--border-hairline);
}
.coaches-section {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}
.coaches-header { text-align: center; margin-bottom: 4rem; }
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0;
}
.coach-card {
  border: 1px solid var(--border-hairline);
  overflow: hidden;
  transition: border-color 0.4s ease;
}
.coach-card:hover { border-color: var(--border-mid); }
.coach-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-surface-3);
}
.coach-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) brightness(0.75);
  transition: transform 0.8s var(--ease-premium), filter 0.5s ease;
}
.coach-card:hover .coach-img img {
  transform: scale(1.04);
  filter: grayscale(100%) brightness(0.9);
}
.coach-info { padding: 2rem; border-top: 1px solid var(--border-hairline); }
.coach-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.coach-title { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.coach-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.coach-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.coach-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border-mid);
  color: var(--text-muted);
}

/* ── SECTION CTA BAND ─────────────────────────────────────── */
.cta-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--accent-white);
  text-align: center;
}
.cta-band .display-lg { color: var(--bg-deep); }
.cta-band p { color: rgba(0,0,0,0.55); margin: 1.5rem auto; max-width: 480px; font-size: 0.95rem; }
.cta-band .btn-primary {
  background: var(--bg-deep);
  color: var(--accent-white);
  border-color: var(--bg-deep);
}
.cta-band .btn-primary:hover {
  background: transparent;
  color: var(--bg-deep);
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE NAV MENU ─────────────────────────────────────────*/
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav button {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  transition: color 0.3s ease;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav button:hover { color: var(--text-muted); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

/* ── UTILITY CLASSES ─────────────────────────────────────── */
.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.section-divider {
  width: 40px; height: 1px;
  background: var(--border-mid);
  margin: 2rem auto;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-logo-text { font-size: 1.6rem; }
  .nav-logo-text span { font-size: 0.75rem; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card { border-bottom: 1px solid var(--border-hairline); }
  .offer-card:nth-child(2) { border-right: none; }
  .offer-card:nth-child(3) { border-right: 1px solid var(--border-hairline); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border-hairline); border-top: 1px solid var(--border-hairline); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border-hairline); border-right: none; }
  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-headline-sticky { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-sticky { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .location-layout { grid-template-columns: 1fr; }
  .map-wrap { height: 350px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .story-layout { grid-template-columns: 1fr; }
  .story-content { border-left: none; border-top: 1px solid var(--border-hairline); padding: 3rem 2rem; }
  .program-item { grid-template-columns: 1fr; }
  .program-item .program-img { min-height: 300px; }
  .program-item:nth-child(even) .program-img { order: 0; }
  .program-item:nth-child(even) .program-content { order: 0; }
  .hero-logo { width: clamp(240px, 44vw, 400px); }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-logo { gap: 0.75rem; }
  .nav-logo-text { font-size: 1.1rem; }
  .nav-logo-text span { font-size: 0.55rem; margin-top: 0.1rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  #navbar { padding: 0.8rem 0; }
  #navbar.scrolled { padding: 0.6rem 0; }

  /* Hero */
  .hero-logo { width: clamp(200px, 60vw, 320px); }
  .hero-headline { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-sub { font-size: 0.95rem; padding: 0 1rem; }
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; padding: 0 1rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Sections */
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { border-right: none; padding: 2rem 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-item { border-right: none; border-bottom: 1px solid var(--border-hairline); padding: 2rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid::before { display: none; }
  .step-item { padding: 0; }

  /* FAQ */
  .faq-question { font-size: 0.95rem; padding: 1.25rem 0; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Location */
  .map-wrap { height: 280px; }
  .location-info { gap: 1.5rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Modal */
  .modal-box { margin: 1rem; padding: 2rem 1.5rem; max-height: 90vh; overflow-y: auto; }

  /* Touch-friendly tap targets */
  .btn { padding: 1rem 2rem; font-size: 0.85rem; }
  .faq-icon { width: 28px; height: 28px; }
  .dropdown-menu a, .dropdown-menu button { padding: 0.9rem 1.5rem; }

  /* Typography scaling */
  .display-xl { font-size: clamp(2.5rem, 10vw, 4rem); }
  .display-lg { font-size: clamp(2rem, 6vw, 3rem); }
  .display-md { font-size: clamp(1.5rem, 5vw, 2rem); }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .nav-logo-text { font-size: 0.95rem; }
  .nav-logo-text span { font-size: 0.5rem; }
  .hero-logo { width: 220px; }
  .hero-eyebrow { font-size: 0.55rem; letter-spacing: 0.2em; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border-hairline); }
  .stat-item:last-child { border-bottom: none; }
  .offer-card { padding: 1.5rem 1.25rem; }

  .map-wrap { height: 220px; }
  .footer-social-links a { width: 44px; height: 44px; }
}

/* ==========================================================================
   UTILITY CLASSES (REFACTORED INLINE STYLES)
   ========================================================================== */
.u-text-center { text-align: center; }
.u-color-primary { color: var(--text-primary); }
.u-color-muted { color: var(--text-muted); }
.u-color-faint { color: var(--text-faint); }
.u-underline { text-decoration: underline; }

.u-mb-0 { margin-bottom: 0; }
.u-mb-1 { margin-bottom: 0.5rem; }
.u-mb-2 { margin-bottom: 0.75rem; }
.u-mb-3 { margin-bottom: 1rem; }
.u-mb-4 { margin-bottom: 1.5rem; }
.u-mb-5 { margin-bottom: 2rem; }
.u-mb-6 { margin-bottom: 2.5rem; }
.u-mb-7 { margin-bottom: 3rem; }

.u-mt-0 { margin-top: 0; }
.u-mt-1 { margin-top: 0.5rem; }
.u-mt-2 { margin-top: 1rem; }
.u-mt-3 { margin-top: 2rem; }
.u-mt-4 { margin-top: 3rem; }
.u-mt-neg { margin-top: -0.5rem; }

.u-ml-0 { margin-left: 0; }
.u-pl-3 { padding-left: 1rem; }
.u-pl-4 { padding-left: 1.5rem; }
.u-p-6 { padding: 2.5rem; }
.u-py-legal { padding: 160px 0 80px; }

.u-mw-480 { max-width: 480px; }
.u-mw-500 { max-width: 500px; margin-left: auto; margin-right: auto; }
.u-mw-520 { max-width: 520px; }
.u-mw-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.u-w-100 { width: 100%; }
.u-h-90 { height: 90px; }

.u-flex { display: flex; }
.u-flex-start { align-items: flex-start; }
.u-flex-wrap { flex-wrap: wrap; }
.u-justify-center { justify-content: center; }
.u-gap-1 { gap: 0.5rem; }
.u-gap-2 { gap: 1rem; }

.u-font-md { font-size: 0.9rem; }
.u-font-lg { font-size: 1.1rem; }
.u-font-xl { font-size: 1.25rem; }
.u-lh-18 { line-height: 1.8; }

.u-border-left { border-left: 2px solid var(--border-light); }
.u-border-box { border: 1px solid var(--border-hairline); }

.u-no-events { pointer-events: none; }
.u-logo-invert { height: 50px; }

.bg-hero-img { background-image: url('../images/hero-bg.webp'); }

.checkbox-lg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; cursor: pointer; }
.checkbox-label { font-size: 0.75rem; color: var(--text-faint); line-height: 1.4; font-weight: 400; text-transform: none; letter-spacing: 0; cursor: pointer; }



/* Hide Elfsight Badging & Owner Panel */

/* Hide Elfsight Badging & Owner Panel */
[class*="eapps-widget-toolbar"],
[class*="elfsight-app"] + div a[href*="elfsight.com"],
[class*="elfsight-app"] a[href*="elfsight.com"],
a[href*="elfsight.com"] {
  display: none !important;
}

[class*="WidgetTitle"],
[class*="Title__Container"],
[class*="eapps-widget-title"] {
  display: none !important;
}

/* Glow and Grow Hover Effects */
.hero-logo, .hero-headline, .nav-logo-text {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), text-shadow 0.4s ease, filter 0.4s ease !important;
  will-change: transform, filter, text-shadow;
  display: inline-block; /* Ensure transforms work properly on headline */
}
.hero-logo:hover {
  transform: scale(1.08) !important;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6)) !important;
}
.nav-logo-text:hover {
  transform: scale(1.05) !important;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5) !important;
}
.hero-headline:hover {
  transform: scale(1.03) !important;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.7) !important;
}

/* ==========================================================================
   LUXURY UPGRADES
   ========================================================================== */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--text-primary);
  color: var(--bg-primary);
}
::-moz-selection {
  background: var(--text-primary);
  color: var(--bg-primary);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary); 
}
::-webkit-scrollbar-thumb {
  background: var(--border-mid); 
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-faint); 
}
