/* CSS v6 - Expanded 8-Category Layout */
:root {
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  --amber: #F59E0B;
  --amber-hover: #D97706;

  --font-dis: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --trans: 0.3s ease;
  --rad: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
li { list-style: none; }

.sec-title {
  font-family: var(--font-dis);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.sec-title--white { color: #fff; }
.h-amber { color: var(--amber); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
}
.btn--solid { background: var(--amber); color: #fff; }
.btn--solid:hover { background: var(--amber-hover); transform: translateY(-2px); }
.btn--outline { border-color: var(--slate-200); }
.btn--outline:hover { border-color: var(--slate-900); background: var(--slate-900); color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }

/* Nav */
.nav { position: sticky; top: 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); z-index: 100; border-bottom: 1px solid var(--slate-100); }
.nav__inner { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-dis); font-size: 1.8rem; letter-spacing: 0.05em; }
.logo-icon { color: var(--amber); }
.logo-vip { color: var(--amber); }
.nav__links { display: flex; gap: 2rem; align-items: center; font-weight: 600; font-size: 0.95rem; }
.nav__links > li > a:hover { color: var(--amber); }
.nav-cta { background: var(--slate-900); color: #fff !important; padding: 0.5rem 1rem; border-radius: 6px; }
.nav-cta:hover { background: var(--amber); }

/* Mega Menu */
.has-mega-menu { position: relative; }
.has-mega-menu > a { display: flex; align-items: center; gap: 0.25rem; height: 80px; }
.mega-menu {
  position: absolute;
  top: 80px; 
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 100vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(0,0,0,0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2.5rem 0;
  z-index: 99;
}
.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu__inner {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}
.mega-menu__main {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mega-col-title {
  display: block;
  font-family: var(--font-dis);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.mega-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: var(--slate-900);
  text-decoration: none;
}
.mega-link:hover {
  background: var(--slate-50);
}
.mega-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  color: var(--amber);
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}
.mega-link:hover .mega-icon {
  background: var(--amber);
  border-color: var(--amber);
  color: #000;
  transform: scale(1.05);
}
.mega-icon svg { width: 20px; height: 20px; }
.mega-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-text strong {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}
.mega-text span {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.3;
}

.mega-menu__promo {
  width: 320px;
  flex-shrink: 0;
  border-left: 1px solid var(--slate-100);
  padding-left: 3rem;
}
.promo-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.promo-box__img {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.promo-box__content {
  padding: 1.5rem;
}
.promo-box__content h5 { font-family: var(--font-dis); font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--slate-900); }
.promo-box__content p { font-size: 0.9rem; color: var(--slate-600); line-height: 1.5; margin-bottom: 1.25rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.85rem; }


@media (max-width: 768px) {
  /* .nav__links removed for new mobile menu */
}

/* Hero */
.hero { padding: 4rem 0 6rem; background: linear-gradient(180deg, var(--slate-50) 0%, #fff 100%); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero__badge-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--slate-100); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; color: var(--slate-600); margin-bottom: 1.5rem; }
.hero__h1 { font-family: var(--font-dis); font-size: clamp(3.5rem, 8vw, 6rem); line-height: 0.9; margin-bottom: 1.5rem; }
.h1-amber { color: var(--amber); }
.hero__sub { font-size: 1.1rem; color: var(--slate-600); margin-bottom: 2rem; max-width: 500px; }
.hero__ctas { display: flex; gap: 1rem; margin-bottom: 3rem; }
.hero__kpis { display: flex; gap: 2rem; align-items: center; }
.kpi__n { font-family: var(--font-dis); font-size: 2.5rem; color: var(--slate-900); line-height: 1; }
.kpi__l { font-size: 0.8rem; color: var(--slate-400); font-weight: 600; text-transform: uppercase; }
.kpi__line { width: 1px; height: 40px; background: var(--slate-200); }

.hero__right { position: relative; }
.hero__img { border-radius: var(--rad); object-fit: cover; height: 600px; width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.hero__floating { position: absolute; bottom: -20px; left: -20px; background: #fff; padding: 1.5rem; border-radius: var(--rad); display: flex; gap: 1rem; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.float-icon { width: 48px; height: 48px; background: var(--slate-50); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--amber); }
.float-text strong { display: block; font-family: var(--font-dis); font-size: 1.5rem; letter-spacing: 1px; line-height: 1; margin-bottom: 0.2rem; }
.float-text span { font-size: 0.85rem; color: var(--slate-400); font-weight: 600; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__img { height: 400px; }
  .hero__floating { left: 5%; right: 5%; bottom: -30px; }
}

/* Brands Marquee */
.brands { background: var(--slate-900); padding: 3rem 0; color: #fff; text-align: center; }
.brands__title { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--slate-400); margin-bottom: 2rem; font-weight: 700; }
.brands__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; opacity: 0.9; }
.brand-item { font-family: var(--font-dis); font-size: 2rem; letter-spacing: 1px; }

/* Products Grid */
.products { padding: 8rem 0; background: var(--slate-50); }
.sec-hd { margin-bottom: 4rem; }
.sec-lead { font-size: 1.1rem; color: var(--slate-600); max-width: 600px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.p-card { background: #fff; border-radius: var(--rad); overflow: hidden; border: 1px solid var(--slate-100); transition: var(--trans); display: flex; flex-direction: column; }
.p-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--amber); }
.p-card__img { height: 200px; background-size: cover; background-position: center; }
.p-card__body { padding: 2rem; flex: 1; }
.p-card__body h3 { font-family: var(--font-dis); font-size: 2rem; letter-spacing: 1px; margin-bottom: 0.5rem; line-height: 1.1; }
.p-card__body p { color: var(--slate-600); font-size: 0.95rem; }

/* The cards without images need an icon header instead */
.p-card__icon { height: 100px; display: flex; align-items: flex-end; padding: 0 2rem; color: var(--amber); }
.p-card__icon svg { width: 40px; height: 40px; }
.p-card__body--solid { padding-top: 1rem; }

/* About */
.about { padding: 8rem 0; background: #fff; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about__vis { position: relative; }
.about__img { border-radius: var(--rad); }
.about__float { position: absolute; bottom: 2rem; right: -2rem; background: #fff; padding: 1.5rem; border-radius: var(--rad); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about__float strong { display: block; font-family: var(--font-dis); font-size: 1.8rem; letter-spacing: 1px; line-height: 1; }
.about__float span { color: var(--slate-400); font-size: 0.9rem; font-weight: 600; }
.about__lead { font-size: 1.1rem; color: var(--slate-600); margin-bottom: 3rem; }
.feat-list li { display: flex; gap: 1rem; margin-bottom: 2rem; }
.feat-icon { width: 32px; color: var(--amber); }
.feat-list h4 { font-family: var(--font-dis); font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 0.5rem; }
.feat-list p { color: var(--slate-600); font-size: 0.95rem; }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 4rem; }
  .about__float { right: 2rem; }
}

/* Quote Section */
.quote { padding: 6rem 0; background: var(--slate-50); }
.quote__card { background: var(--slate-900); border-radius: 20px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.quote__grid { display: grid; grid-template-columns: 1fr 1fr; }
.quote__details { padding: 4rem; color: #fff; background: url('https://images.unsplash.com/photo-1518457607834-6e8d80c183c5?q=80&w=800&auto=format&fit=crop') center/cover; position: relative; }
.quote__details::before { content:''; position: absolute; inset: 0; background: rgba(15, 23, 42, 0.9); }
.quote__details > * { position: relative; z-index: 1; }
.quote__sub { font-size: 1.1rem; color: var(--slate-200); margin-bottom: 3rem; }
.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { font-size: 0.95rem; color: var(--slate-200); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
.contact-list strong { color: #fff; width: 60px; display: inline-block; }

.quote__form-wrap { padding: 4rem; background: #fff; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { margin-bottom: 1.5rem; }
.f-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--slate-600); margin-bottom: 0.5rem; text-transform: uppercase; }
.f-group input, .f-group select, .f-group textarea { width: 100%; padding: 1rem; border: 1px solid var(--slate-200); border-radius: 8px; font-family: inherit; font-size: 1rem; transition: var(--trans); }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1); }

@media (max-width: 900px) {
  .quote__grid { grid-template-columns: 1fr; }
  .quote__details, .quote__form-wrap { padding: 2rem; }
}

/* Footer */
.footer { background: var(--slate-900); color: var(--slate-200); padding: 6rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer__brand .logo-text { font-family: var(--font-dis); font-size: 2rem; color: #fff; margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer__brand p { color: var(--slate-400); max-width: 300px; }
.footer__links h4 { font-family: var(--font-dis); font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; letter-spacing: 1px; }
.footer__links li { margin-bottom: 0.75rem; }
.footer__links a:hover { color: var(--amber); }
.footer__bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.85rem; color: var(--slate-400); }

/* Chat */
.chat__fab { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; background: var(--amber); color: #fff; border: none; border-radius: 50%; cursor: pointer; box-shadow: 0 10px 20px rgba(245,158,11,0.3); z-index: 999; display: flex; align-items: center; justify-content: center; }
.chat__window { position: fixed; bottom: 90px; right: 20px; width: 350px; background: #fff; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); z-index: 1000; overflow: hidden; border: 1px solid var(--slate-100); display: flex; flex-direction: column; }
.chat__window.hidden { display: none; }
.chat__head { background: var(--slate-900); padding: 1rem; color: #fff; display: flex; justify-content: space-between; align-items: center; }
.chat__agent { display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-dis); font-size: 1.2rem; color: var(--amber); }
.agent-info strong { display: block; font-size: 0.95rem; }
.agent-info span { font-size: 0.75rem; color: var(--amber); }
.chat__actions button { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 1.2rem; margin-left: 0.5rem; }
.chat__actions button:hover { color: #fff; }
.chat__messages { padding: 1rem; height: 350px; overflow-y: auto; background: var(--slate-50); display: flex; flex-direction: column; gap: 1rem; }
.chat-message { padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.9rem; max-width: 90%; }
.chat-message.ai { background: #fff; border: 1px solid var(--slate-200); align-self: flex-start; }
.chat-message.ui-only { background: #fff; border: 1px solid var(--slate-200); align-self: flex-start; }
.chat-message.user { background: var(--amber); color: #fff; align-self: flex-end; }
.chat-message.tool-status { background: transparent; font-style: italic; color: var(--slate-400); font-size: 0.8rem; border: none; align-self: center; padding: 0.25rem; }
.chat-message.typing { background: #fff; border: 1px solid var(--slate-200); align-self: flex-start; }
.typing-indicator { display: flex; align-items: center; gap: 4px; height: 1.2rem; }
.typing-indicator span { width: 6px; height: 6px; background-color: var(--slate-400); border-radius: 50%; animation: typing 1.4s infinite both; }
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing { 0%, 80%, 100% { transform: scale(0); opacity: 0.5; } 40% { transform: scale(1); opacity: 1; } }
.chat-message.ai p:not(:last-child) { margin-bottom: 0.5rem; }
.chat-message.ai ul, .chat-message.ai ol { margin-left: 1.25rem; margin-bottom: 0.5rem; }
.chat-message.ai b, .chat-message.ai strong { font-weight: bold; }
.chat-suggestions { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; margin-top: 0.25rem; }
.suggestion-btn { background: #fff; border: 1px solid var(--amber); color: var(--amber); padding: 0.6rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--trans); text-align: left; line-height: 1.3; }
.suggestion-btn:hover { background: var(--amber); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2); }
.chat__form { padding: 1rem; display: flex; gap: 0.5rem; background: #fff; border-top: 1px solid var(--slate-100); }
.chat__form input { flex: 1; border: 1px solid var(--slate-200); border-radius: 20px; padding: 0.5rem 1rem; outline: none; }
.chat__form button { border: none; background: var(--slate-900); color: #fff; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }

@media (max-width: 768px) {
  .chat__window { 
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    height: -webkit-fill-available !important; /* Fix for iOS safari jumpiness */
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 99999 !important;
    transition: none !important; /* Disable any transitions that cause glitching */
  }
  
  .chat__messages {
    height: auto;
    flex: 1 1 auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  
  .chat__form {
    padding-bottom: max(1rem, env(safe-area-inset-bottom)) !important;
    background: #fff; /* Ensure it covers anything behind it */
  }

  .chat__form input {
    font-size: 16px !important; /* Explicit 16px prevents iOS Safari from zooming */
  }
  
  .chat__head {
    padding-top: max(1rem, env(safe-area-inset-top)) !important;
  }
  
  body.chat-open {
    overflow: hidden !important;
    position: fixed; /* Stop background scrolling entirely */
    width: 100%;
  }
  
  body.chat-open .chat__fab {
    display: none !important;
  }
}


/* ----- PREMIUM MOBILE MENU ----- */
.mobile-toggle {
  -webkit-tap-highlight-color: transparent;
  background: transparent !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  display: none;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 9999;
}
.mobile-toggle:focus { outline: none !important; box-shadow: none !important; }
.mobile-toggle .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--slate-900);
  position: absolute;
  left: 0;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), background-color 0.4s ease, opacity 0.4s ease, top 0.4s ease;
}
.mobile-toggle .line-1 { top: 0px; }
.mobile-toggle .line-2 { top: 11px; }
.mobile-toggle .line-3 { top: 22px; }

/* Toggle Active State / Close 'X' */
.mobile-toggle.is-active .line {
  background-color: #fff;
}
.mobile-toggle.is-active .line-1 {
  transform: translateY(11px) rotate(45deg);
}
.mobile-toggle.is-active .line-2 {
  opacity: 0;
  transform: translateX(-10px);
}
.mobile-toggle.is-active .line-3 {
  transform: translateY(-11px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9997;
  opacity: 0;
  transition: opacity 0.5s ease;
}

@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  .mobile-overlay { display: none !important; }
  
  /* Hide desktop nav */
  .nav__links { display: none !important; }
}

/* ---------------------------------------------------- */
/* PREMIUM NATIVE NAVIGATION DRAWER (Mobile)            */
/* ---------------------------------------------------- */
.Drawer {
  --drawer-width: min(28em, 90vw); /* Wider drawer */
  --drawer-bg: rgba(15, 23, 42, 0.98); /* Slightly transparent for blur */
  --drawer-backdrop: 0;

  width: auto;
  height: auto;
  background: transparent;
  border: 0;
  overflow: visible;
  padding: 0;
  margin: 0;
}

.Drawer::backdrop {
  background: #000;
  opacity: calc(var(--drawer-backdrop) / 1.5);
  transition: opacity 0.3s ease;
}

.Drawer-scroller {
  position: relative;
  display: grid;
  /* Spacer on the left, sheet on the right */
  grid-template-columns: 100% var(--drawer-width);
  overflow-x: scroll;
  overscroll-behavior: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.Drawer-scroller::-webkit-scrollbar {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .Drawer-scroller { scroll-behavior: smooth; }
}

.Drawer-scroller::before {
  content: '';
  scroll-snap-align: start;
  scroll-initial-target: nearest;
}

.Drawer-sheet {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100vh;
  background: var(--drawer-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #fff;
  overflow-y: auto;
  scroll-snap-align: end;
  scrollbar-width: none;
  border-left: 1px solid rgba(255,255,255,0.05);
  box-shadow: -10px 0 50px rgba(0,0,0,0.8);
  outline: none;
}
.Drawer-sheet::-webkit-scrollbar {
  display: none;
}

.Drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.Drawer-title {
  font-family: var(--font-dis);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--amber);
}

.Drawer-close {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Drawer-close:hover {
  background: var(--amber);
  color: #000;
  border-color: var(--amber);
  transform: rotate(90deg);
}

.Drawer-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.Drawer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.Drawer-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--slate-400);
}

.Drawer-link {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: all 0.3s ease;
  display: block;
}

.Drawer-link:hover {
  color: #fff;
  transform: translateX(5px);
}

.Drawer-section--main {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 1.5rem;
}

.Drawer-main-link {
  font-family: var(--font-dis);
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 1px;
}

.Drawer-cta {
  color: var(--amber);
}

/* Scroll driven animation for backdrop fade */
@supports (animation-timeline: scroll()) {
  .Drawer {
    timeline-scope: --drawer-fade;
    animation: fade-drawer-backdrop linear both;
    animation-timeline: --drawer-fade;
  }

  .Drawer-scroller {
    scroll-timeline: --drawer-fade x;
  }

  @property --drawer-backdrop {
    syntax: '<number>';
    inherits: true;
    initial-value: 0;
  }

  @keyframes fade-drawer-backdrop {
    0% { --drawer-backdrop: 0 }
    100% { --drawer-backdrop: 1 }
  }
}
